Install net-snmp-config into $(STAGING_DIR)/host/bin rather then
[openwrt/svn-archive/archive.git] / libs / net-snmp / Makefile
1 #
2 # Copyright (C) 2006-2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=net-snmp
12 PKG_VERSION:=5.1.2
13 PKG_RELEASE:=2.3
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/net-snmp
17 PKG_MD5SUM:=8080555ab3f90011f25d5122042d9a8d
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/net-snmp/Default
22 SECTION:=net
23 CATEGORY:=Network
24 URL:=http://www.net-snmp.org/
25 endef
26
27 define Package/net-snmp/Default/description
28 Simple Network Management Protocol (SNMP) is a widely used protocol for
29 monitoring the health and welfare of network equipment (eg. routers),
30 computer equipment and even devices like UPSs. Net-SNMP is a suite of
31 applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both
32 IPv4 and IPv6.
33 endef
34
35
36 define Package/libnetsnmp
37 $(call Package/net-snmp/Default)
38 SECTION:=libs
39 CATEGORY:=Libraries
40 DEPENDS:=+libelf
41 TITLE:=Open source SNMP implementation (librairies)
42 endef
43
44 define Package/libnetsnmp/description
45 $(call Package/net-snmp/Default/description)
46 .
47 This package contains shared libraries, needed by other programs.
48 endef
49
50
51 define Package/snmp-utils
52 $(call Package/net-snmp/Default)
53 DEPENDS:=+libnetsnmp
54 TITLE:=Open source SNMP implementation (utilities)
55 endef
56
57 define Package/snmp-utils/description
58 $(call Package/net-snmp/Default/description)
59 .
60 This package contains SNMP client utilities.
61 endef
62
63
64 define Package/snmpd
65 $(call Package/net-snmp/Default)
66 DEPENDS:=+libnetsnmp
67 TITLE:=Open source SNMP implementation (daemon)
68 endef
69
70 define Package/snmpd/description
71 $(call Package/net-snmp/Default/description)
72 .
73 This package contains the SNMP agent, dynamically linked.
74 endef
75
76
77 define Package/snmpd-static
78 $(call Package/net-snmp/Default)
79 TITLE:=Open source SNMP implementation (daemon)
80 endef
81
82 define Package/snmpd-static/description
83 $(call Package/net-snmp/Default/description)
84 .
85 This package contains the SNMP agent, statically linked.
86 endef
87
88
89 SNMP_MIB_MODULES_INCLUDED = \
90 host/hr_device \
91 host/hr_disk \
92 host/hr_filesys \
93 host/hr_network \
94 host/hr_partition \
95 host/hr_proc \
96 host/hr_storage \
97 host/hr_system \
98 mibII/at \
99 mibII/icmp \
100 mibII/interfaces \
101 mibII/ip \
102 mibII/snmp_mib \
103 mibII/sysORTable \
104 mibII/system_mib \
105 mibII/tcp \
106 mibII/udp \
107 mibII/vacm_context \
108 mibII/vacm_vars \
109 snmpv3/snmpEngine \
110 snmpv3/snmpMPDStats \
111 snmpv3/usmStats \
112 snmpv3/usmUser \
113 snmpv3mibs \
114 tunnel \
115 ucd-snmp/disk \
116 ucd-snmp/dlmod \
117 ucd-snmp/extensible \
118 ucd-snmp/loadave \
119 ucd-snmp/memory \
120 ucd-snmp/pass \
121 ucd-snmp/proc \
122 ucd-snmp/vmstat \
123 util_funcs \
124 utilities/execute \
125
126 SNMP_MIB_MODULES_EXCLUDED = \
127 agent_mibs \
128 agentx \
129 host \
130 ieee802dot11 \
131 mibII \
132 notification \
133 snmpv3mibs \
134 target \
135 ucd_snmp \
136 utilities \
137
138 SNMP_TRANSPORTS_INCLUDED = Callback UDP
139
140 SNMP_TRANSPORTS_EXCLUDED = TCP TCPv6 UDPv6 Unix
141
142 TARGET_CFLAGS += $(FPIC)
143
144 CONFIGURE_ARGS += \
145 --enable-shared \
146 --enable-static \
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 \
155 --disable-ipv6 \
156 --disable-manuals \
157 --disable-mibs \
158 --disable-scripts \
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)" \
163 --without-openssl \
164 --without-libwrap \
165 --without-rpm \
166 --without-zlib \
167
168 define Build/Compile
169 rm -rf $(PKG_INSTALL_DIR)
170 mkdir -p $(PKG_INSTALL_DIR)
171 $(MAKE) -C $(PKG_BUILD_DIR) \
172 INSTALL_PREFIX="$(PKG_INSTALL_DIR)" \
173 all install
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)" \
180 all install
181 ( cd $(PKG_INSTALL_DIR); mv ./usr/sbin/snmpd ./usr/sbin/snmpd-static; )
182 #endif
183 endef
184
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
189
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/
194 endef
195
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/
199 endef
200
201 define Package/snmpd/conffiles
202 /etc/default/snmpd
203 /etc/config/snmpd
204 endef
205
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
217 endef
218
219 define Package/snmpd-static/conffiles
220 /etc/default/snmpd
221 /etc/config/snmpd
222 endef
223
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
235 endef
236
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/
240 endef
241
242 $(eval $(call BuildPackage,libnetsnmp))
243 $(eval $(call BuildPackage,snmp-utils))
244 $(eval $(call BuildPackage,snmpd))
245 $(eval $(call BuildPackage,snmpd-static))