diff options
Diffstat (limited to 'app-emulation/virtinst/virtinst-0.500.4.ebuild')
-rw-r--r-- | app-emulation/virtinst/virtinst-0.500.4.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-emulation/virtinst/virtinst-0.500.4.ebuild b/app-emulation/virtinst/virtinst-0.500.4.ebuild new file mode 100644 index 000000000000..709d44d47da7 --- /dev/null +++ b/app-emulation/virtinst/virtinst-0.500.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtinst/virtinst-0.500.4.ebuild,v 1.1 2010/09/02 19:12:36 cardoe Exp $ + +BACKPORTS=1 + +EAPI=2 + +PYTHON_DEPEND="2" +RESTRICT_PYTHON_ABIS="3.*" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils eutils + +DESCRIPTION="Python modules for starting virtualized guest installations" +HOMEPAGE="http://virt-manager.et.redhat.com/" +SRC_URI="http://virt-manager.et.redhat.com/download/sources/${PN}/${P}.tar.gz + ${BACKPORTS:+mirror://gentoo/${P}-backports-${BACKPORTS}.tar.bz2}" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RDEPEND=">=app-emulation/libvirt-0.7.0[python] + dev-python/urlgrabber" +DEPEND="${RDEPEND}" + +PYTHON_MODNAME="virtconv virtinst" + +src_prepare() { + [[ -n ${BACKPORTS} ]] && \ + EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ + epatch + + distutils_src_prepare +} + |