libwpd/libwpd.spec

173 lines
4.6 KiB
RPMSpec

#
# spec file for package libwpd
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
# norootforbuild
Name: libwpd
# note: the main package is empty, it only sets a sane name for the source rpm
BuildRequires: doxygen gcc-c++ pkgconfig
License: LGPLv2.1+
Group: System/Libraries
AutoReqProv: on
Version: 0.9.2
Release: 1
Summary: Library for Importing WordPerfect (tm) Documents
Source: libwpd-%{version}.tar.bz2
Url: http://libwpd.sourceforge.net
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Patch0: libwpd-0.9-nobuilddatetime.patch
%define debug_package_requires libwpd-0_9-9 = %{version}-%{release}
%description
libwpd is a general purpose library for reading or interpreting data
from WordPerfect files. The library is not a stand-alone utility: it is
designed to be used by another program (for example, a word processor)
as an in-process component.
Authors:
--------
William Lachance <william.lachance@sympatico.ca>
Marc Maurer <j.m.maurer@student.utwente.nl>
Fridrich Strba <fridrich.strba@bluewin.ch>
%package -n libwpd-0_9-9
License: LGPLv2.1+
%define libname libwpd-0_9-9
Group: System/Libraries
# remove the old non-versioned package (built in the bs for instance)
Obsoletes: libwpd < %version
Summary: Library for Importing WordPerfect (tm) Documents
%description -n %libname
libwpd is a general purpose library for reading or interpreting data
from WordPerfect files. The library is not a stand-alone utility: it is
designed to be used by another program (for example, a word processor)
as an in-process component.
Authors:
--------
William Lachance <william.lachance@sympatico.ca>
Marc Maurer <j.m.maurer@student.utwente.nl>
Fridrich Strba <fridrich.strba@bluewin.ch>
%package devel
License: LGPLv2.1+
Group: System/Libraries
Summary: Library for importing WordPerfect (tm) documents
Provides: libwpd-devel = %{version}-%{release}
Requires: %{libname} = %{version} libstdc++-devel
%description devel
libwpd is a general purpose library for reading (or, interpreting data
from) WordPerfect files. The library is not a stand-alone utility: it
is designed to be used by another program (e.g.: a word processor) as
an in-process component.
Authors:
--------
William Lachance <william.lachance@sympatico.ca>
Marc Maurer <j.m.maurer@student.utwente.nl>
Fridrich Strba <fridrich.strba@bluewin.ch>
%package devel-doc
License: LGPLv2.1+
Group: System/Libraries
Summary: Documentation for the libwpd API
Requires: libwpd-devel
%description devel-doc
This package contains documentation for the libwpd API.
Authors:
--------
William Lachance <william.lachance@sympatico.ca>
Marc Maurer <j.m.maurer@student.utwente.nl>
Fridrich Strba <fridrich.strba@bluewin.ch>
%package tools
License: LGPLv2.1+
Group: Productivity/Publishing/Word
Summary: Library for importing WordPerfect (tm) documents
%description tools
Tools to transform WordPerfect Documents into other formats. Currently
supported: html, raw, text
Authors:
--------
William Lachance <william.lachance@sympatico.ca>
Marc Maurer <j.m.maurer@student.utwente.nl>
Fridrich Strba <fridrich.strba@bluewin.ch>
%prep
%setup -q
%patch0
%build
%configure --disable-static --docdir=%_docdir/%name
make %{?jobs:-j%jobs}
%install
make DESTDIR=$RPM_BUILD_ROOT install
rm $RPM_BUILD_ROOT%_libdir/*.la
%clean
rm -rf $RPM_BUILD_ROOT
%post -n %libname -p /sbin/ldconfig
%postun -n %libname -p /sbin/ldconfig
%files -n %libname
%defattr(-,root,root)
%{_libdir}/*.so.*
%files devel
%defattr(-,root,root)
%{_libdir}/*.so
%{_libdir}/pkgconfig/libwpd*.pc
%{_includedir}/libwpd-*
%files devel-doc
%defattr(-,root,root)
%doc %dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/html
%doc %{_docdir}/%{name}/libwpd.*
%files tools
%defattr(-,root,root)
%{_bindir}/*
%doc %dir %{_docdir}/%{name}
%doc ChangeLog
%doc COPYING
%doc CREDITS
%doc NEWS
%doc TODO
%changelog