051177fd6754b37348c0835604231b8ad705fcb2
[openwrt/svn-archive/archive.git] / net / quagga / Makefile
1 #
2 # Copyright (C) 2006-2010 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:=8
14 PKG_MD5SUM:=b0d4132039953a0214256873b7d23d68
15 PATCH_DIR:=./patches-old
16 else
17 PKG_VERSION:=0.99.17
18 PKG_RELEASE:=4
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 define Build/Configure
182 (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
183 autoconf \
184 );
185 $(call Build/Configure/Default)
186 endef
187
188 define Package/quagga/install
189 $(INSTALL_DIR) $(1)/usr/sbin
190 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zebra $(1)/usr/sbin/
191 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/watchquagga $(1)/usr/sbin/
192 # avoid /etc being set to 0750
193 $(INSTALL_DIR) $(1)/etc/quagga
194 chmod 0750 $(1)/etc/quagga
195 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/zebra.conf
196 $(INSTALL_DIR) $(1)/etc/init.d
197 $(INSTALL_BIN) ./files/quagga $(1)/usr/sbin/quagga.init
198 $(INSTALL_BIN) ./files/quagga.init $(1)/etc/init.d/quagga
199 endef
200
201 define Package/quagga/postinst
202 #!/bin/sh
203
204 name=quagga
205 id=51
206
207 # do not change below
208 # check if we are on real system
209 if [ -z "$${IPKG_INSTROOT}" ]; then
210 # create copies of passwd and group, if we use squashfs
211 rootfs=`mount |awk '/root/ { print $$5 }'`
212 if [ "$$rootfs" = "squashfs" ]; then
213 if [ -h /etc/group ]; then
214 rm /etc/group
215 cp /rom/etc/group /etc/group
216 fi
217 if [ -h /etc/passwd ]; then
218 rm /etc/passwd
219 cp /rom/etc/passwd /etc/passwd
220 fi
221 fi
222 fi
223
224 echo ""
225 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
226 echo "adding group $$name to /etc/group"
227 echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
228 fi
229
230 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
231 echo "adding user $$name to /etc/passwd"
232 echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
233 fi
234
235 grep -q '^zebra[[:space:]]*2601/tcp' $${IPKG_INSTROOT}/etc/services 2>/dev/null
236 if [ $$? -ne 0 ]; then
237 echo "zebrasrv 2600/tcp" >>$${IPKG_INSTROOT}/etc/services
238 echo "zebra 2601/tcp" >>$${IPKG_INSTROOT}/etc/services
239 echo "ripd 2602/tcp" >>$${IPKG_INSTROOT}/etc/services
240 echo "ripngd 2603/tcp" >>$${IPKG_INSTROOT}/etc/services
241 echo "ospfd 2604/tcp" >>$${IPKG_INSTROOT}/etc/services
242 echo "bgpd 2605/tcp" >>$${IPKG_INSTROOT}/etc/services
243 echo "ospf6d 2606/tcp" >>$${IPKG_INSTROOT}/etc/services
244 echo "ospfapi 2607/tcp" >>$${IPKG_INSTROOT}/etc/services
245 echo "isisd 2608/tcp" >>$${IPKG_INSTROOT}/etc/services
246 fi
247 endef
248
249 define Package/quagga-bgpd/install
250 $(INSTALL_DIR) $(1)/usr/sbin
251 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/bgpd $(1)/usr/sbin/
252 $(INSTALL_DIR) $(1)/etc/quagga
253 chmod 0750 $(1)/etc/quagga
254 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/bgpd.conf
255 endef
256
257 define Package/quagga-isisd/install
258 $(INSTALL_DIR) $(1)/usr/sbin
259 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/isisd $(1)/usr/sbin/
260 $(INSTALL_DIR) $(1)/etc/quagga
261 chmod 0750 $(1)/etc/quagga
262 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/isisd.conf
263 endef
264
265 define Package/quagga-ospfd/install
266 $(INSTALL_DIR) $(1)/usr/sbin
267 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospfd $(1)/usr/sbin/
268 $(INSTALL_DIR) $(1)/etc/quagga
269 chmod 0750 $(1)/etc/quagga
270 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospfd.conf
271 endef
272
273 define Package/quagga-ospf6d/install
274 $(INSTALL_DIR) $(1)/usr/sbin
275 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospf6d $(1)/usr/sbin/
276 $(INSTALL_DIR) $(1)/etc/quagga
277 chmod 0750 $(1)/etc/quagga
278 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospf6d.conf
279 endef
280
281 define Package/quagga-ripd/install
282 $(INSTALL_DIR) $(1)/usr/sbin
283 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripd $(1)/usr/sbin/
284 $(INSTALL_DIR) $(1)/etc/quagga
285 chmod 0750 $(1)/etc/quagga
286 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripd.conf
287 endef
288
289 define Package/quagga-ripngd/install
290 $(INSTALL_DIR) $(1)/usr/sbin
291 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripngd $(1)/usr/sbin/
292 $(INSTALL_DIR) $(1)/etc/quagga
293 chmod 0750 $(1)/etc/quagga
294 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripngd.conf
295 endef
296
297 define Package/quagga-vtysh/install
298 $(INSTALL_DIR) $(1)/usr/bin
299 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
300 endef
301
302 define Package/quagga-libospf/install
303 $(INSTALL_DIR) $(1)/usr/lib
304 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libospf.so.* $(1)/usr/lib/
305 endef
306
307 define Package/quagga-libzebra/install
308 $(INSTALL_DIR) $(1)/usr/lib
309 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libzebra.so.* $(1)/usr/lib/
310 endef
311
312 $(eval $(call BuildPackage,quagga))
313 $(eval $(call BuildPackage,quagga-libzebra))
314 $(eval $(call BuildPackage,quagga-libospf))
315 $(eval $(call BuildPackage,quagga-bgpd))
316 $(eval $(call BuildPackage,quagga-isisd))
317 $(eval $(call BuildPackage,quagga-ospfd))
318 $(eval $(call BuildPackage,quagga-ospf6d))
319 $(eval $(call BuildPackage,quagga-ripd))
320 $(eval $(call BuildPackage,quagga-ripngd))
321 $(eval $(call BuildPackage,quagga-vtysh))