- Update to 3.2.16 Most notable changes: * There are new configuration options "ip-transparent:", "rrl-slip:", "rrl-ipv4-prefix-length:" and "rrl-ipv6-prefix-length:". * There is support for EUI48 and EUI64 RRtypes, enable them during ./configure --enable-draft-rrtypes. * Your regular portion of small bug fixes. For more information, see the RELNOTES. Generated with FreeBSD Port Tools 0.99_8 (mode: update, diff: suffix)
Responsible Changed From-To: freebsd-ports-bugs->pawel I'll take it.
Author: pawel Date: Tue Jul 23 15:32:49 2013 New Revision: 323534 URL: http://svnweb.freebsd.org/changeset/ports/323534 Log: - Update to version 3.2.16 - Add EUI_RRTYPES option While here: - Remove leading article from COMMENT - Convert tab to space in WWW: line PR: ports/180741 Submitted by: Jaap Akkerhuis <jaap@NLnetLabs.nl> (maintainer) Modified: head/dns/nsd/Makefile head/dns/nsd/distinfo head/dns/nsd/pkg-descr Modified: head/dns/nsd/Makefile ============================================================================== --- head/dns/nsd/Makefile Tue Jul 23 13:51:20 2013 (r323533) +++ head/dns/nsd/Makefile Tue Jul 23 15:32:49 2013 (r323534) @@ -2,13 +2,13 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 3.2.15 +PORTVERSION= 3.2.16 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ MAINTAINER= jaap@NLnetLabs.nl -COMMENT= An authoritative only non-recursive name server +COMMENT= Authoritative only non-recursive name server CONFLICTS= nsd-[0-2]* @@ -46,7 +46,7 @@ PORTDOCS= CREDITS ChangeLog LICENSE NSD- differences.tex OPTIONS_DEFINE= ROOT_SERVER LARGEFILE IPV6 BIND8_STATS ZONE_STATS CHECKING \ - MINRESPSIZE NSEC3 NSEC3PREHASH MMAP MAXIPS DOCS RRL + MINRESPSIZE NSEC3 NSEC3PREHASH MMAP MAXIPS DOCS RRL EUI_RRTYPES OPTIONS_DEFAULT= LARGEFILE IPV6 NSEC3 NSEC3PREHASH MINRESPSIZE ROOT_SERVER_DESC= Configure as a root server @@ -60,6 +60,7 @@ MINRESPSIZE_DESC= Minimial response sizi MMAP_DESC= Use mmap instead of malloc (experimental) MAXIPS_DESC= Raise max-ips from 8 to ${NSDMAX_IPS} RRL_DESC= Response Rate Limiting +EUI_RRTYPES_DESC= EUI48 and EUI64 RRtypes support .include <bsd.port.options.mk> @@ -114,6 +115,10 @@ CONFIGURE_ARGS+= --with-max-ips=${NSDMAX CONFIGURE_ARGS+= --enable-ratelimit .endif +.if ${PORT_OPTIONS:MEUI_RRTYPES} +CONFIGURE_ARGS+= --enable-draft-rrtypes +.endif + pre-patch: .if defined(NSD_OPTIONS) @${ECHO_MSG} Modified: head/dns/nsd/distinfo ============================================================================== --- head/dns/nsd/distinfo Tue Jul 23 13:51:20 2013 (r323533) +++ head/dns/nsd/distinfo Tue Jul 23 15:32:49 2013 (r323534) @@ -1,2 +1,2 @@ -SHA256 (nsd-3.2.15.tar.gz) = a1a0eaf88c2d788fcdafd6848a1ff45e113e95cfc17a87fb0e71eab34ffdad64 -SIZE (nsd-3.2.15.tar.gz) = 909346 +SHA256 (nsd-3.2.16.tar.gz) = 15a5fd69ea80345eefced83a58b40e8f262a06ac4f7f83606d33033b167d6604 +SIZE (nsd-3.2.16.tar.gz) = 917815 Modified: head/dns/nsd/pkg-descr ============================================================================== --- head/dns/nsd/pkg-descr Tue Jul 23 13:51:20 2013 (r323533) +++ head/dns/nsd/pkg-descr Tue Jul 23 15:32:49 2013 (r323534) @@ -1,4 +1,4 @@ NSD (Name Server Daemon) is a complete implementation of an authoritative DNS nameserver. -WWW: http://www.nlnetlabs.nl/nsd +WWW: http://www.nlnetlabs.nl/nsd _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, with minor changes. Thanks!