diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-16 16:40:49 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-08-16 16:40:49 +0000 |
commit | 79f588386c0cc96763a1d43dc28db1c8d3cc3c1b (patch) | |
tree | 9b1dfada7e74cc89514a98ffd1758ca0e40d3550 /games-emulation/stella | |
parent | Stable on ppc64 (diff) | |
download | gentoo-2-79f588386c0cc96763a1d43dc28db1c8d3cc3c1b.tar.gz gentoo-2-79f588386c0cc96763a1d43dc28db1c8d3cc3c1b.tar.bz2 gentoo-2-79f588386c0cc96763a1d43dc28db1c8d3cc3c1b.zip |
avoid pre-stripping files - patch from Tristan Heaven via bug #137834
(Portage version: 2.1.1_pre5-r1)
Diffstat (limited to 'games-emulation/stella')
-rw-r--r-- | games-emulation/stella/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/stella/stella-2.2.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/games-emulation/stella/ChangeLog b/games-emulation/stella/ChangeLog index facd14eeac18..68ea90995867 100644 --- a/games-emulation/stella/ChangeLog +++ b/games-emulation/stella/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/stella # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.20 2006/04/27 19:47:29 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/ChangeLog,v 1.21 2006/08/16 16:40:49 mr_bones_ Exp $ + + 16 Aug 2006; Michael Sterrett <mr_bones_@gentoo.org> stella-2.2.ebuild: + avoid pre-stripping files - patch from Tristan Heaven via bug #137834 27 Apr 2006; Marien Zwart <marienz@gentoo.org> files/digest-stella-1.4.2, files/digest-stella-2.0.1, files/digest-stella-2.1, Manifest: diff --git a/games-emulation/stella/stella-2.2.ebuild b/games-emulation/stella/stella-2.2.ebuild index 6a638d3e8cdc..72449a8a7374 100644 --- a/games-emulation/stella/stella-2.2.ebuild +++ b/games-emulation/stella/stella-2.2.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/stella/stella-2.2.ebuild,v 1.1 2006/04/07 23:21:06 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/stella/stella-2.2.ebuild,v 1.2 2006/08/16 16:40:49 mr_bones_ Exp $ inherit eutils games @@ -21,6 +21,8 @@ src_unpack() { unpack ${A} cd "${S}" sed -i \ + -e '/INSTALL/s/-s //' \ + -e '/strip/d' \ -e "/icons/d" \ Makefile \ || die "sed failed" @@ -39,7 +41,7 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" doicon src/common/stella.xpm make_desktop_entry stella Stella stella.xpm prepgamesdirs |