9613f0ea08
Changelog: Apr 25, 2017 Features zone parser can parse acronyms for algorithms ED25519 and ED448. Fix 1243: Option to make NSD emit really minimal responses, minimal-responses: yes in nsd.conf. Bugfixes Calculate new udb index after growing the array, fix from Chaofeng Liu. Fix missing _t to _type conversion for disable-radix-tree option. Printout serial error with hint it may be too big. Fix 1228: OpenSSL include is not guarded with HAVE_SSL Patch for expire state in multi-master when masters includes broken master, from Manabu Sonoda. minor manpage fix.
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.91 2017/05/02 14:44:38 ryoon Exp $
|
|
|
|
DISTNAME= nsd-4.1.16
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
|
|
|
|
MAINTAINER= pettai@NetBSD.org
|
|
HOMEPAGE= http://www.nlnetlabs.nl/nsd/index.html
|
|
COMMENT= Authoritative-only DNS server
|
|
LICENSE= modified-bsd
|
|
|
|
BUILD_DEFS+= VARBASE NSD_USER NSD_GROUP
|
|
FILES_SUBST+= NSD_USER=${NSD_USER} NSD_GROUP=${NSD_GROUP}
|
|
|
|
BUILDLINK_API_DEPENDS.openssl+= openssl>=0.9.7
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.nsd
|
|
PKG_SUPPORTED_OPTIONS= inet6 rrl
|
|
PKG_SUGGESTED_OPTIONS= inet6
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKG_SYSCONFSUBDIR= nsd
|
|
|
|
CONFIGURE_ARGS+=--prefix=${PREFIX:Q}
|
|
CONFIGURE_ARGS+=--localstatedir=${VARBASE}
|
|
CONFIGURE_ARGS+=--with-configdir=${PKG_SYSCONFDIR:Q}
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
CONFIGURE_ARGS+=--enable-ipv6
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ipv6
|
|
.endif
|
|
.if !empty(PKG_OPTIONS:Mrrl)
|
|
CONFIGURE_ARGS+=--enable-ratelimit
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ratelimit
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+=--with-pidfile=${VARBASE}/run/nsd/nsd.pid
|
|
CONFIGURE_ARGS+=--with-user=${NSD_USER}
|
|
CONFIGURE_ARGS+=--with-dbfile=${VARBASE}/nsd/nsd.db
|
|
CONFIGURE_ARGS+=--with-xfrdfile=${VARBASE}/nsd/nsd-xfrd.state
|
|
CONFIGURE_ARGS+=--with-libevent=${BUILDLINK_PREFIX.libevent}
|
|
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
|
|
|
|
OWN_DIRS_PERMS+= ${VARBASE}/nsd ${NSD_USER} ${NSD_GROUP} 755
|
|
|
|
INSTALLATION_DIRS= share/examples/nsd
|
|
INSTALLATION_DIRS+= ${VARBASE}/nsd
|
|
|
|
.include "../../devel/libevent/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|