7112241e99
-------------------------- Bugfixes: * Improved zone loading error messages * Correct control socket permissions * Improved log syntax documentation * Fixed wrong assertions in DDNS prerequisites checking * Fixed processing of some malformed DNS packets * Fixed notify messages being ignored in some cases v1.3.2 - Sep 30, 2013 --------------------- Bugfixes: * Configuration option for EDNS0 max UDP payload. * Max UDP payload from EDNS0 affected TCP responses. * Fixed build on SLE 10. * knotc reload did not close files included from config.
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2013/11/09 22:17:45 pettai Exp $
|
|
#
|
|
|
|
DISTNAME= knot-1.3.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://secure.nic.cz/files/knot-dns/
|
|
FETCH_USING= curl
|
|
|
|
MAINTAINER= pettai@NetBSD.org
|
|
HOMEPAGE= http://www.knot-dns.cz/
|
|
COMMENT= Knot (auth) DNS server
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BUILD_DEFS+= VARBASE
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX:Q}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|
|
CONFIGURE_ARGS+= --localstatedir=${VARBASE}/knot
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= bison flex gmake
|
|
RCD_SCRIPTS= knot
|
|
|
|
EGDIR= ${PREFIX}/share/examples/knot
|
|
KNOT_SYSCONFDIR= ${PKG_SYSCONFDIR}/knot
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_FILES.paths= ${WRKSRC}/samples/Makefile.in
|
|
SUBST_STAGE.paths= post-patch
|
|
SUBST_SED.paths= -e 's,@EGDIR@,${EGDIR},'
|
|
|
|
CONF_FILES= ${EGDIR}/knot.sample.conf \
|
|
${KNOT_SYSCONFDIR}/knot.sample.conf
|
|
CONF_FILES+= ${EGDIR}/example.com.zone \
|
|
${KNOT_SYSCONFDIR}/example.com.zone
|
|
|
|
INSTALLATION_DIRS= ${EGDIR} ${KNOT_SYSCONFDIR}
|
|
OWN_DIRS+= ${VARBASE}/knot
|
|
|
|
.include "../../devel/userspace-rcu/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|