2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=@SF
/$(PKG_NAME
)
17 PKG_MD5SUM
:=8a3e9a5b814388d7907c639105cb2365
19 include $(INCLUDE_DIR
)/package.mk
20 include ..
/python
/python-package.mk
22 define PyPackage
/yapsnmp
23 TITLE
:=Python interface to Net-SNMP
24 URL
:=http
://yapsnmp.sourceforge.net
/
28 define PyPackage
/yapsnmp
/description
29 This package contains a Python SNMP module based on the net-snmp
(formerly
30 known
as ucd-snmp
) library. It
's composed of a low level interface to the
31 library, created using SWIG, and a higher level python module removing all
32 the complexity out of dealing with SNMP.
35 define PyPackage/yapsnmp/filespec
36 +|$(PYTHON_PKG_DIR)/netsnmp.py
37 +|$(PYTHON_PKG_DIR)/netsnmpc.so
38 +|$(PYTHON_PKG_DIR)/yapsnmp.py
44 --enable-site-packages-prefix="$(PYTHON_PKG_DIR)" \
47 ac_cv_file__usr_include_net_snmp_library="yes" \
49 define Build/Configure
50 $(call Build/Configure/Default)
51 $(call libtool_disable_rpath)
55 $(MAKE) -C $(PKG_BUILD_DIR) \
56 INCLUDES="-I$(PYTHON_INC_DIR)" \
57 SNMPINCDIR="$(STAGING_DIR)/usr/include/net-snmp/library" \
59 $(call libtool_fixup_libdir,$(PKG_INSTALL_DIR))
60 $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" install
63 $(eval $(call PyPackage,yapsnmp))