blob: 311f96664c61b52c2b8110f28404e119d05c7b76 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/kigb/kigb-1.5.6.ebuild,v 1.3 2004/06/24 22:30:20 agriffis Exp $
inherit games
DESCRIPTION="A Gameboy (GB, SGB, GBA) Emulator for Linux"
HOMEPAGE="http://kigb.emuunlim.com"
SRC_URI="http://kigb.emuunlim.com/${PN}_lin.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="dev-games/hawknl
virtual/x11
virtual/glibc"
S=${WORKDIR}
src_install() {
local dir=${GAMES_PREFIX_OPT}/${PN}
dodir ${dir}
cp -rf * ${D}/${dir}/ || die
dogamesbin ${FILESDIR}/kigb
prepgamesdirs
}
|