diff options
Diffstat (limited to 'nsd')
-rw-r--r-- | nsd/nsd_2.0.0.oe | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/nsd/nsd_2.0.0.oe b/nsd/nsd_2.0.0.oe index e69de29bb2..57a6fddb18 100644 --- a/nsd/nsd_2.0.0.oe +++ b/nsd/nsd_2.0.0.oe @@ -0,0 +1,20 @@ +DESCRIPTION = "NSD is an authoritative only, high performance, simple andopen source name server" +SECTION = "net" +PRIORITY = "optional" +MAINTAINER = "Michael Lauer <mickey@Vanille.de>" +RDEPENDS = "libc6" +DEPENDS = "virtual/libc" + +SRC_URI = http://www.nlnetlabs.nl/downloads/nsd/${P}.tar.gz + +inherit autotools libtool + +do_install() { + oe_runconf configdir=${D}/etc/nsd \ + pidfile=${D}/var/run/nsd.pid \ + zonesfile=${D}/etc/nsd/nsd.zones \ + dbfile=${D}/etc/nsd/nsd.db \ + configfile=${D}/etc/nsd/nsdc.conf \ + zonesdir=${D}/etc/nsd +} + |