libcdr/libcdr.spec

188 lines
5.7 KiB
RPMSpec
Raw Normal View History

2014-05-26 15:50:27 +00:00
%global apiversion 0.1
2013-04-21 07:51:02 +00:00
2012-03-20 13:02:16 +00:00
Name: libcdr
2014-05-26 15:50:27 +00:00
Version: 0.1.0
Release: 2%{?dist}
2014-07-01 16:56:34 +00:00
Summary: A library for import of CorelDRAW drawings
2012-03-20 13:02:16 +00:00
2013-05-21 11:56:21 +00:00
# the only Public Domain source is src/lib/CDRColorProfiles.h
2014-04-10 10:48:01 +00:00
License: MPLv2.0 and Public Domain
2014-07-01 16:31:27 +00:00
URL: http://wiki.documentfoundation.org/DLP/Libraries/libcdr
Source: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
2012-03-20 13:02:16 +00:00
2013-04-23 03:56:17 +00:00
BuildRequires: boost-devel
2012-03-20 13:02:16 +00:00
BuildRequires: doxygen
2014-04-09 12:06:43 +00:00
BuildRequires: help2man
BuildRequires: pkgconfig(icu-i18n)
BuildRequires: pkgconfig(lcms2)
2014-05-26 15:50:27 +00:00
BuildRequires: pkgconfig(librevenge-0.0)
BuildRequires: pkgconfig(zlib)
2012-03-20 13:02:16 +00:00
%description
2014-04-10 10:48:51 +00:00
Libcdr is library providing ability to interpret and import CorelDRAW
2012-03-20 13:02:16 +00:00
drawings into various applications. You can find it being used in
libreoffice.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package doc
Summary: Documentation of %{name} API
BuildArch: noarch
%description doc
The %{name}-doc package contains documentation files for %{name}.
%package tools
2014-04-10 10:48:51 +00:00
Summary: Tools to transform CorelDRAW drawings into other formats
2012-03-20 13:02:16 +00:00
Requires: %{name}%{?_isa} = %{version}-%{release}
%description tools
2014-04-10 10:48:51 +00:00
Tools to transform CorelDRAW drawings into other formats.
2013-04-08 04:19:00 +00:00
Currently supported: XHTML, text, raw.
2012-03-20 13:02:16 +00:00
%prep
%setup -q
%build
%configure --disable-static --disable-werror
sed -i \
-e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
-e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' \
libtool
2012-06-01 09:47:17 +00:00
make %{?_smp_mflags} V=1
2012-03-20 13:02:16 +00:00
2014-04-09 12:06:43 +00:00
export LD_LIBRARY_PATH=`pwd`/src/lib/.libs${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
help2man -N -n 'debug the conversion library' -o cdr2raw.1 ./src/conv/raw/.libs/cdr2raw
help2man -N -n 'convert CorelDRAW document into HTML' -o cdr2xhtml.1 ./src/conv/svg/.libs/cdr2xhtml
help2man -N -n 'convert CorelDRAW document into plain text' -o cdr2text.1 ./src/conv/text/.libs/cdr2text
help2man -N -n 'debug the conversion library' -o cmx2raw.1 ./src/conv/raw/.libs/cmx2raw
help2man -N -n 'convert Corel Presentation Exchange file into HTML' -o cmx2xhtml.1 ./src/conv/svg/.libs/cmx2xhtml
help2man -N -n 'convert Corel Presentation Exchange file into plain text' -o cmx2text.1 ./src/conv/text/.libs/cmx2text
2012-03-20 13:02:16 +00:00
%install
make install DESTDIR=%{buildroot}
rm -f %{buildroot}/%{_libdir}/*.la
# rhbz#1001251 we install API docs directly from build
rm -rf %{buildroot}/%{_docdir}/%{name}
2012-03-20 13:02:16 +00:00
2014-04-09 12:06:43 +00:00
mkdir -p %{buildroot}/%{_mandir}/man1
install -m 0644 cdr2*.1 cmx2*.1 %{buildroot}/%{_mandir}/man1
2012-03-20 13:02:16 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
2014-04-10 10:48:01 +00:00
%doc AUTHORS ChangeLog COPYING.MPL README
2013-04-21 07:51:02 +00:00
%{_libdir}/%{name}-%{apiversion}.so.*
2012-03-20 13:02:16 +00:00
%files devel
2013-04-21 07:52:13 +00:00
%doc ChangeLog
2013-04-21 07:51:02 +00:00
%{_includedir}/%{name}-%{apiversion}
%{_libdir}/%{name}-%{apiversion}.so
%{_libdir}/pkgconfig/%{name}-%{apiversion}.pc
2012-03-20 13:02:16 +00:00
%files doc
2014-04-10 10:48:01 +00:00
%doc COPYING.MPL
%doc docs/doxygen/html
2012-03-20 13:02:16 +00:00
%files tools
%{_bindir}/cdr2raw
2013-04-08 04:19:00 +00:00
%{_bindir}/cdr2text
2012-03-20 13:02:16 +00:00
%{_bindir}/cdr2xhtml
2013-04-08 04:19:00 +00:00
%{_bindir}/cmx2raw
%{_bindir}/cmx2text
%{_bindir}/cmx2xhtml
2014-04-09 12:06:43 +00:00
%{_mandir}/man1/cdr2raw.1*
%{_mandir}/man1/cdr2text.1*
%{_mandir}/man1/cdr2xhtml.1*
%{_mandir}/man1/cmx2raw.1*
%{_mandir}/man1/cmx2text.1*
%{_mandir}/man1/cmx2xhtml.1*
2012-03-20 13:02:16 +00:00
%changelog
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-05-26 15:50:27 +00:00
* Mon May 26 2014 David Tardon <dtardon@redhat.com> - 0.1.0-1
- new upstream release
2014-05-23 00:41:03 +00:00
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0.0.16-2
- Rebuild for boost 1.55.0
2014-04-10 10:48:01 +00:00
* Thu Apr 10 2014 David Tardon <dtardon@redhat.com> - 0.0.16-1
- new upstream release
2014-04-09 12:06:43 +00:00
* Wed Apr 09 2014 David Tardon <dtardon@redhat.com> - 0.0.15-2
- generate man pages
2014-04-05 07:40:27 +00:00
* Sat Apr 05 2014 David Tardon <dtardon@redhat.com> - 0.0.15-1
- new upstream release
2014-02-13 16:12:52 +00:00
* Thu Feb 13 2014 David Tardon <dtardon@redhat.com> - 0.0.14-6
- rebuild for new ICU
* Fri Aug 30 2013 David Tardon <dtardon@redhat.com> - 0.0.14-5
- Resolves: rhbz#1001251 duplicate documentation files / potentially conflicting
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.14-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
2013-07-30 12:16:30 +00:00
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 0.0.14-3
- Rebuild for boost 1.54.0
2013-05-21 11:56:21 +00:00
* Tue May 21 2013 David Tardon <dtardon@redhat.com> - 0.0.14-2
- add public domain to licenses
2013-05-17 15:02:53 +00:00
* Fri May 17 2013 David Tardon <dtardon@redhat.com> - 0.0.14-1
- new release
2013-04-23 03:40:16 +00:00
* Tue Apr 23 2013 David Tardon <dtardon@redhat.com> - 0.0.13-1
- new relese
2013-04-08 04:19:00 +00:00
* Mon Apr 08 2013 David Tardon <dtardon@redhat.com> - 0.0.12-1
- new release
2013-03-02 12:43:23 +00:00
* Sat Mar 02 2013 David Tardon <dtardon@redhat.com> - 0.0.11-1
- new release
2013-01-31 17:20:24 +00:00
* Thu Jan 31 2013 David Tardon <dtardon@redhat.com> - 0.0.10-2
- rebuild for ICU change
2013-01-28 14:48:46 +00:00
* Mon Jan 28 2013 David Tardon <dtardon@redhat.com> - 0.0.10-1
- new release
* Tue Jan 08 2013 David Tardon <dtardon@redhat.com> - 0.0.9-2
- Resolves: rhbz#891082 libreoffice Impress constantly crashes
2012-10-08 11:51:56 +00:00
* Mon Oct 08 2012 David Tardon <dtardon@redhat.com> - 0.0.9-1
- new upstream release
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-06-11 12:36:07 +00:00
* Mon Jun 11 2012 David Tardon <dtardon@redhat.com> 0.0.8-1
- new upstream release
- adds basic initial primitive uncomplete text support
2012-04-26 04:27:52 +00:00
* Thu Apr 26 2012 David Tardon <dtardon@redhat.com> 0.0.7-1
- new upstream release
2012-04-03 04:44:19 +00:00
* Tue Apr 03 2012 David Tardon <dtardon@redhat.com> 0.0.6-1
- new upstream release
2012-04-03 04:44:35 +00:00
* Mon Mar 19 2012 David Tardon <dtardon@redhat.com> 0.0.5-1
2012-03-20 13:02:16 +00:00
- new upstream release
- fix license
2012-04-03 04:44:35 +00:00
* Sat Mar 10 2012 David Tardon <dtardon@redhat.com> 0.0.3-2
2012-03-20 13:02:16 +00:00
- remove Requires: of main package from -doc subpackage
2012-04-03 04:44:35 +00:00
* Thu Mar 01 2012 David Tardon <dtardon@redhat.com> 0.0.3-1
2012-03-20 13:02:16 +00:00
- initial import