35 lines
788 B
Makefile
35 lines
788 B
Makefile
# Created by: Koen Martens <gmc@sonologic.nl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Net-DNS-Resolver-Programmable
|
|
PORTVERSION= 0.003
|
|
PORTREVISION= 1
|
|
CATEGORIES= dns net perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME}-v${PORTVERSION}
|
|
|
|
MAINTAINER= gmc@sonologic.nl
|
|
COMMENT= Programmable DNS resolver for off-line testing
|
|
|
|
BUILD_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= modbuild
|
|
|
|
MAN3= Net::DNS::Resolver::Programmable.3
|
|
PORTDOCS= CHANGES README TODO
|
|
DOCSDIR= ${PREFIX}/share/doc/p5-Net-DNS-Resolver-Programmable
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|