blob: 6633e7f85984f6d9b76a4e78fe893ccd7c4bcbb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/libvirt/libvirt-0.1.3.ebuild,v 1.2 2006/08/02 20:16:47 agriffis Exp $
DESCRIPTION="C toolkit to manipulate virtual machines"
HOMEPAGE="http://www.libvirt.org/"
SRC_URI="ftp://libvirt.org/libvirt/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-libs/readline
sys-libs/ncurses
dev-libs/libxml2
app-emulation/xen-tools
dev-lang/python"
src_install() {
make DESTDIR=${D} install || die
mv ${D}/usr/share/doc/{${PN}-python*,${P}/python}
}
|