diff options
-rw-r--r-- | BitKeeper/etc/logging_ok | 1 | ||||
-rw-r--r-- | packages/howl/files/mdnsresponder.init | 0 | ||||
-rw-r--r-- | packages/howl/howl_1.0.0.bb | 28 |
3 files changed, 29 insertions, 0 deletions
diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok index 694b939807..520036ca7b 100644 --- a/BitKeeper/etc/logging_ok +++ b/BitKeeper/etc/logging_ok @@ -89,6 +89,7 @@ patrick@gollum.(none) pb@dixie.nexus.co.uk pb@mebius.(none) pb@mebius.reciva.com +pb@mill.internal.reciva.com pb@mill.nexus.co.uk pb@stealth.(none) pb@stealth.nexus.co.uk diff --git a/packages/howl/files/mdnsresponder.init b/packages/howl/files/mdnsresponder.init new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/howl/files/mdnsresponder.init diff --git a/packages/howl/howl_1.0.0.bb b/packages/howl/howl_1.0.0.bb index e69de29bb2..9acc33018c 100644 --- a/packages/howl/howl_1.0.0.bb +++ b/packages/howl/howl_1.0.0.bb @@ -0,0 +1,28 @@ +SRC_URI = "http://www.porchdogsoft.com/download/howl-${PV}.tar.gz \ + file://posix.patch;patch=1;pnum=0 \ + file://configure.patch;patch=1;pnum=0 \ + file://mdnsresponder.init" +LICENSE = "howl" + +PR = "r2" + +INITSCRIPT_NAME = "mdnsresponder" +INITSCRIPT_PARAMS = "defaults" + +PACKAGES += "libhowl libmdnsresponder" + +FILES_${PN} = "${bindir} ${sbindir} ${sysconfdir}" +FILES_libhowl = "${libdir}/libhowl.so.*" +FILES_libmdnsresponder = "${libdir}/libmDNSResponder.so.*" +FILES_${PN}-doc += "${datadir}/howl/help" + +do_install_append() { + install -d ${D}${sysconfdir}/init.d + install -d ${D}${sbindir} + install -m 0755 ${WORKDIR}/mdnsresponder.init ${D}${sysconfdir}/init.d/mdnsresponder + # Debian puts it here, so let's do the same + mv ${D}${bindir}/mDNSResponder ${D}${sbindir} +} + +inherit autotools update-rc.d + |