]> git.proxmox.com Git - mirror_frr.git/blob - redhat/quagga.spec.in
2004-01-08 Paul Jakma <paul@dishone.st>
[mirror_frr.git] / redhat / quagga.spec.in
1 # configure options
2 %define with_snmp 0
3 %define with_vtysh 1
4 %define with_ospf_te 1
5 %define with_nssa 1
6 %define with_opaque_lsa 1
7 %define with_tcp_zebra 0
8 %define with_vtysh 1
9 %define with_pam 1
10 %define with_ipv6 1
11 %define with_ospfclient 1
12 %define with_ospfapi 1
13 %define with_multipath 64
14 %define quagga_user quagga
15 %define vty_group quaggavty
16
17 # path defines
18 %define _sysconfdir /etc/quagga
19 %define zeb_src %{_builddir}/%{name}-%{version}
20 %define zeb_rh_src %{zeb_src}/redhat
21 %define zeb_docs %{zeb_src}/doc
22
23 # defines for configure
24 %define _libexecdir %{_exec_prefix}/libexec/quagga
25 %define _libdir %{_exec_prefix}/%{_lib}/quagga
26 %define _includedir %{_prefix}/include
27 %define _localstatedir /var/run/quagga
28
29 # misc internal defines
30 %define quagga_uid 92
31 %define quagga_gid 92
32 %if %with_ipv6
33 %define daemon_list zebra ripd isisd ospfd ripngd ospf6d bgpd
34 %else
35 %define daemon_list zebra ripd isisd ospfd bgpd
36 %endif
37
38 Summary: Routing daemon
39 Name: quagga
40 Version: @VERSION@
41 Release: @CONFDATE@01
42 License: GPL
43 Group: System Environment/Daemons
44 Source0: http://www.quagga.net/snapshots/cvs/%{name}-%{version}.tar.gz
45 Patch0: quagga-ospfd-dump-nsm-ignore.diff
46 Patch1: quagga-ospfd-iface-config-persist.diff
47 URL: http://www.quagga.net
48 %if %with_snmp
49 BuildRequires: ucd-snmp-devel
50 Prereq: ucd-snmp
51 %endif
52 %if %with_vtysh
53 BuildRequires: readline readline-devel ncurses ncurses-devel
54 Prereq: readline ncurses
55 %endif
56 BuildRequires: texinfo tetex autoconf pam-devel patch libcap-devel
57 # Initscripts > 5.60 is required for IPv6 support
58 Prereq: initscripts >= 5.60
59 Prereq: ncurses readline pam
60 Prereq: /sbin/install-info
61 Provides: routingdaemon
62 BuildRoot: %{_tmppath}/%{name}-%{version}-root
63 Obsoletes: bird gated mrt zebra
64
65 %description
66 Quagga is a free software that manages TCP/IP based routing
67 protocol. It takes multi-server and multi-thread approach to resolve
68 the current complexity of the Internet.
69
70 Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
71
72 Quagga is intended to be used as a Route Server and a Route Reflector. It is
73 not a toolkit, it provides full routing power under a new architecture.
74 Quagga by design has a process for each protocol.
75
76 Quagga is a fork of GNU Zebra.
77
78 %package contrib
79 Summary: contrib tools for quagga
80 Group: System Environment/Daemons
81
82 %description contrib
83 Contributed/3rd party tools which may be of use with quagga.
84
85 %package devel
86 Summary: Header and object files for quagga development
87 Group: System Environment/Daemons
88
89 %description devel
90 The quagga-devel package contains the header and object files neccessary for
91 developing OSPF-API and quagga applications.
92
93 %prep
94 %setup -q
95 %patch0 -p0 -b .dump_nsm
96 %patch0 -p1 -b .iface_persist
97
98 %build
99 %configure \
100 %if %with_ipv6
101 --enable-ipv6 \
102 %endif
103 %if %with_snmp
104 --enable-snmp \
105 %endif
106 %if %with_multipath
107 --enable-multipath=%with_multipath \
108 %endif
109 %if %with_tcp_zebra
110 --enable-tcp-zebra \
111 %endif
112 %if %with_nssa
113 --enable-nssa \
114 %endif
115 %if %with_opaque_lsa
116 --enable-opaque-lsa \
117 %endif
118 %if %with_ospf_te
119 --enable-ospf-te \
120 %endif
121 %if %with_vtysh
122 --enable-vtysh \
123 %endif
124 %if %with_ospfclient
125 --enable-ospfclient=yes \
126 %else
127 --enable-ospfclient=no\
128 %endif
129 %if %with_ospfapi
130 --enable-ospfapi=yes \
131 %else
132 --enable-ospfapi=no \
133 %endif
134 %if %with_pam
135 --with-libpam \
136 %endif
137 %if %quagga_user
138 --enable-user=%quagga_user \
139 --enable-group=%quagga_user \
140 %endif
141 %if %vty_group
142 --enable-vty-group=%vty_group \
143 %endif
144 --enable-netlink
145
146 make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
147
148 pushd doc
149 texi2html quagga.texi
150 popd
151
152 %install
153 rm -rf $RPM_BUILD_ROOT
154
155 install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
156 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
157
158 make install \
159 DESTDIR=$RPM_BUILD_ROOT
160
161 # Remove this file, as it is uninstalled and causes errors when building on RH9
162 rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
163
164 # install etc sources
165 for daemon in %daemon_list ; do
166 install %{zeb_rh_src}/${daemon}.init \
167 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
168 done
169 install -m644 %{zeb_rh_src}/quagga.pam \
170 $RPM_BUILD_ROOT/etc/pam.d/quagga
171 install -m644 %{zeb_rh_src}/quagga.logrotate \
172 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
173 install -m644 %{zeb_rh_src}/quagga.sysconfig \
174 $RPM_BUILD_ROOT/etc/sysconfig/quagga
175 install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
176
177 %pre
178 # add vty_group
179 %if %vty_group
180 groupadd -r %vty_group 2> /dev/null || :
181 %endif
182 # add quagga user and group
183 %if %quagga_user
184 /usr/sbin/groupadd -g %quagga_gid quagga 2> /dev/null || :
185 /usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
186 -M -r -s /sbin/nologin -c "Quagga routing suite" \
187 -d %_localstatedir %quagga_user 2> /dev/null || :
188 %endif
189
190 %post
191 # zebra_spec_add_service <service name> <port/proto> <comment>
192 # e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
193
194 zebra_spec_add_service ()
195 {
196 # Add port /etc/services entry if it isn't already there
197 if [ -f /etc/services ] && ! grep -q "^$1[^a-zA-Z0-9]" /etc/services ; then
198 echo "$1 $2 # $3" >> /etc/services
199 fi
200 }
201
202 zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
203 zebra_spec_add_service zebra 2601/tcp "zebra vty"
204 zebra_spec_add_service ripd 2602/tcp "RIPd vty"
205 %if %with_ipv6
206 zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
207 %endif
208 zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
209 zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
210 %if %with_ipv6
211 zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
212 %endif
213 %if %with_ospfapi
214 zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
215 %endif
216 zebra_spec_add_service isisd 2608/tcp "ISISd vty"
217
218 for daemon in %daemon_list ; do
219 /sbin/chkconfig --add ${daemon}
220 done
221
222 /sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
223
224 # Create dummy files if they don't exist so basic functions can be used.
225 if [ ! -e %{_sysconfdir}/zebra.conf ]; then
226 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
227 chmod 640 %{_sysconfdir}/zebra.conf
228 fi
229 if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
230 touch %{_sysconfdir}/vtysh.conf
231 chmod 640 %{_sysconfdir}/vtysh.conf
232 fi
233
234 %postun
235 if [ "$1" -ge "1" ]; then
236 for daemon in %daemon_list ; do
237 /etc/rc.d/init.d/${daemon} condrestart >/dev/null 2>&1
238 done
239 fi
240
241 %preun
242 if [ "$1" = "0" ]; then
243 for daemon in %daemon_list ; do
244 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
245 /sbin/chkconfig --del ${daemon}
246 done
247 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
248 fi
249
250 %clean
251 #rm -rf $RPM_BUILD_ROOT
252
253 %files
254 %defattr(-,root,root)
255 %doc */*.sample* AUTHORS COPYING
256 %doc doc/quagga.html
257 %doc doc/mpls
258 %doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
259 %if %quagga_user
260 %dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
261 %dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
262 %dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
263 %else
264 %dir %attr(750,root,root) %{_sysconfdir}
265 %dir %attr(750,root,root) /var/log/quagga
266 %dir %attr(755,root,root) /usr/share/info
267 %dir %attr(750,root,root) /var/run/quagga
268 %endif
269 %if %vty_group
270 %attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
271 %endif
272 %{_infodir}/*info*
273 %{_mandir}/man*/*
274 %{_sbindir}/*
275 %if %with_vtysh
276 %{_bindir}/*
277 %endif
278 %config /etc/quagga/[!v]*
279 %config /etc/rc.d/init.d/*
280 %config(noreplace) /etc/sysconfig/quagga
281 %config(noreplace) /etc/pam.d/quagga
282 %config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
283
284 %files contrib
285 %defattr(-,root,root)
286 %doc tools
287
288 %files devel
289 %defattr(-,root,root)
290 %dir %{_libdir}/*
291 %dir %{_includedir}/%name/*.h
292 %dir %{_includedir}/%name/ospfd/*.h
293 %if %with_ospfapi
294 %dir %{_includedir}/%name/ospfapi/*.h
295 %endif
296
297 %changelog
298 %changelog
299 * Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
300 - updated sysconfig files to specify local dir
301 - added ospf_dump.c crash quick fix patch
302 - added ospfd persistent interface configuration patch
303
304 * Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
305 - sync to CVS
306 - integrate RH sysconfig patch to specify daemon options (RH)
307 - default to have vty listen only to 127.1 (RH)
308 - add user with fixed UID/GID (RH)
309 - create user with shell /sbin/nologin rather than /bin/false (RH)
310 - stop daemons on uninstall (RH)
311 - delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
312 - isisd added
313 - cleanup tasks carried out for every daemon
314
315 * Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
316 - Fix -devel package to include all files
317 - Sync to 0.96.4
318
319 * Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
320 - Renamed to Quagga
321 - Sync to Quagga release 0.96
322
323 * Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
324 - zebra privileges support
325
326 * Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
327 - Fix mem leak in 'show thread cpu'
328 - Ralph Keller's OSPF-API
329 - Amir: Fix configure.ac for net-snmp
330
331 * Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
332 - ospfd IOS prefix to interface matching for 'network' statement
333 - temporary fix for PtP and IPv6
334 - sync to zebra.org CVS
335
336 * Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
337 - update to latest cvs
338 - Yon's "show thread cpu" patch - 17217
339 - walk up tree - 17218
340 - ospfd NSSA fixes - 16681
341 - ospfd nsm fixes - 16824
342 - ospfd OLSA fixes and new feature - 16823
343 - KAME and ifindex fixes - 16525
344 - spec file changes to allow redhat files to be in tree
345
346 * Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
347 - Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
348 - Fixed up some build requirements (patch)
349 - Added conditional build requirements for vtysh / snmp
350 - Added conditional to %files for %_bindir depending on vtysh
351
352 * Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
353 - update to latest CVS
354 - add Greg Troxel's md5 buffer copy/dup fix
355 - add RIPv1 fix
356 - add Frank's multicast flag fix
357
358 * Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
359 - update to latest CVS
360 - timestamped crypt_seqnum patch
361 - oi->on_write_q fix
362
363 * Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
364 - update to latest CVS
365 - add vtysh 'write-config (integrated|daemon)' patch
366 - always 'make rebuild' in vtysh/ to catch new commands
367
368 * Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
369 - update to 0.93b
370
371 * Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
372 - update to latest CVS
373 - add "/sbin/ip route flush proto zebra" to zebra RH init on startup
374
375 * Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
376 - update to current CVS
377 - add OSPF point to multipoint patch
378 - add OSPF bugfixes
379 - add BGP hash optimisation patch
380
381 * Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
382 - update to 0.93-pre1 / CVS
383 - add link state detection support
384 - add generic PtP and RFC3021 support
385 - various bug fixes
386
387 * Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
388 - Fix bug #51336
389
390 * Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
391 - Use generic initscript strings instead of initscript specific
392 ( "Starting foo: " -> "Starting $prog:" )
393
394 * Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
395 - Bump the release when rebuilding into the dist.
396
397 * Tue Feb 6 2001 Tim Powers <timp@redhat.com>
398 - built for Powertools
399
400 * Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
401 - Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
402 - Update to 0.91a
403 - Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
404 - Should be quite Red Hat'isque now.