From f05cc3581fa0199d92f43fe9615961c419638db6 Mon Sep 17 00:00:00 2001 From: Donnie Berkholz Date: Mon, 15 Oct 2007 11:17:14 +0000 Subject: Adds some new features like remote access and OpenVZ (although the latter may only be at the libvirt level so far). Package-Manager: portage-2.1.3.13 --- app-emulation/libvirt/libvirt-0.3.3.ebuild | 41 ++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app-emulation/libvirt/libvirt-0.3.3.ebuild (limited to 'app-emulation/libvirt/libvirt-0.3.3.ebuild') diff --git a/app-emulation/libvirt/libvirt-0.3.3.ebuild b/app-emulation/libvirt/libvirt-0.3.3.ebuild new file mode 100644 index 000000000000..e3069a2cbe88 --- /dev/null +++ b/app-emulation/libvirt/libvirt-0.3.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.3.3.ebuild,v 1.1 2007/10/15 11:16:02 dberkholz Exp $ + +DESCRIPTION="C toolkit to manipulate virtual machines" +HOMEPAGE="http://www.libvirt.org/" +SRC_URI="http://libvirt.org/sources/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="qemu xen" + +DEPEND="sys-libs/readline + sys-libs/ncurses + dev-libs/libxml2 + qemu? ( app-emulation/qemu ) + xen? ( app-emulation/xen-tools ) + dev-lang/python + sys-fs/sysfsutils" + +pkg_setup() { + if ! use qemu && ! use xen; then + local msg="You must enable one of these USE flags: qemu xen" + eerror "$msg" + die "$msg" + fi +} + +src_compile() { + econf \ + $(use_with qemu) \ + $(use_with xen) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR=${D} install || die + mv ${D}/usr/share/doc/{${PN}-python*,${P}/python} +} -- cgit v1.2.3-65-gdbad