diff options
author | 2013-03-25 12:15:48 +0000 | |
---|---|---|
committer | 2013-03-25 12:15:48 +0000 | |
commit | 79abe55efd8044eda4ea43e0435d1ed925c9eb82 (patch) | |
tree | b79d569d40b394e19cb121a8418248ef96edd01f /app-emulation/libguestfs/libguestfs-1.18.11.ebuild | |
parent | Use installsources dir for find-function-C-source-directory if that feature i... (diff) | |
download | gentoo-2-79abe55efd8044eda4ea43e0435d1ed925c9eb82.tar.gz gentoo-2-79abe55efd8044eda4ea43e0435d1ed925c9eb82.tar.bz2 gentoo-2-79abe55efd8044eda4ea43e0435d1ed925c9eb82.zip |
Bump, bug #462370. Thanks to slepnoga.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
Diffstat (limited to 'app-emulation/libguestfs/libguestfs-1.18.11.ebuild')
-rw-r--r-- | app-emulation/libguestfs/libguestfs-1.18.11.ebuild | 147 |
1 files changed, 147 insertions, 0 deletions
diff --git a/app-emulation/libguestfs/libguestfs-1.18.11.ebuild b/app-emulation/libguestfs/libguestfs-1.18.11.ebuild new file mode 100644 index 000000000000..3ec3ed61583c --- /dev/null +++ b/app-emulation/libguestfs/libguestfs-1.18.11.ebuild @@ -0,0 +1,147 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/libguestfs/libguestfs-1.18.11.ebuild,v 1.1 2013/03/25 12:15:48 maksbotan Exp $ + +EAPI="5" + +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 + +inherit bash-completion-r1 autotools-utils versionator eutils \ +multilib linux-info perl-module + +MY_PV_1="$(get_version_component_range 1-2)" +MY_PV_2="$(get_version_component_range 2)" + +[[ $(( $(get_version_component_range 2) % 2 )) -eq 0 ]] && SD="stable" || SD="development" + +DESCRIPTION="Tools for accessing, inspect and modifying virtual machine (VM) disk images" +HOMEPAGE="http://libguestfs.org/" +SRC_URI="http://libguestfs.org/download/${MY_PV_1}-${SD}/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2" +SLOT="0/${MY_PV_1}" +# Upstream NOT supported 32-bit version, keyword in own risk +KEYWORDS="~amd64" +IUSE="erlang +fuse debug ocaml doc +perl ruby static-libs +selinux systemtap introspection inspect-icons" + +# Failires - doc + +COMMON_DEPEND=" + sys-libs/ncurses + sys-devel/gettext + >=app-misc/hivex-1.3.1 + dev-libs/libpcre + app-arch/cpio + dev-lang/perl + app-cdr/cdrkit + >=app-emulation/qemu-1.0[qemu_user_targets_x86_64,qemu_softmmu_targets_x86_64,tci,systemtap?] + sys-apps/fakeroot + sys-apps/file + app-emulation/libvirt + dev-libs/libxml2:2 + >=sys-apps/fakechroot-2.8 + >=app-admin/augeas-0.7.1 + sys-fs/squashfs-tools + dev-libs/libconfig + dev-libs/libpcre + sys-libs/readline + >=sys-libs/db-4.6 + perl? ( virtual/perl-ExtUtils-MakeMaker + >=dev-perl/Sys-Virt-0.2.4 + virtual/perl-Getopt-Long + virtual/perl-Data-Dumper + dev-perl/libintl-perl + >=app-misc/hivex-1.3.1[perl?] + dev-perl/String-ShellQuote + ) + fuse? ( sys-fs/fuse ) + introspection? ( + >=dev-libs/gobject-introspection-1.30.0 + dev-libs/gjs + ) + selinux? ( sys-libs/libselinux sys-libs/libsemanage ) + systemtap? ( dev-util/systemtap ) + ocaml? ( dev-lang/ocaml[ocamlopt] dev-ml/findlib[ocamlopt] ) + erlang? ( dev-lang/erlang ) + inspect-icons? ( media-libs/netpbm + media-gfx/icoutils ) + " + +DEPEND="${COMMON_DEPEND} + dev-util/gperf + doc? ( app-text/po4a ) + ruby? ( dev-lang/ruby virtual/rubygems dev-ruby/rake ) + " +RDEPEND="${COMMON_DEPEND} + app-emulation/libguestfs-appliance + " + +PATCHES=("${FILESDIR}"/1.18/0*.patch ) + +DOCS=(AUTHORS BUGS HACKING README RELEASE-NOTES ROADMAP TODO) + +pkg_setup () { + CONFIG_CHECK="~KVM ~VIRTIO" + [ -n "${CONFIG_CHECK}" ] && check_extra_config; +} + +src_prepare() { + autotools-utils_src_prepare +} + +src_configure() { + + # Disable feature test for kvm for more reason + # i.e: not loaded module in __build__ time, + # build server not supported kvm, etc. ... + # + # In fact, this feature is virtio support and requires + # configured kernel. + export vmchannel_test=no + + local myeconfargs=( + --disable-appliance + --disable-daemon + --with-drive-if=virtio + --with-net-if=virtio-net-pci + --with-extra="-gentoo" + --with-readline + --disable-php + --disable-python + --without-java + $(use_enable perl) + $(use_enable fuse) + $(use_enable ocaml) + $(use_enable ruby) + --disable-haskell + $(use_enable doc) + $(use_enable introspection gobject) + $(use_enable erlang) + $(use_enable systemtap probes) + ) + autotools-utils_src_configure +} + +src_compile() { + autotools-utils_src_compile + +} + +src_test() { + autotools-utils_src_test +} + +src_install() { + strip-linguas -i po + autotools-utils_src_install "LINGUAS=""${LINGUAS}""" + + dobashcomp "${D}/etc"/bash_completion.d/guestfish-bash-completion.sh + + rm -fr "${D}/etc"/bash* || die + + newenvd "${FILESDIR}"/env.file 99"${PN}" + + use perl && fixlocalpod +} |