2 # Copyright (C) 2006-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/net-snmp
16 PKG_MD5SUM:=8080555ab3f90011f25d5122042d9a8d
18 include $(INCLUDE_DIR)/package.mk
20 define Package/net-snmp/Default
23 URL:=http://www.net-snmp.org/
26 define Package/net-snmp/Default/description
27 Simple Network Management Protocol (SNMP) is a widely used protocol for
28 monitoring the health and welfare of network equipment (eg. routers),
29 computer equipment and even devices like UPSs. Net-SNMP is a suite of
30 applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
35 define Package/libnetsnmp
36 $(call Package/net-snmp/Default)
40 TITLE:=Open source SNMP implementation (librairies)
43 define Package/libnetsnmp/description
44 $(call Package/net-snmp/Default/description)
46 This package contains shared libraries, needed by other programs.
50 define Package/snmp-utils
51 $(call Package/net-snmp/Default)
53 TITLE:=Open source SNMP implementation (utilities)
56 define Package/snmp-utils/description
57 $(call Package/net-snmp/Default/description)
59 This package contains SNMP client utilities.
64 $(call Package/net-snmp/Default)
66 TITLE:=Open source SNMP implementation (daemon)
69 define Package/snmpd/description
70 $(call Package/net-snmp/Default/description)
72 This package contains the SNMP agent, dynamically linked.
76 define Package/snmpd-static
77 $(call Package/net-snmp/Default)
78 TITLE:=Open source SNMP implementation (daemon)
82 define Package/snmpd-static/description
83 $(call Package/net-snmp/Default/description)
85 This package contains the SNMP agent, statically linked.
89 SNMP_MIB_MODULES_INCLUDED = \
110 snmpv3/snmpMPDStats \
117 ucd-snmp/extensible \
126 SNMP_MIB_MODULES_EXCLUDED = \
138 SNMP_TRANSPORTS_INCLUDED = Callback UDP
140 SNMP_TRANSPORTS_EXCLUDED = TCP TCPv6 UDPv6 Unix
142 TARGET_CFLAGS += $(FPIC)
147 --with-endianness=little \
148 --with-logfile=/var/log/snmpd.log \
149 --with-persistent-directory=/usr/lib/snmp/ \
150 --with-default-snmp-version=1 \
151 --with-sys-contact=root@localhost \
152 --with-sys-location=Unknown \
153 --enable-applications \
154 --disable-debugging \
159 --with-out-mib-modules="$(SNMP_MIB_MODULES_EXCLUDED)" \
160 --with-mib-modules="$(SNMP_MIB_MODULES_INCLUDED)" \
161 --with-out-transports="$(SNMP_TRANSPORTS_EXCLUDED)" \
162 --with-transports="$(SNMP_TRANSPORTS_INCLUDED)" \
169 rm -rf $(PKG_INSTALL_DIR)
170 mkdir -p $(PKG_INSTALL_DIR)
171 $(MAKE) -C $(PKG_BUILD_DIR) \
172 INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
174 ( cd $(PKG_INSTALL_DIR); mv ./usr/sbin/snmpd ./usr/sbin/snmpd-shared; )
175 #ifneq ($(CONFIG_PACKAGE_snmpd-static),)
176 ( cd $(PKG_BUILD_DIR); rm -f agent/snmpd; )
177 $(MAKE) -C $(PKG_BUILD_DIR) \
178 LDFLAGS="$(TARGET_LDFLAGS) -static" \
179 INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
181 ( cd $(PKG_INSTALL_DIR); mv ./usr/sbin/snmpd ./usr/sbin/snmpd-static; )
185 define Build/InstallDev
186 $(INSTALL_DIR) $(2)/bin
187 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/net-snmp-config $(2)/bin/
188 $(SED) 's,=/usr,=$(STAGING_DIR)/usr,g' $(2)/bin/net-snmp-config
190 $(INSTALL_DIR) $(1)/usr/include
191 $(CP) $(PKG_INSTALL_DIR)/usr/include/net-snmp $(1)/usr/include/
192 $(INSTALL_DIR) $(1)/usr/lib
193 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnetsnmp{,agent,helpers,mibs}.{a,so*} $(1)/usr/lib/
196 define Package/libnetsnmp/install
197 $(INSTALL_DIR) $(1)/usr/lib
198 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libnetsnmp{,agent,helpers,mibs}.so.* $(1)/usr/lib/
201 define Package/snmpd/conffiles
206 define Package/snmpd/install
207 $(INSTALL_DIR) $(1)/etc/config
208 $(INSTALL_DATA) ./files/snmpd.conf $(1)/etc/config/snmpd
209 $(INSTALL_DIR) $(1)/etc/snmp
210 ln -sf /var/run/snmpd.conf $(1)/etc/snmp/
211 $(INSTALL_DIR) $(1)/etc/default
212 $(INSTALL_DATA) ./files/snmpd.default $(1)/etc/default/snmpd
213 $(INSTALL_DIR) $(1)/etc/init.d
214 $(INSTALL_BIN) ./files/snmpd.init $(1)/etc/init.d/snmpd
215 $(INSTALL_DIR) $(1)/usr/sbin
216 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/snmpd-shared $(1)/usr/sbin/snmpd
219 define Package/snmpd-static/conffiles
224 define Package/snmpd-static/install
225 $(INSTALL_DIR) $(1)/etc/config
226 $(INSTALL_DATA) ./files/snmpd.conf $(1)/etc/config/snmpd
227 $(INSTALL_DIR) $(1)/etc/snmp
228 ln -sf /var/run/snmpd.conf $(1)/etc/snmp/
229 $(INSTALL_DIR) $(1)/etc/default
230 $(INSTALL_DATA) ./files/snmpd.default $(1)/etc/default/snmpd
231 $(INSTALL_DIR) $(1)/etc/init.d
232 $(INSTALL_BIN) ./files/snmpd.init $(1)/etc/init.d/snmpd
233 $(INSTALL_DIR) $(1)/usr/sbin
234 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/snmpd-static $(1)/usr/sbin/snmpd
237 define Package/snmp-utils/install
238 $(INSTALL_DIR) $(1)/usr/bin
239 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/snmp{get,set,status,test,trap,walk} $(1)/usr/bin/
242 $(eval $(call BuildPackage,libnetsnmp))
243 $(eval $(call BuildPackage,snmp-utils))
244 $(eval $(call BuildPackage,snmpd))
245 $(eval $(call BuildPackage,snmpd-static))