blob: c2f75824f301f4e4dcc62514d4c23b697d2efc20 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-0.8.4-r1.ebuild,v 1.1 2010/06/04 18:45:02 cardoe Exp $
EAPI=2
PYTHON_DEPEND="2:2.4"
# Stop gnome2.eclass from doing stuff on USE=debug
GCONF_DEBUG="no"
inherit eutils gnome2 python
DESCRIPTION="A graphical tool for administering virtual machines (KVM/Xen)"
HOMEPAGE="http://virt-manager.org/"
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gnome-keyring policykit"
RDEPEND=">=dev-python/pygtk-1.99.12
>=app-emulation/libvirt-0.7.0[python]
>=dev-libs/libxml2-2.6.23[python]
>=app-emulation/virtinst-0.500.3
>=gnome-base/librsvg-2
>=x11-libs/vte-0.12.2[python]
>=net-libs/gtk-vnc-0.3.8[python]
>=dev-python/dbus-python-0.61
>=dev-python/gconf-python-1.99.11
dev-python/urlgrabber
gnome-keyring? ( dev-python/gnome-keyring-python )
policykit? ( gnome-extra/polkit-gnome )"
DEPEND="${RDEPEND}
app-text/rarian"
src_prepare() {
sed -e "s/python/python2/" -i src/virt-manager.in || \
die "python2 update failed"
epatch "${FILESDIR}"/${P}-customize-dialog-xmlparsedoc.patch
gnome2_src_prepare
}
src_install() {
gnome2_src_install
insinto /usr/share/virt-manager/pixmaps/
doins ${S}/pixmaps/*.png
doins ${S}/pixmaps/*.svg
insinto /usr/share/virt-manager/pixmaps/hicolor/16x16/actions/
doins ${S}/pixmaps/hicolor/16x16/actions/*.png
insinto /usr/share/virt-manager/pixmaps/hicolor/22x22/actions/
doins ${S}/pixmaps/hicolor/22x22/actions/*.png
insinto /usr/share/virt-manager/pixmaps/hicolor/24x24/actions/
doins ${S}/pixmaps/hicolor/24x24/actions/*.png
insinto /usr/share/virt-manager/pixmaps/hicolor/32x32/actions/
doins ${S}/pixmaps/hicolor/32x32/actions/*.png
}
|