diff options
-rw-r--r-- | games-emulation/openmsx/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/openmsx/openmsx-0.4.0.ebuild | 19 |
2 files changed, 13 insertions, 11 deletions
diff --git a/games-emulation/openmsx/ChangeLog b/games-emulation/openmsx/ChangeLog index 55e9a83de479..07afdffba9ec 100644 --- a/games-emulation/openmsx/ChangeLog +++ b/games-emulation/openmsx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/openmsx # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.5 2004/06/12 20:13:55 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/ChangeLog,v 1.6 2004/06/14 05:29:44 mr_bones_ Exp $ + + 13 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> openmsx-0.4.0.ebuild: + add eutils for epatch; tidy *openmsx-0.4.0 (12 Jun 2004) diff --git a/games-emulation/openmsx/openmsx-0.4.0.ebuild b/games-emulation/openmsx/openmsx-0.4.0.ebuild index 01fe40abafe2..26989039449b 100644 --- a/games-emulation/openmsx/openmsx-0.4.0.ebuild +++ b/games-emulation/openmsx/openmsx-0.4.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.4.0.ebuild,v 1.1 2004/06/12 20:13:55 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/openmsx/openmsx-0.4.0.ebuild,v 1.2 2004/06/14 05:29:44 mr_bones_ Exp $ -inherit games flag-o-matic +inherit flag-o-matic eutils games DESCRIPTION="MSX emulator that aims for perfection" HOMEPAGE="http://openmsx.sourceforge.net/" @@ -14,7 +14,7 @@ SLOT="0" KEYWORDS="~x86 ~sparc ~ppc" IUSE="" -RDEPEND="dev-lang/tcl +DEPEND="dev-lang/tcl dev-libs/libxml2 media-libs/libpng sys-libs/zlib @@ -22,32 +22,31 @@ RDEPEND="dev-lang/tcl media-libs/libsdl virtual/x11 virtual/opengl" -DEPEND="${RDEPEND} - >=sys-apps/sed-4" src_unpack() { unpack ${A} cd ${S} - epatch ${FILESDIR}/${P}-custom.mk.patch - epatch ${FILESDIR}/${P}-symlinking.patch + epatch "${FILESDIR}/${P}-custom.mk.patch" + epatch "${FILESDIR}/${P}-symlinking.patch" } src_compile() { # fix bug 32745 replace-flags -Os -O2 - egamesconf || die "Fatal error in configure script" + egamesconf || die emake || die "Fatal error during compilation" } src_install() { - egamesinstall OPENMSX_INSTALL="${D}/usr/games/openmsx" || die "Fatal error during installation" + egamesinstall \ + OPENMSX_INSTALL="${D}/usr/games/openmsx" || die dodoc README AUTHORS dohtml -r doc/* # Tidy up install - rm -f ${D}${GAMES_DATADIR}/openmsx/*.{txt,tex,html,png,css} + rm -f "${D}${GAMES_DATADIR}/openmsx/"*.{txt,tex,html,png,css} prepgamesdirs } |