summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-11-20 12:25:40 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-11-20 12:25:40 +0000
commit8086e2a9dd6b9c8eb93cefaffc3a79829996e4eb (patch)
treec770bb16556897bc696ab80d169d677182b1d83b /games-emulation/zsnes
parentversion bump (bug #69787); command-line patch from Ben Ford via bug #69196 (M... (diff)
downloadgentoo-2-8086e2a9dd6b9c8eb93cefaffc3a79829996e4eb.tar.gz
gentoo-2-8086e2a9dd6b9c8eb93cefaffc3a79829996e4eb.tar.bz2
gentoo-2-8086e2a9dd6b9c8eb93cefaffc3a79829996e4eb.zip
old
Diffstat (limited to 'games-emulation/zsnes')
-rw-r--r--games-emulation/zsnes/files/digest-zsnes-1.37_pre200408031
-rw-r--r--games-emulation/zsnes/zsnes-1.37_pre20040803.ebuild59
2 files changed, 0 insertions, 60 deletions
diff --git a/games-emulation/zsnes/files/digest-zsnes-1.37_pre20040803 b/games-emulation/zsnes/files/digest-zsnes-1.37_pre20040803
deleted file mode 100644
index a76a89939c83..000000000000
--- a/games-emulation/zsnes/files/digest-zsnes-1.37_pre20040803
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c8b2bf4542d6a85775d8a26a648ba953 ZSNESS_0803.tar.bz2 788129
diff --git a/games-emulation/zsnes/zsnes-1.37_pre20040803.ebuild b/games-emulation/zsnes/zsnes-1.37_pre20040803.ebuild
deleted file mode 100644
index 9e7679ec7ae7..000000000000
--- a/games-emulation/zsnes/zsnes-1.37_pre20040803.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.37_pre20040803.ebuild,v 1.1 2004/08/15 07:30:27 vapier Exp $
-
-inherit games eutils flag-o-matic
-
-DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly"
-HOMEPAGE="http://www.zsnes.com/ http://ipherswipsite.com/zsnes/"
-SRC_URI="http://www.ipherswipsite.com/files/zsnes/ZSNESS_${PV/*2004}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* ~x86 ~amd64"
-IUSE="opengl"
-
-# we need libsdl for headers on amd64, even though we'll technically be using
-# the 32bit sdl from emul-linux-x86-sdl.
-RDEPEND="opengl? ( virtual/opengl )
- >=media-libs/libsdl-1.2.0
- amd64? ( app-emulation/emul-linux-x86-sdl )
- sys-libs/zlib
- media-libs/libpng"
-DEPEND="${RDEPEND}
- >=dev-lang/nasm-0.98
- sys-devel/automake
- >=sys-devel/autoconf-2.58"
-
-S="${WORKDIR}/${PN}"
-
-multilib_check() {
- if has_m32 ; then
- einfo "multilib detected, adding -m32 to CFLAGS. note that opengl"
- einfo "support probably wont work quite right."
- append-flags -m32
- else
- die "zsnes requires multilib support in gcc. please re-emerge gcc with multilib in USE and try again"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd ${S}/src
- aclocal && autoconf || die "autotools failed"
-}
-
-src_compile() {
- use amd64 && multilib_check
-
- cd src
- egamesconf $(use_with opengl) || die
- emake || die "emake failed"
-}
-
-src_install() {
- dogamesbin src/zsnes || die "dogamesbin failed"
- newman src/linux/zsnes.1 zsnes.6
- dodoc *.txt linux/*
- prepgamesdirs
-}