summaryrefslogtreecommitdiff
path: root/net/bind9/Makefile
diff options
context:
space:
mode:
authorrh <rh@pkgsrc.org>2000-07-26 08:46:23 +0000
committerrh <rh@pkgsrc.org>2000-07-26 08:46:23 +0000
commit10a002b70c2f9b5a1990bc96f9ec9ef8e5523e75 (patch)
tree772b4263b5be13051487347c5724e37d3d02ae9d /net/bind9/Makefile
parent05ea8491d367dbd877a46b434edfe55efe591e02 (diff)
downloadpkgsrc-10a002b70c2f9b5a1990bc96f9ec9ef8e5523e75.tar.gz
Update bind9 to 9.0.0rc1. This is the first release candidate for bind9.
Changes are too numerous to list here in detail, but highlights are: The communication between "rndc" and "named" is now authenticated using digital signatures. Because of this, rndc now requires a configuration file "rndc.conf" containing a shared secret, with a corresponding "controls" clause in named.conf. When the server is chrooted using the -t option, it no longer needs copies of the passwd and group files in the chroot environment. Various bug fixes and cleanups, especially in the dig, host, nslookup, and nsupdate programs. There are a few known bugs: The option "query-source * port 53;" will not work as expected. Instead of the wildcard address "*", you need to use an explicit source IP address. On some systems, IPv6 and IPv4 sockets interact in unexpected ways. For details, see doc/misc/ipv6. To reduce the impact of these problems, the server no longer listens for requests on IPv6 addresses by default. If you need to accept DNS queries over IPv6, you must specify "listen-on-v6 { any; };" in the named.conf options statement. There are known problems with thread signal handling under Solaris 2.6.
Diffstat (limited to 'net/bind9/Makefile')
-rw-r--r--net/bind9/Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/net/bind9/Makefile b/net/bind9/Makefile
index 984c27d921c..17119cc10b3 100644
--- a/net/bind9/Makefile
+++ b/net/bind9/Makefile
@@ -1,13 +1,15 @@
-# $NetBSD: Makefile,v 1.8 2000/06/19 13:54:08 hubertf Exp $
+# $NetBSD: Makefile,v 1.9 2000/07/26 08:46:23 rh Exp $
#
-DISTNAME= bind-9.0.0b4
+DISTNAME= bind-${BIND_VERSION}
CATEGORIES= net
-MASTER_SITES= ftp://ftp.isc.org/isc/bind9/9.0.0b4/
+MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${BIND_VERSION}/
MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= http://www.isc.org/products/BIND/
+DEPENDS+= unproven-pthreads>=0.17:../../devel/unproven-pthreads
+
# IPv6 ready, automatically detected
.include "../../mk/bsd.prefs.mk"
BUILD_DEFS+= USE_INET6
@@ -15,10 +17,9 @@ BUILD_DEFS+= USE_INET6
# Sync these with devel/unproven-pthreads:
ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-arm32 NetBSD-*-m68k
-DEPENDS+= unproven-pthreads-0.*:../../devel/unproven-pthreads
-
# No need to set USE_INET6, will auto-detect.
-DIST_SUBDIR= bind/9.0.0b4
+BIND_VERSION= 9.0.0rc1
+DIST_SUBDIR= bind/${BIND_VERSION}
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--with-mit-pthreads \
--with-libtool=yes \
@@ -38,7 +39,5 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/draft/* ${PREFIX}/share/doc/bind9/draft
${INSTALL_DATA} ${WRKSRC}/doc/misc/* ${PREFIX}/share/doc/bind9/misc
${INSTALL_DATA} ${WRKSRC}/doc/rfc/* ${PREFIX}/share/doc/bind9/rfc
- ${INSTALL_SCRIPT} ${WRKSRC}/bin/rndc/rndc ${PREFIX}/sbin
- ${INSTALL_SCRIPT} ${WRKSRC}/bin/lwresd/lwresd ${PREFIX}/sbin
.include "../../mk/bsd.pkg.mk"