blob: e0fceeae3fd69fa550617a76f4ae309307e07abf (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/visualboyadvance/visualboyadvance-1.7.2-r1.ebuild,v 1.8 2006/09/29 15:10:37 wolf31o2 Exp $
inherit eutils games flag-o-matic
DESCRIPTION="gameboy, gameboy color, and gameboy advance emulator"
HOMEPAGE="http://vba.ngemu.com/"
SRC_URI="mirror://sourceforge/vba/VisualBoyAdvance-src-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="mmx gtk"
RDEPEND="media-libs/libpng
sys-libs/zlib
media-libs/libsdl
gtk? (
>=x11-libs/gtk+-2.4
>=dev-cpp/gtkmm-2.4
>=dev-cpp/libglademm-2.4
)"
DEPEND="${RDEPEND}
mmx? ( dev-lang/nasm )"
S="${WORKDIR}/VisualBoyAdvance-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-homedir.patch"
epatch "${FILESDIR}/${PV}-gcc34.patch"
}
src_compile() {
# -O3 causes GCC to behave badly and hog memory, bug #64670.
replace-flags -O3 -O2
# Removed --enable-c-core as it *should* determine this based on arch
egamesconf \
$(use_with mmx) \
$(use_enable gtk gtk 2.4) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README README-win.txt
prepgamesdirs
}
|