blob: 2e7e56b9b28f7d46c9440d2281c51bdfa4fcadbd (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit autotools eutils
DESCRIPTION="A geoinformation D-Bus service"
HOMEPAGE="https://freedesktop.org/wiki/Software/GeoClue"
SRC_URI="https://freedesktop.org/~hadess/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86 ~amd64-fbsd"
IUSE="connman geonames gps gsmloc gtk hostip manual networkmanager nominatim plazes skyhook static-libs yahoo-geo"
REQUIRED_USE="skyhook? ( networkmanager )"
RDEPEND=">=dev-libs/dbus-glib-0.100
>=dev-libs/glib-2
dev-libs/libxml2
sys-apps/dbus
gps? ( sci-geosciences/gpsd )
gtk? ( x11-libs/gtk+:2 )
networkmanager? ( net-misc/networkmanager )
skyhook? ( net-libs/libsoup )"
DEPEND="${RDEPEND}
dev-util/gtk-doc-am
virtual/pkgconfig"
src_prepare() {
epatch \
"${FILESDIR}"/${PN}-0.12.0_p20110307-use-flag.patch \
"${FILESDIR}"/${PN}-0.12.0_p20110307-use-fallback-mac.patch \
"${FILESDIR}"/${P}-gpsd.patch
sed -i -e '/CFLAGS/s:-g ::' configure.ac || die #399177
sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || 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-silent-rules \
$(use_enable static-libs static) \
--disable-schemas-compile \
$(use_enable gtk tests) \
$(use_enable gtk) \
--disable-conic \
$(use_enable connman) \
$(use_enable networkmanager) \
--disable-gypsy \
$(use_enable gps gpsd) \
$(use_enable skyhook) \
$(use_enable geonames) \
$(use_enable gsmloc) \
$(use_enable hostip) \
$(use_enable manual) \
$(use_enable nominatim) \
$(use_enable plazes) \
$(use_enable yahoo-geo yahoo) \
--with-html-dir=/usr/share/doc/${PF}/html
}
src_install() {
emake DESTDIR="${D}" install
use gtk && dobin test/.libs/geoclue-test-gui
prune_libtool_files
}
|