[libcdr] initial import

David Tardon dtardon at fedoraproject.org
Tue Mar 20 13:02:26 UTC 2012


commit f87524dc2a9369d3b4d91f7e7b866295dc3f2d0a
Author: David Tardon <dtardon at redhat.com>
Date:   Tue Mar 20 14:02:16 2012 +0100

    initial import

 .gitignore  |    1 +
 libcdr.spec |  117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources     |    1 +
 3 files changed, 119 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..e2ed710 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/libcdr-0.0.5.tar.xz
diff --git a/libcdr.spec b/libcdr.spec
new file mode 100644
index 0000000..ad00957
--- /dev/null
+++ b/libcdr.spec
@@ -0,0 +1,117 @@
+Name: libcdr
+Version: 0.0.5
+Release: 1%{?dist}
+Summary: A library providing ability to interpret and import Corel Draw drawings
+
+Group: System Environment/Libraries
+License: GPLv2+ or LGPLv2+ or MPLv1.1
+URL: http://www.freedesktop.org/wiki/Software/libcdr
+Source: http://dev-www.libreoffice.org/src/%{name}-%{version}.tar.xz
+BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
+
+BuildRequires: doxygen
+BuildRequires: lcms2-devel
+BuildRequires: libwpd-devel
+BuildRequires: libwpg-devel
+BuildRequires: zlib-devel
+
+%description
+Libcdr is library providing ability to interpret and import Corel Draw
+drawings into various applications. You can find it being used in
+libreoffice.
+
+%package devel
+Summary: Development files for %{name}
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: pkgconfig
+
+%description devel
+The %{name}-devel package contains libraries and header files for
+developing applications that use %{name}.
+
+%package doc
+Summary: Documentation of %{name} API
+Group: Documentation
+BuildArch: noarch
+
+%description doc
+The %{name}-doc package contains documentation files for %{name}.
+
+%package tools
+Summary: Tools to transform Corel Draw drawings into other formats
+Group: Applications/Publishing
+Requires: %{name}%{?_isa} = %{version}-%{release}
+
+%description tools
+Tools to transform Corel Draw drawings into other formats.
+Currently supported: XHTML, raw.
+
+
+%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
+make %{?_smp_mflags}
+
+
+%install
+rm -rf %{buildroot}
+make install DESTDIR=%{buildroot}
+rm -f %{buildroot}/%{_libdir}/*.la
+# these binaries do nothing currently
+rm -f %{buildroot}/%{_bindir}/cmx2*
+
+
+%clean
+rm -rf %{buildroot}
+
+
+%post -p /sbin/ldconfig
+
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING.*
+%{_libdir}/%{name}-0.0.so.*
+
+
+%files devel
+%defattr(-,root,root,-)
+%{_includedir}/%{name}-0.0
+%{_libdir}/%{name}-0.0.so
+%{_libdir}/pkgconfig/%{name}-0.0.pc
+
+
+%files doc
+%defattr(-,root,root,-)
+%doc COPYING.*
+%dir %{_docdir}/%{name}
+%{_docdir}/%{name}/html
+
+
+%files tools
+%defattr(-,root,root,-)
+%{_bindir}/cdr2raw
+%{_bindir}/cdr2xhtml
+
+
+%changelog
+* Mon Mar 19 2011 David Tardon <dtardon at redhat.com> 0.0.5-1
+- new upstream release
+- fix license
+
+* Sat Mar 10 2011 David Tardon <dtardon at redhat.com> 0.0.3-2
+- remove Requires: of main package from -doc subpackage
+
+* Thu Mar 01 2011 David Tardon <dtardon at redhat.com> 0.0.3-1
+- initial import
diff --git a/sources b/sources
index e69de29..75849d5 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+1d9c5f071f57aa5aadd38c40846a7d99  libcdr-0.0.5.tar.xz


More information about the scm-commits mailing list