diff options
author | itojun <itojun@pkgsrc.org> | 2002-08-28 16:05:50 +0000 |
---|---|---|
committer | itojun <itojun@pkgsrc.org> | 2002-08-28 16:05:50 +0000 |
commit | c0ae009bf06100ac4bb6cd205f2a424f80576058 (patch) | |
tree | f30c7f1969b7aa2bc195b2e74312013d32e5e7d5 /net/nsd | |
parent | 67c126fec10dad2d3467ac5d0710660d509d82e3 (diff) | |
download | pkgsrc-c0ae009bf06100ac4bb6cd205f2a424f80576058.tar.gz |
upgrade to 1.0.1 release candidate 2.
1.0.1
=============
FEATURES:
- NSD drops permissions after binding the sockets
- ``cache'' zones are no longer allowed
- ID.Server & Version.Server compile time options
- AXFR implemented (with tcpwrapper for access control)
- nsdc update and nsdc notify functinality
- using named-xfer with TSIG for inbound axfr
CHANGES:
- the order of records in the database is from now
on significant
- since Berkeley DB doesnt define order for sequential
access it is no longer supported
BUG FIXES:
- white space problem in zonec is fixed
Diffstat (limited to 'net/nsd')
-rw-r--r-- | net/nsd/Makefile | 10 | ||||
-rw-r--r-- | net/nsd/PLIST | 3 | ||||
-rw-r--r-- | net/nsd/distinfo | 8 | ||||
-rw-r--r-- | net/nsd/patches/patch-aa | 29 |
4 files changed, 19 insertions, 31 deletions
diff --git a/net/nsd/Makefile b/net/nsd/Makefile index 6cb38bd7989..654c133462c 100644 --- a/net/nsd/Makefile +++ b/net/nsd/Makefile @@ -1,14 +1,14 @@ -# $NetBSD: Makefile,v 1.6 2002/05/08 08:41:21 itojun Exp $ +# $NetBSD: Makefile,v 1.7 2002/08/28 16:05:50 itojun Exp $ -DISTNAME= nsd-1.0.0-beta2 -PKGNAME= nsd-1.0.0rc2 +DISTNAME= nsd-1.0.1r2 +PKGNAME= nsd-1.0.1rc2 CATEGORIES= net -MASTER_SITES= http://www.nlnetlabs.nl/downloads/ +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 -WRKSRC= ${WRKDIR}/nsd +PKG_SYSCONFSUBDIR= nsd .include "../../mk/bsd.pkg.mk" diff --git a/net/nsd/PLIST b/net/nsd/PLIST index 36258b45db8..634d0792dc3 100644 --- a/net/nsd/PLIST +++ b/net/nsd/PLIST @@ -1,5 +1,6 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2002/03/28 02:17:18 itojun Exp $ +@comment $NetBSD: PLIST,v 1.2 2002/08/28 16:05:50 itojun Exp $ sbin/nsd +sbin/nsd-notify sbin/nsdc sbin/zonec man/man8/nsd.8 diff --git a/net/nsd/distinfo b/net/nsd/distinfo index b79ef7a58ec..a1f1c228344 100644 --- a/net/nsd/distinfo +++ b/net/nsd/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2002/05/08 03:08:34 itojun Exp $ +$NetBSD: distinfo,v 1.4 2002/08/28 16:05:51 itojun Exp $ -SHA1 (nsd-1.0.0-beta2.tar.gz) = a1543e62653e227879a94929d7ed7352186e46f4 -Size (nsd-1.0.0-beta2.tar.gz) = 56089 bytes -SHA1 (patch-aa) = da0a8fade9247c345d29a0771e12ee105394a994 +SHA1 (nsd-1.0.1r2.tar.gz) = 97f507e3115b12927b5058e7fabf6e6b04c8eca5 +Size (nsd-1.0.1r2.tar.gz) = 70648 bytes +SHA1 (patch-aa) = 2b5fd1d17678f98a9ccd0ce4eb2824447d02f02d diff --git a/net/nsd/patches/patch-aa b/net/nsd/patches/patch-aa index 9f5d9f9febd..066d7934582 100644 --- a/net/nsd/patches/patch-aa +++ b/net/nsd/patches/patch-aa @@ -1,31 +1,18 @@ -$NetBSD: patch-aa,v 1.3 2002/05/08 03:08:34 itojun Exp $ +$NetBSD: patch-aa,v 1.4 2002/08/28 16:05:52 itojun Exp $ ---- Makefile.orig Thu May 2 00:58:23 2002 -+++ Makefile Tue May 7 14:26:33 2002 -@@ -41,15 +41,14 @@ - # Run-time enviroment settings +--- Makefile.orig Thu Aug 22 20:40:52 2002 ++++ Makefile Thu Aug 29 01:02:59 2002 +@@ -67,12 +67,11 @@ + # # The directory where the nsd nsdc and zonec binaries will be installed -PREFIX = /usr/local - NSDBINDIR = ${PREFIX}/sbin + NSDBINDIR = ${PREFIX}/sbin NSDMANDIR = ${PREFIX}/man/man8 # The directory where the master zone files are located -NSDZONESDIR = ${PREFIX}/etc/nsd -+NSDZONESDIR = /etc/nsd ++NSDZONESDIR = ${PKG_SYSCONFDIR} # 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 = -@@ -92,7 +91,7 @@ - # - # Please see DBFLAGS below to switch the internal database type. - # --FEATURES = # -DINET6 -+FEATURES = -DINET6 - - # To compile NSD with internal red-black tree database - # uncomment the following two lines + NSDZONES = ${NSDZONESDIR}/nsd.zones |