blob: e86695c0a05416b200fe8ba80a90a03795bed634 [file] [log] [blame]
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/devicekit-power/devicekit-power-011.ebuild,v 1.2 2009/11/16 21:57:32 eva Exp $
EAPI="2"
inherit gnome2 linux-info
MY_PN="DeviceKit-power"
DESCRIPTION="D-Bus abstraction for enumerating power devices and querying history and statistics"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/DeviceKit"
SRC_URI="http://hal.freedesktop.org/releases/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc test"
RDEPEND=">=dev-libs/glib-2.21.5
>=dev-libs/dbus-glib-0.76
>=sys-fs/udev-145[extras]
>=sys-auth/polkit-0.91
sys-apps/dbus
virtual/libusb:0
"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.40
dev-util/pkgconfig
dev-libs/libxslt
dev-util/gtk-doc-am
doc? ( >=dev-util/gtk-doc-1.3 )
"
S="${WORKDIR}/${MY_PN}-${PV}"
function check_battery() {
# check sysfs power interface, bug #263959
local CONFIG_CHECK="ACPI_SYSFS_POWER"
# TODO(msb): fix build and re-enable check_extra_config
#check_extra_config
}
pkg_setup() {
# Pedantic is currently broken
G2CONF="${G2CONF}
--localstatedir=/var
--disable-ansi
--enable-man-pages
$(use_enable debug verbose-mode)
$(use_enable test tests)
--with-backend=linux
"
check_battery
}
src_prepare() {
gnome2_src_prepare
# Fix crazy cflags
sed 's:-DG.*DISABLE_DEPRECATED::g' -i configure.ac configure \
|| die "sed 1 failed"
# Drop this command line option, because only available since gcc 4.3,
# bug 289873.
sed 's:WARNINGFLAGS_C=\"$WARNINGFLAGS_C -Wtype-limits\"::g' -i configure.ac configure \
|| die "sed 2 failed"
}