NSD (Name Server Daemon) is a complete implementation of an

authoritative DNS nameserver.

WWW:	http://www.nlnetlabs.nl/nsd

PR:		ports/104469
Submitted by:	oli at isnic.is
This commit is contained in:
Alejandro Pulver 2006-10-31 17:27:32 +00:00
parent 8a76e3c97e
commit c40337d180
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=175874
7 changed files with 155 additions and 0 deletions

View File

@ -59,6 +59,7 @@
SUBDIR += mydns
SUBDIR += noip
SUBDIR += nsd
SUBDIR += nsd2
SUBDIR += nslint
SUBDIR += nsping
SUBDIR += nss_resinit

103
dns/nsd2/Makefile Normal file
View File

@ -0,0 +1,103 @@
# New ports collection makefile for: nsd2
# Date created: 16 October 2006
# Whom: oli@isnic.is
#
# $FreeBSD$
#
PORTNAME= nsd
PORTVERSION= 2.3.6
CATEGORIES= dns ipv6
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \
ftp://ftp.rhnet.is/pub/nsd/
MAINTAINER= oli@isnic.is
COMMENT= An authoritative only non-recursive name server
USE_RC_SUBR= nsd.sh
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-user=${NSDUSER} \
--with-configdir=${NSDDIR} \
--with-pidfile=/var/run/nsd.pid \
--with-dbfile=${NSDDBFILE} \
--with-libwrap
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
OPTIONS= ROOT_SERVER "Configure NSD as a root server" Off \
IPV6 "Enable IPv6 support" On \
DNSSEC "Enable DNSSEC" On \
AXFR "Enable AXFR" On \
BIND8_STATS "Enable BIND8 like NSTATS & XSTATS" Off \
NSID "Enable NSID support" Off \
PLUGINS "Enable plugin support" Off \
CHECKING "Enable internal runtime checks" Off \
TSIG "Enable TSIG support" On \
MMAP "Load database using mmap(2)" Off
MAN8= nsd.8 nsdc.8 zonec.8 nsd-notify.8 nsd-xfer.8
PORTDOCS= CREDITS LICENSE NSD-DATABASE README README.icc \
RELNOTES REQUIREMENTS TODO
NSDUSER?= bind
NSDDIR?= ${PREFIX}/etc/nsd
NSDDBFILE?= /var/db/nsd.database
SUB_LIST= NSDUSER="${NSDUSER}" \
NSDDIR="${NSDDIR}" \
NSDDBFILE="${NSDDBFILE}"
.include <bsd.port.pre.mk>
.if defined(WITH_ROOT_SERVER)
CONFIGURE_ARGS+= --enable-root-server
.endif
.if defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(WITHOUT_DNSSEC)
CONFIGURE_ARGS+= --disable-dnssec
.endif
.if defined(WITHOUT_AXFR)
CONFIGURE_ARGS+= --disable-axfr
.endif
.if defined(WITH_BIND8_STATS)
CONFIGURE_ARGS+= --enable-bind8-stats
.endif
.if defined(WITH_NSID)
CONFIGURE_ARGS+= --enable-nsid
.endif
.if defined(WITH_PLUGINS)
CONFIGURE_ARGS+= --enable-plugins
.endif
.if defined(WITH_CHECKING)
CONFIGURE_ARGS+= --enable-checking
.endif
.if defined(WITHOUT_TSIG)
CONFIGURE_ARGS+= --disable-tsig
.endif
.if defined(WITH_MMAP)
CONFIGURE_ARGS+= --enable-mmap
.endif
post-install:
${INSTALL_DATA} ${WRKSRC}/nsd.zones.sample ${NSDDIR}
${INSTALL_SCRIPT} ${WRKDIR}/nsd.sh ${PREFIX}/etc/rc.d
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/${f}
.endfor
.endif
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
.include <bsd.port.post.mk>

3
dns/nsd2/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (nsd-2.3.6.tar.gz) = 72428cdacc5bee63b4477becda27bf64
SHA256 (nsd-2.3.6.tar.gz) = 9f90c4bd250c536a0d3cd1ef3f2814a446d5cf4c19d5093b363de81eca8b56d4
SIZE (nsd-2.3.6.tar.gz) = 244341

31
dns/nsd2/files/nsd.sh.in Normal file
View File

@ -0,0 +1,31 @@
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: nsd
# REQUIRE: DAEMON
#
# Add the following line to /etc/rc.conf to enable nsd:
#
# nsd_enable="YES"
#
. %%RC_SUBR%%
name=nsd
rcvar=`set_rcvar`
prefix=%%PREFIX%%
required_files=%%NSDDIR%%/nsd.zones
command=/usr/local/sbin/${name}
pidfile=/var/run/${name}.pid
# set defaults
nsd_enable=${nsd_enable:-"NO"}
nsd_flags=${nsd_flags:-""}
load_rc_config ${name}
run_rc_command "$1"

4
dns/nsd2/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
NSD (Name Server Daemon) is a complete implementation of an
authoritative DNS nameserver.
WWW: http://www.nlnetlabs.nl/nsd

5
dns/nsd2/pkg-message Normal file
View File

@ -0,0 +1,5 @@
**************************************************************************
* *
* To run nsd from startup, add nsd_enable="YES" to your /etc/rc.conf *
* *
**************************************************************************

8
dns/nsd2/pkg-plist Normal file
View File

@ -0,0 +1,8 @@
@comment $FreeBSD$
etc/nsd/nsd.zones.sample
sbin/nsd
sbin/zonec
sbin/nsdc
sbin/nsd-notify
sbin/nsd-xfer
@dirrm etc/nsd