source: projects/specs/trunk/t/traceroute/traceroute-vl.spec @ 8064

Revision 8064, 4.3 KB checked in by Takemikaduchi, 10 years ago (diff)

freetype2: fix pkgconfig
xserver: update to 1.14.5
others: new upstream release or rebuild

Line 
1Summary: Traces the route taken by packets over a TCP/IP network.
2Summary(ja): TCP/IPネットワーク上でパケットがたどる経路をトレースするツール
3Name: traceroute
4Version: 2.0.19
5Release: 1%{?_dist_release}
6Epoch: 1
7License: GPL
8Group: Applications/Internet
9URL:  http://traceroute.sourceforge.net
10Source0: http://dl.sourceforge.net/traceroute/traceroute-%{version}.tar.gz
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12Conflicts: iputils <= 20020927-13vl2
13
14Vendor: Project Vine
15Distribution: Vine Linux
16
17%description
18The traceroute utility displays the route used by IP packets on their
19way to a specified network (or Internet) host.  Traceroute displays
20the IP number and host name (if possible) of the machines along the
21route taken by the packets.  Traceroute is used as a network debugging
22tool.  If you're having network connectivity problems, traceroute will
23show you where the trouble is coming from along the route.
24
25Install traceroute if you need a tool for diagnosing network connectivity
26problems.
27
28%prep
29%setup -q
30
31%build
32make %{?_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" LDFLAGS=""
33
34%install
35rm -rf $RPM_BUILD_ROOT
36
37install -d $RPM_BUILD_ROOT/bin
38install -m755 traceroute/traceroute $RPM_BUILD_ROOT/bin
39pushd $RPM_BUILD_ROOT/bin
40ln -s traceroute traceroute6
41ln -s traceroute tracert
42popd
43
44install -d $RPM_BUILD_ROOT%{_mandir}/man8
45install -p -m644 traceroute/traceroute.8 $RPM_BUILD_ROOT%{_mandir}/man8
46pushd $RPM_BUILD_ROOT%{_mandir}/man8
47ln -s traceroute.8 traceroute6.8
48popd
49
50%clean
51rm -rf %{buildroot}
52
53%files
54%defattr(-,root,root)
55%doc COPYING README TODO CREDITS
56/bin/*
57%{_mandir}/man?/*
58
59%changelog
60* Thu Dec 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1:2.0.19-1
61- update to 2.0.19
62
63* Wed Nov 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1:2.0.16-1
64- update to 2.0.16
65
66* Wed Apr 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1:2.0.12-1
67- update to 2.0.12
68- spec in utf-8
69
70* Fri Mar 21 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1:2.0.9-1vl5
71- updated to 2.0.9
72
73* Wed Sep 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1:1.0.4-0vl1
74- replace to new traceroute implementation.
75
76* Tue Oct 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4a12-20vl2
77- fix missing traceroute executable
78  - add real executable file of traceroute to %%files
79
80* Mon Oct 20 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4a12-20vl1
81- rebuild with new toolchains
82- s/Copyright/License/
83- based on Redhat Rawhide 1.4a12-20
84
85* Wed Feb 20 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4a5-18vl4
86- rebuild to remove rpmlib dependancy
87
88* Fri Jun 01 2001 <sagami@vinelinux.org>
89- 1.4a5-18vl3: quick hack for build failure and install manpage into _mandir
90
91* Mon Oct 16 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
92- 1.4a5-18vl2
93- merged traceroute-1.4a5-security.patch
94
95* Mon Jul 10 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
96- 1.4a5-18vl1
97- modified %patch5 -p1 -> %patch5 -p0
98
99* Mon Feb  7 2000 Jeff Johnson <jbj@redhat.com>
100- compress man pages.
101
102* Fri Jan 14 2000 Bill Nottingham <notting@redhat.com>
103- add patch for tracing to really long hostnames
104
105* Thu May 27 1999 Richard Henderson <rth@twiddle.net>
106- avoid unaligned traps writing into the output data area.
107
108* Fri May 14 1999 Jeff Johnson <jbj@redhat.com>
109- fix segfault when host cannot be reached through if (#2819)
110
111* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
112- auto rebuild in the new build environment (release 14)
113
114* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
115- strip binaries.
116
117* Sun Feb 07 1999 Preston Brown <pbrown@redhat.com>
118- patch added to automatically determine interface to route through
119
120* Fri Jan 22 1999 Jeff Johnson <jbj@redhat.com>
121- use %configure
122- fix 64 bit problem on alpha (#919)
123
124* Wed Jan 13 1999 Bill Nottingham <notting@redhat.com>
125- configure fix for arm
126
127* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
128- translations modified for de, fr, tr
129
130* Tue Dec 16 1997 Cristian Gafton <gafton@redhat.com>
131- updated the security patch (ouch!). Without the glibc fix, it could be
132  worthless anyway
133
134* Sat Dec 13 1997 Cristian Gafton <gafton@redhat.com>
135- added a security patch fix
136
137* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
138- added fix from Christopher Seawood
139
140* Mon Sep 22 1997 Erik Troan <ewt@redhat.com>
141- updated to 1.4a5 for security fixes; release 1 is for RH 4.2, release 2
142  is against glibc
143
144* Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
145- built against glibc
Note: See TracBrowser for help on using the repository browser.