blob: 44951fbf8b84ed2a9112f5cf9cec3cb73b0faf6d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.2 2004/06/17 01:51:37 mr_bones_ Exp $
inherit eutils kde-functions
need-qt 3
DESCRIPTION="VisualBoyAdvance Frontend"
SRC_URI="http://www.apex.net.au/~twalker/qtvba/${P}.tar.gz"
HOMEPAGE="http://www.apex.net.au/~twalker/qtvba/"
LICENSE="GPL-2"
DEPEND="x11-libs/qt"
RDEPEND=">=games-emulation/visualboyadvance-1.5.1"
IUSE=""
SLOT="0"
KEYWORDS="~ppc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-Makefilefix.patch
}
src_compile() {
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc README
}
|