source: projects/specs/trunk/g/gperf/gperf-vl.spec @ 10580

Revision 10580, 3.1 KB checked in by Takemikaduchi, 8 years ago (diff)

Xaw3d: new upstream release
others: rebuild with gcc-5.4.0

Line 
1Summary:        A perfect hash function generator.
2Summary(ja):    完全ハッシュ関数生成プログラム
3Name:           gperf
4Version:        3.0.4
5Release:        4%{?_dist_release}
6License:        GPLv3+
7Source:         ftp://ftp.gnu.org/pub/gnu/gperf/gperf-%{version}.tar.gz
8Group:          Development/Tools
9Requires(post): /sbin/install-info
10Requires(preun): /sbin/install-info
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12
13Vendor:         Project Vine
14Distribution:   Vine Linux
15
16%description
17Gperf is a perfect hash function generator written in C++. Simply
18stated, a perfect hash function is a hash function and a data
19structure that allows recognition of a key word in a set of words
20using exactly one probe into the data structure.
21
22%prep
23%setup -q
24
25%build
26%configure
27make
28
29%install
30[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
31
32%makeinstall
33# remove the stuff from the buildroot
34rm -rf %{buildroot}/%{_mandir}/{dvi,html}
35rm -rf %{buildroot}%{_prefix}/share/doc
36
37%clean
38[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot}
39
40%post
41/sbin/install-info %{_infodir}/gperf.info.gz %{_infodir}/dir
42
43%preun
44if [ $1 = 0 ]; then
45   /sbin/install-info --delete %{_infodir}/gperf.info.gz %{_infodir}/dir
46fi
47
48%files
49%defattr(-,root,root)
50%doc README NEWS doc/gperf.html
51%{_bindir}/gperf
52%{_mandir}/man1/gperf.1*
53%{_infodir}/gperf.info*
54
55%changelog
56* Sun Jul 10 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.0.4-4
57- rebuild with gcc-5.4.0
58
59* Wed Oct 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.0.4-3
60- rebuild with VineSeed environment
61
62* Sat Mar 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-2
63- rebuild
64
65* Sun Apr 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.4-1
66- new upstream release
67- built with new toolchain
68
69* Sat Sep 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.3-1
70- applied new versioning policy
71
72* Sun Jun 24 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.3-0vl1
73- new upstream release
74
75* Sun Jul 13 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.1-1vl1
76- based on Redhat Rawhide 3.0.1-1
77- s/Copyright/License/
78
79* Fri Feb 22 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org>
80- modified for Vine
81
82* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
83- automated rebuild
84
85* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
86- rebuild with new gcc and binutils
87
88* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.7.2-1
89- Update to 2.7.2
90
91* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
92- automatic rebuild
93
94* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
95- Rebuild with new C++
96
97* Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
98- user infodir and mandir macros for FHS
99- use %%makeinstall
100
101* Fri Feb  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
102- rebuild to gzip manpage
103- don't use CC=egcs
104- fix description
105
106* Wed Mar 24 1999 Cristian Gafton <gafton@redhat.com>
107- added patches for egcs from UP
108
109* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
110- auto rebuild in the new build environment (release 4)
111
112* Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
113- patch for latest egcs
114
115* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
116- strip binary
117
118* Tue Jul 28 1998 Jeff Johnson <jbj@redhat.com>
119- create.
Note: See TracBrowser for help on using the repository browser.