diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 08:14:33 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 08:14:33 +0000 |
commit | d86097c9aed7f6733a20ff8ccaa70e71a5e18ce3 (patch) | |
tree | 2febd11447b1ca92b5f3dd6df0c1599334416237 /x11-wm/mutter | |
parent | bump; drop py2.6 pypy2_0 add py3.4 support, update test phase failings (diff) | |
download | gentoo-2-d86097c9aed7f6733a20ff8ccaa70e71a5e18ce3.tar.gz gentoo-2-d86097c9aed7f6733a20ff8ccaa70e71a5e18ce3.tar.bz2 gentoo-2-d86097c9aed7f6733a20ff8ccaa70e71a5e18ce3.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-wm/mutter')
-rw-r--r-- | x11-wm/mutter/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/mutter/mutter-3.12.2.ebuild | 82 |
2 files changed, 88 insertions, 1 deletions
diff --git a/x11-wm/mutter/ChangeLog b/x11-wm/mutter/ChangeLog index 1dfb5c4585d5..3593197818f9 100644 --- a/x11-wm/mutter/ChangeLog +++ b/x11-wm/mutter/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/mutter # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.42 2014/04/27 22:02:48 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.43 2014/05/31 08:14:33 pacho Exp $ + +*mutter-3.12.2 (31 May 2014) + + 31 May 2014; Pacho Ramos <pacho@gentoo.org> +mutter-3.12.2.ebuild: + Version bump *mutter-3.12.1 (27 Apr 2014) diff --git a/x11-wm/mutter/mutter-3.12.2.ebuild b/x11-wm/mutter/mutter-3.12.2.ebuild new file mode 100644 index 000000000000..bc14399ca75d --- /dev/null +++ b/x11-wm/mutter/mutter-3.12.2.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/mutter-3.12.2.ebuild,v 1.1 2014/05/31 08:14:33 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="yes" + +inherit eutils gnome2 + +DESCRIPTION="GNOME 3 compositing window manager based on Clutter" +HOMEPAGE="http://git.gnome.org/browse/mutter/" + +LICENSE="GPL-2+" +SLOT="0" +IUSE="+introspection test" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +COMMON_DEPEND=" + >=x11-libs/pango-1.2[X,introspection?] + >=x11-libs/cairo-1.10[X] + x11-libs/gdk-pixbuf:2[introspection?] + >=x11-libs/gtk+-3.9.11:3[X,introspection?] + >=dev-libs/glib-2.36.0:2 + >=media-libs/clutter-1.14.3:1.0[introspection?] + >=media-libs/cogl-1.17.1:1.0=[introspection?] + >=media-libs/libcanberra-0.26[gtk3] + >=x11-libs/startup-notification-0.7 + >=x11-libs/libXcomposite-0.2 + >=gnome-base/gsettings-desktop-schemas-3.7.3[introspection?] + gnome-base/gnome-desktop:3= + >sys-power/upower-0.99 + + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXrender + >=x11-libs/libXi-1.7 + + gnome-extra/zenity + + introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) +" +DEPEND="${COMMON_DEPEND} + >=dev-util/gtk-doc-am-1.15 + >=dev-util/intltool-0.35 + sys-devel/gettext + virtual/pkgconfig + x11-proto/xextproto + x11-proto/xineramaproto + x11-proto/xproto + test? ( app-text/docbook-xml-dtd:4.5 ) +" +RDEPEND="${COMMON_DEPEND} + !x11-misc/expocity +" + +src_prepare() { + DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README *.txt doc/*.txt" + + # Compat with Ubuntu metacity themes (e.g. x11-themes/light-themes) + epatch "${FILESDIR}/${PN}-3.2.1-ignore-shadow-and-padding.patch" + + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-static \ + --enable-shape \ + --enable-sm \ + --enable-startup-notification \ + --enable-xsync \ + --enable-verbose-mode \ + --with-libcanberra \ + $(use_enable introspection) +} |