2004-09-09 13:25:24 +00:00
|
|
|
Summary: Traces the route taken by packets over a TCP/IP network.
|
|
|
|
Name: traceroute
|
2004-09-09 13:26:23 +00:00
|
|
|
Version: 1.4a12
|
2004-09-09 13:28:05 +00:00
|
|
|
Release: 2
|
2004-09-09 13:25:24 +00:00
|
|
|
Copyright: BSD
|
|
|
|
Group: Applications/Internet
|
2004-09-09 13:26:23 +00:00
|
|
|
Source: ftp://ftp.ee.lbl.gov/traceroute-1.4a12.tar.gz
|
2004-09-09 13:25:24 +00:00
|
|
|
Patch0: traceroute-1.4a5-fix.patch
|
|
|
|
Patch1: traceroute-1.4a5-secfix.patch
|
|
|
|
Patch2: traceroute-1.4a5-alpha.patch
|
|
|
|
Patch3: traceroute-1.4a5-autoroute.patch
|
|
|
|
Patch4: traceroute-1.4a5-autoroute2.patch
|
|
|
|
Patch5: traceroute-1.4a5-unaligned.patch
|
|
|
|
Patch6: traceroute-1.4a5-llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch.patch
|
|
|
|
Patch7: traceroute-1.4a5-fhs.patch
|
|
|
|
Patch8: traceroute-1.4a5-sourceroute.patch
|
|
|
|
Patch9: traceroute-1.4a5-aliases.patch
|
|
|
|
Patch10: traceroute-1.4a5-droproot.patch
|
2004-09-09 13:25:50 +00:00
|
|
|
Patch11: traceroute-1.4a5-bigpacklen.patch
|
|
|
|
Patch12: traceroute-1.4a5-lsrr.patch
|
2004-09-09 13:28:05 +00:00
|
|
|
Patch13: traceroute-1.4a12-sockaddrfix.patch
|
2004-09-09 13:25:24 +00:00
|
|
|
Prefix: %{_prefix}
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-root
|
|
|
|
|
|
|
|
%description
|
|
|
|
The traceroute utility displays the route used by IP packets on their
|
2004-09-09 13:28:05 +00:00
|
|
|
way to a specified network (or Internet) host. Traceroute displays the
|
|
|
|
IP number and host name (if possible) of the machines along the route
|
|
|
|
taken by the packets. Traceroute is used as a network debugging
|
|
|
|
tool. If you are having network connectivity problems, traceroute will
|
2004-09-09 13:25:24 +00:00
|
|
|
show you where the trouble is coming from along the route.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1 -b .fix
|
|
|
|
%patch1 -p1 -b .secfix
|
2004-09-09 13:26:23 +00:00
|
|
|
#%patch2 -p1 -b .alpha
|
2004-09-09 13:25:24 +00:00
|
|
|
%patch3 -p1 -b .autoroute
|
|
|
|
%patch4 -p1 -b .autoroute2
|
2004-09-09 13:25:50 +00:00
|
|
|
%patch5 -p1 -b .unaligned
|
2004-09-09 13:25:24 +00:00
|
|
|
%patch6 -p1 -b .hostname
|
|
|
|
%patch7 -p1 -b .fhs
|
2004-09-09 13:26:23 +00:00
|
|
|
#%patch8 -p1 -b .sourceroute
|
2004-09-09 13:25:24 +00:00
|
|
|
%patch9 -p1 -b .aliases
|
2004-09-09 13:25:50 +00:00
|
|
|
%patch10 -p1 -b .droproot
|
|
|
|
%patch11 -p1 -b .bigpacklen
|
|
|
|
%patch12 -p1 -b .lsrr
|
2004-09-09 13:28:05 +00:00
|
|
|
%patch13 -p1 -b .sockaddrfix
|
|
|
|
autoreconf -f ; aclocal ; autoconf ; libtoolize --copy --force
|
2004-09-09 13:25:24 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
2004-09-09 13:26:13 +00:00
|
|
|
make CCOPT="$RPM_OPT_FLAGS"
|
2004-09-09 13:25:24 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
|
|
|
|
|
|
|
|
make DESTDIR=${RPM_BUILD_ROOT} install install-man
|
|
|
|
|
|
|
|
( cd $RPM_BUILD_ROOT
|
|
|
|
strip .%{_sbindir}/* || :
|
|
|
|
)
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
# this is set as 4555 by make install, which I don't really like
|
|
|
|
%attr(4755,root,root) %{_sbindir}/traceroute
|
|
|
|
%{_mandir}/man8/*
|
|
|
|
|
|
|
|
%changelog
|
2004-09-09 13:28:05 +00:00
|
|
|
* Thu Mar 14 2002 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Added patch by Tom "spot" Callaway to fix sockaddr problem in sparc64.
|
|
|
|
|
2004-09-09 13:26:23 +00:00
|
|
|
* Mon Jun 25 2001 Philipp Knirsch <pknirsch@redhat.de>
|
|
|
|
- Updated to 1.4a12
|
|
|
|
|
2004-09-09 13:26:13 +00:00
|
|
|
* Fri Dec 1 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- use RPM_OPT_FLAGS (#21279).
|
|
|
|
|
2004-09-09 13:25:50 +00:00
|
|
|
* Wed Oct 4 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- check max. packet length correctly (#15917).
|
|
|
|
- support LSRR correctly (#16281).
|
|
|
|
|
2004-09-09 13:25:24 +00:00
|
|
|
* Tue Jul 18 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- drop root privileges even earlier (#13466).
|
|
|
|
|
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Mon Jul 10 2000 Preston Brown <pbrown@redhat.com>
|
|
|
|
- bugfix for segfault with source routing (#13466)
|
|
|
|
- fix bug tracerouting thru aliased ethernet addresses (#9351)
|
|
|
|
|
|
|
|
* Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- FHS packaging.
|
|
|
|
|
|
|
|
* Fri Apr 28 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- fix build with new stricter patch
|
|
|
|
|
|
|
|
* Mon Feb 7 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- compress man pages.
|
|
|
|
|
|
|
|
* Fri Jan 14 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- add patch for tracing to really long hostnames
|
|
|
|
|
|
|
|
* Thu May 27 1999 Richard Henderson <rth@twiddle.net>
|
|
|
|
- avoid unaligned traps writing into the output data area.
|
|
|
|
|
|
|
|
* Fri May 14 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- fix segfault when host cannot be reached through if (#2819)
|
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 14)
|
|
|
|
|
|
|
|
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- strip binaries.
|
|
|
|
|
|
|
|
* Sun Feb 07 1999 Preston Brown <pbrown@redhat.com>
|
|
|
|
- patch added to automatically determine interface to route through
|
|
|
|
|
|
|
|
* Fri Jan 22 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- use %configure
|
|
|
|
- fix 64 bit problem on alpha (#919)
|
|
|
|
|
|
|
|
* Wed Jan 13 1999 Bill Nottingham <notting@redhat.com>
|
|
|
|
- configure fix for arm
|
|
|
|
|
|
|
|
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
|
|
|
|
- translations modified for de, fr, tr
|
|
|
|
|
|
|
|
* Tue Dec 16 1997 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- updated the security patch (ouch!). Without the glibc fix, it could be
|
|
|
|
worthless anyway
|
|
|
|
|
|
|
|
* Sat Dec 13 1997 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- added a security patch fix
|
|
|
|
|
|
|
|
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- added fix from Christopher Seawood
|
|
|
|
|
|
|
|
* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- updated to 1.4a5 for security fixes; release 1 is for RH 4.2, release 2
|
|
|
|
is against glibc
|
|
|
|
|
|
|
|
* Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- built against glibc
|