source: projects/specs/trunk/e/enchant/enchant-vl.spec @ 12390

Revision 12390, 6.1 KB checked in by tomop, 4 years ago (diff)

updated 11 packages

dos2unix-7.4.1-1

enchant-1.6.0-2

enchant2-2.2.8-1

fetchmail-6.4.4-1

gmime-3.2.7-1

libical-3.0.8-1

nspr-4.25-1

re2c-1.3-1

samba-4.12.2-1

squid-4.11-1

unique-1.1.6-5

Line 
1%bcond_with voikko
2%bcond_with hunspell
3
4Summary: An Enchanting Spell Checking Library
5Summary(ja): スペルチェックライブラリ
6Name: enchant
7Version: 1.6.0
8Release: 2%{?_dist_release}
9Group: System Environment/Libraries
10Vendor: Project Vine
11Distribution: Vine Linux
12
13License: LGPLv2+
14Source: http://www.abisource.com/downloads/enchant/%{version}/enchant-%{version}.tar.gz
15URL: http://www.abisource.com/
16BuildRequires: glib2-devel >= 2.6.0
17BuildRequires: aspell-devel
18%if %{with hunspell}
19BuildRequires: hunspell-devel
20%endif
21%if %{with voikko}
22BuildRequires: libvoikko-devel
23%endif
24BuildRequires: automake, libtool
25BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
26
27%description
28A library that wraps other spell checking backends.
29
30
31%package hunspell
32Summary: Integration with hunspell for libenchant
33Summary(ja): Integration with hunspell for libenchant
34Group: System Environment/Libraries
35Requires: enchant = %{version}-%{release}
36
37%description hunspell
38Libraries necessary to integrate applications using libenchant with hunspell.
39
40
41%package voikko
42Summary: Integration with voikko for libenchant
43Summary(ja): Integration with voikko for libenchant
44Group: System Environment/Libraries
45Requires: enchant = %{version}-%{release}
46
47%description voikko
48Libraries necessary to integrate applications using libenchant with voikko.
49
50
51%package devel
52Summary: Support files necessary to compile applications with libenchant.
53Summary(ja): Support files necessary to compile applications with libenchant.
54Group: Development/Libraries
55Requires: enchant = %{version}-%{release}
56Requires: glib2-devel
57
58%description devel
59Libraries, headers, and support files necessary to compile applications using libenchant.
60
61
62%prep
63%setup -q
64
65
66%build
67%configure \
68  --disable-ispell \
69  --disable-hspell \
70%if %{with hunspell}
71  --with-myspell \
72%else
73  --disable-myspell \
74%endif
75%if !%{with voikko}
76  --disable-voikko \
77%endif
78  --disable-zemberek \
79  --disable-static
80 
81make %{?_smp_mflags}
82
83
84%install
85rm -rf $RPM_BUILD_ROOT
86make DESTDIR=$RPM_BUILD_ROOT install
87rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
88rm -f $RPM_BUILD_ROOT/%{_libdir}/enchant/*.la
89
90
91%clean
92rm -r $RPM_BUILD_ROOT
93
94
95%post -p /sbin/ldconfig
96
97%postun -p /sbin/ldconfig
98
99
100%files
101%defattr(-,root,root)
102%license COPYING.LIB
103%doc AUTHORS README
104%{_bindir}/*
105%{_libdir}/lib*.so.*
106%dir %{_libdir}/enchant
107%{_libdir}/enchant/lib*aspell.so*
108%{_mandir}/man1/enchant.1.gz
109%{_datadir}/enchant
110
111%if %{with hunspell}
112%files hunspell
113%{_libdir}/enchant/lib*myspell.so*
114%endif
115
116%if %{with voikko}
117%files voikko
118%{_libdir}/enchant/lib*_voikko.so*
119%endif
120
121%files devel
122%defattr(-,root,root)
123%{_libdir}/*.so
124%{_libdir}/pkgconfig/enchant.pc
125%{_includedir}/enchant
126
127
128%changelog
129* Fri May 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.6.0-2
130- rebuilt with current environment.
131
132* Sat Apr 06 2013 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.0-1
133- new upstream release
134
135* Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.4.2-2
136- build with rpm-4.8.1-1 for pkg-config file
137
138* Fri Sep 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.2-1
139- initial build for Vine Linux
140
141* Sat Jul 26 2008 Michael Schwendt <mschwendt@fedoraproject.org> 1:1.4.2-4
142- Rebuild for ABI-incompatible hunspell-1.2.4.2-2.fc10
143
144* Thu Jul 10 2008 Marc Maurer <uwog@abisource.com> 1:1.4.2-3
145- Fix 426712: don't build static libs (patch from Michael Schwendt)
146
147* Wed May 21 2008 Marc Maurer <uwog@abisource.com> 1:1.4.2-2
148- Rebuild
149
150* Wed May 21 2008 Marc Maurer <uwog@abisource.com> 1:1.4.2-1
151- New upstream release
152- Add voikko support in an enchant-voikko package
153- Bump glib-devel BR to 2.6.0
154
155* Fri Feb 08 2008 Caolan McNamara <caolanm@redhat.com> 1:1.3.0-4.fc9
156- minor cockup
157
158* Sat Jan 26 2008 Caolan McNamara <caolanm@redhat.com> 1:1.3.0-3.fc9
159- Resolves: rhbz#426402 use system hunspell not internal one and
160  split out aspell backend.
161- See: rhbz#430354 hspell backend disabled until pic issue fixed
162
163* Wed Dec 19 2007 Caolan McNamara <caolanm@redhat.com> 1:1.3.0-2.fc9
164- tell enchant where the myspell dictionaries are
165
166* Thu Oct 12 2006 Marc Maurer <uwog@abisource.com> 1:1.3.0-1.fc6
167- Update to 1.3.0
168
169* Mon Sep 11 2006 Marc Maurer <uwog@abisource.com> 1:1.2.5-3.fc6
170- Rebuild for FC6
171
172* Mon Apr 10 2006 Marc Maurer <uwog@abisource.com> 1:1.2.5-2.fc6
173- Rebuild
174
175* Mon Apr 10 2006 Marc Maurer <uwog@abisource.com> 1:1.2.5-1.fc6
176- Package the data dir as well (bug 188516)
177- New upstream version
178- Add hspell requirement/support
179
180* Tue Feb 14 2006 Marc Maurer <uwog@abisource.com> 1:1.2.2-2.fc5
181- Rebuild for Fedora Extras 5
182
183* Sun Feb 05 2006 Marc Maurer <uwog@abisource.com> 1:1.2.2-1.fc5
184- Update to 1.2.2
185
186* Mon Jan 30 2006 Marc Maurer <uwog@abisource.com> 1:1.2.1-1.fc5
187- Update to 1.2.1
188- Drop glib Require
189
190* Sat Oct 22 2005 Marc Maurer <uwog@abisource.com> 1:1.2.0-1.fc5
191- Update to 1.2.0
192
193* Wed Oct  5 2005 Marc Maurer <uwog@abisource.com> 1:1.1.6-4.fc5
194- Add dist flag to the release number
195
196* Mon Apr  4 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 1:1.1.6-3
197- make in %%build
198- disable bad buildroot rpaths in libs, don't use %%makeinstall
199- require %%{epoch} of main package in -devel package (Fridrich Strba)
200
201* Thu Mar 31 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 1:1.1.6-2
202- add dep glib2-devel for pkgconfig in -devel package
203- include %%{_libdir}/enchant dir in main package
204- make -devel package require exact VR of main package
205- use -p /sbin/ldconfig in scriptlets
206
207* Mon Mar 28 2005 Marc Maurer <uwog@abisource.com> 1:1.1.6-1
208- update to 1.1.6
209- drop the manpage patch (RH#145010#)
210- fix version numbers in the spec changelog
211
212* Wed Mar  2 2005 Caolan McNamara <caolanm@redhat.com> 1:1.1.5-3
213- rebuild with gcc4
214
215* Fri Jan 14 2005 Caolan McNamara <caolanm@redhat.com> 1:1.1.5-2
216- RH#145010# misformatted manpage
217
218* Mon Dec 20 2004 Caolan McNamara <caolanm@redhat.com> 1:1.1.5-1
219- initial fedora import
220
221* Sun Aug 24 2003 Rui Miguel Seabra <rms@1407.org>
222- update spec to current stat of affairs
223- building from source rpm is now aware of --with and --without flags:
224- --without aspell --without ispell --without myspell --with uspell
225
226* Wed Jul 16 2003 Rui Miguel Seabra <rms@1407.org>
227- take advantage of environment rpm macros
228
229* Sun Jul 13 2003 Dom Lachowicz <cinamod@hotmail.com>
230- Initial version
Note: See TracBrowser for help on using the repository browser.