aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerwin <erwin@FreeBSD.org>2005-12-29 01:46:07 +0800
committererwin <erwin@FreeBSD.org>2005-12-29 01:46:07 +0800
commitae6ca2d9be03417fc39406711a5c25050692ccb1 (patch)
treecab2522d41c9a295b3707dd3ef144c0f7afbb1b6
parent2058b7cf7596c49fa0520ab86b70f814584e0d32 (diff)
downloadfreebsd-ports-gnome-ae6ca2d9be03417fc39406711a5c25050692ccb1.tar.gz
freebsd-ports-gnome-ae6ca2d9be03417fc39406711a5c25050692ccb1.tar.zst
freebsd-ports-gnome-ae6ca2d9be03417fc39406711a5c25050692ccb1.zip
Fix a typo in check for installed perl version so it actually
fails with perl 5.005_03 PR: 91024 Submitted by: Robert Archer <freebsd@deathbeforedecaf.net> (maintainer), Jarrod Sayers <jarrod@netleader.com.au>
-rw-r--r--security/ipfcount/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/ipfcount/Makefile b/security/ipfcount/Makefile
index b4a1e44c0777..e5bb3e78bdde 100644
--- a/security/ipfcount/Makefile
+++ b/security/ipfcount/Makefile
@@ -7,6 +7,7 @@
PORTNAME= ipfcount
PORTVERSION= 0.1
+PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://deathbeforedecaf.net/misc/ports/ \
http://users.netleader.com.au/~rob/
@@ -27,7 +28,7 @@ USE_REINPLACE= yes
.include <bsd.port.pre.mk>
-.if ${PERL_LEVEL} < 5006
+.if ${PERL_LEVEL} < 500600
IGNORE= requires perl 5.6 or higher - see the lang/perl5.8 port
.endif