summaryrefslogtreecommitdiff
blob: 2b3d10bcabf6cfd6be565fbe1ab179a4370b3444 (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/geoclue/geoclue-0.12.0_p20110307.ebuild,v 1.9 2012/05/25 17:29:17 aballier Exp $

EAPI=4
inherit autotools eutils

DESCRIPTION="A geoinformation D-Bus service"
HOMEPAGE="http://freedesktop.org/wiki/Software/GeoClue"
SRC_URI="http://dev.gentoo.org/~signals/${P}.tar.bz2"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm x86 ~amd64-fbsd"
IUSE="geonames gps gsmloc gtk hostip manual networkmanager nominatim plazes
	skyhook yahoo-geo"

REQUIRED_USE="skyhook? ( networkmanager )"

RDEPEND="dev-libs/dbus-glib
	dev-libs/glib:2
	dev-libs/libxml2
	gnome-base/gconf
	skyhook? ( net-libs/libsoup )
	sys-apps/dbus
	gtk? ( x11-libs/gtk+:2 )
	gps? ( <=sci-geosciences/gpsd-2.95-r1 )
	networkmanager? ( net-misc/networkmanager )"
DEPEND="${RDEPEND}
	dev-util/gtk-doc
	dev-util/gtk-doc-am"

src_prepare() {
	epatch "${FILESDIR}"/${P}-use-flag.patch \
		"${FILESDIR}"/${P}-use-fallback-mac.patch
	sed -i -e 's/-Werror//' configure.ac || die #363723
	gtkdocize || die
	eautoreconf
}

src_configure() {
	# Conic is only for Maemo. Don't enable.
	# Gypsy has multiple vulnerabilities:
	# https://bugs.freedesktop.org/show_bug.cgi?id=33431
	econf \
		--disable-conic \
		--disable-gypsy \
		$(use_enable geonames) \
		$(use_enable gps gpsd) \
		$(use_enable gsmloc) \
		$(use_enable gtk) \
		$(use_enable hostip) \
		$(use_enable manual) \
		$(use_enable networkmanager) \
		$(use_enable nominatim) \
		$(use_enable plazes) \
		$(use_enable skyhook) \
		$(use_enable yahoo-geo yahoo)
}

src_install() {
	emake DESTDIR="${D}" install
	use gtk && dobin test/.libs/geoclue-test-gui
}