diff options
Diffstat (limited to 'meta/packages/avahi/avahi.inc')
-rw-r--r-- | meta/packages/avahi/avahi.inc | 66 |
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 @@ | |||
1 | DESCRIPTION = "Avahi implements the DNS-SD over Multicast DNS" | ||
2 | AUTHOR = "Lennart Poettering <lennart@poettering.net>" | ||
3 | HOMEPAGE = "http://avahi.org" | ||
4 | SECTION = "network" | ||
5 | PRIORITY = "optional" | ||
6 | LICENSE = "GPL" | ||
7 | |||
8 | DEPENDS = "expat libdaemon dbus" | ||
9 | RRECOMMENDS = "libnss-mdns" | ||
10 | RRECOMMENDS_avahi-daemon = "libnss-mdns" | ||
11 | |||
12 | SRC_URI = "http://avahi.org/download/avahi-${PV}.tar.gz" | ||
13 | |||
14 | inherit autotools pkgconfig update-rc.d | ||
15 | |||
16 | EXTRA_OECONF = "--with-distro=debian --disable-gdbm --disable-gtk --disable-mono --disable-monodoc --disable-qt3 --disable-qt4 --disable-python" | ||
17 | |||
18 | PACKAGES =+ "avahi-daemon libavahi-common libavahi-core libavahi-client avahi-dnsconfd libavahi-glib avahi-autoipd avahi-utils" | ||
19 | |||
20 | FILES_libavahi-common = "${libdir}/libavahi-common.so.*" | ||
21 | FILES_libavahi-core = "${libdir}/libavahi-core.so.*" | ||
22 | FILES_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" | ||
31 | FILES_libavahi-client = "${libdir}/libavahi-client.so.*" | ||
32 | FILES_avahi-dnsconfd = "${sbindir}/avahi-dnsconfd \ | ||
33 | ${sysconfdir}/avahi/avahi-dnsconfd.action \ | ||
34 | ${sysconfdir}/init.d/avahi-dnsconfd" | ||
35 | FILES_libavahi-glib = "${libdir}/libavahi-glib.so.*" | ||
36 | FILES_avahi-utils = "${bindir}/avahi-*" | ||
37 | |||
38 | CONFFILES_avahi-daemon = "${sysconfdir}/avahi/avahi-daemon.conf" | ||
39 | |||
40 | INITSCRIPT_PACKAGES = "avahi-daemon avahi-dnsconfd" | ||
41 | INITSCRIPT_NAME_avahi-daemon = "avahi-daemon" | ||
42 | INITSCRIPT_PARAMS_avahi-daemon = "defaults 21 19" | ||
43 | INITSCRIPT_NAME_avahi-dnsconfd = "avahi-dnsconfd" | ||
44 | INITSCRIPT_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 | |||
48 | pkg_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 | |||
63 | pkg_postrm_avahi-daemon () { | ||
64 | deluser avahi || true | ||
65 | delgroup avahi || true | ||
66 | } | ||