blob: fe1be13e391c9098ee3975781c56864549f889b0 (
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
|
# $FreeBSD$
PKGNAMESUFFIX= -tools
COMMENT= Command line tools from BIND: dig, host, and nslookup
CONFIGURE_ARGS+= --disable-shared
CONFLICTS+= bind99-9.9.*
MASTERDIR= ${.CURDIR}/../../dns/bind99
DESCR= ${.CURDIR}/pkg-descr
PLIST= ${.CURDIR}/pkg-plist
PKGINSTALL= /nonexistent
BIND_TOOLS_SLAVE= YES
post-patch:
@${REINPLACE_CMD} -e 's#^SUBDIRS.*#SUBDIRS = lib bin#' \
-e 's#isc-config.sh installdirs#installdirs#' \
-e 's#.*INSTALL.*isc-config.*##' \
-e 's#.*INSTALL.*bind.keys.*##' \
${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's#^SUBDIRS.*#SUBDIRS = dig dnssec#' \
-e 's#^ .*check confgen ##' \
${WRKSRC}/bin/Makefile.in
do-install:
.for file in dig host nslookup
${INSTALL_PROGRAM} ${WRKSRC}/bin/dig/${file} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/bin/dig/${file}.1 ${STAGEDIR}${MANPREFIX}/man/man1
.endfor
.for file in dnssec-dsfromkey dnssec-importkey dnssec-keyfromlabel \
dnssec-keygen dnssec-revoke dnssec-settime dnssec-signzone \
dnssec-verify
${INSTALL_PROGRAM} ${WRKSRC}/bin/dnssec/${file} ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/bin/dnssec/${file}.8 ${STAGEDIR}${MANPREFIX}/man/man8
.endfor
.include "${MASTERDIR}/Makefile"
|