mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
cfda064524
1. Add myself as a backup master site (Sourceforge and CPAN ports already have good enough coverage, so skip them). 2. For all ports that have them, download the PGP signature files. 3. For ports in 2, add a verify target to the Makefile 4. For ports where I was already providing a master site, update the URL. 5. Pet portlint in a couple of places.
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# New ports collection makefile for: fpdns
|
|
# Date Created: July 2 2004
|
|
# Whom: Edwin Groothuis <edwin@mavetju.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fpdns
|
|
PORTVERSION= 0.9.3
|
|
CATEGORIES= dns net perl5
|
|
MASTER_SITES= http://www.rfc.se/fpdns/distfiles/ \
|
|
http://dougbarton.us/Downloads/
|
|
DISTNAME= Net-DNS-Fingerprint-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= DougB@FreeBSD.org
|
|
COMMENT= FPDNS - Fingerprinting DNS servers
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN1= fpdns.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
IGNORE= Requires at least Perl version 5.6.0
|
|
.endif
|
|
|
|
verify: checksum
|
|
gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig
|
|
|
|
file= ${WRKSRC}/blib/man1/fpdns.1
|
|
post-build:
|
|
@${SED} -e 's#\\&\\fIperl\\fR\\|(1), \\fINet::DNS\\fR\\|(1)#&, http://www.rfc.se/fpdns/#' \
|
|
${file} > ${file}.sed
|
|
@${MV} ${file}.sed ${file}
|
|
|
|
post-install:
|
|
${RM} ${SITE_PERL}/${PERL_ARCH}/auto/Net/DNS/Fingerprint/.packlist
|
|
|
|
.include <bsd.port.post.mk>
|