blob: e2698e216da1dea5db084d8f74a80174202c7fb9 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome.org meson systemd udev
DESCRIPTION="WebDav server implementation using libsoup"
HOMEPAGE="https://wiki.gnome.org/phodav https://gitlab.gnome.org/GNOME/phodav"
LICENSE="LGPL-2.1+"
SLOT="3.0"
KEYWORDS="~alpha amd64 ~arm arm64 ~ppc ppc64 x86"
IUSE="gtk-doc systemd test zeroconf"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/glib-2.51.2:2
>=net-libs/libsoup-3.0.0:3.0
dev-libs/libxml2
zeroconf? ( net-dns/avahi[dbus] )
!net-libs/phodav:2.0
"
DEPEND="${RDEPEND}"
BDEPEND="
app-text/asciidoc
app-text/docbook-xml-dtd:4.5
app-text/xmlto
sys-devel/gettext
virtual/pkgconfig
gtk-doc? ( dev-util/gtk-doc )
test? ( gnome-base/dconf )
"
src_prepare() {
default
if ! use zeroconf ; then
sed -i -e 's|avahi-daemon.service||' data/spice-webdavd.service || die
fi
}
src_configure() {
local emesonargs=(
$(meson_feature gtk-doc gtk_doc)
$(meson_feature zeroconf avahi)
-Dsystemdsystemunitdir="$(systemd_get_systemunitdir)"
-Dudevrulesdir="$(get_udevdir)/rules.d"
)
meson_src_configure
}
src_install() {
meson_src_install
if ! use systemd ; then
newinitd "${FILESDIR}/spice-webdavd.initd" spice-webdavd
udev_dorules "${FILESDIR}/70-spice-webdavd.rules"
fi
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}
|