diff options
author | itojun <itojun@pkgsrc.org> | 2002-03-28 02:17:18 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2002-03-28 02:17:18 +0000 |
commit | 30f6b41ac2222b85cb73a25d20d35a59527d1d1c (patch) | |
tree | 9f5fb8092f6792224b952fa0307eefc005b1ad9b /net/nsd | |
parent | 0ab76cd9f0efd7effcb9b88a574a189b0c283fc6 (diff) | |
download | pkgsrc-30f6b41ac2222b85cb73a25d20d35a59527d1d1c.tar.gz |
nsd, authoritative-only nameserver
Diffstat (limited to 'net/nsd')
-rw-r--r-- | net/nsd/DESCR | 12 | ||||
-rw-r--r-- | net/nsd/Makefile | 18 | ||||
-rw-r--r-- | net/nsd/PLIST | 7 | ||||
-rw-r--r-- | net/nsd/distinfo | 5 | ||||
-rw-r--r-- | net/nsd/patches/patch-aa | 22 |
5 files changed, 64 insertions, 0 deletions
diff --git a/net/nsd/DESCR b/net/nsd/DESCR new file mode 100644 index 00000000000..6adc5fd11e4 --- /dev/null +++ b/net/nsd/DESCR @@ -0,0 +1,12 @@ +This is an ALPHA release of Name Server Daemon (NSD) version 1.0. + +NSD is a complete implementation of an autoritative DNS nameserver. +For further information about what NSD is and what NSD is not please +consult the REQUIREMENTS document which is a part of this distribution +(thanks to Olaf). + +Please do not distribute this APLHA release further without permission. +This distribution is available on request per email to nsd-team@nlnetlabs.nl + +The final version 1.0 of NSD will be available for public download under +open source software license (BSD). diff --git a/net/nsd/Makefile b/net/nsd/Makefile new file mode 100644 index 00000000000..ffeaf9b5e33 --- /dev/null +++ b/net/nsd/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/03/28 02:17:18 itojun Exp $ + +DISTNAME= nsd-1.0-alpha +PKGNAME= nsd-0.9 +CATEGORIES= net +#MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.en.html +COMMENT= authoritative-only DNS server + +_FETCH_MESSAGE= \ + ${ECHO} '======================================================='; \ + ${ECHO} ' You need to get download password'; \ + ${ECHO} ' and fetch on your own.'; \ + ${ECHO} '=======================================================' + +.include "../../mk/bsd.pkg.mk" diff --git a/net/nsd/PLIST b/net/nsd/PLIST new file mode 100644 index 00000000000..36258b45db8 --- /dev/null +++ b/net/nsd/PLIST @@ -0,0 +1,7 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/03/28 02:17:18 itojun Exp $ +sbin/nsd +sbin/nsdc +sbin/zonec +man/man8/nsd.8 +man/man8/nsdc.8 +man/man8/zonec.8 diff --git a/net/nsd/distinfo b/net/nsd/distinfo new file mode 100644 index 00000000000..4a2a7bf2d7c --- /dev/null +++ b/net/nsd/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/03/28 02:17:18 itojun Exp $ + +SHA1 (nsd-1.0-alpha.tar.gz) = 320d035aa47cdaa06f6d41ae3b4f0bd8ba0cd912 +Size (nsd-1.0-alpha.tar.gz) = 48910 bytes +SHA1 (patch-aa) = 9a724505a27eef2d145b9fa42d61ce46ad5ca54b diff --git a/net/nsd/patches/patch-aa b/net/nsd/patches/patch-aa new file mode 100644 index 00000000000..15ccc0cc178 --- /dev/null +++ b/net/nsd/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/03/28 02:17:18 itojun Exp $ + +--- Makefile- Wed Mar 20 08:13:49 2002 ++++ Makefile Wed Mar 20 08:13:58 2002 +@@ -41,15 +41,14 @@ + # Run-time enviroment settings + + # The directory where the nsd nsdc and zonec binaries will be installed +-PREFIX = /usr/local + NSDBINDIR = ${PREFIX}/sbin + NSDMANDIR = ${PREFIX}/man/man8 + + # The directory where the master zone files are located +-NSDZONESDIR = ${PREFIX}/etc/nsd ++NSDZONESDIR = /etc/nsd + + # The file containing the list of the zones to be compiled into the NSD database +-NSDZONES = ${PREFIX}/etc/nsd/nsd.zones ++NSDZONES = /etc/nsd/nsd.zones + + # The flags to pass to the NSD on startup + NSDFLAGS = |