80f4434d61
Bugfixes: * Do setusercontext before chroot, otherwise login.conf etc. are required inside chroot. * Bugfix #216: Fix leak of compressiontable when the domain table increases in size. * Bugfix #348: Don't include header/library path if OpenSSL is in /usr. * Bugfix #350: Refused notifies should log client ip. * Bugfix #352: Fix hard coded paths in man pages. * Bugfix #354: The realclean target deletes a bit too much. * Bugfix #357, make xfrd quit with many zones. * Bugfix #362: outgoing-interface and v4 vs. v6 leads to spurious warning messages. * Bugfix #363: nsd-checkconf -v does not print outgoing-interface ok. * Bugfix: nsd-checkconf -o outgoing-interface omits NOKEY. * Undo Bugfix #235: Don't skip dname compression, messes up packets that do need compression. Operational notes: * Use 'make clean' to clean up files that make created. * Use 'make realclean' to also clean up files that were generated by running ./configure. * Use 'make devclean' to also clean up autoconf, autoheader files. NSD 3.2.7: Bugfixes: * Bugfix #253: Don't put NS RRs in a response with QTYPE=DS. * Bugfix #320: use arcrandom(4) for QID generation if available. * Bugfix #328: nsd-checkconf overrun. * Bugfix #343: nsdc update fix. * Bugfix #347: Wrong NSEC3 returned for nodata response QTYPE=DS no delegation. * Bugfix: Allow for huge amount of strings in TXT (and other) records. * Bugfix: nsdc can now deal with tsig algorithms other than hmac-md5. * Fixed several parts in the documentation, including #306, #345.
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.53 2011/06/19 16:25:12 pettai Exp $
|
|
|
|
DISTNAME= nsd-3.2.8
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
|
|
|
|
MAINTAINER= joerg@NetBSD.org
|
|
HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.html
|
|
COMMENT= Authoritative-only DNS server
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.nsd
|
|
PKG_SUPPORTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKG_SYSCONFSUBDIR= nsd
|
|
|
|
CONFIGURE_ARGS+=--with-configdir=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+=--enable-bind8-stats
|
|
CONFIGURE_ARGS+=--with-libwrap=${BUILDLINK_PREFIX.tcp_wrappers}
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+=--enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ipv6
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+=--with-pidfile=${VARBASE}/run/nsd.pid
|
|
CONFIGURE_ARGS+=--with-user=${NSD_USER}
|
|
CONFIGURE_ARGS+=--with-dbfile=${VARBASE}/db/nsd.db
|
|
CONFIGURE_ARGS+=--with-difffile=${VARBASE}/db/nsd-ixfr.db
|
|
CONFIGURE_ARGS+=--with-xfrdfile=${VARBASE}/db/nsd-xfrd.state
|
|
CONFIGURE_ARGS+=--with-ssl=${BUILDLINK_PREFIX.openssl}
|
|
|
|
RCD_SCRIPTS= nsd
|
|
|
|
NSD_USER?= nsd
|
|
NSD_GROUP?= nsd
|
|
|
|
PKG_GROUPS= ${NSD_GROUP}
|
|
PKG_USERS= ${NSD_USER}:${NSD_GROUP}
|
|
|
|
CONF_FILES+= share/examples/nsd/nsd.conf ${PKG_SYSCONFDIR}/nsd.conf
|
|
|
|
INSTALLATION_DIRS= share/examples/nsd
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/nsd.zones2nsd.conf ${DESTDIR}${PREFIX}/share/examples/nsd
|
|
|
|
.include "../../security/tcp_wrappers/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|