Bjørn Lie
017a200823
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/enchant?expand=0&rev=62
209 lines
6.1 KiB
RPMSpec
209 lines
6.1 KiB
RPMSpec
#
|
|
# spec file for package enchant
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%if 0%{?suse_version} >= 1550
|
|
%bcond_without nuspell
|
|
%else
|
|
%bcond_with nuspell
|
|
%endif
|
|
%bcond_without aspell
|
|
|
|
Name: enchant
|
|
Version: 2.8.2
|
|
Release: 0
|
|
Summary: Generic Spell Checking Library
|
|
License: LGPL-2.1-or-later
|
|
URL: https://rrthomas.github.io/enchant/
|
|
Source: https://github.com/rrthomas/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
Source1: baselibs.conf
|
|
%if %{with aspell}
|
|
BuildRequires: aspell-devel
|
|
%endif
|
|
BuildRequires: dbus-1-glib-devel
|
|
BuildRequires: doxygen
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: groff-full
|
|
BuildRequires: hunspell-devel
|
|
BuildRequires: libvoikko-devel
|
|
BuildRequires: vala
|
|
%if %{with nuspell}
|
|
BuildRequires: libboost_headers-devel
|
|
BuildRequires: nuspell-devel >= 5.1.0
|
|
%endif
|
|
|
|
%description
|
|
A library providing an efficient extensible abstraction for dealing
|
|
with different spell checking libraries.
|
|
|
|
%package tools
|
|
Summary: Command line tools for the Enchant spell checking library
|
|
|
|
%description tools
|
|
A library providing an efficient extensible abstraction for dealing
|
|
with different spell checking libraries.
|
|
|
|
This package provides command-line tools to interact with enchant.
|
|
|
|
%package data
|
|
Summary: Data files for libenchant
|
|
# enchant up to version 1.6.1 was not packaged properly according the SLPP
|
|
Conflicts: libenchant1 < 1.6.1
|
|
|
|
%description data
|
|
A library providing an efficient extensible abstraction for dealing
|
|
with different spell checking libraries.
|
|
|
|
This package provides data/configuration files for libenchant.
|
|
|
|
%if %{with aspell}
|
|
%package -n enchant-2-backend-aspell
|
|
Summary: Aspell backend for the Enchant spell checking library
|
|
Supplements: packageand(libenchant-2-2:%(rpm -q --qf "%%{name}" -f $(readlink -f %{_libdir}/libaspell.so)))
|
|
Provides: enchant-2-backend
|
|
|
|
%description -n enchant-2-backend-aspell
|
|
Aspell plugin for enchant, a library providing an efficient
|
|
extensible abstraction for dealing with different spell checking
|
|
libraries.
|
|
%endif
|
|
|
|
%package -n enchant-2-backend-hunspell
|
|
Summary: Hunspell backend for the Enchant spell checking library
|
|
Supplements: packageand(libenchant-2-2:%(rpm -q --qf "%%{name}" -f $(readlink -f %{_libdir}/libhunspell.so)))
|
|
Provides: enchant-2-backend
|
|
|
|
%description -n enchant-2-backend-hunspell
|
|
Hunspell plugin for enchant, a library providing an efficient
|
|
extensible abstraction for dealing with different spell checking
|
|
libraries.
|
|
|
|
%package -n enchant-2-backend-nuspell
|
|
Summary: Nuspell backend for the Enchant spell checking library
|
|
Supplements: packageand(libenchant-2-2:%(rpm -q --qf "%%{name}" -f $(readlink -f %{_libdir}/libnuspell.so)))
|
|
Provides: enchant-2-backend
|
|
|
|
%description -n enchant-2-backend-nuspell
|
|
Nuspell plugin for enchant, a library providing an efficient
|
|
extensible abstraction for dealing with different spell checking
|
|
libraries.
|
|
|
|
%package -n enchant-2-backend-voikko
|
|
Summary: Voikko backend for the Enchant spell checking library
|
|
Supplements: packageand(libenchant-2-2:%(rpm -q --qf "%%{name}" -f $(readlink -f %{_libdir}/libvoikko.so)))
|
|
Provides: enchant-2-backend
|
|
Provides: locale(libenchant-2-2:fi)
|
|
|
|
%description -n enchant-2-backend-voikko
|
|
Voikko plugin (Finnish) for enchant, a library providing an efficient
|
|
extensible abstraction for dealing with different spell checking
|
|
libraries.
|
|
|
|
%package -n libenchant-2-2
|
|
Summary: Generic Spell Checking Library
|
|
Requires: enchant-2-backend
|
|
Requires: enchant-data >= %{version}
|
|
Suggests: enchant-2-backend-hunspell
|
|
|
|
%description -n libenchant-2-2
|
|
A library providing an efficient extensible abstraction for dealing
|
|
with different spell checking libraries.
|
|
|
|
%package devel
|
|
Summary: Development files for the Enchant spell checking library
|
|
Requires: glib2-devel
|
|
Requires: libenchant-2-2 = %{version}
|
|
Requires: libstdc++-devel
|
|
|
|
%description devel
|
|
This package contains all necessary include files and libraries needed
|
|
to develop applications that require these.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
%if %{with aspell}
|
|
--with-aspell \
|
|
%endif
|
|
--disable-static \
|
|
--docdir=%{_defaultdocdir}/%{name}
|
|
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -n libenchant-2-2 -p /sbin/ldconfig
|
|
%postun -n libenchant-2-2 -p /sbin/ldconfig
|
|
|
|
%files tools
|
|
%{_bindir}/enchant-2
|
|
%{_bindir}/enchant-lsmod-2
|
|
|
|
%{_mandir}/man1/enchant-2.1%{?ext_man}
|
|
%{_mandir}/man1/enchant-lsmod-2.1%{?ext_man}
|
|
%{_mandir}/man5/enchant.5*
|
|
|
|
%files -n libenchant-2-2
|
|
%license COPYING.LIB
|
|
|
|
%dir %{_defaultdocdir}/%{name}
|
|
|
|
%doc AUTHORS ChangeLog NEWS README.md
|
|
%doc %{_defaultdocdir}/%{name}/enchant.html
|
|
%doc %{_defaultdocdir}/%{name}/enchant-2.html
|
|
%doc %{_defaultdocdir}/%{name}/enchant-lsmod-2.html
|
|
|
|
%{_libdir}/*.so.*
|
|
%dir %{_libdir}/enchant-2
|
|
|
|
%if %{with aspell}
|
|
%files -n enchant-2-backend-aspell
|
|
%dir %{_libdir}/enchant-2
|
|
%{_libdir}/enchant-2/enchant_aspell.so
|
|
%endif
|
|
|
|
%files -n enchant-2-backend-hunspell
|
|
%dir %{_libdir}/enchant-2
|
|
%{_libdir}/enchant-2/enchant_hunspell.so
|
|
|
|
%if %{with nuspell}
|
|
%files -n enchant-2-backend-nuspell
|
|
%dir %{_libdir}/enchant-2
|
|
%{_libdir}/enchant-2/enchant_nuspell.so
|
|
%endif
|
|
|
|
%files -n enchant-2-backend-voikko
|
|
%dir %{_libdir}/enchant-2
|
|
%{_libdir}/enchant-2/enchant_voikko.so
|
|
|
|
%files data
|
|
# The directories are not versioned, unfortunately. Not good for the SLPP.
|
|
%dir %{_datadir}/enchant-2
|
|
%{_datadir}/enchant-2/enchant.ordering
|
|
|
|
%files devel
|
|
%{_includedir}/enchant-2
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/*.pc
|
|
|
|
%changelog
|