blob: 96f7cd88d42bb85e2e97f6703de2f20f1011309f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# New ports collection makefile for: p5-SNMP
# Date created: May 5th 1997
# Whom: James FitzGibbon <jfitz@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= SNMP
PORTVERSION= 4.2.0
CATEGORIES= net-mgmt perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= SNMP
PKGNAMEPREFIX= p5-
MAINTAINER= ports@FreeBSD.org
COMMENT= A perl5 module for interfacing with the CMU SNMP library
LIB_DEPENDS= snmp.4:${PORTSDIR}/net-mgmt/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.post.mk>
|