summaryrefslogtreecommitdiff
blob: b3d8904ccf895a93f4740352a471fb7d961fcaae (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-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="~x86 ~amd64"
IUSE=""

src_unpack() {

	subversion_src_unpack

	cd "${S}"

	epatch ${FILESDIR}/qemulaunch_makefile_prefix.patch
	epatch ${FILESDIR}/qemulaunch_launcher_kvm.patch
}

src_compile() {
	emake || die "make failed"
}

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