blob: cc2a7d9cdf02cda62856c3430d6a33debc871c3f (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51.ebuild,v 1.5 2007/01/31 14:40:50 drizzt Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils autotools flag-o-matic games toolchain-funcs
DESCRIPTION="SNES (Super Nintendo) emulator that uses x86 assembly"
HOMEPAGE="http://www.zsnes.com/ http://ipherswipsite.com/zsnes/"
SRC_URI="mirror://sourceforge/zsnes/${PN}${PV//./}src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE="ao custom-cflags opengl png"
RDEPEND=">=media-libs/libsdl-1.2.0
>=sys-libs/zlib-1.2.3-r1
amd64? ( app-emulation/emul-linux-x86-sdl )
!amd64? ( ao? ( media-libs/libao ) )
opengl? ( virtual/opengl )
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}
>=dev-lang/nasm-0.98"
S="${WORKDIR}/${PN}_${PV//./_}/src"
pkg_setup() {
if use ao && [[ "${ARCH}" = "amd64" ]]; then
ewarn "libao use flag is disabled on amd64 since deps cannot be met."
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
cp "icons/48x48x32.png" "${T}/${PN}.png"
# Workaround for old libz
[[ "${ARCH}" = amd64 ]] && epatch "${FILESDIR}"/${P}-gzdirect.patch
# Remove hardcoded CFLAGS and LDFLAGS
if use custom-cflags; then
sed -i -e '/^\s*CFLAGS=.* -fomit-frame-pointer /d' \
configure.in || die
append-flags -fomit-frame-pointer -D__RELEASE__
else
strip-flags
fi
sed -i \
-e 's:^\s*STRIP="-s":STRIP="":' \
-e 's:^\s*CFLAGS=.* -I\/usr\/local\/include .*$:CFLAGS="${CFLAGS} -I.":' \
-e '/^\s*LDFLAGS=.* -L\/usr\/local\/lib /d' \
configure.in || die
eautoreconf
}
src_compile() {
tc-export CC
use amd64 && multilib_toolchain_setup x86
local myconf=""
use custom-cflags && myconf="--disable-cpucheck force_arch=no"
if use ao && [[ "${ARCH}" != amd64 ]]; then
myconf="${myconf} --enable-libao"
else
myconf="${myconf} --disable-libao"
fi
egamesconf \
$(use_enable png libpng) \
$(use_enable opengl) \
--disable-debug \
--enable-release \
${myconf} \
|| die
emake || die "emake failed"
}
src_install() {
dogamesbin zsnes || die "dogamesbin failed"
newman linux/zsnes.1 zsnes.6
dodoc ../docs/{*.txt,README.LINUX}
dohtml -r ../docs/Linux/*
make_desktop_entry zsnes ZSNES zsnes.png
doicon "${T}/${PN}.png"
prepgamesdirs
}
|