source: projects/specs/trunk/p/pcre/pcre-vl.spec @ 6991

Revision 6991, 5.5 KB checked in by daisuke, 12 years ago (diff)

pcre:

  • change includedir to standard /usr/include
Line 
1Name: pcre
2Summary: Perl-compatible regular expression library
3Summary(ja): Perl 互換の正規表現ライブラリ
4Version: 8.31
5Release: 1%{?_dist_release}
6
7License: BSD
8Group: System Environment/Libraries
9URL: http://www.pcre.org/
10
11Source:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/%{name}-%{version}.tar.bz2
12
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildRequires: zlib-devel
15BuildRequires: bzip2-devel
16
17Vendor: Project Vine
18Distribution: Vine Linux
19
20Packager: inagaki
21
22%description
23Perl-compatible regular expression library.
24PCRE has its own native API, but a set of "wrapper" functions that are based on
25the POSIX API are also supplied in the library libpcreposix. Note that this
26just provides a POSIX calling interface to PCRE: the regular expressions
27themselves still follow Perl syntax and semantics. The header file
28for the POSIX-style functions is called pcreposix.h.
29
30%package devel
31Summary: Development files for %{name}
32Summary(ja): %{name} の開発用ファイル
33Group: Development/Libraries
34Requires: %{name} = %{version}-%{release}
35
36%description devel
37Development files (Headers, libraries for static linking, etc) for %{name}.
38
39%prep
40%setup -q
41
42%build
43%configure \
44    --enable-jit \
45    --disable-static \
46    --enable-utf8 \
47    --enable-unicode-properties \
48    --enable-pcregrep-libz \
49    --enable-pcregrep-libbz2 \
50    --enable-pcre8 \
51    --enable-pcre16
52
53make
54
55%install
56rm -rf $RPM_BUILD_ROOT
57make install DESTDIR=$RPM_BUILD_ROOT
58
59rm -rf $RPM_BUILD_ROOT%{_datadir}/doc
60rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
61
62%check
63make check
64
65%clean
66rm -rf $RPM_BUILD_ROOT
67
68%post -p /sbin/ldconfig
69
70%postun -p /sbin/ldconfig
71
72
73%files
74%defattr(-,root,root)
75%doc AUTHORS COPYING ChangeLog LICENCE NEWS README
76%{_bindir}/pcregrep
77%{_libdir}/*.so.*
78%{_mandir}/man1/pcregrep.*
79
80%files devel
81%defattr(-,root,root)
82%doc doc/html/*
83%{_bindir}/pcre-config
84%{_bindir}/pcretest
85%{_includedir}/*
86%{_libdir}/*.so
87%{_libdir}/pkgconfig/*.pc
88%{_mandir}/man1/pcre-config.*
89%{_mandir}/man1/pcretest.*
90%{_mandir}/man3/*
91
92%changelog
93* Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 8.31-1
94- new upstream release
95- add --enable-pcre16 --enable-pcre8 --enable-jit
96- API change
97- change includedir to /usr/include
98
99* Sat Sep 10 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.13-1
100- new upstream release
101
102* Tue Mar 22 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.12-1
103- new upstream release
104
105* Mon Sep 27 2010 Shu KONNO <owa@bg.wakwak.com> 8.10-2
106- rebuilt with rpm-4.8.1 for pkg-config
107
108* Thu Aug 19 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.10-1
109- new upstream release
110
111* Mon May 10 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.02-1
112- new upstream release with security fix
113
114* Sat Feb  6 2010 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 8.01-1
115- new upstream release
116
117* Sat Jan 16 2010 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 8.00-1
118- new upstream release
119
120* Tue Jul 07 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.9-2
121- add --enable-unicode-properties to configure option
122
123* Wed Jun 10 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.9-1
124- new upstream release
125- added BR: zlib-devel, bzip2-devel
126- removed static libraries from devel package
127- added Packager tag
128
129* Sat Jan 24 2009 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.8-1vl5
130- new upstream release
131- spec in UTF-8
132
133* Sun Jul  6 2008 Ryoiochi INAGAKI <ryo1@bc.wakwak.com> 7.7-1vl5
134- new upstream release
135
136* Tue May 13 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.6-1vl5
137- use macro for Release
138
139* Fri May 09 2008 Yasumichi Akahoshi <yasumichi@vinelinux.org> 7.6-1vl5
140- apply new virsioning policy.
141- remove *.la
142
143* Thu Feb  7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.6-0vl1
144- new upstream release
145
146* Wed Nov  7 2007 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 7.4-0vl1
147- new upstream release
148
149* Sun Aug 19 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.2-0vl1
150- new upstream release
151
152* Fri May 11 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 6.6-0vl2
153- rebuild with new environment/toolchain
154
155* Wed Feb 15 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.6-0vl1
156- new upstream release
157
158* Mon Sep  5 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3-0vl2
159- added --enable-utf8 option
160
161* Sun Sep  4 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 6.3-0vl1
162- new upstream release
163
164* Thu Jan 27 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 5.0-0vl1
165- new upstream release
166- added Japanese summary
167
168* Sun Apr 18 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 4.5-0vl1
169- new upstream release
170
171* Mon Oct 13 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.4-0vl1
172- new upstream release
173
174* Mon May  5 2003 Tomoya TAKA <taka@vinelinux.org> 4.1-0vl3
175- skip 'make check' on alpha
176
177* Fri Mar 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.1-0vl2
178- change install section
179- change files section
180
181* Fri Mar 28 2003 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 4.1-0vl1
182- update to 4.1
183- add %{_bindir}/pcretest
184- add %doc AUTHORS COPYING ChangeLog INSTALL LICENCE NEWS README
185
186* Sun Dec 15 2002 AKIYAMA Kazuhito <akiyama@yb3.so-net.ne.jp> 3.9-0vl2
187- rebuild with new toolchains
188
189* Sat Mar 16 2002 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.9-0vl1
190- Update to 3.9
191
192* Wed Dec 26 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.7-0vl1
193- Update to 3.7
194
195* Sun Oct 14 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.5-0vl1
196- Update to 3.5
197
198* Wed Oct 10 2001 AKIYAMA Kazuhito <akiyama@karen.servepics.com> 3.4-2vl1
199- Build for VineSeed
200
201* Thu May 17 2001 Bernhard Rosenkraenzer <bero@redhat.com> 3.4-2
202- Move libpcre to /lib, grep uses it these days (#41104)
203
204* Wed Apr 18 2001 Bernhard Rosenkraenzer <bero@redhat.com>
205- Move this to a separate package, used to be in kdesupport, but it's
206  generally useful...
Note: See TracBrowser for help on using the repository browser.