summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Schlyter <jakob@cvs.openbsd.org>2010-01-15 19:28:01 +0000
committerJakob Schlyter <jakob@cvs.openbsd.org>2010-01-15 19:28:01 +0000
commit5341d583617d4d1b7aef909e6d217ff3f57ba9f6 (patch)
treef2a1c8fa3865e57c49743f865dbc47f78c1ac074
parentd2081ac134d2d350ed92374b12613330132619c9 (diff)
init
-rw-r--r--usr.sbin/nsd/Makefile.bsd-wrapper85
1 files changed, 85 insertions, 0 deletions
diff --git a/usr.sbin/nsd/Makefile.bsd-wrapper b/usr.sbin/nsd/Makefile.bsd-wrapper
new file mode 100644
index 00000000000..37fab8b6761
--- /dev/null
+++ b/usr.sbin/nsd/Makefile.bsd-wrapper
@@ -0,0 +1,85 @@
+# $OpenBSD: Makefile.bsd-wrapper,v 1.1 2010/01/15 19:28:00 jakob Exp $
+
+.include <bsd.own.mk>
+
+BINDIR= /usr/sbin
+CHROOTDIR= /var/nsd
+USER= named
+
+XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}" \
+ YACC="/usr/bin/yacc"
+CONFIGURE_OPTS= --prefix=/usr \
+ --localstatedir=/var \
+ --sysconfdir=/etc \
+ --with-ssl=/usr \
+ --with-user=${USER} \
+ --with-nsd-conf-file=/etc/nsd.conf \
+ --with-pidfile=${CHROOTDIR}/nsd.pid \
+ --with-zonesdir=${CHROOTDIR}/zones \
+ --with-dbfile=${CHROOTDIR}/nsd.db \
+ --with-difffile=${CHROOTDIR}/ixfr.db \
+ --with-xfrdfile=${CHROOTDIR}/xfrd.state \
+ --enable-root-server \
+ --enable-nsid
+
+PROG= nsd zonec \
+ nsd-notify nsd-checkconf nsd-patch nsd-xfer
+
+MAN= nsd.8 nsdc.8 zonec.8 \
+ nsd-notify.8 nsd-checkconf.8 nsd-patch.8 nsd-xfer.8 \
+ nsd.conf.5
+
+
+all: config.status
+ ${MAKE}
+
+.FORCE: .IGNORE
+
+config: .FORCE
+ -rm -f config.cache
+ PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
+ ${XCFLAGS} \
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure ${CONFIGURE_OPTS}
+
+config.status:
+ PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
+ ${XCFLAGS} \
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure ${CONFIGURE_OPTS}
+
+.ifdef NOMAN
+maninstall:
+ @echo NOMAN is set
+.endif
+
+install: maninstall
+.for file in ${PROG}
+ ${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} \
+ -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ ${file} ${DESTDIR}${BINDIR}
+.endfor
+ ${INSTALL} ${INSTALL_COPY} \
+ -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
+ nsdc.sh ${DESTDIR}${BINDIR}/nsdc
+
+BEFOREMAN= config.status
+
+clean cleandir:
+ -@if [ -e Makefile ]; then ${MAKE} realclean; fi
+ rm -f ${CLEANFILES}
+
+depend:
+ # Nothing here so far...
+
+lint:
+ # Nothing here so far...
+
+tags:
+ # Nothing here so far...
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>
+.ifndef NOMAN
+.include <bsd.man.mk>
+.endif