diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-08-16 02:18:43 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2004-08-16 02:18:43 +0000 |
commit | 2e83ebea4bb03204c21862c30d0d1051f93a132c (patch) | |
tree | d768194e1a79980936843c9a038504e04e1251da /lang/p5-Tcl | |
parent | 4a65105005c202ebdbb38bae452ffd3ad85ca361 (diff) | |
download | ports-2e83ebea4bb03204c21862c30d0d1051f93a132c.tar.gz ports-2e83ebea4bb03204c21862c30d0d1051f93a132c.zip |
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/p5-Tcl')
-rw-r--r-- | lang/p5-Tcl/Makefile | 8 |
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> |