]> git.pld-linux.org Git - packages/iproute2.git/blame - iproute2.spec
- up to 2.6.22 070710
[packages/iproute2.git] / iproute2.spec
CommitLineData
4d4e8753 1#
0a1f6d9e
AM
2# TODO:
3# - fix build @ uClibc
039e8f2b 4# - fix iface_descr patch
0a1f6d9e 5#
4d4e8753 6# Conditional build
c2f906a7
PS
7%bcond_without doc # don't build documentation
8%bcond_without tc # don't build tc program (it breaks static linkage)
d072516f 9%bcond_without atm # don't required ATM.
c2f906a7 10%bcond_with uClibc # do some hacks to build with uClibc
039e8f2b 11#%bcond_with iface_descr # build with interface description support
61f3b6a3 12#
0a1f6d9e 13Summary: Utility to control Networking behavior in.X kernels
d2344512
ER
14Summary(es.UTF-8): Herramientas para encaminamiento avanzado y configuración de interfaces de red
15Summary(pl.UTF-8): Narzędzie do kontrolowania Sieci w kernelach
16Summary(pt_BR.UTF-8): Ferramentas para roteamento avançado e configuração de interfaces de rede
354f4215 17Name: iproute2
199b878d 18%define sdate 070710
aa691b5d 19# do not use ,,2.6.X'' as version here, put whole number like 2.6.8
199b878d
AM
20Version: 2.6.22
21Release: 1
323e0978 22License: GPL
354f4215 23Group: Networking/Admin
9b057263 24Source0: http://developer.osdl.org/dev/iproute2/download/%{name}-%{version}-%{sdate}.tar.gz
199b878d 25# Source0-md5: 20ef2767896a0f156b6fbabd47936f79
4c4edaba 26Patch0: %{name}-build.patch
3f9edb83 27Patch1: %{name}-arp.patch
9b057263 28Patch2: %{name}-lex.patch
e3fc76c4 29Patch3: %{name}-iptables.patch
30Patch4: %{name}-iptables64.patch
93591f64 31Patch5: %{name}-LDFLAGS.patch
207621e4 32# extensions
af6313ca 33Patch10: %{name}-2.2.4-wrr.patch
00a4c5cb 34Patch11: esfq-%{name}.patch
91d521f5 35Patch12: 001-net-dev-iface-descr-0.1.diff
99e81fa6 36Patch13: %{name}-q_atm_c.patch
9b057263 37URL: http://linux-net.osdl.org/index.php/Iproute2
4ef82693 38BuildRequires: bison
4c573c73 39BuildRequires: db-devel
e3fc76c4 40BuildRequires: flex
d072516f 41%if %{with atm}
76ab126a 42BuildRequires: linux-atm-devel
d072516f 43%endif
1525a420 44BuildRequires: linux-libc-headers >= 7:2.6.12.0-15
61f3b6a3
PS
45%if %{with doc}
46BuildRequires: psutils
47BuildRequires: sgml-tools
48BuildRequires: tetex-dvips
43c559c0 49BuildRequires: tetex-fonts-jknappen
76ac8df9 50BuildRequires: tetex-format-latex
de2f8bd6 51BuildRequires: tetex-metafont
61f3b6a3
PS
52BuildRequires: tetex-tex-babel
53%endif
12c8b5e2 54Obsoletes: iproute
b84ea0a7 55Obsoletes: ifstat
4c4edaba 56BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
8ca003ed 57
9ea83253 58%define _sbindir /sbin
59%define _sysconfdir /etc/iproute2
c2827c7c 60
8ca003ed 61%description
af6313ca
SP
62Linux maintains compatibility with the basic configuration utilities
63of the network (ifconfig, route) but a new utility is required to
64exploit the new characteristics and features of the kernel. This
65package includes the new utilities.
e316d7c9 66
70fcbc5f
JR
67%description -l es.UTF-8
68Linux mantiene compatibilidad con los utilitarios estándares de
69configuración de la red, pero se necesitan nuevos utilitarios para
70usar los recursos y características del nuevo núcleo. Este paquete
e316d7c9 71incluye los nuevos utilitarios.
323e0978 72
70fcbc5f
JR
73%description -l pl.UTF-8
74Ten pakiet zawiera programy pozwalające na kontrolę routingu i innych
75aspektów dotyczących sieci.
e316d7c9 76
70fcbc5f
JR
77%description -l pt_BR.UTF-8
78O Linux mantém compatibilidade com os utilitários padrão de
79configuração da rede, mas novos utilitários são necessários para fazer
80uso das características e recursos da nova kernel. This package
e316d7c9 81includes the new utilities.
323e0978 82
49c78676
JK
83%package -n libnetlink-devel
84Summary: Library for the netlink interface
d2344512 85Summary(pl.UTF-8): Biblioteka do interfejsu netlink
49c78676
JK
86Group: Development/Libraries
87
88%description -n libnetlink-devel
89This library provides an interface for kernel-user netlink interface.
90
70fcbc5f
JR
91%description -n libnetlink-devel -l pl.UTF-8
92Ta biblioteka udostępnia interfejs do interfejsu netlink między jądrem
93a przestrzenią użytkownika.
a52556c3 94
8ca003ed 95%prep
199b878d 96%setup -q -c -n iproute-%{version}-%{sdate}
4c4edaba
JB
97#rm -rf include/linux
98%patch0 -p1
039e8f2b 99%patch1 -p1
f30217b5 100#%patch2 -p1
039e8f2b
BZ
101%if "%{_lib}" == "lib64"
102%patch4 -p1
103%else
104%patch3 -p1
105%endif
106%patch5 -p1
91d521f5
PG
107
108# extensions:
6234a9fe 109%patch10 -p1
039e8f2b 110%patch11 -p1
f30217b5 111#%{?with_iface_descr:%patch12 -p1}
99e81fa6 112%patch13 -p0
d1f6ab22 113
8ca003ed 114%build
dd97cf21 115%{__make} \
93591f64 116%if %{with uClibc}
117 CC="%{_target_cpu}-uclibc-gcc" \
118 LD="%{_target_cpu}-uclibc-gcc" \
119%else
120 CC="%{__cc}" \
121 LD="%{__cc}" \
122%endif
f2b536a2 123 HOSTCC="%{__cc}" \
25f0047d 124 OPT="%{rpmcflags}" \
93591f64 125 LDFLAGS="%{rpmldflags}" \
126 %{!?with_tc:SUBDIRS="lib ip misc"}
207621e4 127
1b109167 128%{?with_doc:%{__make} -C doc}
8ca003ed
AM
129
130%install
131rm -rf $RPM_BUILD_ROOT
49382eb3 132install -d $RPM_BUILD_ROOT{%{_sbindir},%{_sysconfdir},%{_mandir}/man8,%{_libdir},%{_includedir},%{?with_tc:%{_libdir}/tc}}
9ea83253 133
3f9edb83 134install ip/{ip,rtmon,routel} %{?with_tc:tc/tc} misc/{ifstat,lnstat,nstat,rtacct,ss} $RPM_BUILD_ROOT%{_sbindir}
354f4215 135install etc/iproute2/rt_protos \
136 etc/iproute2/rt_realms \
137 etc/iproute2/rt_scopes \
138 etc/iproute2/rt_tables \
323e0978 139 $RPM_BUILD_ROOT%{_sysconfdir}
0a1f6d9e
AM
140
141install man/man8/* $RPM_BUILD_ROOT%{_mandir}/man8
142echo ".so tc-pbfifo.8" > $RPM_BUILD_ROOT%{_mandir}/man8/tc-bfifo.8
143echo ".so tc-pbfifo.8" > $RPM_BUILD_ROOT%{_mandir}/man8/tc-pfifo.8
144
49c78676
JK
145install lib/libnetlink.a $RPM_BUILD_ROOT%{_libdir}
146install include/libnetlink.h $RPM_BUILD_ROOT%{_includedir}
49382eb3 147%{?with_tc:install tc/*.so $RPM_BUILD_ROOT%{_libdir}/tc}
354f4215 148
8ca003ed
AM
149%clean
150rm -rf $RPM_BUILD_ROOT
151
152%files
153%defattr(644,root,root,755)
9b6ea7ca
AM
154%doc README README.decnet README.iproute2+tc README.lnstat RELNOTES
155%doc ChangeLog %{?with_doc:doc/*.ps}
93c6b3a3 156%attr(755,root,root) %{_sbindir}/*
dd519f44 157%dir %{_sysconfdir}
af6313ca 158%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*
6ef7db99 159%{_mandir}/man8/*
49382eb3 160%{?with_tc:%dir %{_libdir}/tc}
161%{?with_tc:%attr(755,root,root) %{_libdir}/tc/*.so}
49c78676
JK
162
163%files -n libnetlink-devel
164%defattr(644,root,root,755)
a40db8cc
JB
165%{_libdir}/lib*.a
166%{_includedir}/*.h
This page took 0.078437 seconds and 4 git commands to generate.