diff options
Diffstat (limited to 'meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb')
-rw-r--r-- | meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb new file mode 100644 index 0000000000..69eaa33d60 --- /dev/null +++ b/meta/recipes-connectivity/libnss-mdns/libnss-mdns_0.10.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "NSS module for Multicast DNS name resolution" | ||
2 | HOMEPAGE = "http://0pointer.de/lennart/projects/nss-mdns/" | ||
3 | SECTION = "libs" | ||
4 | PRIORITY = "optional" | ||
5 | |||
6 | LICENSE = "LGPLv2.1+" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
8 | |||
9 | DEPENDS = "avahi" | ||
10 | RDEPENDS = "avahi-daemon" | ||
11 | PR = "r0" | ||
12 | |||
13 | SRC_URI = "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-${PV}.tar.gz" | ||
14 | S = "${WORKDIR}/nss-mdns-${PV}" | ||
15 | |||
16 | inherit autotools | ||
17 | |||
18 | # suppress warning, but don't bother with autonamer | ||
19 | LEAD_SONAME = "libnss_mdns.so" | ||
20 | DEBIANNAME_${PN} = "libnss-mdns" | ||
21 | |||
22 | EXTRA_OECONF = "--libdir=/lib --disable-lynx --enable-avahi" | ||
23 | |||
24 | pkg_postinst () { | ||
25 | cat /etc/nsswitch.conf | grep "hosts:\s*files dns$" > /dev/null && { | ||
26 | cat /etc/nsswitch.conf | sed 's/hosts:\s*files dns/& mdns4/' > /tmp/nsswitch.conf | ||
27 | mv /tmp/nsswitch.conf /etc/nsswitch.conf | ||
28 | } | ||
29 | } | ||
30 | |||
31 | pkg_prerm () { | ||
32 | cat /etc/nsswitch.conf | grep "hosts:\s*files dns mdns$" > /dev/null && { | ||
33 | cat /etc/nsswitch.conf | sed 's/\(hosts:\s*files dns\) mdns4*/\1/' > /tmp/nsswitch.conf | ||
34 | mv /tmp/nsswitch.conf /etc/nsswitch.conf | ||
35 | } | ||
36 | } | ||