diff options
author | kris <kris@FreeBSD.org> | 2004-02-06 19:32:30 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-06 19:32:30 +0800 |
commit | 7b53ebab57eabe715c809208f17f8995a58fefba (patch) | |
tree | 420f15750032fdd0257481262f35961cb6273d35 /net | |
parent | 38745451b9ff27573ce6973cfd9d3c2f622204ca (diff) | |
download | freebsd-ports-gnome-7b53ebab57eabe715c809208f17f8995a58fefba.tar.gz freebsd-ports-gnome-7b53ebab57eabe715c809208f17f8995a58fefba.tar.zst freebsd-ports-gnome-7b53ebab57eabe715c809208f17f8995a58fefba.zip |
BROKEN: does not build with perl >=5.8
Diffstat (limited to 'net')
-rw-r--r-- | net/p5-SNMP/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/p5-SNMP/Makefile b/net/p5-SNMP/Makefile index c5b71664116b..3072d061b8e6 100644 --- a/net/p5-SNMP/Makefile +++ b/net/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> |