|
|
|
@ -1,8 +1,8 @@
|
|
|
|
|
%global apiversion 0.1
|
|
|
|
|
|
|
|
|
|
Name: libfreehand
|
|
|
|
|
Version: 0.1.0
|
|
|
|
|
Release: 4%{?dist}
|
|
|
|
|
Version: 0.1.1
|
|
|
|
|
Release: 1%{?dist}
|
|
|
|
|
Summary: A library for import of Macromedia/Adobe FreeHand documents
|
|
|
|
|
|
|
|
|
|
License: MPLv2.0
|
|
|
|
@ -12,7 +12,9 @@ Source: http://dev-www.libreoffice.org/src/%{name}/%{name}-%{version}.tar.xz
|
|
|
|
|
BuildRequires: doxygen
|
|
|
|
|
BuildRequires: gperf
|
|
|
|
|
BuildRequires: help2man
|
|
|
|
|
BuildRequires: pkgconfig(icu-i18n)
|
|
|
|
|
BuildRequires: pkgconfig(librevenge-0.0)
|
|
|
|
|
BuildRequires: pkgconfig(lcms2)
|
|
|
|
|
BuildRequires: pkgconfig(zlib)
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
@ -40,7 +42,7 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description tools
|
|
|
|
|
Tools to transform Macromedia/Adobe FreeHand documents into other formats.
|
|
|
|
|
Currently supported: SVG, raw.
|
|
|
|
|
Currently supported: SVG, raw, text.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%autosetup -p1
|
|
|
|
@ -56,6 +58,7 @@ make %{?_smp_mflags}
|
|
|
|
|
export LD_LIBRARY_PATH=`pwd`/src/lib/.libs${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
|
|
|
|
|
help2man -N -n 'debug the conversion library' -o fh2raw.1 ./src/conv/raw/.libs/fh2raw
|
|
|
|
|
help2man -N -n 'convert FreeHand document into SVG' -o fh2svg.1 ./src/conv/svg/.libs/fh2svg
|
|
|
|
|
help2man -N -n 'convert FreeHand document into plain text' -o fh2text.1 ./src/conv/text/.libs/fh2text
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
@ -87,10 +90,15 @@ install -m 0644 fh2*.1 %{buildroot}/%{_mandir}/man1
|
|
|
|
|
%files tools
|
|
|
|
|
%{_bindir}/fh2raw
|
|
|
|
|
%{_bindir}/fh2svg
|
|
|
|
|
%{_bindir}/fh2text
|
|
|
|
|
%{_mandir}/man1/fh2raw.1*
|
|
|
|
|
%{_mandir}/man1/fh2svg.1*
|
|
|
|
|
%{_mandir}/man1/fh2text.1*
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Thu Jun 11 2015 David Tardon <dtardon@redhat.com> - 0.1.1-1
|
|
|
|
|
- new upstream release
|
|
|
|
|
|
|
|
|
|
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.1.0-4
|
|
|
|
|
- Rebuilt for GCC 5 C++11 ABI change
|
|
|
|
|
|
|
|
|
|