diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-05 02:45:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-05 02:45:09 +0000 |
commit | 6cbccd99ed1149d5582520b522a986fad1c40673 (patch) | |
tree | ff13206f38bb78e5a07dfb1a6d8cb4d19b57db8e /games-emulation | |
parent | Added large file support so it doesnt bail on 2GB files. Closes #36404. (diff) | |
download | gentoo-2-6cbccd99ed1149d5582520b522a986fad1c40673.tar.gz gentoo-2-6cbccd99ed1149d5582520b522a986fad1c40673.tar.bz2 gentoo-2-6cbccd99ed1149d5582520b522a986fad1c40673.zip |
old
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/zsnes/files/digest-zsnes-1.35-r1 | 1 | ||||
-rw-r--r-- | games-emulation/zsnes/zsnes-1.35-r1.ebuild | 37 |
2 files changed, 0 insertions, 38 deletions
diff --git a/games-emulation/zsnes/files/digest-zsnes-1.35-r1 b/games-emulation/zsnes/files/digest-zsnes-1.35-r1 deleted file mode 100644 index 9fba14488721..000000000000 --- a/games-emulation/zsnes/files/digest-zsnes-1.35-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 669ec6ad2709f2f04e0bd5003c915cb1 zsnes135src.tar.gz 876712 diff --git a/games-emulation/zsnes/zsnes-1.35-r1.ebuild b/games-emulation/zsnes/zsnes-1.35-r1.ebuild deleted file mode 100644 index 141e63c3b777..000000000000 --- a/games-emulation/zsnes/zsnes-1.35-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.35-r1.ebuild,v 1.1 2003/09/09 16:26:50 vapier Exp $ - -DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly" -SRC_URI="mirror://sourceforge/zsnes/zsnes${PV//./}src.tar.gz" -HOMEPAGE="http://www.zsnes.com/" - -LICENSE="GPL-2" -KEYWORDS="x86 -sparc -ppc" -SLOT="0" -IUSE="opengl" - -RDEPEND="opengl? ( virtual/opengl ) - virtual/x11 - >=media-libs/libsdl-1.2.0 - sys-libs/zlib - media-libs/libpng" -DEPEND="${RDEPEND} - >=dev-lang/nasm-0.98" - -src_compile() { - # Don't attempt to introduce $CFLAGS usage, docs say result will be slower. - patch -p1 < ${FILESDIR}/${P}-cvs.patch || die "CVS patch failed" - cd ${S}/src - use opengl || myconf="--without-opengl" - ./configure --prefix=/usr --host=${CHOST} $myconf || die - make || die -} -src_install() { - cd ${S}/src - into /usr - dobin zsnes - doman linux/zsnes.1 - cd ${S} - dodoc *.txt linux/* -} |