blob: 36618a81619775670b3503967e23af6d2e0cdb6b (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg gnome2-utils meson udev
DESCRIPTION="IIO sensors to D-Bus proxy"
HOMEPAGE="https://gitlab.freedesktop.org/hadess/iio-sensor-proxy/"
SRC_URI="https://gitlab.freedesktop.org/hadess/iio-sensor-proxy/-/archive/${PV}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
IUSE="systemd"
RDEPEND="
dev-libs/glib:*
gnome-base/gnome-common
>=sys-auth/polkit-0.91
>=dev-libs/libgudev-237
systemd? (
!sys-apps/openrc
sys-apps/systemd
)
virtual/udev
"
DEPEND="
${RDEPEND}
dev-build/gtk-doc-am
virtual/pkgconfig
"
src_prepare() {
if use !systemd ; then
# patch out call of systemd directory
eapply "${FILESDIR}/no-systemd.patch"
fi
eapply_user
}
src_install() {
meson_src_install
doinitd "${FILESDIR}/iio-sensor-proxy"
}
pkg_postinst() {
xdg_pkg_postinst
gnome2_schemas_update
udev_reload
}
pkg_postrm() {
xdg_pkg_postrm
gnome2_schemas_update
}
|