diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-09-09 16:28:07 +0000 |
commit | 4449c749e4d0a531f4dffcd6bd11772e59ecbf81 (patch) | |
tree | 47ac23a46562d1736503b9b2447f81b34199c04e /games-emulation/nestra | |
parent | New package - rename. (diff) | |
download | historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.gz historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.tar.bz2 historical-4449c749e4d0a531f4dffcd6bd11772e59ecbf81.zip |
welcome to games-emulation
Diffstat (limited to 'games-emulation/nestra')
-rw-r--r-- | games-emulation/nestra/ChangeLog | 11 | ||||
-rw-r--r-- | games-emulation/nestra/Manifest | 3 | ||||
-rw-r--r-- | games-emulation/nestra/files/digest-nestra-0.66 | 2 | ||||
-rw-r--r-- | games-emulation/nestra/nestra-0.66.ebuild | 40 |
4 files changed, 56 insertions, 0 deletions
diff --git a/games-emulation/nestra/ChangeLog b/games-emulation/nestra/ChangeLog new file mode 100644 index 000000000000..17ff33df1942 --- /dev/null +++ b/games-emulation/nestra/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-emulation/nestra +# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/nestra/ChangeLog,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +*nestra-0.66 (27 Dec 2002) + + 18 Jul 2003; Mike Frysinger <vapier@gentoo.org> : + Add debian patch + games.eclass support. + + 27 Dec 2002; Ryan Phillips <rphillips@gentoo.org> nestra-0.66.ebuild : + initial release diff --git a/games-emulation/nestra/Manifest b/games-emulation/nestra/Manifest new file mode 100644 index 000000000000..258492c668ea --- /dev/null +++ b/games-emulation/nestra/Manifest @@ -0,0 +1,3 @@ +MD5 5d044df0a5fe990c7654cddd26af095c ChangeLog 437 +MD5 30aba1fd0c27d47f14a9ab1fd35526ce nestra-0.66.ebuild 842 +MD5 32d582dc60a09f353a5bc5f1cf254960 files/digest-nestra-0.66 126 diff --git a/games-emulation/nestra/files/digest-nestra-0.66 b/games-emulation/nestra/files/digest-nestra-0.66 new file mode 100644 index 000000000000..60f6b4c31ca7 --- /dev/null +++ b/games-emulation/nestra/files/digest-nestra-0.66 @@ -0,0 +1,2 @@ +MD5 ef3de7a20216e88e60d5b973b72d8217 nestra-0.66.tar.gz 49757 +MD5 82883440ec0f141e88372ebae6fbbf32 nestra_0.66-6.diff.gz 2221 diff --git a/games-emulation/nestra/nestra-0.66.ebuild b/games-emulation/nestra/nestra-0.66.ebuild new file mode 100644 index 000000000000..ff584b62609b --- /dev/null +++ b/games-emulation/nestra/nestra-0.66.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/nestra/nestra-0.66.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $ + +inherit games eutils + +PATCH="${P/-/_}-6.diff" +DESCRIPTION="NES emulation for Linux/x86" +HOMEPAGE="http://nestra.linuxgames.com/" +SRC_URI="http://nestra.linuxgames.com/${P}.tar.gz + http://ftp.debian.org/debian/pool/contrib/n/nestra/${PATCH}.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/x11" + +S=${WORKDIR}/${PN} + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${WORKDIR}/${PATCH} + sed -i \ + -e 's:-O2 ::' \ + -e "s:gcc:gcc ${CFLAGS}:" \ + Makefile +} + +src_compile() { + make || die "compile failed" +} + +src_install() { + dogamesbin nestra + dodoc BUGS CHANGES README + doman nestra.6 + prepgamesdirs +} |