blob: 906bfa9b64e9e919fb44ec2fce59b129ad7610ad (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liboobs/liboobs-2.30.1.ebuild,v 1.2 2010/07/31 19:46:00 pacho Exp $
GCONF_DEBUG="no"
inherit gnome2
DESCRIPTION="Liboobs is a wrapping library to the System Tools Backends."
HOMEPAGE="http://www.gnome.org"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ~sparc ~x86"
IUSE="doc"
# FIXME: according to the ChangLog hal is optional but it doesn't
# have a configure switch
# FIXME: check if policykit should be checked in configure ?
RDEPEND=">=dev-libs/glib-2.14
>=dev-libs/dbus-glib-0.70
>=app-admin/system-tools-backends-2.9.2"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9
doc? ( >=dev-util/gtk-doc-1.9 )"
DOCS="AUTHORS ChangeLog NEWS README"
pkg_setup() {
G2CONF="${G2CONF} --with-hal=no --disable-static"
}
|