blob: f251fd8a8a7ac7ccd3734a7952a54121ca5349ed (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/zsnes/zsnes-1.51-r2.ebuild,v 1.1 2008/05/09 19:14:57 drizzt Exp $
inherit eutils autotools flag-o-matic toolchain-funcs multilib games
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 ~x86-fbsd"
IUSE="ao custom-cflags opengl png"
RDEPEND="media-libs/libsdl
>=sys-libs/zlib-1.2.3-r1
amd64? ( >=app-emulation/emul-linux-x86-sdl-10.1 )
ao? ( media-libs/libao )
opengl? ( virtual/opengl )
png? ( media-libs/libpng )"
DEPEND="${RDEPEND}
dev-lang/nasm
amd64? ( >=sys-apps/portage-2.1 )"
S=${WORKDIR}/${PN}_${PV//./_}/src
src_unpack() {
unpack ${A}
cd "${S}"
# Fixing compilation without libpng installed
epatch "${FILESDIR}"/${P}-libpng.patch
# Fix bug #186111
epatch "${FILESDIR}"/${P}-archopt-july-23-update.patch
epatch "${FILESDIR}"/${P}-gcc43.patch
# Fix bug #214697
epatch "${FILESDIR}"/${P}-libao-thread.patch
# Remove hardcoded CFLAGS and LDFLAGS
sed -i \
-e '/^CFLAGS=.*local/s:-pipe.*:-Wall -I.":' \
-e '/^LDFLAGS=.*local/d' \
-e '/\w*CFLAGS=.*fomit/s:-O3.*$STRIP::' \
configure.in \
|| die "sed failed"
eautoreconf
}
src_compile() {
tc-export CC
use amd64 && multilib_toolchain_setup x86
use custom-cflags || strip-flags
egamesconf \
$(use_enable ao libao) \
$(use_enable png libpng) \
$(use_enable opengl) \
--disable-debug \
--disable-cpucheck \
--enable-release \
force_arch=no \
|| die
emake makefile.dep || die "emake makefile.dep failed"
emake || die "emake failed"
}
src_install() {
dogamesbin zsnes || die "dogamesbin failed"
newman linux/zsnes.1 zsnes.6
dodoc ../docs/{readme.1st,*.txt,README.LINUX}
dodoc ../docs/readme.txt/*
dohtml -r ../docs/readme.htm/*
make_desktop_entry zsnes ZSNES
newicon icons/48x48x32.png ${PN}.png
prepgamesdirs
}
|