summaryrefslogtreecommitdiffstats
path: root/meta/packages/avahi/avahi.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/avahi/avahi.inc')
-rw-r--r--meta/packages/avahi/avahi.inc66
1 files changed, 66 insertions, 0 deletions
diff --git a/meta/packages/avahi/avahi.inc b/meta/packages/avahi/avahi.inc
new file mode 100644
index 0000000000..19ef64f0e1
--- /dev/null
+++ b/meta/packages/avahi/avahi.inc
@@ -0,0 +1,66 @@
1DESCRIPTION = "Avahi implements the DNS-SD over Multicast DNS"
2AUTHOR = "Lennart Poettering <lennart@poettering.net>"
3HOMEPAGE = "http://avahi.org"
4SECTION = "network"
5PRIORITY = "optional"
6LICENSE = "GPL"
7
8DEPENDS = "expat libdaemon dbus"
9RRECOMMENDS = "libnss-mdns"
10RRECOMMENDS_avahi-daemon = "libnss-mdns"
11
12SRC_URI = "http://avahi.org/download/avahi-${PV}.tar.gz"
13
14inherit autotools pkgconfig update-rc.d
15
16EXTRA_OECONF = "--with-distro=debian --disable-gdbm --disable-gtk --disable-mono --disable-monodoc --disable-qt3 --disable-qt4 --disable-python"
17
18PACKAGES =+ "avahi-daemon libavahi-common libavahi-core libavahi-client avahi-dnsconfd libavahi-glib avahi-autoipd avahi-utils"
19
20FILES_libavahi-common = "${libdir}/libavahi-common.so.*"
21FILES_libavahi-core = "${libdir}/libavahi-core.so.*"
22FILES_avahi-daemon = "${sbindir}/avahi-daemon \
23 ${sysconfdir}/avahi/avahi-daemon.conf \
24 ${sysconfdir}/avahi/hosts \
25 ${sysconfdir}/avahi/services \
26 ${sysconfdir}/dbus-1 \
27 ${sysconfdir}/init.d/avahi-daemon \
28 ${datadir}/avahi/introspection/*.introspect \
29 ${datadir}/avahi/avahi-service.dtd \
30 ${datadir}/avahi/service-types"
31FILES_libavahi-client = "${libdir}/libavahi-client.so.*"
32FILES_avahi-dnsconfd = "${sbindir}/avahi-dnsconfd \
33 ${sysconfdir}/avahi/avahi-dnsconfd.action \
34 ${sysconfdir}/init.d/avahi-dnsconfd"
35FILES_libavahi-glib = "${libdir}/libavahi-glib.so.*"
36FILES_avahi-utils = "${bindir}/avahi-*"
37
38CONFFILES_avahi-daemon = "${sysconfdir}/avahi/avahi-daemon.conf"
39
40INITSCRIPT_PACKAGES = "avahi-daemon avahi-dnsconfd"
41INITSCRIPT_NAME_avahi-daemon = "avahi-daemon"
42INITSCRIPT_PARAMS_avahi-daemon = "defaults 21 19"
43INITSCRIPT_NAME_avahi-dnsconfd = "avahi-dnsconfd"
44INITSCRIPT_PARAMS_avahi-dnsconfd = "defaults 22 19"
45
46# At the time the postinst runs, dbus might not be setup so only restart if running
47
48pkg_postinst_avahi-daemon () {
49 # can't do this offline
50 if [ "x$D" != "x" ]; then
51 exit 1
52 fi
53 grep avahi /etc/group || addgroup avahi
54 grep avahi /etc/passwd || adduser --disabled-password --system --home /var/run/avahi-daemon --no-create-home avahi --ingroup avahi -g Avahi
55
56 DBUSPID=`pidof dbus-daemon`
57
58 if [ "x$DBUSPID" != "x" ]; then
59 /etc/init.d/dbus-1 force-reload
60 fi
61}
62
63pkg_postrm_avahi-daemon () {
64 deluser avahi || true
65 delgroup avahi || true
66}