diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-25 04:19:19 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-07-25 04:19:19 +0000 |
commit | 6e241b5d8062742d13d27cb064190bc661284615 (patch) | |
tree | 47d0c88f3fa71f94181c79d88c0e0562a09db69c /games-emulation | |
parent | Stable x86, gcc-4 baby! (diff) | |
download | gentoo-2-6e241b5d8062742d13d27cb064190bc661284615.tar.gz gentoo-2-6e241b5d8062742d13d27cb064190bc661284615.tar.bz2 gentoo-2-6e241b5d8062742d13d27cb064190bc661284615.zip |
avoid pre-stripping binaries; tidy - patch from Tristan Heaven via bug #137830
(Portage version: 2.1.1_pre3-r4)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/pcsx/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/pcsx/pcsx-1.5-r1.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/games-emulation/pcsx/ChangeLog b/games-emulation/pcsx/ChangeLog index 81cc1360d62d..b7cddf991937 100644 --- a/games-emulation/pcsx/ChangeLog +++ b/games-emulation/pcsx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/pcsx # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx/ChangeLog,v 1.8 2006/05/02 20:09:09 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx/ChangeLog,v 1.9 2006/07/25 04:19:19 mr_bones_ Exp $ + + 25 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org> pcsx-1.5-r1.ebuild: + avoid pre-stripping binaries; tidy - patch from Tristan Heaven via bug #137830 02 May 2006; <Tupone@gentoo.org> +files/pcsx-1.5-gcc41.patch, pcsx-1.5-r1.ebuild: diff --git a/games-emulation/pcsx/pcsx-1.5-r1.ebuild b/games-emulation/pcsx/pcsx-1.5-r1.ebuild index 1f9dafff2890..b81dcabf2928 100644 --- a/games-emulation/pcsx/pcsx-1.5-r1.ebuild +++ b/games-emulation/pcsx/pcsx-1.5-r1.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/pcsx/pcsx-1.5-r1.ebuild,v 1.8 2006/05/02 20:09:08 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/pcsx/pcsx-1.5-r1.ebuild,v 1.9 2006/07/25 04:19:19 mr_bones_ Exp $ inherit eutils games @@ -16,7 +16,7 @@ IUSE="opengl" DEPEND="sys-libs/zlib app-arch/unzip - x11-libs/gtk+ + >=x11-libs/gtk+-2 gnome-base/libglade" RDEPEND="games-emulation/psemu-cdr games-emulation/psemu-cdriso @@ -30,11 +30,11 @@ RDEPEND="games-emulation/psemu-cdr src_unpack() { unpack PcsxSrc-${PV}.tgz - cd ${S} + cd "${S}" edos2unix `find -regex '.*\.[ch]'` - epatch ${FILESDIR}/${PV}-gentoo.patch \ + epatch "${FILESDIR}"/${PV}-gentoo.patch \ "${FILESDIR}/${P}"-gcc41.patch sed -i \ -e "s:Plugin/:${GAMES_LIBDIR}/psemu/plugins/:" \ @@ -55,13 +55,13 @@ src_unpack() { src_compile() { cd Linux econf || die "econf failed" - emake OPTIMIZE="${CFLAGS}" || die "emake failed" + emake OPTIMIZE="${CFLAGS}" STRIP=true || die "emake failed" } src_install() { newgamesbin Linux/pcsx pcsx.bin - dogamesbin ${FILESDIR}/pcsx - insinto ${GAMES_DATADIR}/${PN} + dogamesbin "${FILESDIR}"/pcsx + insinto "${GAMES_DATADIR}"/${PN} doins Linux/.pixmaps/* dodoc Docs/* prepgamesdirs |