blob: 43e6312d69603c1c83e877f438600adab3988b07 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gngeo/gngeo-0.6.10.ebuild,v 1.2 2006/03/06 19:58:41 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="A NeoGeo emulator"
HOMEPAGE="http://m.peponas.free.fr/gngeo/"
SRC_URI="http://m.peponas.free.fr/gngeo/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
RDEPEND="virtual/opengl
sys-libs/zlib
media-libs/sdl-image
>=media-libs/libsdl-1.2"
DEPEND="${RDEPEND}
x86? ( >=dev-lang/nasm-0.98 )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-execstacks.patch"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS NEWS README sample_gngeorc
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "A licensed NeoGeo BIOS copy is required to run the emulator."
echo
}
|