summaryrefslogtreecommitdiff
path: root/usr.sbin/unbound/Makefile.bsd-wrapper
blob: 0fb14fdf67bfcac0ec6eb436e5f72c72b86ebbc3 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#	$OpenBSD: Makefile.bsd-wrapper,v 1.6 2014/03/15 01:08:05 sthen Exp $

.include <bsd.own.mk>

BINDIR=		/usr/sbin
CHROOTDIR=	/var/unbound
USER=		_unbound

XCFLAGS=	CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}"

CONFIGURE_OPTS_LDNS=	--with-drill \
			--disable-shared

CONFIGURE_OPTS_UNBOUND=	--enable-allsymbols \
			--with-ssl=/usr \
			--with-libevent=/usr \
			--with-libexpat=/usr \
			--with-ldns=ldns \
			--without-pthreads \
			--without-pythonmodule \
			--with-chroot-dir=${CHROOTDIR} \
			--with-pidfile=/var/run/unbound.pid \
			--with-conf-file=${CHROOTDIR}/etc/unbound.conf \
			--with-username=${USER} \
			--disable-shared

PROG=	ldns/drill/drill \
	unbound \
	unbound-anchor \
	unbound-checkconf \
	unbound-control \
	unbound-host

SCRIPT=	unbound-control-setup

MAN=	ldns/drill/drill.1 \
	doc/unbound.8 \
	doc/unbound.conf.5 \
	doc/unbound-anchor.8 \
	doc/unbound-checkconf.8	\
	doc/unbound-control.8 \
	doc/unbound-host.1

all:	gnu

.ifndef NOMAN
${MANALL} ${PSALL}: ${MAN}

${MAN}:	gnu
.endif

gnu: ${.OBJDIR}/config.status
	${MAKE}

.FORCE: .IGNORE

config: .FORCE
	-rm -f ${.OBJDIR}/ldns/config.cache
	-rm -f ${.OBJDIR}/config.cache
	cd ${.OBJDIR} && mkdir -p ldns && cd ldns && \
		PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
		${XCFLAGS} \
		INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
		sh ${.CURDIR}/ldns/configure ${CONFIGURE_OPTS_LDNS} && \
		${MAKE} 
	cd ${.OBJDIR} && \
		PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
		${XCFLAGS} \
		INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
		sh ${.CURDIR}/configure ${CONFIGURE_OPTS_UNBOUND}
	if [ ! -e ${.OBJDIR}/ldns/drill/drill.1 ]; then \
		cp ${.CURDIR}/ldns/drill/drill.1 \
			${.OBJDIR}/ldns/drill/drill.1;\
	fi
	if [ ! -e ${.OBJDIR}/doc/unbound-host.1 ]; then \
		cp ${.CURDIR}/doc/unbound-host.1 \
			${.OBJDIR}/doc/unbound-host.1; \
	fi

${.OBJDIR}/config.status:
	cd ${.OBJDIR} && mkdir -p ldns && cd ldns && \
		PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
		${XCFLAGS} \
		INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
		sh ${.CURDIR}/ldns/configure ${CONFIGURE_OPTS_LDNS} && \
		${MAKE}
	cd ${.OBJDIR} && \
		PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
		${XCFLAGS} \
		INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
		sh ${.CURDIR}/configure ${CONFIGURE_OPTS_UNBOUND}
	if [ ! -e ${.OBJDIR}/ldns/drill/drill.1 ]; then \
		cp ${.CURDIR}/ldns/drill/drill.1 \
			 ${.OBJDIR}/ldns/drill/drill.1;\
	fi
	if [ ! -e ${.OBJDIR}/doc/unbound-host.1 ]; then \
		cp ${.CURDIR}/doc/unbound-host.1 \
			${.OBJDIR}/doc/unbound-host.1; \
	fi

.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

.for file in ${SCRIPT}
	${INSTALL} ${INSTALL_COPY} \
		-o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
		${file} ${DESTDIR}${BINDIR}
.endfor

BEFOREMAN= ${.OBJDIR}/config.status
CLEANFILES+= ${MAN} doc/example.conf doc/libunbound.3

clean cleandir:
	-@if [ -e Makefile ]; then ${MAKE} realclean; fi
	-@if [ -e ldns/Makefile ]; then cd ldns; ${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