diff options
author | mm <mm@FreeBSD.org> | 2010-09-22 00:08:11 +0800 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2010-09-22 00:08:11 +0800 |
commit | 66250384aac316bb7c7e78e17a9f60ee4eef0d73 (patch) | |
tree | ac1208411d08a7a297bc4f544163f0a43e756b59 /net/v6eval | |
parent | 48de0cba3d21dae83e5b1fed09e41e79380ef9ec (diff) | |
download | freebsd-ports-graphics-66250384aac316bb7c7e78e17a9f60ee4eef0d73.tar.gz freebsd-ports-graphics-66250384aac316bb7c7e78e17a9f60ee4eef0d73.tar.zst freebsd-ports-graphics-66250384aac316bb7c7e78e17a9f60ee4eef0d73.zip |
Explicitly depend on p5-Digest-MD5 only if PERL_LEVEL < 500703
Explicitly depend on p5-Digest-SHA only if PERL_LEVEL < 501000
Diffstat (limited to 'net/v6eval')
-rw-r--r-- | net/v6eval/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net/v6eval/Makefile b/net/v6eval/Makefile index 4dbb1f72c5b..721807745a4 100644 --- a/net/v6eval/Makefile +++ b/net/v6eval/Makefile @@ -7,7 +7,7 @@ PORTNAME= v6eval PORTVERSION= 3.0.1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net ipv6 MASTER_SITES= http://www.tahi.org/release/v6eval/ @@ -15,8 +15,7 @@ MASTER_SITES= http://www.tahi.org/release/v6eval/ MAINTAINER= Yukiyo.Akisada@jp.yokogawa.com COMMENT= IPv6 Conformance Test Platform -RUN_DEPENDS= ${SITE_PERL}/Expect.pm:${PORTSDIR}/lang/p5-Expect \ - ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 +RUN_DEPENDS= ${SITE_PERL}/Expect.pm:${PORTSDIR}/lang/p5-Expect USE_PERL5= yes USE_OPENSSL= yes @@ -30,6 +29,10 @@ SUB_FILES= pkg-message .include <bsd.port.pre.mk> +.if ${PERL_LEVEL} < 500703 +RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 +.endif + .if ${OSVERSION} > 900007 BROKEN= fails to build with new utmpx .endif |