[packages] quagga: Revert community related memleak fixes until properly implemented
[openwrt/svn-archive/archive.git] / net / quagga / Makefile
1 #
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=quagga
11 ifneq ($(CONFIG_QUAGGA_OLD),)
12 PKG_VERSION:=0.98.6
13 PKG_RELEASE:=9
14 PKG_MD5SUM:=b0d4132039953a0214256873b7d23d68
15 PATCH_DIR:=./patches-old
16 else
17 PKG_VERSION:=0.99.17
18 PKG_RELEASE:=7
19 PKG_MD5SUM:=37b9022adca04b03863d2d79787e643f
20 endif
21
22 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
23 PKG_SOURCE_URL:=http://www.quagga.net/download/ \
24 http://www.de.quagga.net/download/ \
25 http://www.uk.quagga.net/download/
26 PKG_CONFIG_DEPENDS:= \
27 CONFIG_QUAGGA_OLD \
28 CONFIG_IPV6 \
29 CONFIG_PACKAGE_quagga-libzebra \
30 CONFIG_PACKAGE_quagga-libospf \
31 CONFIG_PACKAGE_quagga-bgpd \
32 CONFIG_PACKAGE_quagga-isisd \
33 CONFIG_PACKAGE_quagga-ospf6d \
34 CONFIG_PACKAGE_quagga-ripd \
35 CONFIG_PACKAGE_quagga-ripngd \
36 CONFIG_PACKAGE_quagga-vtysh
37 PKG_BUILD_PARALLEL:=1
38 PKG_FIXUP:=libtool
39 PKG_INSTALL:=1
40
41 include $(INCLUDE_DIR)/package.mk
42
43 define Package/quagga/Default
44 SECTION:=net
45 CATEGORY:=Network
46 DEPENDS:=quagga
47 TITLE:=The Quagga Software Routing Suite
48 URL:=http://www.quagga.net
49 MAINTAINER:=Vasilis Tsiligiannis <b_tsiligiannis@silverton.gr>
50 endef
51
52 define Package/quagga
53 $(call Package/quagga/Default)
54 DEPENDS:=+!QUAGGA_OLD:librt
55 MENU:=1
56 endef
57
58 define Package/quagga/description
59 A routing software package that provides TCP/IP based routing services
60 with routing protocols support such as RIPv1, RIPv2, RIPng, OSPFv2,
61 OSPFv3, BGP-4, and BGP-4+
62 endef
63
64 define Package/quagga/config
65 config QUAGGA_OLD
66 depends on (PACKAGE_quagga && BROKEN)
67 default n
68 bool "Use the old release version 0.98.6"
69 help
70 This option allows you to select the old version of Quagga to be built.
71 endef
72
73 define Package/quagga-libzebra
74 $(call Package/quagga/Default)
75 TITLE:=zebra library
76 endef
77
78 define Package/quagga-libospf
79 $(call Package/quagga/Default)
80 TITLE:=OSPF library
81 endef
82
83 define Package/quagga-bgpd
84 $(call Package/quagga/Default)
85 DEPENDS+=+quagga-libzebra
86 TITLE:=BGPv4, BGPv4+, BGPv4- routing engine
87 endef
88
89 define Package/quagga-isisd
90 $(call Package/quagga/Default)
91 TITLE:=IS-IS routing engine
92 endef
93
94 define Package/quagga-ospfd
95 $(call Package/quagga/Default)
96 DEPENDS+=+quagga-libospf +quagga-libzebra
97 TITLE:=OSPFv2 routing engine
98 endef
99
100 define Package/quagga-ospf6d
101 $(call Package/quagga/Default)
102 DEPENDS+=+quagga-libospf +quagga-libzebra @IPV6
103 TITLE:=OSPFv3 routing engine
104 endef
105
106 define Package/quagga-ripd
107 $(call Package/quagga/Default)
108 DEPENDS+=+quagga-libzebra
109 TITLE:=RIP routing engine
110 endef
111
112 define Package/quagga-ripngd
113 $(call Package/quagga/Default)
114 DEPENDS+=+quagga-libzebra @IPV6
115 TITLE:=RIPNG routing engine
116 endef
117
118 define Package/quagga-vtysh
119 $(call Package/quagga/Default)
120 DEPENDS+=quagga-libzebra +libreadline +libncurses
121 TITLE:=integrated shell for Quagga routing software
122 endef
123
124 define Package/quagga/conffiles
125 /etc/quagga/zebra.conf
126 endef
127
128 define Package/quagga-bgpd/conffiles
129 /etc/quagga/bgpd.conf
130 endef
131
132 define Package/quagga-isisd/conffiles
133 /etc/quagga/isisd.conf
134 endef
135
136 define Package/quagga-ospfd/conffiles
137 /etc/quagga/ospfd.conf
138 endef
139
140 define Package/quagga-ospf6d/conffiles
141 /etc/quagga/ospf6d.conf
142 endef
143
144 define Package/quagga-ripd/conffiles
145 /etc/quagga/ripd.conf
146 endef
147
148 define Package/quagga-ripngd/conffiles
149 /etc/quagga/ripngd.conf
150 endef
151
152 ifneq ($(SDK),)
153 CONFIG_PACKAGE_quagga-libzebra:=m
154 CONFIG_PACKAGE_quagga-libospf:=m
155 CONFIG_PACKAGE_quagga-bgpd:=m
156 CONFIG_PACKAGE_quagga-isisd:=m
157 CONFIG_PACKAGE_quagga-ospf6d:=m
158 CONFIG_PACKAGE_quagga-ripd:=m
159 CONFIG_PACKAGE_quagga-ripngd:=m
160 CONFIG_PACKAGE_quagga-vtysh:=m
161 endif
162
163 CONFIGURE_ARGS+= \
164 --localstatedir=/var/run/quagga \
165 --sysconfdir=/etc/quagga/ \
166 --enable-shared \
167 --disable-static \
168 --enable-user=quagga \
169 --enable-group=quagga \
170 --enable-pie=no \
171 --enable-multipath=8 \
172 $(call autoconf_bool,CONFIG_PACKAGE_quagga-libzebra,zebra) \
173 $(call autoconf_bool,CONFIG_PACKAGE_quagga-libospf,ospfd) \
174 $(call autoconf_bool,CONFIG_PACKAGE_quagga-bgpd,bgpd) \
175 $(call autoconf_bool,CONFIG_PACKAGE_quagga-isisd,isisd) \
176 $(call autoconf_bool,CONFIG_PACKAGE_quagga-ospf6d,ospf6d) \
177 $(call autoconf_bool,CONFIG_PACKAGE_quagga-ripd,ripd) \
178 $(call autoconf_bool,CONFIG_PACKAGE_quagga-ripngd,ripngd) \
179 $(call autoconf_bool,CONFIG_PACKAGE_quagga-vtysh,vtysh) \
180
181 MAKE_FLAGS += \
182 CFLAGS="$(TARGET_CFLAGS) -std=gnu99"
183
184 define Build/Configure
185 (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
186 autoconf \
187 );
188 $(call Build/Configure/Default)
189 endef
190
191 define Package/quagga/install
192 $(INSTALL_DIR) $(1)/usr/sbin
193 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zebra $(1)/usr/sbin/
194 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/watchquagga $(1)/usr/sbin/
195 # avoid /etc being set to 0750
196 $(INSTALL_DIR) $(1)/etc/quagga
197 chmod 0750 $(1)/etc/quagga
198 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/zebra.conf
199 $(INSTALL_DIR) $(1)/etc/init.d
200 $(INSTALL_BIN) ./files/quagga $(1)/usr/sbin/quagga.init
201 $(INSTALL_BIN) ./files/quagga.init $(1)/etc/init.d/quagga
202 endef
203
204 define Package/quagga/postinst
205 #!/bin/sh
206
207 name=quagga
208 id=51
209
210 # do not change below
211 # check if we are on real system
212 if [ -z "$${IPKG_INSTROOT}" ]; then
213 # create copies of passwd and group, if we use squashfs
214 rootfs=`mount |awk '/root/ { print $$5 }'`
215 if [ "$$rootfs" = "squashfs" ]; then
216 if [ -h /etc/group ]; then
217 rm /etc/group
218 cp /rom/etc/group /etc/group
219 fi
220 if [ -h /etc/passwd ]; then
221 rm /etc/passwd
222 cp /rom/etc/passwd /etc/passwd
223 fi
224 fi
225 fi
226
227 echo ""
228 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
229 echo "adding group $$name to /etc/group"
230 echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
231 fi
232
233 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
234 echo "adding user $$name to /etc/passwd"
235 echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
236 fi
237
238 grep -q '^zebra[[:space:]]*2601/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
239 if [ $$? -ne 0 ]; then
240 echo "zebrasrv 2600/tcp" >>$${IPKG_INSTROOT}/etc/services
241 echo "zebra 2601/tcp" >>$${IPKG_INSTROOT}/etc/services
242 echo "ripd 2602/tcp" >>$${IPKG_INSTROOT}/etc/services
243 echo "ripngd 2603/tcp" >>$${IPKG_INSTROOT}/etc/services
244 echo "ospfd 2604/tcp" >>$${IPKG_INSTROOT}/etc/services
245 echo "bgpd 2605/tcp" >>$${IPKG_INSTROOT}/etc/services
246 echo "ospf6d 2606/tcp" >>$${IPKG_INSTROOT}/etc/services
247 echo "ospfapi 2607/tcp" >>$${IPKG_INSTROOT}/etc/services
248 echo "isisd 2608/tcp" >>$${IPKG_INSTROOT}/etc/services
249 fi
250 endef
251
252 define Package/quagga-bgpd/install
253 $(INSTALL_DIR) $(1)/usr/sbin
254 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/bgpd $(1)/usr/sbin/
255 $(INSTALL_DIR) $(1)/etc/quagga
256 chmod 0750 $(1)/etc/quagga
257 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/bgpd.conf
258 endef
259
260 define Package/quagga-isisd/install
261 $(INSTALL_DIR) $(1)/usr/sbin
262 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/isisd $(1)/usr/sbin/
263 $(INSTALL_DIR) $(1)/etc/quagga
264 chmod 0750 $(1)/etc/quagga
265 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/isisd.conf
266 endef
267
268 define Package/quagga-ospfd/install
269 $(INSTALL_DIR) $(1)/usr/sbin
270 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospfd $(1)/usr/sbin/
271 $(INSTALL_DIR) $(1)/etc/quagga
272 chmod 0750 $(1)/etc/quagga
273 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospfd.conf
274 endef
275
276 define Package/quagga-ospf6d/install
277 $(INSTALL_DIR) $(1)/usr/sbin
278 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospf6d $(1)/usr/sbin/
279 $(INSTALL_DIR) $(1)/etc/quagga
280 chmod 0750 $(1)/etc/quagga
281 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospf6d.conf
282 endef
283
284 define Package/quagga-ripd/install
285 $(INSTALL_DIR) $(1)/usr/sbin
286 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripd $(1)/usr/sbin/
287 $(INSTALL_DIR) $(1)/etc/quagga
288 chmod 0750 $(1)/etc/quagga
289 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripd.conf
290 endef
291
292 define Package/quagga-ripngd/install
293 $(INSTALL_DIR) $(1)/usr/sbin
294 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripngd $(1)/usr/sbin/
295 $(INSTALL_DIR) $(1)/etc/quagga
296 chmod 0750 $(1)/etc/quagga
297 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripngd.conf
298 endef
299
300 define Package/quagga-vtysh/install
301 $(INSTALL_DIR) $(1)/usr/bin
302 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
303 endef
304
305 define Package/quagga-libospf/install
306 $(INSTALL_DIR) $(1)/usr/lib
307 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libospf.so.* $(1)/usr/lib/
308 endef
309
310 define Package/quagga-libzebra/install
311 $(INSTALL_DIR) $(1)/usr/lib
312 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libzebra.so.* $(1)/usr/lib/
313 endef
314
315 $(eval $(call BuildPackage,quagga))
316 $(eval $(call BuildPackage,quagga-libzebra))
317 $(eval $(call BuildPackage,quagga-libospf))
318 $(eval $(call BuildPackage,quagga-bgpd))
319 $(eval $(call BuildPackage,quagga-isisd))
320 $(eval $(call BuildPackage,quagga-ospfd))
321 $(eval $(call BuildPackage,quagga-ospf6d))
322 $(eval $(call BuildPackage,quagga-ripd))
323 $(eval $(call BuildPackage,quagga-ripngd))
324 $(eval $(call BuildPackage,quagga-vtysh))