diff options
author | kris <kris@FreeBSD.org> | 2004-02-06 11:32:30 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-06 11:32:30 +0000 |
commit | 7b53ebab57eabe715c809208f17f8995a58fefba (patch) | |
tree | 420f15750032fdd0257481262f35961cb6273d35 /net-mgmt/p5-SNMP | |
parent | 38745451b9ff27573ce6973cfd9d3c2f622204ca (diff) | |
download | FreeBSD-ports-7b53ebab57eabe715c809208f17f8995a58fefba.zip FreeBSD-ports-7b53ebab57eabe715c809208f17f8995a58fefba.tar.gz |
BROKEN: does not build with perl >=5.8
Diffstat (limited to 'net-mgmt/p5-SNMP')
-rw-r--r-- | net-mgmt/p5-SNMP/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-mgmt/p5-SNMP/Makefile b/net-mgmt/p5-SNMP/Makefile index c5b7166..3072d06 100644 --- a/net-mgmt/p5-SNMP/Makefile +++ b/net-mgmt/p5-SNMP/Makefile @@ -19,8 +19,14 @@ LIB_DEPENDS= snmp.4:${PORTSDIR}/net/net-snmp4 PERL_CONFIGURE= yes +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} >= 500800 +BROKEN= "Does not build with perl >=5.8" +.endif + post-install: @${INSTALL_DATA} ${WRKSRC}/README \ ${PREFIX}/lib/perl5/site_perl/README.SNMP -.include <bsd.port.mk> +.include <bsd.port.post.mk> |