diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2006-09-26 18:50:15 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2006-09-26 18:50:15 +0000 |
commit | 386db1b9bf1bf3f7dee58cd8007fbb166e5f013a (patch) | |
tree | 7a07b4d3ffbc498ce638b70eb1a122dced5f84d7 /games-emulation | |
parent | Fixed DEPEND/RDEPEND. (diff) | |
download | gentoo-2-386db1b9bf1bf3f7dee58cd8007fbb166e5f013a.tar.gz gentoo-2-386db1b9bf1bf3f7dee58cd8007fbb166e5f013a.tar.bz2 gentoo-2-386db1b9bf1bf3f7dee58cd8007fbb166e5f013a.zip |
Let portage strip binaries, bug #137833
(Portage version: 2.1.2_pre1-r3)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/ps2emu-cdvdiso/ChangeLog | 6 | ||||
-rw-r--r-- | games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/games-emulation/ps2emu-cdvdiso/ChangeLog b/games-emulation/ps2emu-cdvdiso/ChangeLog index 2abc2e803dee..971d6b0dc24f 100644 --- a/games-emulation/ps2emu-cdvdiso/ChangeLog +++ b/games-emulation/ps2emu-cdvdiso/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/ps2emu-cdvdiso # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cdvdiso/ChangeLog,v 1.7 2006/05/03 05:51:30 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cdvdiso/ChangeLog,v 1.8 2006/09/26 18:50:15 nyhm Exp $ + + 26 Sep 2006; Tristan Heaven <nyhm@gentoo.org> -ps2emu-cdvdiso-0.3.ebuild, + ps2emu-cdvdiso-0.5.ebuild: + Let portage strip binaries, bug #137833 03 May 2006; <Tupone@gentoo.org> +files/ps2emu-cdvdiso-0.5-gcc41.patch, ps2emu-cdvdiso-0.5.ebuild: diff --git a/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild b/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild index 014f483fd946..858180972238 100644 --- a/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild +++ b/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild,v 1.3 2006/05/03 05:51:30 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/ps2emu-cdvdiso/ps2emu-cdvdiso-0.5.ebuild,v 1.4 2006/09/26 18:50:15 nyhm Exp $ inherit eutils games @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" -RDEPEND="=x11-libs/gtk+-1*" +RDEPEND="=x11-libs/gtk+-1.2*" DEPEND="${RDEPEND} app-arch/unrar" @@ -22,7 +22,10 @@ S=${WORKDIR}/CDVDiso${PV//.} src_unpack() { unrar x -idq "${DISTDIR}"/${A} || die cd "${S}" - sed -i 's:-O2 -fomit-frame-pointer:$(OPTFLAGS):' src/Linux/Makefile || die + sed -i \ + -e 's:-O2 -fomit-frame-pointer:$(OPTFLAGS):' \ + -e '/strip/d' \ + src/Linux/Makefile || die epatch "${FILESDIR}/${P}"-gcc41.patch } |