diff options
author | 2011-11-08 15:17:51 +0530 | |
---|---|---|
committer | 2011-11-15 07:01:29 +0530 | |
commit | 443c2446c349956ba193c0e98ff9e9a33da1b96c (patch) | |
tree | 37a388ebbb5f431e796294ce50bd4b1bb9a89a18 /app-emulation | |
parent | Add a new package sys-libs/libosinfo, will be used by gnome-boxes (diff) | |
download | gnome-443c2446c349956ba193c0e98ff9e9a33da1b96c.tar.gz gnome-443c2446c349956ba193c0e98ff9e9a33da1b96c.tar.bz2 gnome-443c2446c349956ba193c0e98ff9e9a33da1b96c.zip |
Add new package app-emulation/libvirt-glib, will used by gnome-boxes
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/libvirt-glib/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/libvirt-glib/libvirt-glib-9999.ebuild | 52 |
2 files changed, 53 insertions, 0 deletions
diff --git a/app-emulation/libvirt-glib/Manifest b/app-emulation/libvirt-glib/Manifest new file mode 100644 index 00000000..74e668a9 --- /dev/null +++ b/app-emulation/libvirt-glib/Manifest @@ -0,0 +1 @@ +EBUILD libvirt-glib-9999.ebuild 1160 RMD160 c4c3f3ee7d797203abd080ad3b99801e37caf917 SHA1 2c15760c0160d19432927adecc68d1c20540044d SHA256 73da40ba844a11006c0ae9a2ef7a2f0217cd433545221f8ea13b35671f037dcf diff --git a/app-emulation/libvirt-glib/libvirt-glib-9999.ebuild b/app-emulation/libvirt-glib/libvirt-glib-9999.ebuild new file mode 100644 index 00000000..f164a9a5 --- /dev/null +++ b/app-emulation/libvirt-glib/libvirt-glib-9999.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="4" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" +EGIT_REPO_URI="git://libvirt.org/libvirt-glib.git" + +inherit gnome2 +if [[ ${PV} = 9999 ]]; then + inherit gnome2-live +fi + +DESCRIPTION="GLib and GObject mappings for libvirt" +HOMEPAGE="http://libvirt.org/git/?p=libvirt-glib.git" + +LICENSE="LGPL-2.1" +SLOT="0" +if [[ ${PV} = 9999 ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64 ~x86" +fi +IUSE="doc +introspection +vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=" + dev-libs/libxml2:2 + >=app-emulation/libvirt-0.9.4 + >=dev-libs/glib-2.10:2 + introspection? ( >=dev-libs/gobject-introspection-0.10.8 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( >=dev-util/gtk-doc-1.10 ) + vala? ( dev-lang/vala:0.14 )" + +pkg_setup() { + # NEWS, ChangeLog, are empty in git + # README is empty + DOCS="AUTHORS ChangeLog HACKING NEWS" + # TODO: use_with python when python.eclass is fixed + G2CONF="--disable-test-coverage + --without-python + VAPIGEN=$(type -P vapigen-0.14) + $(use_enable introspection) + $(use_enable vala)" +} + +src_prepare() { + gnome2_src_prepare +} |