Gentoo Archives: gentoo-commits

From: "Micheal Marineau (marineam)" <marineam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/virt-manager: ChangeLog virt-manager-0.6.0-r1.ebuild virt-manager-0.6.0.ebuild
Date: Tue, 02 Dec 2008 03:38:15
Message-Id: E1L7M5S-0002Y7-SP@stork.gentoo.org
1 marineam 08/12/02 03:38:10
2
3 Modified: ChangeLog
4 Added: virt-manager-0.6.0-r1.ebuild
5 Removed: virt-manager-0.6.0.ebuild
6 Log:
7 Allow user access without policykit
8 (Portage version: 2.1.4.5)
9
10 Revision Changes Path
11 1.10 app-emulation/virt-manager/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 25 Nov 2008 05:06:50 -0000 1.9
24 +++ ChangeLog 2 Dec 2008 03:38:10 -0000 1.10
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-emulation/virt-manager
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.9 2008/11/25 05:06:50 marineam Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/ChangeLog,v 1.10 2008/12/02 03:38:10 marineam Exp $
30 +
31 +*virt-manager-0.6.0-r1 (02 Dec 2008)
32 +
33 + 02 Dec 2008; Michael Marineau <marineam@g.o>
34 + +files/virt-manager-0.6.0-read-only-fallback.patch,
35 + -virt-manager-0.6.0.ebuild, +virt-manager-0.6.0-r1.ebuild:
36 + Add patch to allow user access without policykit.
37
38 25 Nov 2008; Michael Marineau <marineam@g.o>
39 virt-manager-0.6.0.ebuild:
40
41
42
43 1.1 app-emulation/virt-manager/virt-manager-0.6.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/virt-manager-0.6.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emulation/virt-manager/virt-manager-0.6.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: virt-manager-0.6.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-0.6.0-r1.ebuild,v 1.1 2008/12/02 03:38:10 marineam Exp $
53
54 # Stop gnome2.eclass from doing stuff on USE=debug
55 GCONF_DEBUG="no"
56
57 inherit eutils gnome2
58
59 DESCRIPTION="A graphical tool for administering virtual machines such as Xen"
60 HOMEPAGE="http://virt-manager.org/"
61 SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz"
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="gnome-keyring"
66 RDEPEND=">=dev-python/pygtk-1.99.12
67 >=app-emulation/libvirt-0.4.5
68 >=dev-libs/libxml2-2.6.23
69 >=app-emulation/virtinst-0.400.0
70 >=gnome-base/librsvg-2
71 >=x11-libs/vte-0.12.2
72 >=net-libs/gtk-vnc-0.3.4
73 dev-python/dbus-python
74 dev-python/gconf-python
75 dev-python/libgnome-python
76 gnome-keyring? ( dev-python/gnome-keyring-python )"
77 DEPEND="${RDEPEND}"
78
79 pkg_setup() {
80 if ! built_with_use dev-libs/libxml2 python; then
81 local msg="You must install libxml2 with USE=python."
82 eerror "$msg"
83 die "$msg"
84 fi
85
86 if ! built_with_use x11-libs/vte python; then
87 local msg="You must install vte with USE=python."
88 eerror "$msg"
89 die "$msg"
90 fi
91
92 if ! built_with_use net-libs/gtk-vnc python; then
93 local msg="You must install gtk-vnc with USE=python."
94 eerror "$msg"
95 die "$msg"
96 fi
97 }
98
99 src_unpack() {
100 unpack ${A}
101 cd "${S}"
102 epatch "${FILESDIR}/${P}-read-only-fallback.patch"
103 }