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

Revision 9073, 3.0 KB checked in by Takemikaduchi, 9 years ago (diff)

GNOME 3.14.1

Line 
1Summary:        A perfect hash function generator.
2Summary(ja):    完全ハッシュ関数生成プログラム
3Name:           gperf
4Version:        3.0.4
5Release:        3%{?_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* Wed Oct 29 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> - 3.0.4-3
57- rebuild with VineSeed environment
58
59* Sat Mar 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 3.0.4-2
60- rebuild
61
62* Sun Apr 25 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.4-1
63- new upstream release
64- built with new toolchain
65
66* Sat Sep 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.3-1
67- applied new versioning policy
68
69* Sun Jun 24 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.3-0vl1
70- new upstream release
71
72* Sun Jul 13 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 3.0.1-1vl1
73- based on Redhat Rawhide 3.0.1-1
74- s/Copyright/License/
75
76* Fri Feb 22 2002 KOBAYASHI R. Taizo <tkoba@vinelinux.org>
77- modified for Vine
78
79* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
80- automated rebuild
81
82* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
83- rebuild with new gcc and binutils
84
85* Tue Apr 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.7.2-1
86- Update to 2.7.2
87
88* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
89- automatic rebuild
90
91* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
92- Rebuild with new C++
93
94* Sun Jun 18 2000 Matt Wilson <msw@redhat.com>
95- user infodir and mandir macros for FHS
96- use %%makeinstall
97
98* Fri Feb  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
99- rebuild to gzip manpage
100- don't use CC=egcs
101- fix description
102
103* Wed Mar 24 1999 Cristian Gafton <gafton@redhat.com>
104- added patches for egcs from UP
105
106* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
107- auto rebuild in the new build environment (release 4)
108
109* Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
110- patch for latest egcs
111
112* Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
113- strip binary
114
115* Tue Jul 28 1998 Jeff Johnson <jbj@redhat.com>
116- create.
Note: See TracBrowser for help on using the repository browser.