blob: 857d8bf2103bed03c12b5e2566af0393e2f68832 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit eutils cmake-utils qt4
DESCRIPTION="A graphical user interface for QEMU written in Qt4."
HOMEPAGE="http://qtemu.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2.1 CCPL-Attribution-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=x11-libs/qt-4.1:4"
RDEPEND="${DEPEND}
app-emulation/qemu"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PV}-help_and_translation_paths.patch"
}
src_install() {
DOCS="ChangeLog README"
cmake-utils_src_install
doicon "${S}/images/${PN}.ico"
make_desktop_entry "qtemu" "QtEmu" "${PN}.ico" "Qt;Utility;Emulator"
}
|