mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 17:29:23 -04:00
- Add rc script
- Add a lot of knobs - Add second master site PR: ports/67297 Submitted by: Olafur Osvaldsson <oli@isnic.is> (maintainer)
This commit is contained in:
parent
a09100bfde
commit
70807260be
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=110270
4 changed files with 118 additions and 10 deletions
|
@ -7,25 +7,94 @@
|
|||
|
||||
PORTNAME= nsd
|
||||
PORTVERSION= 2.1.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= dns ipv6
|
||||
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/
|
||||
MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \
|
||||
ftp://ftp.rhnet.is/pub/nsd/
|
||||
|
||||
MAINTAINER= oli@isnic.is
|
||||
COMMENT= An authoritative only non-recursive high performance name server
|
||||
|
||||
USE_RC_SUBR= yes
|
||||
|
||||
NSDUSER?= bind
|
||||
NSDDIR?= ${PREFIX}/etc/nsd
|
||||
NSDDBFILE?= /var/db/nsd.database
|
||||
NSDXFER?= /usr/libexec/named-xfer
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-user=bind \
|
||||
--enable-ipv6 \
|
||||
--with-configdir=${PREFIX}/etc/nsd \
|
||||
CONFIGURE_ARGS= --with-user=${NSDUSER} \
|
||||
--with-configdir=${NSDDIR} \
|
||||
--with-pidfile=/var/run/nsd.pid \
|
||||
--with-dbfile=/var/db/nsd.database \
|
||||
--with-namedxfer=/usr/libexec/named-xfer \
|
||||
--with-dbfile=${NSDDBFILE} \
|
||||
--with-namedxfer=${NSDXFER} \
|
||||
--with-libwrap
|
||||
|
||||
.if defined(DISABLE_IPV6)
|
||||
CONFIGURE_ARGS+= --disable-ipv6
|
||||
.endif
|
||||
|
||||
.if defined(DISABLE_AXFR)
|
||||
CONFIGURE_ARGS+= --disable-axfr
|
||||
.endif
|
||||
|
||||
.if defined(ENABLE_PLUGINS)
|
||||
CONFIGURE_ARGS+= --enable-plugins
|
||||
.endif
|
||||
|
||||
.if defined(ENABLE_BIND8_STATS)
|
||||
CONFIGURE_ARGS+= --enable-bind8-stats
|
||||
.endif
|
||||
|
||||
.if defined(ENABLE_DNSSEC)
|
||||
CONFIGURE_ARGS+= --enable-dnssec
|
||||
.endif
|
||||
|
||||
.if defined(ENABLE_ROOT_SERVER)
|
||||
CONFIGURE_ARGS+= --enable-root-server
|
||||
.endif
|
||||
|
||||
.if defined(ENABLE_MMAP)
|
||||
CONFIGURE_ARGS+= --enable-mmap
|
||||
.endif
|
||||
|
||||
SED_SCRIPT= -e 's,%%NSDUSER%%,${NSDUSER},g' \
|
||||
-e 's,%%NSDDIR%%,${NSDDIR},g' \
|
||||
-e 's,%%PREFIX%%,${PREFIX},g' \
|
||||
-e 's,%%RC_SUBR%%,${RC_SUBR},g'
|
||||
|
||||
MAN8= nsd.8 zonec.8 nsdc.8 nsd-notify.8
|
||||
|
||||
PORTDOCS= README RELNOTES CREDITS DIFFERENCES REQUIREMENTS
|
||||
|
||||
pre-everything::
|
||||
@${ECHO_MSG} ""
|
||||
@${ECHO_MSG} "nsd has the following tunables:"
|
||||
@${ECHO_MSG} ""
|
||||
@${ECHO_MSG} " DISABLE_IPV6 Disables IPv6 support"
|
||||
@${ECHO_MSG} " DISABLE_AXFR Disables AXFR"
|
||||
@${ECHO_MSG} ""
|
||||
@${ECHO_MSG} " ENABLE_PLUGINS Enable plugin support"
|
||||
@${ECHO_MSG} " ENABLE_BIND8_STATS Enables BIND8 like NSTATS & XSTATS"
|
||||
@${ECHO_MSG} " ENABLE_DNSSEC Enable experimental DNSSEC support"
|
||||
@${ECHO_MSG} " according to the latest drafts"
|
||||
@${ECHO_MSG} " ENABLE_ROOT_SERVER Configure NSD as a root server"
|
||||
@${ECHO_MSG} " ENABLE_MMAP Configure NSD to load the database using mmap(2)"
|
||||
@${ECHO_MSG} ""
|
||||
|
||||
pre-build:
|
||||
|
||||
post-install:
|
||||
${SED} ${SED_SCRIPT} < ${FILESDIR}/nsd.sh.tmpl >${WRKDIR}/nsd.sh
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for f in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
${INSTALL_DATA} ${WRKSRC}/nsd.zones.sample \
|
||||
${PREFIX}/etc/nsd/nsd.zones.sample
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/nsd.sh ${PREFIX}/etc/rc.d/
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
33
dns/nsd/files/nsd.sh.tmpl
Normal file
33
dns/nsd/files/nsd.sh.tmpl
Normal file
|
@ -0,0 +1,33 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: nsd
|
||||
# REQUIRE: DAEMON
|
||||
# KEYWORD: FreeBSD
|
||||
#
|
||||
# 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"
|
||||
|
5
dns/nsd/pkg-message
Normal file
5
dns/nsd/pkg-message
Normal file
|
@ -0,0 +1,5 @@
|
|||
**************************************************************************
|
||||
* *
|
||||
* To run nsd from startup, add nsd_enable="YES" to your /etc/rc.conf *
|
||||
* *
|
||||
**************************************************************************
|
|
@ -1,8 +1,9 @@
|
|||
@comment $FreeBSD$
|
||||
sbin/nsd
|
||||
sbin/nsdc
|
||||
sbin/zonec
|
||||
sbin/nsd-notify
|
||||
etc/rc.d/nsd.sh
|
||||
etc/nsd/nsd.zones.sample
|
||||
etc/nsd/nsdc.conf.sample
|
||||
sbin/nsd
|
||||
sbin/nsd-notify
|
||||
sbin/nsdc
|
||||
sbin/zonec
|
||||
@dirrm etc/nsd
|
||||
|
|
Loading…
Add table
Reference in a new issue