blob: 531a4943d947fcc0ac094ff40ec79080315e172e (
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
39
40
|
# New ports collection makefile for: p5-Net-DNS-Resolver-Programmable
# Date created: February 9, 2007
# Whom: Koen Martens <gmc@sonologic.nl>
#
# $FreeBSD$
#
PORTNAME= Net-DNS-Resolver-Programmable
PORTVERSION= 0.003
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
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \
${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version
BUILD_DEPENDS= ${RUN_DEPENDS}
PERL_MODBUILD= yes
PERL_CONFIGURE= yes
MAN3= Net::DNS::Resolver::Programmable.3
.include <bsd.port.pre.mk>
PORTDOCS= CHANGES README TODO
DOCSDIR= ${PREFIX}/share/doc/p5-Net-DNS-Resolver-Programmable
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>
|