mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
1621aa2596
- Enable stage support - Bump PORTREVISION
34 lines
814 B
Makefile
34 lines
814 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= walker
|
|
PORTVERSION= 3.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://josefsson.org/walker/releases/
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
|
COMMENT= Recover zone file information from servers that use DNSSEC
|
|
|
|
RUN_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \
|
|
p5-Net-DNS-SEC>=0:${PORTSDIR}/dns/p5-Net-DNS-SEC
|
|
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= walker
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/walker man/man1/walker.1.gz
|
|
PORTDOCS= index.html
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/walker ${STAGEDIR}${PREFIX}/bin
|
|
@${INSTALL_MAN} ${WRKSRC}/walker.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/index.html ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|