blob: ba292ff984814fc0b8116b1bf1decac89d44ba1b (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/generator/generator-0.35.ebuild,v 1.16 2008/03/06 21:53:36 wolf31o2 Exp $
inherit eutils toolchain-funcs games
DESCRIPTION="Sega Genesis / Mega Drive console emulator"
HOMEPAGE="http://www.squish.net/generator/"
SRC_URI="http://www.squish.net/generator/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc ~amd64"
IUSE="svga gtk"
RDEPEND="virtual/libc
gtk? ( =x11-libs/gtk+-1* media-libs/libsdl )
svga? ( media-libs/svgalib )
media-libs/jpeg"
DEPEND="${RDEPEND}
x86? ( dev-lang/nasm )"
src_unpack() {
unpack ${A}
cd "${S}"
mkdir my-bins
if use ppc ; then
sed -i \
-e 's/-minline-all-stringops//g' configure \
|| die "sed configure failed"
fi
if [[ $(gcc-major-version) -eq 3 ]] ; then
sed -i \
-e "s/-malign-functions/-falign-functions/" \
-e "s/-malign-loops/-falign-loops/" \
-e "s/-malign-jumps/-falign-jumps/" configure \
|| die "sed configure failed"
fi
epatch "${FILESDIR}/netbsd-gcc-3.3.patch"
}
src_compile() {
local myconf="--with-gcc=$(gcc-major-version)"
local mygui myguis
use x86 \
&& myconf="${myconf} --with-raze" \
|| myconf="${myconf} --with-cmz80"
use gtk && myguis="gtk"
use svga && myguis="svgalib"
[[ -n "${myguis}" ]] || myguis="gtk"
for mygui in ${myguis}; do
if [ -f Makefile ] ; then
make clean
fi
egamesconf \
${myconf} \
--with-${mygui} || die
emake -j1 || die "building ${mygui}"
mv main/generator-${mygui} my-bins/
done
}
src_install() {
dogamesbin my-bins/* || die "dogamesbin failed"
dodoc AUTHORS ChangeLog NEWS README TODO
prepgamesdirs
}
|