blob: 612f9f1cc58a6227f3ffa0351bff32d52cfff2bd (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-emulation/qtvba/qtvba-0.2.ebuild,v 1.8 2009/01/19 21:18:42 tupone Exp $
EAPI=1
inherit eutils qt3 games
DESCRIPTION="VisualBoyAdvance Frontend"
HOMEPAGE="http://www.apex.net.au/~twalker/qtvba/"
SRC_URI="http://www.apex.net.au/~twalker/qtvba/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ppc x86"
IUSE=""
DEPEND="x11-libs/qt:3"
RDEPEND="${DEPEND}
games-emulation/visualboyadvance"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-Makefilefix.patch" \
"${FILESDIR}"/${P}-gcc43.patch
}
src_install() {
dogamesbin ${PN} || die "dogamesbin failed"
dodoc README
prepgamesdirs
}
|