blob: b3350408cf592ef3124d4cb4bd57670d4a00084c [file] [log] [blame]
pauledd7c242003-06-04 13:59:38 +00001# configure options
paulb64d92a2005-04-25 15:13:42 +00002#
3# Some can be overriden on rpmbuild commandline with:
4# rpmbuild --define 'variable value'
5#
6
7%{!?with_snmp: %define with_snmp 1 }
8%{!?with_vtysh: %define with_vtysh 1 }
9%{!?with_ospf_te: %define with_ospf_te 1 }
10%{!?with_nssa: %define with_nssa 1 }
11%{!?with_opaque_lsa: %define with_opaque_lsa 1 }
12%{!?with_tcp_zebra: %define with_tcp_zebra 0 }
13%{!?with_vtysh: %define with_vtysh 1 }
14%{!?with_pam: %define with_pam 1 }
15%{!?with_ipv6: %define with_ipv6 1 }
16%{!?with_ospfclient: %define with_ospfclient 1 }
17%{!?with_ospfapi: %define with_ospfapi 1 }
18%{!?with_irdp: %define with_irdp 1 }
paule7cd37b2005-09-08 15:18:39 +000019%{!?with_rtadv: %define with_rtadv 1 }
paul9edbc8f2005-04-26 02:23:44 +000020%{!?with_isisd: %define with_isisd 1 }
paulb64d92a2005-04-25 15:13:42 +000021%{!?with_shared: %define with_shared 1 }
22%{!?with_multipath: %define with_multipath 64 }
23%{!?quagga_user: %define quagga_user quagga }
24%{!?vty_group: %define vty_group quaggavty }
paul30b9d892003-01-18 22:57:15 +000025
26# path defines
paul6bd8fd32003-08-12 12:54:13 +000027%define _sysconfdir /etc/quagga
paul8f754982003-01-20 04:55:51 +000028%define zeb_src %{_builddir}/%{name}-%{version}
29%define zeb_rh_src %{zeb_src}/redhat
30%define zeb_docs %{zeb_src}/doc
paul788cdc62003-01-18 00:22:08 +000031
paule0626852003-03-18 14:11:36 +000032# defines for configure
paul6bd8fd32003-08-12 12:54:13 +000033%define _libexecdir %{_exec_prefix}/libexec/quagga
paul6bd8fd32003-08-12 12:54:13 +000034%define _libdir %{_exec_prefix}/%{_lib}/quagga
paul15d74e92003-12-30 11:16:21 +000035%define _includedir %{_prefix}/include
paul6bd8fd32003-08-12 12:54:13 +000036%define _localstatedir /var/run/quagga
paule0626852003-03-18 14:11:36 +000037
paul15d74e92003-12-30 11:16:21 +000038# misc internal defines
paulb64d92a2005-04-25 15:13:42 +000039%{!?quagga_uid: %define quagga_uid 92 }
40%{!?quagga_gid: %define quagga_gid 92 }
paul54b25dc2004-09-30 04:56:26 +000041%define daemon_list zebra ripd ospfd bgpd
paul0df63b52004-11-07 22:12:23 +000042
paul54b25dc2004-09-30 04:56:26 +000043%if %{with_ipv6}
ajsf3931752004-12-23 00:00:58 +000044%define daemonv6_list ripngd ospf6d
paul0df63b52004-11-07 22:12:23 +000045%else
46%define daemonv6_list ""
paul54b25dc2004-09-30 04:56:26 +000047%endif
paul0df63b52004-11-07 22:12:23 +000048
paul54b25dc2004-09-30 04:56:26 +000049%if %{with_isisd}
paul69f5d262004-10-07 16:23:36 +000050%define daemon_other isisd
51%else
52%define daemon_other ""
paul15d74e92003-12-30 11:16:21 +000053%endif
54
ajsb3324e22004-12-22 17:52:29 +000055%define all_daemons %{daemon_list} %{daemonv6_list} %{daemon_other} watchquagga
56
paulb5f310c2004-09-13 13:15:25 +000057# allow build dir to be kept
paulb64d92a2005-04-25 15:13:42 +000058%{!?keep_build: %define keep_build 0 }
paulb5f310c2004-09-13 13:15:25 +000059
paul788cdc62003-01-18 00:22:08 +000060Summary: Routing daemon
paul6bd8fd32003-08-12 12:54:13 +000061Name: quagga
paul6382b6f2003-05-20 00:17:45 +000062Version: @VERSION@
pauledd7c242003-06-04 13:59:38 +000063Release: @CONFDATE@01
paul788cdc62003-01-18 00:22:08 +000064License: GPL
65Group: System Environment/Daemons
paul6bd8fd32003-08-12 12:54:13 +000066Source0: http://www.quagga.net/snapshots/cvs/%{name}-%{version}.tar.gz
67URL: http://www.quagga.net
paul54b25dc2004-09-30 04:56:26 +000068%if %{with_snmp}
paulb63cef72004-08-19 03:36:13 +000069BuildRequires: net-snmp-devel
70Prereq: net-snmp
paul788cdc62003-01-18 00:22:08 +000071%endif
paul54b25dc2004-09-30 04:56:26 +000072%if %{with_vtysh}
paul30b9d892003-01-18 22:57:15 +000073BuildRequires: readline readline-devel ncurses ncurses-devel
paule7cd37b2005-09-08 15:18:39 +000074Prereq: ncurses
pauld7ccae22003-01-18 00:24:00 +000075%endif
paule7cd37b2005-09-08 15:18:39 +000076BuildRequires: texinfo tetex autoconf pam-devel patch libcap-devel texi2html
paul788cdc62003-01-18 00:22:08 +000077# Initscripts > 5.60 is required for IPv6 support
paul30b9d892003-01-18 22:57:15 +000078Prereq: initscripts >= 5.60
paule7cd37b2005-09-08 15:18:39 +000079Prereq: ncurses pam
paul788cdc62003-01-18 00:22:08 +000080Prereq: /sbin/install-info
81Provides: routingdaemon
82BuildRoot: %{_tmppath}/%{name}-%{version}-root
paul6bd8fd32003-08-12 12:54:13 +000083Obsoletes: bird gated mrt zebra
paul788cdc62003-01-18 00:22:08 +000084
85%description
paul6bd8fd32003-08-12 12:54:13 +000086Quagga is a free software that manages TCP/IP based routing
paul788cdc62003-01-18 00:22:08 +000087protocol. It takes multi-server and multi-thread approach to resolve
88the current complexity of the Internet.
89
paul6bd8fd32003-08-12 12:54:13 +000090Quagga supports BGP4, BGP4+, OSPFv2, OSPFv3, RIPv1, RIPv2, and RIPng.
paul788cdc62003-01-18 00:22:08 +000091
paul6bd8fd32003-08-12 12:54:13 +000092Quagga is intended to be used as a Route Server and a Route Reflector. It is
93not a toolkit, it provides full routing power under a new architecture.
94Quagga by design has a process for each protocol.
95
96Quagga is a fork of GNU Zebra.
paul788cdc62003-01-18 00:22:08 +000097
paul448ed4a2003-03-01 15:43:28 +000098%package contrib
paul6bd8fd32003-08-12 12:54:13 +000099Summary: contrib tools for quagga
paul448ed4a2003-03-01 15:43:28 +0000100Group: System Environment/Daemons
101
102%description contrib
paul6bd8fd32003-08-12 12:54:13 +0000103Contributed/3rd party tools which may be of use with quagga.
paul448ed4a2003-03-01 15:43:28 +0000104
paule0626852003-03-18 14:11:36 +0000105%package devel
paul6bd8fd32003-08-12 12:54:13 +0000106Summary: Header and object files for quagga development
paule0626852003-03-18 14:11:36 +0000107Group: System Environment/Daemons
108
109%description devel
paul6bd8fd32003-08-12 12:54:13 +0000110The quagga-devel package contains the header and object files neccessary for
111developing OSPF-API and quagga applications.
paule0626852003-03-18 14:11:36 +0000112
paul788cdc62003-01-18 00:22:08 +0000113%prep
114%setup -q
paul788cdc62003-01-18 00:22:08 +0000115
116%build
ajs7966b972004-11-10 22:02:05 +0000117
118# For standard gcc verbosity, uncomment these lines:
119#CFLAGS="%{optflags} -Wall -Wsign-compare -Wpointer-arith"
120#CFLAGS="${CFLAGS} -Wbad-function-cast -Wwrite-strings"
121
122# For ultra gcc verbosity, uncomment these lines also:
123#CFLAGS="${CFLAGS} -W -Wcast-qual -Wstrict-prototypes"
124#CFLAGS="${CFLAGS} -Wmissing-declarations -Wmissing-noreturn"
125#CFLAGS="${CFLAGS} -Wmissing-format-attribute -Wunreachable-code"
126#CFLAGS="${CFLAGS} -Wpacked -Wpadded"
127
paul788cdc62003-01-18 00:22:08 +0000128%configure \
paul54b25dc2004-09-30 04:56:26 +0000129%if !%{with_shared}
130 --disable-shared \
131%endif
132%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000133 --enable-ipv6 \
134%endif
paul54b25dc2004-09-30 04:56:26 +0000135%if %{with_snmp}
paul788cdc62003-01-18 00:22:08 +0000136 --enable-snmp \
137%endif
paul54b25dc2004-09-30 04:56:26 +0000138%if %{with_multipath}
139 --enable-multipath=%{with_multipath} \
paul788cdc62003-01-18 00:22:08 +0000140%endif
paul54b25dc2004-09-30 04:56:26 +0000141%if %{with_tcp_zebra}
paul788cdc62003-01-18 00:22:08 +0000142 --enable-tcp-zebra \
143%endif
paul54b25dc2004-09-30 04:56:26 +0000144%if %{with_nssa}
paul788cdc62003-01-18 00:22:08 +0000145 --enable-nssa \
146%endif
paul54b25dc2004-09-30 04:56:26 +0000147%if %{with_opaque_lsa}
paul788cdc62003-01-18 00:22:08 +0000148 --enable-opaque-lsa \
149%endif
paul54b25dc2004-09-30 04:56:26 +0000150%if %{with_ospf_te}
paul788cdc62003-01-18 00:22:08 +0000151 --enable-ospf-te \
152%endif
paul54b25dc2004-09-30 04:56:26 +0000153%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000154 --enable-vtysh \
155%endif
paul54b25dc2004-09-30 04:56:26 +0000156%if %{with_ospfclient}
paul68980082003-03-25 05:07:42 +0000157 --enable-ospfclient=yes \
158%else
159 --enable-ospfclient=no\
160%endif
paul54b25dc2004-09-30 04:56:26 +0000161%if %{with_ospfapi}
paul68980082003-03-25 05:07:42 +0000162 --enable-ospfapi=yes \
163%else
164 --enable-ospfapi=no \
165%endif
paul54b25dc2004-09-30 04:56:26 +0000166%if %{with_irdp}
paul5b819262004-07-28 14:11:55 +0000167 --enable-irdp=yes \
168%else
169 --enable-irdp=no \
170%endif
paule7cd37b2005-09-08 15:18:39 +0000171%if %{with_rtadv}
172 --enable-rtadv=yes \
173%else
174 --enable-rtadv=no \
175%endif
paul54b25dc2004-09-30 04:56:26 +0000176%if %{with_isisd}
177 --enable-isisd \
178%else
paul69f5d262004-10-07 16:23:36 +0000179 --disable-isisd \
paul54b25dc2004-09-30 04:56:26 +0000180%endif
181%if %{with_pam}
pauledd7c242003-06-04 13:59:38 +0000182 --with-libpam \
paul788cdc62003-01-18 00:22:08 +0000183%endif
paul6bd8fd32003-08-12 12:54:13 +0000184%if %quagga_user
185 --enable-user=%quagga_user \
186 --enable-group=%quagga_user \
pauledd7c242003-06-04 13:59:38 +0000187%endif
188%if %vty_group
189 --enable-vty-group=%vty_group \
190%endif
ajsfc43ecc2005-01-12 16:41:33 +0000191--enable-netlink --enable-gcc-rdynamic
paul788cdc62003-01-18 00:22:08 +0000192
193make %{?_smp_mflags} MAKEINFO="makeinfo --no-split"
194
195pushd doc
paule7cd37b2005-09-08 15:18:39 +0000196texi2html -glossary -number quagga.texi
paul788cdc62003-01-18 00:22:08 +0000197popd
198
199%install
200rm -rf $RPM_BUILD_ROOT
201
202install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig,logrotate.d,pam.d} \
paul6bd8fd32003-08-12 12:54:13 +0000203 $RPM_BUILD_ROOT/var/log/quagga $RPM_BUILD_ROOT%{_infodir}
paul788cdc62003-01-18 00:22:08 +0000204
205make install \
206 DESTDIR=$RPM_BUILD_ROOT
207
paul9a344b72003-08-05 23:24:58 +0000208# Remove this file, as it is uninstalled and causes errors when building on RH9
209rm -rf $RPM_BUILD_ROOT/usr/share/info/dir
210
paul15d74e92003-12-30 11:16:21 +0000211# install etc sources
ajsb3324e22004-12-22 17:52:29 +0000212for daemon in %{all_daemons} ; do
paulda29c6b2004-10-08 00:49:09 +0000213 if [ x"${daemon}" != x"" ] ; then
214 install %{zeb_rh_src}/${daemon}.init \
215 $RPM_BUILD_ROOT/etc/rc.d/init.d/${daemon}
216 fi
paul15d74e92003-12-30 11:16:21 +0000217done
218install -m644 %{zeb_rh_src}/quagga.pam \
219 $RPM_BUILD_ROOT/etc/pam.d/quagga
220install -m644 %{zeb_rh_src}/quagga.logrotate \
221 $RPM_BUILD_ROOT/etc/logrotate.d/quagga
222install -m644 %{zeb_rh_src}/quagga.sysconfig \
223 $RPM_BUILD_ROOT/etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000224install -d -m750 $RPM_BUILD_ROOT/var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000225
226%pre
227# add vty_group
228%if %vty_group
paule7cd37b2005-09-08 15:18:39 +0000229if getent group %vty_group > /dev/null ; then : ; else \
230 /usr/sbin/groupadd -r %vty_group > /dev/null || : ; fi
pauledd7c242003-06-04 13:59:38 +0000231%endif
paule7cd37b2005-09-08 15:18:39 +0000232
paul6bd8fd32003-08-12 12:54:13 +0000233# add quagga user and group
234%if %quagga_user
paule7cd37b2005-09-08 15:18:39 +0000235# Ensure that quagga_gid gets correctly allocated
236if getent group %quagga_user >/dev/null; then : ; else \
237 /usr/sbin/groupadd -g %quagga_gid %quagga_user > /dev/null || : ; \
238fi
239if getent passwd %quagga_user >/dev/null ; then : ; else \
240 /usr/sbin/useradd -u %quagga_uid -g %quagga_gid \
241 -M -r -s /sbin/nologin -c "Quagga routing suite" \
242 -d %_localstatedir %quagga_user 2> /dev/null || : ; \
243fi
pauledd7c242003-06-04 13:59:38 +0000244%endif
paul788cdc62003-01-18 00:22:08 +0000245
paul788cdc62003-01-18 00:22:08 +0000246%post
paul30b9d892003-01-18 22:57:15 +0000247# zebra_spec_add_service <service name> <port/proto> <comment>
paul788cdc62003-01-18 00:22:08 +0000248# e.g. zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
249
250zebra_spec_add_service ()
251{
252 # Add port /etc/services entry if it isn't already there
paul6b637e92004-10-23 00:48:51 +0000253 if [ -f /etc/services ] && \
254 ! %__sed -e 's/#.*$//' /etc/services | %__grep -wq $1 ; then
paul788cdc62003-01-18 00:22:08 +0000255 echo "$1 $2 # $3" >> /etc/services
256 fi
257}
258
259zebra_spec_add_service zebrasrv 2600/tcp "zebra service"
260zebra_spec_add_service zebra 2601/tcp "zebra vty"
261zebra_spec_add_service ripd 2602/tcp "RIPd vty"
paul54b25dc2004-09-30 04:56:26 +0000262%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000263zebra_spec_add_service ripngd 2603/tcp "RIPngd vty"
pauld7ccae22003-01-18 00:24:00 +0000264%endif
paul788cdc62003-01-18 00:22:08 +0000265zebra_spec_add_service ospfd 2604/tcp "OSPFd vty"
266zebra_spec_add_service bgpd 2605/tcp "BGPd vty"
paul54b25dc2004-09-30 04:56:26 +0000267%if %{with_ipv6}
paul788cdc62003-01-18 00:22:08 +0000268zebra_spec_add_service ospf6d 2606/tcp "OSPF6d vty"
pauld7ccae22003-01-18 00:24:00 +0000269%endif
paul54b25dc2004-09-30 04:56:26 +0000270%if %{with_ospfapi}
paul7021c422003-07-15 12:52:22 +0000271zebra_spec_add_service ospfapi 2607/tcp "OSPF-API"
272%endif
paul54b25dc2004-09-30 04:56:26 +0000273%if %{with_isisd}
jardin5a514b12003-12-23 10:50:21 +0000274zebra_spec_add_service isisd 2608/tcp "ISISd vty"
paul54b25dc2004-09-30 04:56:26 +0000275%endif
paul788cdc62003-01-18 00:22:08 +0000276
paul15d74e92003-12-30 11:16:21 +0000277for daemon in %daemon_list ; do
278 /sbin/chkconfig --add ${daemon}
279done
paul788cdc62003-01-18 00:22:08 +0000280
paul6bd8fd32003-08-12 12:54:13 +0000281/sbin/install-info %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000282
283# Create dummy files if they don't exist so basic functions can be used.
284if [ ! -e %{_sysconfdir}/zebra.conf ]; then
285 echo "hostname `hostname`" > %{_sysconfdir}/zebra.conf
paule7cd37b2005-09-08 15:18:39 +0000286%if %{quagga_user}
287 chown %quagga_user:%quagga_user %{_sysconfdir}/zebra.conf
288%endif
paul788cdc62003-01-18 00:22:08 +0000289 chmod 640 %{_sysconfdir}/zebra.conf
290fi
291if [ ! -e %{_sysconfdir}/vtysh.conf ]; then
292 touch %{_sysconfdir}/vtysh.conf
293 chmod 640 %{_sysconfdir}/vtysh.conf
294fi
295
296%postun
ajsfc43ecc2005-01-12 16:41:33 +0000297if [ "$1" -ge 1 ]; then
298 # Find out which daemons need to be restarted.
ajsb3324e22004-12-22 17:52:29 +0000299 for daemon in %all_daemons ; do
ajsfc43ecc2005-01-12 16:41:33 +0000300 if [ -f /var/lock/subsys/$daemon ]; then
301 eval restart_$daemon=yes
302 else
303 eval restart_$daemon=no
304 fi
paul15d74e92003-12-30 11:16:21 +0000305 done
ajsfc43ecc2005-01-12 16:41:33 +0000306 # Rename restart flags for daemons handled specially.
307 running_zebra="$restart_zebra"
308 restart_zebra=no
309 running_watchquagga="$restart_watchquagga"
310 restart_watchquagga=no
311 # Stop watchquagga first.
312 [ "$running_watchquagga" = yes ] && \
313 /etc/rc.d/init.d/watchquagga stop >/dev/null 2>&1
314 # Stop all daemons other than zebra and watchquagga.
315 for daemon in %all_daemons ; do
316 eval restart=\$restart_${daemon}
317 [ "$restart" = yes ] && \
318 /etc/rc.d/init.d/$daemon stop >/dev/null 2>&1
319 done
320 # Restart zebra.
321 [ "$running_zebra" = yes ] && \
322 /etc/rc.d/init.d/zebra restart >/dev/null 2>&1
323 # Start all daemons other than zebra and watchquagga.
324 for daemon in %all_daemons ; do
325 eval restart=\$restart_${daemon}
326 [ "$restart" = yes ] && \
327 /etc/rc.d/init.d/$daemon start >/dev/null 2>&1
328 done
329 # Start watchquagga last.
ajsb8540382005-01-15 17:26:48 +0000330 # Avoid postun scriptlet error if watchquagga is not running.
ajsfc43ecc2005-01-12 16:41:33 +0000331 [ "$running_watchquagga" = yes ] && \
ajsb8540382005-01-15 17:26:48 +0000332 /etc/rc.d/init.d/watchquagga start >/dev/null 2>&1 || :
paul788cdc62003-01-18 00:22:08 +0000333fi
paule7cd37b2005-09-08 15:18:39 +0000334/sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000335
336%preun
337if [ "$1" = "0" ]; then
ajsb3324e22004-12-22 17:52:29 +0000338 for daemon in %all_daemons ; do
paul15d74e92003-12-30 11:16:21 +0000339 /etc/rc.d/init.d/${daemon} stop >/dev/null 2>&1
340 /sbin/chkconfig --del ${daemon}
341 done
342 /sbin/install-info --delete %{_infodir}/quagga.info.gz %{_infodir}/dir
paul788cdc62003-01-18 00:22:08 +0000343fi
344
345%clean
paulb5f310c2004-09-13 13:15:25 +0000346%if !%{keep_build}
347rm -rf $RPM_BUILD_ROOT
348%endif
paul788cdc62003-01-18 00:22:08 +0000349
350%files
351%defattr(-,root,root)
paul448ed4a2003-03-01 15:43:28 +0000352%doc */*.sample* AUTHORS COPYING
paul6bd8fd32003-08-12 12:54:13 +0000353%doc doc/quagga.html
paul30b9d892003-01-18 22:57:15 +0000354%doc doc/mpls
paul8f754982003-01-20 04:55:51 +0000355%doc ChangeLog INSTALL NEWS README REPORTING-BUGS SERVICES TODO
paul54b25dc2004-09-30 04:56:26 +0000356%if %{quagga_user}
paul6bd8fd32003-08-12 12:54:13 +0000357%dir %attr(751,%quagga_user,%quagga_user) %{_sysconfdir}
358%dir %attr(750,%quagga_user,%quagga_user) /var/log/quagga
359%dir %attr(751,%quagga_user,%quagga_user) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000360%else
paul788cdc62003-01-18 00:22:08 +0000361%dir %attr(750,root,root) %{_sysconfdir}
paul6bd8fd32003-08-12 12:54:13 +0000362%dir %attr(750,root,root) /var/log/quagga
paul788cdc62003-01-18 00:22:08 +0000363%dir %attr(755,root,root) /usr/share/info
paul6bd8fd32003-08-12 12:54:13 +0000364%dir %attr(750,root,root) /var/run/quagga
pauledd7c242003-06-04 13:59:38 +0000365%endif
paul54b25dc2004-09-30 04:56:26 +0000366%if %{vty_group}
paul6bd8fd32003-08-12 12:54:13 +0000367%attr(750,%quagga_user,%vty_group) %{_sysconfdir}/vtysh.conf.sample
pauledd7c242003-06-04 13:59:38 +0000368%endif
paul788cdc62003-01-18 00:22:08 +0000369%{_infodir}/*info*
370%{_mandir}/man*/*
paul54b25dc2004-09-30 04:56:26 +0000371%{_sbindir}/zebra
372%{_sbindir}/ospfd
373%{_sbindir}/ripd
374%{_sbindir}/bgpd
ajsb3324e22004-12-22 17:52:29 +0000375%{_sbindir}/watchquagga
paul54b25dc2004-09-30 04:56:26 +0000376%if %{with_ipv6}
377%{_sbindir}/ripngd
378%{_sbindir}/ospf6d
379%endif
380%if %{with_isisd}
381%{_sbindir}/isisd
382%endif
paulcfc18422004-10-23 00:05:41 +0000383%dir %attr(755,root,root) %{_libdir}
paul28f79722004-10-29 05:35:43 +0000384%if %{with_shared}
paule7cd37b2005-09-08 15:18:39 +0000385%dir %{_libdir}
paul2ff9e822004-07-20 11:19:47 +0000386%{_libdir}/lib*.so
387%{_libdir}/lib*.so.*
paul54b25dc2004-09-30 04:56:26 +0000388%endif
389%if %{with_vtysh}
paul788cdc62003-01-18 00:22:08 +0000390%{_bindir}/*
pauld7ccae22003-01-18 00:24:00 +0000391%endif
paul6bd8fd32003-08-12 12:54:13 +0000392%config /etc/quagga/[!v]*
paul788cdc62003-01-18 00:22:08 +0000393%config /etc/rc.d/init.d/*
paul15d74e92003-12-30 11:16:21 +0000394%config(noreplace) /etc/sysconfig/quagga
paul6bd8fd32003-08-12 12:54:13 +0000395%config(noreplace) /etc/pam.d/quagga
paul788cdc62003-01-18 00:22:08 +0000396%config(noreplace) %attr(640,root,root) /etc/logrotate.d/*
397
paul448ed4a2003-03-01 15:43:28 +0000398%files contrib
399%defattr(-,root,root)
400%doc tools
401
paule0626852003-03-18 14:11:36 +0000402%files devel
403%defattr(-,root,root)
paulda29c6b2004-10-08 00:49:09 +0000404%if %{with_ospfclient}
405%{_sbindir}/ospfclient
406%endif
paul28f79722004-10-29 05:35:43 +0000407%{_libdir}/*.a
408%{_libdir}/*.la
paulcfc18422004-10-23 00:05:41 +0000409%dir %attr(755,root,root) %{_includedir}/%{name}
paul28f79722004-10-29 05:35:43 +0000410%{_includedir}/%name/*.h
paulcfc18422004-10-23 00:05:41 +0000411%dir %attr(755,root,root) %{_includedir}/%{name}/ospfd
paul28f79722004-10-29 05:35:43 +0000412%{_includedir}/%name/ospfd/*.h
paul54b25dc2004-09-30 04:56:26 +0000413%if %{with_ospfapi}
paulcfc18422004-10-23 00:05:41 +0000414%dir %attr(755,root,root) %{_includedir}/%{name}/ospfapi
paul28f79722004-10-29 05:35:43 +0000415%{_includedir}/%name/ospfapi/*.h
paul68980082003-03-25 05:07:42 +0000416%endif
paule0626852003-03-18 14:11:36 +0000417
paul788cdc62003-01-18 00:22:08 +0000418%changelog
paule7cd37b2005-09-08 15:18:39 +0000419* Thu Sep 12 2005 Paul Jakma <paul@dishone.st>
420- Steal some changes from Fedora spec file:
421- Add with_rtadv variable
422- Test for groups/users with getent before group/user adding
423- Readline need not be an explicit prerequisite
424- install-info delete should be postun, not preun
425
ajsfc43ecc2005-01-12 16:41:33 +0000426* Wed Jan 12 2005 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
427- on package upgrade, implement careful, phased restart logic
428- use gcc -rdynamic flag when linking for better backtraces
429
ajsb3324e22004-12-22 17:52:29 +0000430* Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajsf3931752004-12-23 00:00:58 +0000431- daemonv6_list should contain only IPv6 daemons
432
433* Wed Dec 22 2004 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
ajsb3324e22004-12-22 17:52:29 +0000434- watchquagga added
435- on upgrade, all daemons should be condrestart'ed
436- on removal, all daemons should be stopped
437
paul36002ae2004-11-08 17:36:29 +0000438* Mon Nov 08 2004 Paul Jakma <paul@dishone.st>
439- Use makeinfo --html to generate quagga.html
440
paul0df63b52004-11-07 22:12:23 +0000441* Sun Nov 07 2004 Paul Jakma <paul@dishone.st>
442- Fix with_ipv6 set to 0 build
443
paulcfc18422004-10-23 00:05:41 +0000444* Sat Oct 23 2004 Paul Jakma <paul@dishone.st>
445- Update to 0.97.2
446
447* Sat Oct 23 2004 Andrew J. Schorr <aschorr@telemetry-investments.com>
448- Make directories be owned by the packages concerned
449- Update logrotate scripts to use correct path to killall and use pid files
450
paulda29c6b2004-10-08 00:49:09 +0000451* Fri Oct 08 2004 Paul Jakma <paul@dishone.st>
452- Update to 0.97.0
453
paul54b25dc2004-09-30 04:56:26 +0000454* Wed Sep 15 2004 Paul Jakma <paul@dishone.st>
455- build snmp support by default
456- build irdp support
457- build with shared libs
458- devel subpackage for archives and headers
459
paul00bc5602004-01-09 16:30:52 +0000460* Thu Jan 08 2004 Paul Jakma <paul@dishone.st>
461- updated sysconfig files to specify local dir
462- added ospf_dump.c crash quick fix patch
463- added ospfd persistent interface configuration patch
464
paul15d74e92003-12-30 11:16:21 +0000465* Tue Dec 30 2003 Paul Jakma <paul@dishone.st>
466- sync to CVS
467- integrate RH sysconfig patch to specify daemon options (RH)
468- default to have vty listen only to 127.1 (RH)
469- add user with fixed UID/GID (RH)
470- create user with shell /sbin/nologin rather than /bin/false (RH)
471- stop daemons on uninstall (RH)
472- delete info file on %preun, not %postun to avoid deletion on upgrade. (RH)
473- isisd added
474- cleanup tasks carried out for every daemon
475
paul406f7002003-11-02 07:30:52 +0000476* Sun Nov 2 2003 Paul Jakma <paul@dishone.st>
477- Fix -devel package to include all files
478- Sync to 0.96.4
479
paul6bd8fd32003-08-12 12:54:13 +0000480* Tue Aug 12 2003 Paul Jakma <paul@dishone.st>
481- Renamed to Quagga
482- Sync to Quagga release 0.96
483
pauledd7c242003-06-04 13:59:38 +0000484* Tue Mar 20 2003 Paul Jakma <paul@dishone.st>
485- zebra privileges support
486
paule0626852003-03-18 14:11:36 +0000487* Mon Mar 18 2003 Paul Jakma <paul@dishone.st>
488- Fix mem leak in 'show thread cpu'
489- Ralph Keller's OSPF-API
490- Amir: Fix configure.ac for net-snmp
491
paul448ed4a2003-03-01 15:43:28 +0000492* Sat Mar 1 2003 Paul Jakma <paul@dishone.st>
493- ospfd IOS prefix to interface matching for 'network' statement
494- temporary fix for PtP and IPv6
495- sync to zebra.org CVS
496
paul8f754982003-01-20 04:55:51 +0000497* Mon Jan 20 2003 Paul Jakma <paul@dishone.st>
498- update to latest cvs
499- Yon's "show thread cpu" patch - 17217
500- walk up tree - 17218
501- ospfd NSSA fixes - 16681
502- ospfd nsm fixes - 16824
503- ospfd OLSA fixes and new feature - 16823
504- KAME and ifindex fixes - 16525
505- spec file changes to allow redhat files to be in tree
506
pauld7ccae22003-01-18 00:24:00 +0000507* Sat Dec 28 2002 Alexander Hoogerhuis <alexh@ihatent.com>
508- Added conditionals for building with(out) IPv6, vtysh, RIP, BGP
509- Fixed up some build requirements (patch)
510- Added conditional build requirements for vtysh / snmp
511- Added conditional to %files for %_bindir depending on vtysh
512
paul788cdc62003-01-18 00:22:08 +0000513* Mon Nov 11 2002 Paul Jakma <paulj@alphyra.ie>
514- update to latest CVS
515- add Greg Troxel's md5 buffer copy/dup fix
516- add RIPv1 fix
517- add Frank's multicast flag fix
518
519* Wed Oct 09 2002 Paul Jakma <paulj@alphyra.ie>
520- update to latest CVS
521- timestamped crypt_seqnum patch
522- oi->on_write_q fix
523
524* Mon Sep 30 2002 Paul Jakma <paulj@alphyra.ie>
525- update to latest CVS
526- add vtysh 'write-config (integrated|daemon)' patch
527- always 'make rebuild' in vtysh/ to catch new commands
528
529* Fri Sep 13 2002 Paul Jakma <paulj@alphyra.ie>
530- update to 0.93b
531
532* Wed Sep 11 2002 Paul Jakma <paulj@alphyra.ie>
533- update to latest CVS
534- add "/sbin/ip route flush proto zebra" to zebra RH init on startup
535
536* Sat Aug 24 2002 Paul Jakma <paulj@alphyra.ie>
537- update to current CVS
538- add OSPF point to multipoint patch
539- add OSPF bugfixes
540- add BGP hash optimisation patch
541
542* Fri Jun 14 2002 Paul Jakma <paulj@alphyra.ie>
543- update to 0.93-pre1 / CVS
544- add link state detection support
545- add generic PtP and RFC3021 support
546- various bug fixes
547
548* Thu Aug 09 2001 Elliot Lee <sopwith@redhat.com> 0.91a-6
549- Fix bug #51336
550
551* Wed Aug 1 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.91a-5
552- Use generic initscript strings instead of initscript specific
553 ( "Starting foo: " -> "Starting $prog:" )
554
555* Fri Jul 27 2001 Elliot Lee <sopwith@redhat.com> 0.91a-4
556- Bump the release when rebuilding into the dist.
557
558* Tue Feb 6 2001 Tim Powers <timp@redhat.com>
559- built for Powertools
560
561* Sun Feb 4 2001 Pekka Savola <pekkas@netcore.fi>
562- Hacked up from PLD Linux 0.90-1, Mandrake 0.90-1mdk and one from zebra.org.
563- Update to 0.91a
564- Very heavy modifications to init.d/*, .spec, pam, i18n, logrotate, etc.
565- Should be quite Red Hat'isque now.