summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2004-08-16 02:18:43 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2004-08-16 02:18:43 +0000
commit2e83ebea4bb03204c21862c30d0d1051f93a132c (patch)
treed768194e1a79980936843c9a038504e04e1251da /lang
parentFix path in patchfile, bump PORTREVISION (diff)
mark ignore when perl < 5.6
PR: 70508 Submitted by: Cheng-Lung Sung <clsung@dragon2.net>
Notes
Notes: svn path=/head/; revision=116338
Diffstat (limited to 'lang')
-rw-r--r--lang/p5-Tcl/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/p5-Tcl/Makefile b/lang/p5-Tcl/Makefile
index d519fad85552..9b38900b613e 100644
--- a/lang/p5-Tcl/Makefile
+++ b/lang/p5-Tcl/Makefile
@@ -22,4 +22,10 @@ CONFIGURE_ARGS+= --tclsh tclsh8.4
MAN3= Tcl.3
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PERL_LEVEL} < 500601
+IGNORE= This port requires perl 5.6.x or later. Install lang/perl5 then try again
+.endif
+
+.include <bsd.port.post.mk>