blob: 182442c0fe730593242bb59fa59974574abb7679 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
MY_PN="${PN/q/Q}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="a gtk/glade front-end for Qemu"
HOMEPAGE="http://qemulator.createweb.de/"
SRC_URI="http://qemulator.createweb.de/plugins/downloads/dodownload.php?file=${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-python/pygtk-2.8.6
>=app-emulation/qemu-0.8.1"
S=${WORKDIR}/${MY_P}
src_unpack(){
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-basedir.patch"
}
src_install() {
dobin usr/local/bin/*
insinto /usr
doins -r usr/local/{lib,share}
dodoc TRANSLATION README
}
|