diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-03 19:09:41 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-03 19:09:41 +0000 |
commit | a1027d41257d7b9d2cb867d7b7f54515c7ba9146 (patch) | |
tree | d5950afcb96a4ced89cdee735df109f99d45dede /games-emulation/snes9x | |
parent | jpeg isn't optional (Manifest recommit) (diff) | |
download | gentoo-2-a1027d41257d7b9d2cb867d7b7f54515c7ba9146.tar.gz gentoo-2-a1027d41257d7b9d2cb867d7b7f54515c7ba9146.tar.bz2 gentoo-2-a1027d41257d7b9d2cb867d7b7f54515c7ba9146.zip |
clean old ebuild
Diffstat (limited to 'games-emulation/snes9x')
-rw-r--r-- | games-emulation/snes9x/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/snes9x/files/digest-snes9x-1.42 | 1 | ||||
-rw-r--r-- | games-emulation/snes9x/snes9x-1.42.ebuild | 71 |
3 files changed, 4 insertions, 73 deletions
diff --git a/games-emulation/snes9x/ChangeLog b/games-emulation/snes9x/ChangeLog index 585c54a9400d..5c07778867cc 100644 --- a/games-emulation/snes9x/ChangeLog +++ b/games-emulation/snes9x/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/snes9x # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.8 2004/04/27 21:07:05 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/ChangeLog,v 1.9 2004/05/03 19:09:41 mr_bones_ Exp $ + + 03 May 2004; Michael Sterrett <mr_bones_@gentoo.org> snes9x-1.42.ebuild: + clean old ebuild 27 Apr 2004; Aron Griffis <agriffis@gentoo.org> snes9x-1.42-r1.ebuild: Add inherit eutils diff --git a/games-emulation/snes9x/files/digest-snes9x-1.42 b/games-emulation/snes9x/files/digest-snes9x-1.42 deleted file mode 100644 index 82c4c2809c48..000000000000 --- a/games-emulation/snes9x/files/digest-snes9x-1.42 +++ /dev/null @@ -1 +0,0 @@ -MD5 1e8af4c590e35352ddac58d25a468676 snes9x-1.42-src.tar.gz 945282 diff --git a/games-emulation/snes9x/snes9x-1.42.ebuild b/games-emulation/snes9x/snes9x-1.42.ebuild deleted file mode 100644 index 9f5466fa305a..000000000000 --- a/games-emulation/snes9x/snes9x-1.42.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/snes9x/snes9x-1.42.ebuild,v 1.3 2004/02/03 21:47:15 mr_bones_ Exp $ - -inherit eutils games - -DESCRIPTION="Super Nintendo Entertainment System (SNES) emulator" -HOMEPAGE="http://www.snes9x.com/" -SRC_URI="http://www.lysator.liu.se/snes9x/${PV}/snes9x-${PV}-src.tar.gz" - -LICENSE="as-is" -SLOT="0" -KEYWORDS="x86 ~ppc" -IUSE="3dfx opengl X joystick" # svga ggi - -RDEPEND="sys-libs/zlib - virtual/x11 - opengl? ( virtual/opengl ) - 3dfx? ( media-libs/glide-v3 )" -# X? ( virtual/x11 ) -# svga? ( media-libs/svgalib ) -# ggi? ( media-libs/libggi ) -DEPEND="${RDEPEND} - x86? ( dev-lang/nasm )" - -S=${WORKDIR}/${P}-src - -src_unpack() { - unpack ${A} - cd ${S}/snes9x - epatch ${FILESDIR}/${PV}-system-zlib.patch -} - -src_compile() { - mkdir mybins - cd snes9x - local vidconf= - local target= - for vid in 3dfx opengl X ; do - [ `use ${vid}` ] || continue - case ${vid} in - 3dfx) - vidconf="--with-glide --without-opengl --without-x" - target=gsnes9x;; - opengl) - vidconf="--with-opengl --without-glide --without-x" - target=osnes9x;; - X) - vidconf="--with-x --without-glide --without-opengl" - target=snes9x;; - esac - # this stuff is ugly but hey the build process sucks ;) - egamesconf \ - `use_with joystick` \ - ${vidconf} \ - `use_with x86 assembler` \ - || die - emake ${target} || die "making ${target}" - mv ${target} ${S}/mybins/ - cd ${WORKDIR} - rm -rf ${S}/snes9x - src_unpack - cd ${S}/snes9x - done -} - -src_install() { - dogamesbin mybins/* - dodoc faqs.txt readme.txt readme.unix snes9x/*.txt - prepgamesdirs -} |