2013-06-25 16:09:08 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-06-26 16:12:20 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/app-emulation/virt-manager/virt-manager-9999.ebuild,v 1.17 2013/06/25 17:28:53 cardoe Exp $
|
2013-06-25 16:09:08 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
#BACKPORTS=
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python{2_6,2_7} )
|
2013-06-26 16:12:20 +04:00
|
|
|
DISTUTILS_SINGLE_IMPL=1
|
2013-06-25 16:09:08 +04:00
|
|
|
|
|
|
|
inherit eutils gnome2 distutils-r1
|
|
|
|
|
|
|
|
DESCRIPTION="A graphical tool for administering virtual machines"
|
|
|
|
HOMEPAGE="http://virt-manager.org"
|
|
|
|
|
|
|
|
if [[ ${PV} = *9999* ]]; then
|
|
|
|
inherit git-2
|
|
|
|
SRC_URI=""
|
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
SRC_URI="http://virt-manager.org/download/sources/${PN}/${P}.tar.gz
|
|
|
|
${BACKPORTS+http://dev.gentoo.org/~cardoe/distfiles/${P}-${BACKPORTS}.tar.xz}"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE="gnome-keyring policykit sasl +spice +vnc"
|
|
|
|
|
|
|
|
RDEPEND="!app-emulation/virtinst
|
|
|
|
x11-libs/gtk+:3[introspection]
|
|
|
|
>=app-emulation/libvirt-0.7.0[python]
|
|
|
|
>=app-emulation/libvirt-glib-0.0.9
|
|
|
|
${PYTHON_DEPS}
|
|
|
|
dev-libs/libxml2[python,${PYTHON_USEDEP}]
|
|
|
|
dev-python/ipaddr[${PYTHON_USEDEP}]
|
|
|
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
|
|
|
dev-python/urlgrabber[${PYTHON_USEDEP}]
|
2013-06-26 16:12:20 +04:00
|
|
|
x11-libs/vte:2.90[introspection]
|
2013-06-25 16:09:08 +04:00
|
|
|
gnome-keyring? ( dev-python/gnome-keyring-python )
|
|
|
|
policykit? ( sys-auth/polkit )
|
|
|
|
spice? ( net-misc/spice-gtk[gtk3,introspection,python,sasl?] )
|
|
|
|
vnc? ( >=net-libs/gtk-vnc-0.3.8[gtk3,introspection,python,${PYTHON_USEDEP}] )"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-lang/perl
|
|
|
|
dev-util/intltool"
|
|
|
|
|
|
|
|
DOCS=( README NEWS )
|
|
|
|
|
|
|
|
python_prepare_all() {
|
|
|
|
epatch_user
|
|
|
|
distutils-r1_python_prepare_all
|
|
|
|
}
|
|
|
|
|
|
|
|
distutils-r1_python_compile() {
|
|
|
|
local defgraphics=
|
|
|
|
|
|
|
|
use vnc && defgraphics="vnc"
|
|
|
|
use spice && defgraphics="spice"
|
|
|
|
|
|
|
|
esetup.py configure \
|
|
|
|
--qemu-user=qemu \
|
|
|
|
--default-graphics=${defgraphics}
|
|
|
|
}
|
2013-06-26 16:12:20 +04:00
|
|
|
|
|
|
|
python_install_all() {
|
|
|
|
python_fix_shebang "${ED}/usr/share/virt-manager/virt-clone"
|
|
|
|
python_fix_shebang "${ED}/usr/share/virt-manager/virt-convert"
|
|
|
|
python_fix_shebang "${ED}/usr/share/virt-manager/virt-image"
|
|
|
|
python_fix_shebang "${ED}/usr/share/virt-manager/virt-install"
|
|
|
|
python_fix_shebang "${ED}/usr/share/virt-manager/virt-manager"
|
|
|
|
}
|