blob: d2d3c6527caba83bada1301e5b7af25a5b254230 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/fakenes/fakenes-0.1.5.ebuild,v 1.3 2004/04/22 09:53:42 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="portable, Open Source NES emulator which is written mostly in C"
HOMEPAGE="http://fakenes.sourceforge.net/"
SRC_URI="mirror://sourceforge/fakenes/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="media-libs/allegro
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}/src
epatch ${FILESDIR}/${PV}-datadir.patch
sed -i \
-e "s:GENTOO_DIR:${GAMES_DATADIR}/${PN}:" main.c \
|| die "sed main.c failed"
}
src_compile() {
egamesconf || die
emake -j1 || die "emake failed"
}
src_install() {
dogamesbin src/fakenes || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins src/support/fakenes.{dat,ico,rc}
dodoc CHANGES README SOURCE SUPPORT
}
|