blob: baa3b89a1fe9720354f2a3c0549a0874e095516f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.37_pre20040508.ebuild,v 1.2 2004/05/12 00:59:41 mr_bones_ Exp $
inherit games
DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly"
HOMEPAGE="http://www.zsnes.com/ http://emuhost.com/ipher/zsnes/"
SRC_URI="http://ipher.emuhost.com/files/zsnes/ZSNESS_${PV/*2004}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~x86"
IUSE="opengl"
RDEPEND="opengl? ( virtual/opengl )
>=media-libs/libsdl-1.2.0
sys-libs/zlib
media-libs/libpng"
DEPEND="${RDEPEND}
>=dev-lang/nasm-0.98
sys-devel/automake
>=sys-devel/autoconf-2.58"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
for f in * ; do
mv ${f} ${f/zsnes\\\\}
done
cd src
aclocal || die "aclocal failed"
env WANT_AUTOCONF=2.5 autoconf || die "autoconf failed"
}
src_compile() {
# Do NOT introduce custom ${CFLAGS} - Current choices are the optimal ones
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
}
|