blob: 6dc474b165d6cbd0956b3d54376d73cd40206887 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/infones/infones-0.92.ebuild,v 1.2 2004/03/21 11:36:22 dholm Exp $
inherit games
MY_P="InfoNES${PV//.}J_Src"
S=${WORKDIR}/${MY_P}/linux
DESCRIPTION="A fast and portable NES emulator"
HOMEPAGE="http://www.geocities.co.jp/SiliconValley/5604/infones/"
SRC_URI="http://www.geocities.co.jp/SiliconValley/5604/bin/${MY_P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
RDEPEND="=x11-libs/gtk+-1.2*
sys-libs/zlib"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:-O2:${CFLAGS}:" Makefile || die "sed Makefile failed"
}
src_install() {
dogamesbin InfoNES
dohtml ../doc/readme.html
prepgamesdirs
}
|