aboutsummaryrefslogtreecommitdiffstats
path: root/dns/bind-tools/Makefile
blob: 11d39e6721513a2029da08e7dedd988774b7a838 (plain) (blame)
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
# $FreeBSD$

PORTNAME=   bind-tools

COMMENT=    Command line tools from BIND: dig, host, and nslookup

CONFIGURE_ARGS+=    --disable-shared

CONFLICTS+= bind97-9.7.*

MASTERDIR=  ${.CURDIR}/../../dns/bind97

DESCR=      ${.CURDIR}/pkg-descr
PLIST=      ${.CURDIR}/pkg-plist

BIND_TOOLS_SLAVE=   YES

MAN1=   dig.1 host.1 nslookup.1

post-patch:
    @${MV} ${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.in.presed
    @${SED} -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.presed > ${WRKSRC}/Makefile.in
    @${MV} ${WRKSRC}/bin/Makefile.in ${WRKSRC}/bin/Makefile.in.presed
    @${SED} -e 's#^SUBDIRS.*#SUBDIRS = dig#' \
        -e 's#^ .*check confgen ##' \
        ${WRKSRC}/bin/Makefile.in.presed > ${WRKSRC}/bin/Makefile.in

do-install:
.for file in dig host nslookup
    ${INSTALL_PROGRAM} ${WRKSRC}/bin/dig/${file} ${PREFIX}/bin
    ${INSTALL_MAN} ${WRKSRC}/bin/dig/${file}.1 ${MANPREFIX}/man/man1
.endfor

.include "${MASTERDIR}/Makefile"