mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
24c974397f
dnscheck is a simple to use DNS zone sanity checker, comparing name server records and serial numbers with both the parent zone and the zone itself. It allows you to find lame, leaked or stale name servers which have the potential to cause disruption. PR: 86542 Submitted by: arrod Sayers <jarrod@netleader.com.au> Approved by: pav (mentor)
28 lines
596 B
Makefile
28 lines
596 B
Makefile
# New ports collection makefile for: dnscheck
|
|
# Date created: 25 September 2005
|
|
# Whom: Jarrod Sayers <jarrod@netleader.com.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dnscheck
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://www.netleader.com.au/projects/dnscheck/download/
|
|
|
|
MAINTAINER= jarrod@netleader.com.au
|
|
COMMENT= DNS zone sanity checker
|
|
|
|
USE_PERL= yes
|
|
USE_REINPLACE= yes
|
|
|
|
PLIST_FILES= bin/dnscheck
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|^#!/usr/bin/perl |#!${PERL} |' ${WRKSRC}/dnscheck.pl
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/dnscheck.pl ${PREFIX}/bin/dnscheck
|
|
|
|
.include <bsd.port.mk>
|