diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2012-12-12 21:03:31 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2012-12-12 21:03:31 +0000 |
commit | 74c08c05dd878193d990a6f91349dd6558183499 (patch) | |
tree | 5519abc1cd5fbcd809698aa537e4d3479fe262c7 /sys-libs/libosinfo | |
parent | sci-libs/superlu: Respect AR and RANLIB (diff) | |
download | gentoo-2-74c08c05dd878193d990a6f91349dd6558183499.tar.gz gentoo-2-74c08c05dd878193d990a6f91349dd6558183499.tar.bz2 gentoo-2-74c08c05dd878193d990a6f91349dd6558183499.zip |
Version bump
(Portage version: 2.2.0_alpha148/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-libs/libosinfo')
-rw-r--r-- | sys-libs/libosinfo/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libosinfo/libosinfo-0.2.2.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/sys-libs/libosinfo/ChangeLog b/sys-libs/libosinfo/ChangeLog index 4ca22212fb1f..260276f0ef0a 100644 --- a/sys-libs/libosinfo/ChangeLog +++ b/sys-libs/libosinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libosinfo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.14 2012/12/11 15:45:42 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.15 2012/12/12 21:03:31 cardoe Exp $ + +*libosinfo-0.2.2 (12 Dec 2012) + + 12 Dec 2012; Doug Goldstein <cardoe@gentoo.org> +libosinfo-0.2.2.ebuild: + Version bump 11 Dec 2012; Samuli Suominen <ssuominen@gentoo.org> libosinfo-0.2.0.ebuild, libosinfo-0.2.1.ebuild: diff --git a/sys-libs/libosinfo/libosinfo-0.2.2.ebuild b/sys-libs/libosinfo/libosinfo-0.2.2.ebuild new file mode 100644 index 000000000000..0b5cba95f062 --- /dev/null +++ b/sys-libs/libosinfo/libosinfo-0.2.2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.2.ebuild,v 1.1 2012/12/12 21:03:31 cardoe Exp $ + +EAPI=4 +VALA_MIN_API_VERSION="0.16" +VALA_USE_DEPEND="vapigen" + +inherit eutils toolchain-funcs vala udev + +DESCRIPTION="GObject library for managing information about real and virtual OSes" +HOMEPAGE="http://fedorahosted.org/libosinfo/" +SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+introspection +vala test" + +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=">=dev-libs/glib-2:2 + >=dev-libs/libxslt-1.0.0 + dev-libs/libxml2 + net-libs/libsoup:2.4 + net-libs/libsoup-gnome:2.4 + introspection? ( >=dev-libs/gobject-introspection-0.9.0 )" +DEPEND="${RDEPEND} + dev-util/gtk-doc-am + virtual/pkgconfig + test? ( dev-libs/check ) + vala? ( $(vala_depend) )" + +src_prepare() { + use vala && vala_src_prepare +} + +src_configure() { + # --enable-udev is only for rules.d file install + econf \ + --disable-static \ + --disable-silent-rules \ + $(use_enable test tests) \ + $(use_enable introspection) \ + $(use_enable vala) \ + --enable-udev \ + --disable-coverage \ + --with-udev-rulesdir="$(udev_get_udevdir)"/rules.d \ + --with-html-dir=/usr/share/doc/${PF}/html +} + +src_install() { + default + prune_libtool_files +} |