diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-08 12:13:33 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-08 12:13:33 +0800 |
commit | ebc8eb7b81af193245c196ced9b4aa8093bc763b (patch) | |
tree | e6143f8bbfa2ae64b8207d4618fb0e6f0a6dca34 /net-mgmt/p5-Net-SNMP3 | |
parent | f2d7f038d53a2933183f4a9cce65a2313f02bcba (diff) | |
download | freebsd-ports-gnome-ebc8eb7b81af193245c196ced9b4aa8093bc763b.tar.gz freebsd-ports-gnome-ebc8eb7b81af193245c196ced9b4aa8093bc763b.tar.zst freebsd-ports-gnome-ebc8eb7b81af193245c196ced9b4aa8093bc763b.zip |
net/p5-Net-SNMP requires perl 5.6.0 or newer. This diff marks
the port BROKEN under older perls.
PR: ports/44749
Submitted by: Lars Thegler <lars@thegler.dk>
Diffstat (limited to 'net-mgmt/p5-Net-SNMP3')
-rw-r--r-- | net-mgmt/p5-Net-SNMP3/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/net-mgmt/p5-Net-SNMP3/Makefile b/net-mgmt/p5-Net-SNMP3/Makefile index e42b78386ee7..519a89420ada 100644 --- a/net-mgmt/p5-Net-SNMP3/Makefile +++ b/net-mgmt/p5-Net-SNMP3/Makefile @@ -7,6 +7,7 @@ PORTNAME= Net-SNMP PORTVERSION= 4.0.3 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Net @@ -14,6 +15,8 @@ PKGNAMEPREFIX= p5- MAINTAINER= lars@thegler.dk +.include <bsd.port.pre.mk> + RUN_DEPENDS= ${ARCH_PERL}/Crypt/DES.pm:${PORTSDIR}/security/p5-Crypt-DES \ ${ARCH_PERL}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ ${ARCH_PERL}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ @@ -24,8 +27,15 @@ PERL_CONFIGURE= yes SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER} ARCH_PERL= ${SITE_PERL}/${PERL_ARCH} +PERL_MAJOR=${PERL_VER:C|^([1-9]+).*|\1|} +PERL_MINOR=${PERL_VER:C|^[1-9]+\.0*([1-9]+).*|\1|} + +.if ${PERL_MAJOR} < 5 || ${PERL_MAJOR} == 5 && ${PERL_MINOR} < 6 +BROKEN= "This port requires Perl v5.6.0 or newer" +.endif + MAN1= snmpkey.1 MAN3= Net::SNMP.3 MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |