summaryrefslogtreecommitdiff
path: root/package/libvirt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-09-16 22:45:57 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-09-16 22:45:57 +0200
commitcb4f3df4a9ffeee06b0ecf746172343eb442220f (patch)
tree3f7be7cd9af92877873834cfd05835837a404c0c /package/libvirt
parent81c4c7c2cf2c5ff27a6c02e41bf484a53ea942c2 (diff)
make libvirt usable, add python
not very well tested, but runs on shutlle
Diffstat (limited to 'package/libvirt')
-rw-r--r--package/libvirt/Config.in1
-rw-r--r--package/libvirt/Makefile8
2 files changed, 8 insertions, 1 deletions
diff --git a/package/libvirt/Config.in b/package/libvirt/Config.in
index e4a322b18..9084bcfb2 100644
--- a/package/libvirt/Config.in
+++ b/package/libvirt/Config.in
@@ -3,6 +3,7 @@ config ADK_PACKAGE_LIBVIRT
tristate
select ADK_PACKAGE_LIBXML2
select ADK_PACKAGE_LIBGNUTLS
+ select ADK_PACKAGE_BRIDGE_UTILS
default n
help
http://www.libvirt.org
diff --git a/package/libvirt/Makefile b/package/libvirt/Makefile
index dcdb0804b..0ff316c00 100644
--- a/package/libvirt/Makefile
+++ b/package/libvirt/Makefile
@@ -23,11 +23,17 @@ CONFIGURE_ARGS+= --without-xen \
--without-uml \
--without-esx \
--without-openvz \
+ --without-vbox \
--without-sasl
BUILD_STYLE:= auto
INSTALL_STYLE:= auto
post-install:
- ${INSTALL_DIR} ${IDIR_LIBVIRT}/usr/lib
+ ${INSTALL_DIR} ${IDIR_LIBVIRT}/usr/lib ${IDIR_LIBVIRT}/usr/bin
+ ${INSTALL_DIR} ${IDIR_LIBVIRT}/etc/libvirt ${IDIR_LIBVIRT}/usr/sbin
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/virsh ${IDIR_LIBVIRT}/usr/bin
+ ${CP} ${WRKINST}/usr/lib/libvirt.so* ${IDIR_LIBVIRT}/usr/lib
+ ${CP} ${WRKINST}/etc/libvirt/* ${IDIR_LIBVIRT}/etc/libvirt
+ ${INSTALL_BIN} ${WRKINST}/usr/sbin/libvirtd ${IDIR_LIBVIRT}/usr/sbin
include ${TOPDIR}/mk/pkg-bottom.mk