blob: 809f7289d1d5aa0bae6fb54b79e403522881651b (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/upower/upower-0.9.15.ebuild,v 1.2 2012/05/04 07:37:00 jdhore Exp $
EAPI=4
# PYTHON_DEPEND="test? 3"
# inherit python
DESCRIPTION="D-Bus abstraction for enumerating power devices and querying history and statistics"
HOMEPAGE="http://upower.freedesktop.org/"
SRC_URI="http://upower.freedesktop.org/releases/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug doc +introspection ios kernel_FreeBSD kernel_linux" # test
COMMON_DEPEND=">=dev-libs/dbus-glib-0.90
>=dev-libs/glib-2.21.5:2
sys-apps/dbus
>=sys-auth/polkit-0.101-r1
introspection? ( dev-libs/gobject-introspection )
kernel_linux? (
|| ( >=sys-fs/udev-171-r1[gudev] <sys-fs/udev-171-r1[extras] )
virtual/libusb:1
ios? ( >=app-pda/libimobiledevice-0.9.7
>=app-pda/libplist-0.12 ) )"
RDEPEND="${COMMON_DEPEND}
kernel_linux? ( >=sys-power/pm-utils-1.4.1 )"
DEPEND="${COMMON_DEPEND}
dev-libs/libxslt
app-text/docbook-xsl-stylesheets
>=dev-util/intltool-0.40.0
virtual/pkgconfig
doc? ( dev-util/gtk-doc
app-text/docbook-xml-dtd:4.1.2 )"
DOCS=( AUTHORS HACKING NEWS README )
src_prepare() {
sed -i -e '/DISABLE_DEPRECATED/d' configure || die
}
src_configure() {
local backend
if use kernel_linux; then
backend=linux
elif use kernel_FreeBSD; then
backend=freebsd
else
backend=dummy
fi
econf \
--localstatedir="${EPREFIX}"/var \
$(use_enable introspection) \
--disable-static \
$(use_enable debug verbose-mode) \
--enable-man-pages \
$(use_enable doc gtk-doc) \
--disable-tests \
--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
--with-backend=${backend} \
$(use_with ios idevice)
}
src_install() {
default
keepdir /var/lib/upower #383091
find "${ED}" -name '*.la' -exec rm -f {} +
}
|