3bb9b3d09c
Update bind914 to 9.14.4. --- 9.14.4 released --- 5260. [bug] dnstap-read was producing malformed output for large packets. [GL #1093] 5258. [func] Added support for the GeoIP2 API from MaxMind, when BIND is compiled using "configure --with-geoip2". The legacy GeoIP API can be enabled by using "configure --with-geoip" instead. These options cannot be used together. Certain geoip ACL settings that were available with legacy GeoIP are not available when using GeoIP2. See the ARM for details. [GL #182] 5257. [bug] Some statistics data was not being displayed. Add shading to the zone tables. [GL #1030] 5256. [bug] Ensure that glue records are included in root priming responses if "minimal-responses" is not set to "yes". [GL #1092] 5255. [bug] Errors encountered while reloading inline-signing zones could be ignored, causing the zone content to be left in an incompletely updated state rather than reverted. [GL #1109] 5254. [func] Collect metrics to report to the statistics-channel DNSSEC signing operations (dnssec-sign) and refresh operations (dnssec-refresh) per zone and per keytag. [GL #513] 5253. [port] Support platforms that don't define ULLONG_MAX. [GL #1098] 5251. [bug] Statistics were broken in x86 Windows builds. [GL #1081] 5249. [bug] Fix a possible underflow in recursion clients statistics when hitting recursive clients soft quota. [GL #1067]
75 lines
1.9 KiB
Makefile
75 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.8 2019/07/18 03:02:02 taca Exp $
|
|
|
|
DISTNAME= bind-${BIND_VERSION}
|
|
PKGNAME= ${DISTNAME:S/-P/pl/}
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://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.14
|
|
LICENSE= mpl-2.0
|
|
|
|
CONFLICTS+= host-[0-9]*
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
BIND_VERSION= 9.14.4
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
BUILD_DEFS+= BIND_DIR VARBASE
|
|
|
|
.include "options.mk"
|
|
|
|
USE_TOOLS+= pax perl
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --with-libtool
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}
|
|
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
|
|
CONFIGURE_ARGS+= --with-python=no
|
|
.if !empty(MACHINE_PLATFORM:MNetBSD-*-m68k) || \
|
|
!empty(MACHINE_PLATFORM:MNetBSD-*-mipsel) || \
|
|
!empty(MACHINE_PLATFORM:MNetBSD-*-vax)
|
|
CONFIGURE_ARGS+= --disable-atomic
|
|
.endif
|
|
CONFIGURE_ARGS.DragonFly+= --disable-kqueue
|
|
|
|
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}
|
|
|
|
DOCS= CHANGES HISTORY OPTIONS README
|
|
|
|
FILES_SUBST+= BIND_GROUP=${BIND_GROUP} \
|
|
BIND_USER=${BIND_USER} PAX=${PAX:Q} \
|
|
SSLBASE=${SSLBASE}
|
|
MESSAGE_SUBST+= BIND_DIR=${BIND_DIR} BIND_USER=${BIND_USER}
|
|
|
|
DOCDIR= share/doc/bind9
|
|
|
|
RCD_SCRIPTS= named9
|
|
SMF_METHODS= named
|
|
|
|
INSTALL_MAKE_FLAGS+= sysconfdir=${PREFIX}/share/examples/bind9
|
|
CONF_FILES+= share/examples/bind9/bind.keys \
|
|
${PKG_SYSCONFDIR}/bind.keys
|
|
|
|
INSTALLATION_DIRS+= ${DOCDIR} ${DOCDIR}/arm
|
|
|
|
post-install:
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/${DOCDIR}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/doc/arm/*.html ${DESTDIR}${PREFIX}/${DOCDIR}/arm
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|