diff options
-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() { |