diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-29 15:22:02 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-06-29 15:22:02 +0000 |
commit | 3fa9add040f79f88b739c16afa148882d7a95c5c (patch) | |
tree | 49a62a35c33a0d26db1605d68635fca489a92bf8 /games-arcade | |
parent | Unmasking most of the GGZ stuff that works. The KDE parts still don't work, ... (diff) | |
download | gentoo-2-3fa9add040f79f88b739c16afa148882d7a95c5c.tar.gz gentoo-2-3fa9add040f79f88b739c16afa148882d7a95c5c.tar.bz2 gentoo-2-3fa9add040f79f88b739c16afa148882d7a95c5c.zip |
Fixed binaries being pre-stripped. Thanks to Tristan Heaven <tristanheaven@gmail.com> for the patch. Closing bug #137674.
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/sdlsasteroids/ChangeLog | 9 | ||||
-rw-r--r-- | games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild | 9 |
2 files changed, 12 insertions, 6 deletions
diff --git a/games-arcade/sdlsasteroids/ChangeLog b/games-arcade/sdlsasteroids/ChangeLog index 68ce5ed298bc..ba6cd9c26756 100644 --- a/games-arcade/sdlsasteroids/ChangeLog +++ b/games-arcade/sdlsasteroids/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/sdlsasteroids -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/sdlsasteroids/ChangeLog,v 1.6 2005/05/31 20:58:23 cryos Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/sdlsasteroids/ChangeLog,v 1.7 2006/06/29 15:22:02 wolf31o2 Exp $ + + 29 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> + sdlsasteroids-3.0.1.ebuild: + Fixed binaries being pre-stripped. Thanks to Tristan Heaven + <tristanheaven@gmail.com> for the patch. Closing bug #137674. 31 May 2005; Marcus D. Hanwell <marcus@gentoo.org> sdlsasteroids-3.0.1.ebuild: diff --git a/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild b/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild index ef93a9c98789..96c7682b5267 100644 --- a/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild +++ b/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild,v 1.2 2005/05/31 20:58:23 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/sdlsasteroids/sdlsasteroids-3.0.1.ebuild,v 1.3 2006/06/29 15:22:02 wolf31o2 Exp $ inherit games @@ -27,8 +27,9 @@ src_unpack() { cd "${S}" #-e '34 d' \ sed -i \ - -e 's/make /$(MAKE) /' Makefile \ - || die "sed Makefile failed" + -e 's/make /$(MAKE) /' \ + -e 's/--strip//' \ + Makefile || die "sed Makefile failed" } src_compile() { |