blob: 999155393d4cf1f137f9a004f07746e6bf914605 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/fceultra/fceultra-0.97.5.ebuild,v 1.7 2005/05/17 18:01:01 wolf31o2 Exp $
inherit eutils games
DESCRIPTION="A portable NES/Famicom emulator"
HOMEPAGE="http://fceultra.sourceforge.net/"
SRC_URI="http://xodnizel.net/fceultra/downloads/fceu-${PV}.src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE="sdl svga"
# Because of code generation bugs, FCEUltra now depends on a version
# of gcc greater than or equal to GCC 3.2.2.
RDEPEND="|| (
svga? ( media-libs/svgalib )
sdl? ( media-libs/libsdl )
media-libs/libsdl
)
>=sys-devel/gcc-3.2.2
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}/fceu
src_unpack() {
unpack ${A}
cd ${S}
epatch "${FILESDIR}/${PV}-joystick.patch"
sed -i \
-e 's:-mcpu=i686 -O2::' \
-e 's:-fomit-frame-pointer::' \
Makefile.linuxvga Makefile.unixsdl Makefile.unixsdl.gtk || \
die "sed Makefiles failed"
sed -i \
-e "s:\${TFLAGS}:\${TFLAGS} ${CFLAGS}:" Makefile.base || \
die "sed Makefile.base failed"
}
src_compile() {
if use sdl || ! use svga; then
emake -f Makefile.unixsdl || die "sdl make failed"
mv fceu fceu-sdl
make -f Makefile.unixsdl clean
fi
if use svga ; then
emake -f Makefile.linuxvga || die "svga make failed"
mv fceu fceu-svga
fi
}
src_install() {
if use sdl || ! use svga; then
dogamesbin fceu-sdl || die "dogamesbin failed (sdl)"
doman Documentation/*.6 || die "doman failed (sdl)"
fi
if use svga ; then
dogamesbin fceu-svga || die "dogamesbin failed (svga)"
doman Documentation/*.6 || die "doman failed (svga)"
fi
dodoc Documentation/{*.txt,AUTHORS,FAQ,README,TODO} || die "dodoc failed"
cp -r Documentation/tech "${D}/usr/share/doc/${P}/" || die "cp failed"
find ${D}/usr/share/doc/${P}/tech -type f -exec gzip -9 \{\} \; || \
die "find failed"
dohtml Documentation/* || die "dohtml failed"
prepgamesdirs
}
|