81 lines
2 KiB
Bash
81 lines
2 KiB
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit autotools eutils gnome2
|
|
|
|
DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon"
|
|
HOMEPAGE="http://developer.linuxmint.com/projects/cinnamon-projects.html"
|
|
SRC_URI="https://github.com/linuxmint/muffin/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
IUSE="+introspection test xinerama"
|
|
KEYWORDS="amd64 x86"
|
|
|
|
RESTRICT="test"
|
|
|
|
COMMON_DEPEND="
|
|
>=x11-libs/pango-1.2[X,introspection?]
|
|
>=x11-libs/cairo-1.14:=[X]
|
|
x11-libs/gdk-pixbuf:2[introspection?]
|
|
>=x11-libs/gtk+-3.9.12:3[X,introspection?]
|
|
>=dev-libs/glib-2.37.3:2[dbus]
|
|
>=gnome-extra/cinnamon-desktop-2.4:0=[introspection?]
|
|
>=gnome-base/gsettings-desktop-schemas-3.3.0[introspection?]
|
|
>=media-libs/libcanberra-0.26[gtk3]
|
|
>=x11-libs/libXcomposite-0.3
|
|
>=x11-libs/startup-notification-0.7:=
|
|
|
|
x11-libs/libICE
|
|
x11-libs/libSM
|
|
x11-libs/libX11
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXcursor
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libXrandr
|
|
x11-libs/libXrender
|
|
virtual/opengl
|
|
|
|
gnome-extra/zenity
|
|
|
|
introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
|
|
xinerama? ( x11-libs/libXinerama )
|
|
"
|
|
# needs gtk-doc, not just -am, for gtk-doc.make
|
|
DEPEND="${COMMON_DEPEND}
|
|
${PYTHON_DEPS}
|
|
>=app-text/gnome-doc-utils-0.8
|
|
sys-devel/gettext
|
|
dev-util/gtk-doc
|
|
dev-util/gtk-doc-am
|
|
>=dev-util/intltool-0.35
|
|
virtual/pkgconfig
|
|
x11-base/xorg-proto
|
|
test? ( app-text/docbook-xml-dtd:4.5 )
|
|
"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
!x11-misc/expocity
|
|
"
|
|
|
|
src_prepare() {
|
|
eapply "${FILESDIR}"/muffin-4.0-{cogl,clutter}-configure.patch
|
|
eautoreconf
|
|
gnome2_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* *.txt doc/*.txt"
|
|
gnome2_src_configure \
|
|
--disable-static \
|
|
--enable-shape \
|
|
--enable-sm \
|
|
--enable-startup-notification \
|
|
--enable-xsync \
|
|
--enable-verbose-mode \
|
|
--with-libcanberra \
|
|
$(use_enable introspection) \
|
|
$(use_enable xinerama)
|
|
}
|