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