blob: f6b88b420bf3a29b6e126deae84b4c5999a12f41 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/gnomeboyadvance/gnomeboyadvance-0.1.ebuild,v 1.2 2003/09/09 23:33:23 msterret Exp $
inherit games
S=${WORKDIR}/gnomeBoyAdvance-0.1
DESCRIPTION="A GNOME Python frontend to VisualBoyAdvance"
HOMEPAGE="http://www.socialistsoftware.com/gnomeboyadvance.php"
SRC_URI="http://www.socialistsoftware.com/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE=""
RDEPEND=">=dev-lang/python-2.2
>=dev-python/gnome-python-1.99
>=dev-python/pygtk-1.99
games-emulation/visualboyadvance"
DEPEND=">=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:/usr/share/:/usr/share/games/:' \
gnomeboyadvance || die "sed gnomeboyadvance failed"
}
src_install() {
dogamesbin gnomeboyadvance
insinto ${GAMES_DATADIR}/gnomeboyadvance
doins gnomeBoyAdvance.png gnomeboyadvance.glade
dodoc README CHANGES TODO
prepgamesdirs
}
|