Release notes: https://www.knot-dns.cz/2019-03-05-version-280.html https://www.knot-dns.cz/2019-04-09-version-281.html Reorder SHARED_LIBS while here.
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.40 2019/04/20 16:48:32 jca Exp $
|
|
|
|
COMMENT = authoritative DNS server
|
|
|
|
DISTNAME = knot-2.8.1
|
|
|
|
SHARED_LIBS += dnssec 2.0 # .7.0
|
|
SHARED_LIBS += knot 5.0 # .9.0
|
|
SHARED_LIBS += zscanner 1.1 # .3.0
|
|
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = https://www.knot-dns.cz/
|
|
|
|
MAINTAINER = Jeremie Courreges-Anglas <jca@wxcvbn.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c curses edit ffi gmp gnutls hogweed iconv idn2 intl
|
|
WANTLIB += lmdb m nettle p11-kit pthread tasn1 unistring urcu
|
|
WANTLIB += urcu-common
|
|
|
|
MASTER_SITES = https://secure.nic.cz/files/knot-dns/
|
|
EXTRACT_SUFX = .tar.xz
|
|
|
|
# atomics
|
|
COMPILER = base-clang ports-gcc ports-clang
|
|
COMPILER_LANGS = c
|
|
|
|
BUILD_DEPENDS = devel/bison
|
|
LIB_DEPENDS = devel/gettext \
|
|
devel/libidn2 \
|
|
devel/liburcu \
|
|
security/gnutls \
|
|
databases/lmdb
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --with-storage=${LOCALSTATEDIR}/db/knot \
|
|
--with-libidn \
|
|
--disable-dnstap \
|
|
--disable-maxminddb
|
|
# Disable workaround for old clang versions.
|
|
CONFIGURE_ARGS += --enable-fastparser=force
|
|
|
|
CONFIGURE_ENV = ac_cv_path_PDFLATEX="false" \
|
|
ac_cv_path_SPHINXBUILD="false" \
|
|
CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${LDFLAGS}"
|
|
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
CFLAGS += -march=i586
|
|
.endif
|
|
|
|
post-install:
|
|
mv ${WRKINST}/etc/knot/ ${PREFIX}/share/examples/knot/
|
|
|
|
.include <bsd.port.mk>
|