summaryrefslogtreecommitdiffstats
path: root/dns/unbound/Makefile
blob: 0b79af48f39b90769762e4913fa5a38a596eb930 (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
# New ports collection makefile for:	unbound
# Date created:				25 Apr 2008
# Whom:					Sergey Matveychuk <sem@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	unbound
PORTVERSION=	1.4.13
CATEGORIES=	dns
MASTER_SITES=	http://unbound.net/downloads/

MAINTAINER=	sem@FreeBSD.org
COMMENT=	A validating, recursive, and caching DNS resolver

USE_GMAKE=	yes
USE_OPENSSL=	yes
GNU_CONFIGURE=	yes
CONFIGURE_ARGS+=	--with-ssl=${OPENSSLBASE} --with-ldns-builtin
USE_LDCONFIG=	yes

USERS=		${PORTNAME}

USE_RC_SUBR=	unbound

MAN1=		unbound-host.1
MAN3=		libunbound.3
MAN5=		unbound.conf.5
MAN8=		unbound.8 unbound-anchor.8 unbound-control.8 unbound-checkconf.8

PORTDOCS=	CREDITS Changelog FEATURES LICENSE README README.svn \
		README.tests TODO control_proto_spec.txt ietf67-design-02.odp \
		ietf67-design-02.pdf requirements.txt
SUB_FILES=	pkg-install pkg-deinstall
PLIST_SUB+=	PYTHON=${PYTHON}

OPTIONS=	LIBEVENT "is useful when using many (10000) outgoing ports" off \
		THREADS "build with threads support" on \
		PYTHON "build python bindings" off \
		GOST "build GOST support (requires OpenSSL from ports)" off

.include <bsd.port.options.mk>

LIB_DEPENDS+=	expat.6:${PORTSDIR}/textproc/expat2 \
		ldns:${PORTSDIR}/dns/ldns

.if defined(WITH_PYTHON)
USE_PYTHON=	yes
CONFIGURE_ARGS+=	--with-pyunbound=yes --with-pythonmodule=yes
BUILD_DEPENDS+=		swig:${PORTSDIR}/devel/swig13
PYTHON=
.else
PYTHON=		"@comment "
.endif

.if defined(WITH_GOST)
WITH_OPENSSL_PORT=	yes
.else
CONFIGURE_ARGS+=	--disable-gost
.endif

.include <bsd.port.pre.mk>

# OpenSSL on 6.x has no sha256 functions
.if ${OSVERSION} < 700000
CONFIGURE_ARGS+=	--disable-sha2
.endif

.if ${ARCH} == "sparc64" && ${OSVERSION} < 700000
BROKEN=		Does not build on sparc64-6
.endif

.if defined(WITH_LIBEVENT)
LIB_DEPENDS+=		event-1.4:${PORTSDIR}/devel/libevent
CONFIGURE_ARGS+=	--with-libevent=${LOCALBASE}
.else
CONFIGURE_ARGS+=	--with-libevent=no
.endif

.if !defined(WITH_THREADS)
CONFIGURE_ARGS+=	--without-pthreads
.endif

post-patch:
	@${MKDIR} ${WRKSRC}/balancer
	@${RM} ${WRKSRC}/util/configlexer.c

post-install:
	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}; \
	for f in ${PORTDOCS}; do \
		cd ${WRKSRC}/doc && ${INSTALL_DATA} $${f} ${DOCSDIR}/; \
	done
.endif

.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud