source: projects/specs/branches/6/t/time/time-vl.spec @ 3399

Revision 3399, 3.9 KB checked in by inagaki, 13 years ago (diff)

update: ftp, rsh, time, telnet

Line 
1Name: time
2Summary: A GNU utility for monitoring a program's use of system resources.
3Summary(ja): プログラムのシステムリソース使用をモニタする GNU ユーティリティ
4Version: 1.7
5Release: 23%{?_dist_release}
6
7Group: Applications/System
8License: GPLv2+
9URL: http://www.gnu.org/software/time/
10
11Source0: ftp://prep.ai.mit.edu/pub/gnu/%{name}/%{name}-%{version}.tar.gz
12Patch0: time-1.7-destdir.patch
13Patch1: time-1.7-verbose.patch
14
15BuildRoot: %{_tmppath}/%{name}-%{version}-root
16Requires(post): /sbin/install-info
17Requires(preun): /sbin/install-info
18
19%description
20The GNU time utility runs another program, collects information about
21the resources used by that program while it is running, and displays
22the results.
23
24%description -l ja
25GNU time ユーティリティは,他のプログラムを実行し,そのプログラムが
26実行される際にシステムリソースをどの程度使用したかの情報を表示します.
27
28
29%prep
30%setup -q
31%patch0 -p1
32%patch1 -p1
33
34%build
35echo "ac_cv_func_wait3=\${ac_cv_func_wait3='yes'}" >> config.cache
36%configure
37make %{?_smp_mflags}
38
39%install
40rm -rf %{buildroot}
41make install DESTDIR=$RPM_BUILD_ROOT
42
43%clean
44rm -rf %{buildroot}
45
46%post
47/sbin/install-info %{_infodir}/time.info.gz %{_infodir}/dir \
48    --entry="* time: (time).        GNU time Utility" || :
49
50%preun
51if [ "$1" = 0 ]; then
52    /sbin/install-info --delete %{_infodir}/time.info.gz %{_infodir}/dir \
53    --entry="* time: (time).        GNU time Utility" || :
54fi
55
56%files
57%defattr(-,root,root)
58%doc NEWS README COPYING
59%{_bindir}/time
60%{_infodir}/time.info*
61
62%changelog
63* Sun Apr 10 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-23
64- rebuilt with current VineSeed
65
66* Thu Oct 23 2008 Shu KONNO <owa@bg.wakwak.com> 1.7-22
67- spec in utf-8
68
69* Tue Apr 29 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-21
70- applied new versioning policy
71- added Patches from Fedora
72  * Tue Mar  4 2008 Roman Rakus <rrakus@redhat.cz> - 1.7-33
73  - Added patch from JW (redhat@zacglen.com), less nonverbose output
74  * Tue Feb 27 2007 Karsten Hopp <karsten@redhat.com> 1.7-29
75  - use make install DESTDIR=
76
77* Wed Jun 07 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.7-20vl2
78- rebuilt with new toolchains
79- updated source URL
80
81* Wed Dec 04 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.7-20vl1
82- based on 1.7-20 from Rawhide and built for Vine Linux
83- added Japanese summary and description
84
85* Tue Nov 19 2002 Tim Powers <timp@redhat.com>
86- rebuild on all arches
87
88* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
89- automated rebuild
90
91* Wed Jun 19 2002 Florian La Roche <Florian.LaRoche@redhat.de>
92- do not strip apps, do not compress info page
93
94* Thu May 23 2002 Tim Powers <timp@redhat.com>
95- automated rebuild
96
97* Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com>
98- Remove HAVE_WAIT3 hack, tried to replace it with a requirement for an
99autoconf with the fixed test, didn't work, put in another less-bad hack
100instead.
101
102* Wed Dec 05 2001 Tom Tromey <tromey@redhat.com>
103- Bump release, force HAVE_WAIT3 to be defined at build time
104
105* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
106- Bump release + rebuild.
107
108* Wed Jan 31 2001 Preston Brown <pbrown@redhat.com>
109- prereq install-info (#24715)
110
111* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
112- automatic rebuild
113
114* Thu Jun 29 2000 Preston Brown <pbrown@redhat.com>
115- using / as the file manifesto has weird results.
116
117* Sun Jun  4 2000 Jeff Johnson <jbj@redhat.com>
118- FHS packaging.
119
120* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
121- auto rebuild in the new build environment (release 9)
122
123* Mon Aug 10 1998 Erik Troan <ewt@redhat.com>
124- buildrooted and defattr'd
125
126* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
127- translations modified for de, fr, tr
128
129* Mon Oct 27 1997 Cristian Gafton <gafton@redhat.com>
130- fixed info handling
131
132* Thu Oct 23 1997 Cristian Gafton <gafton@redhat.com>
133- updated the spec file; added info file handling
134
135* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
136- built against glibc
Note: See TracBrowser for help on using the repository browser.