[packages_10.03.1] merge r27790
[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:=10
14 PKG_MD5SUM:=b0d4132039953a0214256873b7d23d68
15 PATCH_DIR:=./patches-old
16 else
17 PKG_VERSION:=0.99.18
18 PKG_RELEASE:=2
19 PKG_MD5SUM:=59e306e93a4a1ce16760f20e9075d473
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:=autoreconf
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=network \
169 --enable-group=network \
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-bgpd/install
205 $(INSTALL_DIR) $(1)/usr/sbin
206 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/bgpd $(1)/usr/sbin/
207 $(INSTALL_DIR) $(1)/etc/quagga
208 chmod 0750 $(1)/etc/quagga
209 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/bgpd.conf
210 endef
211
212 define Package/quagga-isisd/install
213 $(INSTALL_DIR) $(1)/usr/sbin
214 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/isisd $(1)/usr/sbin/
215 $(INSTALL_DIR) $(1)/etc/quagga
216 chmod 0750 $(1)/etc/quagga
217 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/isisd.conf
218 endef
219
220 define Package/quagga-ospfd/install
221 $(INSTALL_DIR) $(1)/usr/sbin
222 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospfd $(1)/usr/sbin/
223 $(INSTALL_DIR) $(1)/etc/quagga
224 chmod 0750 $(1)/etc/quagga
225 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospfd.conf
226 endef
227
228 define Package/quagga-ospf6d/install
229 $(INSTALL_DIR) $(1)/usr/sbin
230 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ospf6d $(1)/usr/sbin/
231 $(INSTALL_DIR) $(1)/etc/quagga
232 chmod 0750 $(1)/etc/quagga
233 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ospf6d.conf
234 endef
235
236 define Package/quagga-ripd/install
237 $(INSTALL_DIR) $(1)/usr/sbin
238 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripd $(1)/usr/sbin/
239 $(INSTALL_DIR) $(1)/etc/quagga
240 chmod 0750 $(1)/etc/quagga
241 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripd.conf
242 endef
243
244 define Package/quagga-ripngd/install
245 $(INSTALL_DIR) $(1)/usr/sbin
246 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ripngd $(1)/usr/sbin/
247 $(INSTALL_DIR) $(1)/etc/quagga
248 chmod 0750 $(1)/etc/quagga
249 $(INSTALL_CONF) ./files/quagga.conf $(1)/etc/quagga/ripngd.conf
250 endef
251
252 define Package/quagga-vtysh/install
253 $(INSTALL_DIR) $(1)/usr/bin
254 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vtysh $(1)/usr/bin/
255 endef
256
257 define Package/quagga-libospf/install
258 $(INSTALL_DIR) $(1)/usr/lib
259 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libospf.so.* $(1)/usr/lib/
260 endef
261
262 define Package/quagga-libzebra/install
263 $(INSTALL_DIR) $(1)/usr/lib
264 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libzebra.so.* $(1)/usr/lib/
265 endef
266
267 $(eval $(call BuildPackage,quagga))
268 $(eval $(call BuildPackage,quagga-libzebra))
269 $(eval $(call BuildPackage,quagga-libospf))
270 $(eval $(call BuildPackage,quagga-bgpd))
271 $(eval $(call BuildPackage,quagga-isisd))
272 $(eval $(call BuildPackage,quagga-ospfd))
273 $(eval $(call BuildPackage,quagga-ospf6d))
274 $(eval $(call BuildPackage,quagga-ripd))
275 $(eval $(call BuildPackage,quagga-ripngd))
276 $(eval $(call BuildPackage,quagga-vtysh))