blob: 7eebfa70a64a51c224d666c174dfba39f838ec9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/libosinfo-0.0.1.ebuild,v 1.1 2011/11/16 01:50:40 nirbheek Exp $
EAPI="4"
GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
inherit gnome2
DESCRIPTION="GObject library for managing information about real and virtual OSes"
HOMEPAGE="https://fedorahosted.org/libosinfo/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
SRC_URI="https://fedorahosted.org/releases/l/i/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
IUSE="doc +introspection +vala test"
REQUIRED_USE="vala? ( introspection )"
RDEPEND="
dev-libs/glib:2
>=dev-libs/libxml2-2.6.0:2
introspection? ( >=dev-libs/gobject-introspection-0.9.0 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( >=dev-util/gtk-doc-1.10 )
introspection? ( dev-libs/check )
vala? ( dev-lang/vala:0.14 )"
pkg_setup() {
DOCS="AUTHORS ChangeLog NEWS README"
# --enable-udev only installs udev rules
G2CONF="--disable-coverage
--disable-static
--enable-udev
--with-udev-rulesdir=/lib/udev/rules.d
VAPIGEN=$(type -P vapigen-0.14)
$(use_enable introspection)
$(use_enable test tests)
$(use_enable vala)"
}
|