diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2006-01-21 22:44:47 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2006-01-21 22:44:47 +0000 |
commit | 64fe04ab2a42599aea7d4b0a89f2ab86cb803c18 (patch) | |
tree | e193db470f9bd66dea6a90e88b95dfd31338466e /games-emulation/openmsx/openmsx-0.6.0.ebuild | |
parent | add portuguese (pt) longdescription (diff) | |
download | historical-64fe04ab2a42599aea7d4b0a89f2ab86cb803c18.tar.gz historical-64fe04ab2a42599aea7d4b0a89f2ab86cb803c18.tar.bz2 historical-64fe04ab2a42599aea7d4b0a89f2ab86cb803c18.zip |
Version bump.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'games-emulation/openmsx/openmsx-0.6.0.ebuild')
-rw-r--r-- | games-emulation/openmsx/openmsx-0.6.0.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/games-emulation/openmsx/openmsx-0.6.0.ebuild b/games-emulation/openmsx/openmsx-0.6.0.ebuild new file mode 100644 index 000000000000..93c0ef00d312 --- /dev/null +++ b/games-emulation/openmsx/openmsx-0.6.0.ebuild @@ -0,0 +1,50 @@ +# 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 $ + +inherit flag-o-matic eutils games + +DESCRIPTION="MSX emulator that aims for perfection" +HOMEPAGE="http://openmsx.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +IUSE="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc ~amd64" + +DEPEND="dev-lang/tcl + dev-libs/libxml2 + media-libs/libpng + sys-libs/zlib + media-libs/sdl-image + media-libs/libsdl + virtual/opengl" + +src_unpack() { + unpack ${A} + cd ${S} + epatch "${FILESDIR}/${PV}-custom.mk.patch" +} + +src_compile() { + # fix bug 32745 + replace-flags -Os -O2 + + egamesconf || die + emake || die "Fatal error during compilation" +} + +src_install() { + egamesinstall \ + OPENMSX_INSTALL="${D}/usr/games/openmsx" || die + + dogamesbin ${D}/usr/games/openmsx/bin/openmsx + dodoc README AUTHORS + dohtml -r doc/* + + # Tidy up install + rm -f "${D}${GAMES_DATADIR}/openmsx/"*.{txt,tex,html,png,css} + + prepgamesdirs +} |