mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
Signed-off-by: Sasha Finkelstein <fnkl.kernel@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44450 Signed-off-by: Sam James <sam@gentoo.org>
67 lines
1.7 KiB
Bash
67 lines
1.7 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..14} )
|
|
PYTHON_REQ_USE="xml(+)"
|
|
inherit meson python-any-r1 systemd vala xdg
|
|
|
|
DESCRIPTION="Location information D-Bus service"
|
|
HOMEPAGE="https://gitlab.freedesktop.org/geoclue/geoclue/-/wikis/home"
|
|
SRC_URI="https://gitlab.freedesktop.org/geoclue/${PN}/-/archive/${PV}/${P}.tar.bz2"
|
|
|
|
LICENSE="LGPL-2.1+ GPL-2+"
|
|
SLOT="2.0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86"
|
|
IUSE="+introspection gtk-doc modemmanager vala zeroconf"
|
|
REQUIRED_USE="vala? ( introspection )"
|
|
|
|
DEPEND="
|
|
>=dev-libs/glib-2.74:2
|
|
>=dev-libs/json-glib-0.14.0
|
|
>=net-libs/libsoup-3.0.0:3.0
|
|
introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2:= )
|
|
modemmanager? ( >=net-misc/modemmanager-1.12 )
|
|
zeroconf? ( >=net-dns/avahi-0.6.10[dbus] )
|
|
x11-libs/libnotify
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
acct-user/geoclue
|
|
sys-apps/dbus
|
|
"
|
|
BDEPEND="${PYTHON_DEPS}
|
|
dev-util/gdbus-codegen
|
|
dev-util/glib-utils
|
|
gtk-doc? (
|
|
app-text/docbook-xml-dtd:4.1.2
|
|
>=dev-util/gtk-doc-1 )
|
|
>=sys-devel/gettext-0.19.8
|
|
virtual/pkgconfig
|
|
vala? ( $(vala_depend) )
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
use vala && vala_setup
|
|
xdg_environment_reset
|
|
}
|
|
|
|
src_configure() {
|
|
local emesonargs=(
|
|
-Dlibgeoclue=true
|
|
$(meson_use introspection)
|
|
$(meson_use vala vapi)
|
|
$(meson_use gtk-doc)
|
|
$(meson_use modemmanager 3g-source)
|
|
$(meson_use modemmanager cdma-source)
|
|
$(meson_use modemmanager modem-gps-source)
|
|
$(meson_use zeroconf nmea-source)
|
|
-Dcompass=true
|
|
-Denable-backend=true
|
|
-Ddemo-agent=true
|
|
-Dsystemd-system-unit-dir="$(systemd_get_systemunitdir)"
|
|
-Ddbus-srv-user=geoclue
|
|
)
|
|
meson_src_configure
|
|
}
|