summaryrefslogtreecommitdiff
blob: 8a04042998fefd54f692b9179c06a8366a0237cd (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit subversion eutils

ESVN_REPO_URI="http://svn.gna.org/svn/qemulaunch/trunk"

DESCRIPTION="Qemu Launcher is a Gtk front-end for the Qemu x86 PC emulator."
HOMEPAGE="http://emeitner.f2o.org/qemu_launcher"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# qemu is missing in the dependencies on purpose.
DEPEND=""
RDEPEND="${DEPEND}
		>=dev-perl/gtk2-perl-1.141-r1
		>=dev-perl/gtk2-gladexml-1.006
		>=gnome-base/librsvg-2.16.1-r2"

src_unpack() {
	subversion_src_unpack

	cd "${S}"
	epatch "${FILESDIR}/qemulaunch_makefile_prefix.patch"
	epatch "${FILESDIR}/qemulaunch_launcher_kvm.patch"
}

src_install() {
	make install DESTDIR="${D}" || die "installation failed"
}