diff options
author | ijliao <ijliao@FreeBSD.org> | 2004-08-16 14:07:54 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2004-08-16 14:07:54 +0800 |
commit | 2bcb9a64457042421c6fb64572a67cdaaf35a5b5 (patch) | |
tree | d4da7369e707a06ec2f55cddcc97887b4c64eca0 /textproc | |
parent | 8c823289c6875003aa882af65e28c74e5b7de9a9 (diff) | |
download | freebsd-ports-gnome-2bcb9a64457042421c6fb64572a67cdaaf35a5b5.tar.gz freebsd-ports-gnome-2bcb9a64457042421c6fb64572a67cdaaf35a5b5.tar.zst freebsd-ports-gnome-2bcb9a64457042421c6fb64572a67cdaaf35a5b5.zip |
mark ignore when perl < 5.6
Submitted by: maintainer
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-Text-VimColor/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/textproc/p5-Text-VimColor/Makefile b/textproc/p5-Text-VimColor/Makefile index 5ea5265f0824..9cae38216bdf 100644 --- a/textproc/p5-Text-VimColor/Makefile +++ b/textproc/p5-Text-VimColor/Makefile @@ -23,4 +23,10 @@ PERL_CONFIGURE= yes MAN1= text-vimcolor.1 MAN3= Text::VimColor.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500601 +IGNORE= This port requires perl 5.6.1 or later. Install lang/perl5 then try again +.endif + +.include <bsd.port.post.mk> |