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