diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-21 18:22:20 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-21 18:22:20 +0000 |
commit | cf4f39b32aae2e1035bffb9aa702821dc1fdd15a (patch) | |
tree | 08674f988ab921c9755337f093345c74c49dfa01 /games-emulation | |
parent | Stable on ppc for the Gentoo Linux Installer. (diff) | |
download | gentoo-2-cf4f39b32aae2e1035bffb9aa702821dc1fdd15a.tar.gz gentoo-2-cf4f39b32aae2e1035bffb9aa702821dc1fdd15a.tar.bz2 gentoo-2-cf4f39b32aae2e1035bffb9aa702821dc1fdd15a.zip |
avoid pre-stripping files; fixup warning message (bug #137824) - patch from Tristan Heaven
(Portage version: 2.1.1_pre5-r2)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/mupen64/ChangeLog | 6 | ||||
-rw-r--r-- | games-emulation/mupen64/mupen64-0.5.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/games-emulation/mupen64/ChangeLog b/games-emulation/mupen64/ChangeLog index 06bf607dfdda..3e95b09b946b 100644 --- a/games-emulation/mupen64/ChangeLog +++ b/games-emulation/mupen64/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/mupen64 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64/ChangeLog,v 1.19 2006/01/27 23:31:55 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64/ChangeLog,v 1.20 2006/08/21 18:22:19 mr_bones_ Exp $ + + 21 Aug 2006; Michael Sterrett <mr_bones_@gentoo.org> mupen64-0.5.ebuild: + avoid pre-stripping files; fixup warning message (bug #137824) - patch from + Tristan Heaven *mupen64-0.5 (27 Jan 2006) diff --git a/games-emulation/mupen64/mupen64-0.5.ebuild b/games-emulation/mupen64/mupen64-0.5.ebuild index 5ecb15f213fc..b234a05fa64f 100644 --- a/games-emulation/mupen64/mupen64-0.5.ebuild +++ b/games-emulation/mupen64/mupen64-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/mupen64/mupen64-0.5.ebuild,v 1.1 2006/01/27 23:31:55 morfic Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/mupen64/mupen64-0.5.ebuild,v 1.2 2006/08/21 18:22:20 mr_bones_ Exp $ inherit eutils games @@ -31,6 +31,7 @@ src_unpack() { || die "sed failed" sed -i \ + -e '/strip/d' \ -e "s:CFLAGS.*=\(.*\):CFLAGS=-fPIC ${CFLAGS}:" \ -e "s:CXXFLAGS.*=\(.*\):CXXFLAGS=-fPIC ${CXXFLAGS}:" \ Makefile \ @@ -72,9 +73,9 @@ src_install() { pkg_postinst() { games_pkg_postinst echo - ewarn "If you are upgrading from previous version of mupen64" - ewarn "backup your saved games then do a rm -rf on your" - ewarn ".mupen64 directory. After launching then new mupen copy" - ewarn "your saved games to the original place." + ewarn "If you are upgrading from a previous version of mupen64," + ewarn "backup your saved games then run rm -rf on your" + ewarn ".mupen64 directory. After launching the new version, copy" + ewarn "your saved games to their original place." echo } |