blob: 57cc0068b3a603b29e6adf88b17c0ac7a1afc49e (
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
|
# ex:ts=8
# New ports collection makefile for: walker
# Date created: May 30, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= walker
PORTVERSION= 1.0
CATEGORIES= dns
MASTER_SITES= http://josefsson.org/walker/
MAINTAINER= ports@FreeBSD.org
COMMENT= Recover zone file information from servers that use DNSSEC
RUN_DEPENDS= ${LOCALBASE}/bin/dig:${PORTSDIR}/dns/bind9
USE_REINPLACE= yes
NO_BUILD= yes
post-patch:
@${REINPLACE_CMD} -e 's,`dig,`${LOCALBASE}/bin/dig,g' ${WRKSRC}/walker
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/walker ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/walker
${INSTALL_DATA} ${WRKSRC}/walker.html ${PREFIX}/share/doc/walker
.endif
.include <bsd.port.mk>
|