26ced77591
Please refer CHANGES file for complete changes and here is quote from release announce. Introduction BIND 9.6-ESV-R9-P1 is the latest production release of BIND 9.6-ESV. Security Fixes Prevents exploitation of a runtime_check which can crash named when satisfying a recursive query for particular malformed zones. (CVE-2013-3919) [RT #33690] Prevents a named assert (crash) when validating caused by using "Bad cache" data before it has been initialized. [CVE-2012-3817] [RT #30025] A condition has been corrected where improper handling of zero-length RDATA could cause undesirable behavior, including termination of the named process. [CVE-2012-1667] [RT #29644] New Features Adds a new configuration option, "check-spf"; valid values are "warn" (default) and "ignore". When set to "warn", checks SPF and TXT records in spf format, warning if either resource record type occurs without a corresponding record of the other resource record type. [RT #33355] Adds support for Uniform Resource Identifier (URI) resource records. [RT #23386] Adds support for Host Identity Protocol (HIP) resource records [RT #19384] Adds support for the EUI48 and EUI64 RR types. [RT #33082] Adds support for the RFC 6742 ILNP record types (NID, LP, L32, and L64). [RT #31836] The contributed queryperf utility has been improved, now retaining better round trip time statistics. [RT #30128]
81 lines
2.2 KiB
Makefile
81 lines
2.2 KiB
Makefile
# $NetBSD: Makefile,v 1.40 2013/06/06 02:57:58 taca Exp $
|
|
|
|
DISTNAME= bind-${BIND_VERSION}
|
|
PKGNAME= ${DISTNAME:S/-ESV/.3.1.ESV/:S/-R/./:S/-P/pl/}
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${BIND_VERSION}/ \
|
|
http://ftp.belnet.be/pub/mirror/ftp.isc.org/isc/bind9/${BIND_VERSION}/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.isc.org/software/bind/
|
|
COMMENT= Berkeley Internet Name Daemon implementation of DNS, version 9.6
|
|
|
|
CONFLICTS+= host-[0-9]*
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
BIND_VERSION= 9.6-ESV-R9-P1
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
BUILD_DEFS+= BIND_DIR VARBASE
|
|
|
|
.include "options.mk"
|
|
|
|
USE_TOOLS+= pax perl
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
#CONFIG_SHELL= sh -x
|
|
|
|
CONFIGURE_ARGS+= --with-libtool
|
|
CONFIGURE_ARGS+= --sysconfdir=/etc
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE:Q}
|
|
CONFIGURE_ARGS+= --disable-openssl-version-check
|
|
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
|
|
.if ${MACHINE_PLATFORM:MNetBSD-*-mipsel} != ""
|
|
CONFIGURE_ARGS+= --disable-atomic
|
|
.endif
|
|
.if ${MACHINE_PLATFORM:MNetBSD-*-powerpc} != ""
|
|
CONFIGURE_ARGS+= --disable-threads
|
|
.endif
|
|
.if ${OPSYS} == "DragonFly"
|
|
CONFIGURE_ARGS+= --disable-kqueue
|
|
.endif
|
|
|
|
PKG_GROUPS_VARS+= BIND_GROUP
|
|
PKG_USERS_VARS+= BIND_USER
|
|
|
|
PKG_GROUPS= ${BIND_GROUP}
|
|
PKG_USERS= ${BIND_USER}:${BIND_GROUP}
|
|
|
|
PKG_GECOS.${BIND_USER}= Named pseudo-user
|
|
PKG_HOME.${BIND_USER}= ${BIND_DIR}
|
|
|
|
PTHREAD_OPTS+= native
|
|
PTHREAD_AUTO_VARS= yes
|
|
|
|
FILES_SUBST+= BIND_GROUP=${BIND_GROUP:Q} \
|
|
BIND_USER=${BIND_USER:Q} PAX=${PAX:Q}
|
|
MESSAGE_SUBST+= BIND_DIR=${BIND_DIR} BIND_USER=${BIND_USER}
|
|
DOCDIR= ${DESTDIR}${PREFIX}/share/doc/bind9
|
|
MISCDOC= dnssec ipv6 migration migration-4to9 options \
|
|
rfc-compliance roadmap sdb
|
|
|
|
# include/isc/ipv6.h is installed on non-ipv6 platforms
|
|
PLIST_VARS+= inet6
|
|
.if !empty(MISSING_FEATURES:Minet6)
|
|
PLIST.inet6= yes
|
|
.endif
|
|
|
|
RCD_SCRIPTS= lwresd named9
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR} share/doc/bind9/arm share/doc/bind9/misc
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/NSEC3-NOTES ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/arm/*.html ${DOCDIR}/arm
|
|
cd ${WRKSRC}/doc/misc && ${INSTALL_DATA} ${MISCDOC} ${DOCDIR}/misc
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|