blob: 0ae4cd6904e945d0dcf40044b9f79f905c916cba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.7 2011/06/11 12:48:19 schwarze Exp $
.include <bsd.own.mk>
BINDIR= /usr/sbin
CHROOTDIR= /var/nsd
USER= _nsd
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-chroot=${CHROOTDIR} \
--with-pidfile=${CHROOTDIR}/run/nsd.pid \
--with-zonesdir=${CHROOTDIR}/zones \
--with-dbfile=${CHROOTDIR}/db/nsd.db \
--with-difffile=${CHROOTDIR}/run/ixfr.db \
--with-xfrdfile=${CHROOTDIR}/run/xfrd.state \
--enable-root-server
PROG= nsd nsd-zonec nsd-notify nsd-checkconf nsd-patch nsd-xfer
MAN= nsd.8 nsdc.8 nsd-zonec.8 nsd-notify.8 nsd-checkconf.8 nsd-patch.8 \
nsd-xfer.8 nsd.conf.5
all: gnu
.ifndef NOMAN
${MANALL} ${PSALL}: ${MAN}
${MAN}: gnu
.endif
gnu: 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
|