diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2005-10-25 03:46:46 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2005-10-25 03:46:46 +0800 |
commit | 8b1c268a0345cca42a5214c3fc1cd59a817346cd (patch) | |
tree | f48279086eba47f1fa10a663c251543d3de5c176 | |
parent | 45a703f01363bd418d8ed4e9b69ed50e6d5eadba (diff) | |
download | freebsd-ports-gnome-8b1c268a0345cca42a5214c3fc1cd59a817346cd.tar.gz freebsd-ports-gnome-8b1c268a0345cca42a5214c3fc1cd59a817346cd.tar.zst freebsd-ports-gnome-8b1c268a0345cca42a5214c3fc1cd59a817346cd.zip |
Colordiff works fine with PERL_LEVEL < 500600, it just requires
devel/p5-Getopt-Long.
-rw-r--r-- | textproc/colordiff/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/textproc/colordiff/Makefile b/textproc/colordiff/Makefile index 524f70f86f55..084364a06f5a 100644 --- a/textproc/colordiff/Makefile +++ b/textproc/colordiff/Makefile @@ -24,8 +24,9 @@ MAN1= colordiff.1 .include <bsd.port.pre.mk> -.if ${PERL_LEVEL} < 500806 -IGNORE= needs Perl 5.8.6 or above (lang/perl5.8) +.if ${PERL_LEVEL} < 500600 +BUILD_DEPENDS= ${SITE_PERL}/Getopt/Long.pm:${PORTSDIR}/devel/p5-Getopt-Long +RUN_DEPENDS= ${BUILD_DEPENDS} .endif post-patch: |