diff options
Diffstat (limited to 'games-emulation/infones/infones-0.91.ebuild')
-rw-r--r-- | games-emulation/infones/infones-0.91.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/games-emulation/infones/infones-0.91.ebuild b/games-emulation/infones/infones-0.91.ebuild new file mode 100644 index 000000000000..dfc6057858da --- /dev/null +++ b/games-emulation/infones/infones-0.91.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/infones/infones-0.91.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +inherit games + +MY_P="InfoNES${PV//.}J_Src" +S="${WORKDIR}/${MY_P}/linux" +DESCRIPTION="A fast and portable NES emulator" +HOMEPAGE="http://www.geocities.co.jp/SiliconValley/5604/infones/" +SRC_URI="http://www.geocities.co.jp/SiliconValley/5604/bin/${MY_P}.zip" + +LICENSE="GPL-2" +KEYWORDS="x86" +SLOT="0" +IUSE="" + +RDEPEND="=x11-libs/gtk+-1.2*" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i \ + -e "s:-O2:${CFLAGS}:" Makefile || \ + die "sed Makefile failed" +} + +src_install() { + dogamesbin InfoNES + dohtml ../doc/readme.html + prepgamesdirs +} |