diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-09-07 22:18:51 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-09-07 22:18:51 +0000 |
commit | 67d6fbdc59f8905e900175e3d1da51c367c3b2cc (patch) | |
tree | ea10c8cdcc01ae4b001e10b77faca3aef197bafe /x11-wm | |
parent | gnome 2.4 rc1 (diff) | |
download | historical-67d6fbdc59f8905e900175e3d1da51c367c3b2cc.tar.gz historical-67d6fbdc59f8905e900175e3d1da51c367c3b2cc.tar.bz2 historical-67d6fbdc59f8905e900175e3d1da51c367c3b2cc.zip |
gnome 2.4 rc1
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/metacity/Manifest | 4 | ||||
-rw-r--r-- | x11-wm/metacity/files/digest-metacity-2.5.5 | 1 | ||||
-rw-r--r-- | x11-wm/metacity/metacity-2.5.5.ebuild | 41 |
3 files changed, 44 insertions, 2 deletions
diff --git a/x11-wm/metacity/Manifest b/x11-wm/metacity/Manifest index 740ca159e1cd..435d2e054924 100644 --- a/x11-wm/metacity/Manifest +++ b/x11-wm/metacity/Manifest @@ -1,8 +1,8 @@ MD5 5c81809203d4969fd95b37f2f4ed9f9a metacity-2.4.1.ebuild 1073 MD5 203f98d98e27300cd7b76f6fb9038e56 metacity-2.4.55.ebuild 1064 MD5 108a5ef6535f214de1f04c76c123f084 metacity-2.4.34.ebuild 1039 -MD5 53b42cb9fdbc7cb671e45a12d9260971 metacity-2.5.5.ebuild 1070 -MD5 6ce06df2a48bb8521651363a9e18cd02 ChangeLog 4111 +MD5 9578df1d1a9b8d366d66ebe1dec4fdd1 metacity-2.5.5.ebuild 1070 +MD5 26a94895febc80493ca496995b9cc19a ChangeLog 4225 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 888edb091b2a7f1feebf5ad86907048f files/metacity-2.4.3-ppc-gcc3.2.diff 1062 MD5 be03404ddfeb13e12276ec1037a5ea42 files/metacity-2.4.0-ppc-gcc3.2.diff 1211 diff --git a/x11-wm/metacity/files/digest-metacity-2.5.5 b/x11-wm/metacity/files/digest-metacity-2.5.5 new file mode 100644 index 000000000000..f49d977190fa --- /dev/null +++ b/x11-wm/metacity/files/digest-metacity-2.5.5 @@ -0,0 +1 @@ +MD5 af8e466ca305b0c251fc050ec7587094 metacity-2.5.5.tar.bz2 1652851 diff --git a/x11-wm/metacity/metacity-2.5.5.ebuild b/x11-wm/metacity/metacity-2.5.5.ebuild new file mode 100644 index 000000000000..3b7a561c2ae2 --- /dev/null +++ b/x11-wm/metacity/metacity-2.5.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/metacity-2.5.5.ebuild,v 1.1 2003/09/07 22:18:40 foser Exp $ + +inherit gnome2 + +DESCRIPTION="Small gtk2 WindowManager" +HOMEPAGE="http://people.redhat.com/~hp/metacity/" +SLOT="1" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~alpha ~sparc" + +# not parallel-safe; see bug #14405 +MAKEOPTS="${MAKEOPTS} -j1" + +# FIXME : more useflagging possible + +# sharp gtk dep is for a certain speed patch +RDEPEND="virtual/x11 + >=x11-libs/pango-1.2 + >=x11-libs/gtk+-2.2.0-r1 + >=gnome-base/gconf-1.2 + >=x11-libs/startup-notification-0.4" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0 + >=dev-util/intltool-0.21" + +DOCS="AUTHORS ChangeLog HACKING INSTALL NEWS README" + +src_unpack(){ + unpack ${A} + # causes ICE on ppc w/ gcc (still) + cd ${S} + use ppc && ( + [ -z "${CC}" ] && CC=gcc + if [ "`${CC} -dumpversion | cut -d. -f1,2`" != "2.95" ] ; then + patch -p0 < ${FILESDIR}/metacity-2.4.3-ppc-gcc3.2.diff || die "patch failed" + fi + ) +} |