blob: 09f71897e5118dece1599574bb9393b22586d858 (
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
|
# $NetBSD: Makefile,v 1.57 2020/12/21 00:26:50 otis Exp $
.include "Makefile.common"
PKGNAME= ${DISTNAME:S/pdns/powerdns/}
COMMENT= Modern, advanced and high performance nameserver
.include "options.mk"
CONFIGURE_ARGS+= --with-dynmodules=no
CONFIGURE_ARGS+= --with-modules="${PDNS_MODULES}"
RCD_SCRIPTS= pdns
SMF_NAME= pdns
EGDIR= ${PREFIX}/share/examples/pdns
CONF_FILES+= ${EGDIR}/pdns.conf-dist ${PKG_SYSCONFDIR}/pdns.conf
LDFLAGS.SunOS+= -lsocket -lnsl
INSTALL_MAKE_FLAGS+= sysconfdir=${EGDIR}
.include "../../mk/bsd.pkg.mk"
|