diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2006-06-25 00:48:59 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2006-06-25 00:48:59 +0000 |
commit | ec2d839ada323cfb567c04d182c5725822c1170d (patch) | |
tree | 8b6e96a35d4d30e3a171c10e7c8e8059f69908f7 /games-emulation/openmsx | |
parent | Version bumps. (diff) | |
download | gentoo-2-ec2d839ada323cfb567c04d182c5725822c1170d.tar.gz gentoo-2-ec2d839ada323cfb567c04d182c5725822c1170d.tar.bz2 gentoo-2-ec2d839ada323cfb567c04d182c5725822c1170d.zip |
Do not strip binaries in the build process, leave this to portage. Quote variables. Both changes by Tristan Heaven <tristanheaven@gmail.com> in bug #137821.
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'games-emulation/openmsx')
-rw-r--r-- | games-emulation/openmsx/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/openmsx/openmsx-0.6.0.ebuild | 7 |
2 files changed, 10 insertions, 4 deletions
diff --git a/games-emulation/openmsx/ChangeLog b/games-emulation/openmsx/ChangeLog index c5221c231dc6..aa20db7501c4 100644 --- a/games-emulation/openmsx/ChangeLog +++ b/games-emulation/openmsx/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/openmsx # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.18 2006/01/21 22:44:47 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.19 2006/06/25 00:48:59 chainsaw Exp $ + + 25 Jun 2006; Tony Vroon <chainsaw@gentoo.org> openmsx-0.6.0.ebuild: + Do not strip binaries in the build process, leave this to portage. Quote + variables. Both changes by Tristan Heaven <tristanheaven@gmail.com> in bug + #137821. *openmsx-0.6.0 (21 Jan 2006) diff --git a/games-emulation/openmsx/openmsx-0.6.0.ebuild b/games-emulation/openmsx/openmsx-0.6.0.ebuild index 93c0ef00d312..ef92b9532ec6 100644 --- a/games-emulation/openmsx/openmsx-0.6.0.ebuild +++ b/games-emulation/openmsx/openmsx-0.6.0.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/openmsx/openmsx-0.6.0.ebuild,v 1.1 2006/01/21 22:44:47 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.6.0.ebuild,v 1.2 2006/06/25 00:48:59 chainsaw Exp $ inherit flag-o-matic eutils games @@ -23,8 +23,9 @@ DEPEND="dev-lang/tcl src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch "${FILESDIR}/${PV}-custom.mk.patch" + sed -i '/LINK_FLAGS+=/s/-s//' build/main.mk || die "sed failed" } src_compile() { @@ -39,7 +40,7 @@ src_install() { egamesinstall \ OPENMSX_INSTALL="${D}/usr/games/openmsx" || die - dogamesbin ${D}/usr/games/openmsx/bin/openmsx + dogamesbin "${D}"/usr/games/openmsx/bin/openmsx dodoc README AUTHORS dohtml -r doc/* |