functionality is to assemble/disassemble SNMP messages from/into given SNMP Object IDs along with associated values. PySNMP also provides a few transport methods specific to TCP/IP networking. PySNMP is written entirely in Python and is self-sufficient in terms that it does not rely on any third party tool (it is not a wrapper!).
24 lines
553 B
Makefile
24 lines
553 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/06/01 18:18:13 goteki Exp $
|
|
#
|
|
|
|
DISTNAME= pysnmp-3.4.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pysnmp/}
|
|
|
|
MAINTAINER= goteki@users.sourceforge.net
|
|
HOMEPAGE= http://pysnmp.sourceforge.net/
|
|
COMMENT= Python SNMP framework
|
|
|
|
PY_PATCHPLIST= yes
|
|
USE_BUILDLINK3= yes
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} && ${PYTHONBIN} setup.py build)
|
|
|
|
do-install:
|
|
(cd ${WRKSRC} && ${PYTHONBIN} setup.py install)
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|
|
|