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