diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-09-16 21:00:39 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-09-16 21:00:39 +0000 |
commit | c9394510e7b64a32619b32b861f7e03e7f9fc961 (patch) | |
tree | 1cb6676bb46358e6b28064636a8b0e647d86ff6e /x11-wm | |
parent | apgdiff: version bump (diff) | |
download | gentoo-2-c9394510e7b64a32619b32b861f7e03e7f9fc961.tar.gz gentoo-2-c9394510e7b64a32619b32b861f7e03e7f9fc961.tar.bz2 gentoo-2-c9394510e7b64a32619b32b861f7e03e7f9fc961.zip |
Version bump. Replace GDK usage by cairo. Fix crashers and memory leaks. Translation updates.
(Portage version: 2.2_rc78/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/metacity/ChangeLog | 9 | ||||
-rw-r--r-- | x11-wm/metacity/metacity-2.30.2.ebuild | 90 |
2 files changed, 98 insertions, 1 deletions
diff --git a/x11-wm/metacity/ChangeLog b/x11-wm/metacity/ChangeLog index 011b6d6c0741..489960cdf442 100644 --- a/x11-wm/metacity/ChangeLog +++ b/x11-wm/metacity/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-wm/metacity # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.257 2010/09/11 18:41:57 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.258 2010/09/16 21:00:39 eva Exp $ + +*metacity-2.30.2 (16 Sep 2010) + + 16 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> + +metacity-2.30.2.ebuild: + Version bump. Replace GDK usage by cairo. Fix crashers and memory leaks. + Translation updates. 11 Sep 2010; Joseph Jezak <josejx@gentoo.org> metacity-2.30.1.ebuild: Marked ppc for bug #324077. diff --git a/x11-wm/metacity/metacity-2.30.2.ebuild b/x11-wm/metacity/metacity-2.30.2.ebuild new file mode 100644 index 000000000000..59123ee5bc19 --- /dev/null +++ b/x11-wm/metacity/metacity-2.30.2.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/metacity-2.30.2.ebuild,v 1.1 2010/09/16 21:00:39 eva Exp $ + +EAPI="2" +# debug only changes CFLAGS +GCONF_DEBUG="no" + +inherit eutils gnome2 + +DESCRIPTION="GNOME default window manager" +HOMEPAGE="http://blogs.gnome.org/metacity/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" +IUSE="test xinerama" + +# XXX: libgtop is automagic, hard-enabled instead +RDEPEND=">=x11-libs/gtk+-2.20:2 + >=x11-libs/pango-1.2[X] + >=gnome-base/gconf-2 + >=dev-libs/glib-2.6 + >=x11-libs/startup-notification-0.7 + >=x11-libs/libXcomposite-0.2 + x11-libs/libXfixes + x11-libs/libXrender + x11-libs/libXdamage + x11-libs/libXcursor + x11-libs/libX11 + xinerama? ( x11-libs/libXinerama ) + x11-libs/libXext + x11-libs/libXrandr + x11-libs/libSM + x11-libs/libICE + media-libs/libcanberra[gtk] + gnome-base/libgtop + gnome-extra/zenity + !x11-misc/expocity" +DEPEND="${RDEPEND} + >=app-text/gnome-doc-utils-0.8 + sys-devel/gettext + >=dev-util/pkgconfig-0.9 + >=dev-util/intltool-0.35 + test? ( app-text/docbook-xml-dtd:4.5 ) + xinerama? ( x11-proto/xineramaproto ) + x11-proto/xextproto + x11-proto/xproto" + +DOCS="AUTHORS ChangeLog HACKING NEWS README *.txt doc/*.txt" + +pkg_setup() { + G2CONF="${G2CONF} + --enable-compositor + --enable-gconf + --enable-render + --enable-shape + --enable-sm + --enable-startup-notification + --enable-xsync + --with-gtk=2.0 + $(use_enable xinerama)" +} + +src_prepare() { + gnome2_src_prepare + + # Fix intltoolize broken file, see upstream #577133 + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \ + || die "sed failed" + + # Remove stupid CFLAGS, bug #259179 + sed "s:-Werror::g" -i configure.in configure || die "sed failed" + + # Should set RestartStyleHint to RestartIfRunning when replaced, + # this fix a strange issue with gnome-session (100% of the CPU, + # and try to restart metacity infinitively when compiz is started) + # patch import from upstream bug #588119. + epatch "${FILESDIR}/${PN}-2.28.0-restartstylehint-when-replace.patch" + + # Use sys/wait.h header instead of wait.h as described in posix specs, + # bug 292009 + epatch "${FILESDIR}/${PN}-2.28.0-sys-wait-header.patch" + + # WIFEXITED and friends are defined in sys/wait.h + # Fixes a build failure on BSD. + # https://bugs.gentoo.org/show_bug.cgi?id=309443 + # https://bugzilla.gnome.org/show_bug.cgi?id=605460 + epatch "${FILESDIR}/${PN}-2.28.1-wif_macros.patch" +} |