diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2013-02-20 23:19:14 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2013-02-20 23:19:14 +0000 |
commit | 9839364de4bf61c02b9b902b19e97dc5c1fb8e56 (patch) | |
tree | 07c5239f982e81d796d7e1dea30ecaa066b0e626 /x11-wm | |
parent | Respect AR, wrt bug #458482. Thanks to Agostino Sarubbo for discovering this ... (diff) | |
download | gentoo-2-9839364de4bf61c02b9b902b19e97dc5c1fb8e56.tar.gz gentoo-2-9839364de4bf61c02b9b902b19e97dc5c1fb8e56.tar.bz2 gentoo-2-9839364de4bf61c02b9b902b19e97dc5c1fb8e56.zip |
Version bump.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/mutter/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/mutter/mutter-3.6.3.ebuild | 76 |
2 files changed, 82 insertions, 1 deletions
diff --git a/x11-wm/mutter/ChangeLog b/x11-wm/mutter/ChangeLog index 872023c208eb..a6078f8a1f9d 100644 --- a/x11-wm/mutter/ChangeLog +++ b/x11-wm/mutter/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/mutter # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.20 2013/02/02 23:14:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/ChangeLog,v 1.21 2013/02/20 23:19:14 eva Exp $ + +*mutter-3.6.3 (20 Feb 2013) + + 20 Feb 2013; Gilles Dartiguelongue <eva@gentoo.org> +mutter-3.6.3.ebuild: + Version bump. 02 Feb 2013; Agostino Sarubbo <ago@gentoo.org> mutter-3.6.2.ebuild: Add ~arm, wrt bug #449220 diff --git a/x11-wm/mutter/mutter-3.6.3.ebuild b/x11-wm/mutter/mutter-3.6.3.ebuild new file mode 100644 index 000000000000..5bd73ce8633b --- /dev/null +++ b/x11-wm/mutter/mutter-3.6.3.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/mutter/mutter-3.6.3.ebuild,v 1.1 2013/02/20 23:19:14 eva Exp $ + +EAPI="5" +GNOME2_LA_PUNT="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.3.7:3[X,introspection?] + >=dev-libs/glib-2.25.11:2 + >=media-libs/clutter-1.9.10:1.0[introspection?] + >=media-libs/cogl-1.9.6: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.3.0[introspection?] + + 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 + + gnome-extra/zenity + + introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) +" +DEPEND="${COMMON_DEPEND} + >=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() { + # 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() { + 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 \ + --enable-compile-warnings=maximum \ + --with-libcanberra \ + $(use_enable introspection) +} |