9839011ec3
Drop support for antique perl. Work done by: gabor Sponsored by: Google Summer of Code 2007 Hat: portmgr
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: ipfwcount
|
|
# Date created: 22 February 2006
|
|
# Whom: Robert Archer <freebsd@deathbeforedecaf.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ipfwcount
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://deathbeforedecaf.net/misc/ports/ \
|
|
http://users.netleader.com.au/~rob/
|
|
|
|
MAINTAINER= freebsd@deathbeforedecaf.net
|
|
COMMENT= Summarise ipfw logs by counting and sorting the fields
|
|
|
|
PLIST_FILES= bin/ipfwcount
|
|
MAN1= ipfwcount.1
|
|
|
|
USE_PERL5= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PLIST_DIRS= %%EXAMPLESDIR%%
|
|
PLIST_FILES+= %%EXAMPLESDIR%%/100.ipfwcount
|
|
SUB_FILES= pkg-message
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '1s,^#![^ ]*,#!${PERL},' ${WRKSRC}/ipfwcount
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && pod2man ipfwcount > ipfwcount.1
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/ipfwcount ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/ipfwcount.1 ${PREFIX}/man/man1/ipfwcount.1
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/100.ipfwcount ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${CAT} ${PKGMESSAGE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|