From 15badc7fe5c18f2f24084d1ad48e4dae170fc300 Mon Sep 17 00:00:00 2001 From: CentOS Buildsys Date: May 28 2013 17:27:33 +0000 Subject: import libmspub-0.0.6-1.el7.src.rpm --- diff --git a/.libmspub.metadata b/.libmspub.metadata new file mode 100644 index 0000000..9069005 --- /dev/null +++ b/.libmspub.metadata @@ -0,0 +1 @@ +cfebfdf832cf582c57134f851614c1cecc5540c0 SOURCES/libmspub-0.0.6.tar.xz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/libmspub.spec b/SPECS/libmspub.spec new file mode 100644 index 0000000..b8b841d --- /dev/null +++ b/SPECS/libmspub.spec @@ -0,0 +1,125 @@ +%global apiversion 0.0 + +Name: libmspub +Version: 0.0.6 +Release: 1%{?dist} +Summary: A library providing ability to interpret and import Microsoft Publisher files + +Group: System Environment/Libraries +License: GPLv2+ or LGPLv2+ or MPLv1.1 +URL: http://www.freedesktop.org/wiki/Software/libmspub +Source: http://dev-www.libreoffice.org/src/%{name}-%{version}.tar.xz + +BuildRequires: boost-devel +BuildRequires: doxygen +BuildRequires: libicu-devel +BuildRequires: libwpd-devel +BuildRequires: libwpg-devel +BuildRequires: zlib-devel + +%description +Libmspub is library providing ability to interpret and import Microsoft +Publisher content 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} + +%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 Microsoft Publisher files into other formats +Group: Applications/Publishing +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description tools +Tools to transform Microsoft Publisher files 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 +make install DESTDIR=%{buildroot} +rm -f %{buildroot}/%{_libdir}/*.la + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%files +%doc AUTHORS COPYING.* +%{_libdir}/%{name}-%{apiversion}.so.* + + +%files devel +%doc ChangeLog +%{_includedir}/%{name}-%{apiversion} +%{_libdir}/%{name}-%{apiversion}.so +%{_libdir}/pkgconfig/%{name}-%{apiversion}.pc + + +%files doc +%doc COPYING.* +%dir %{_docdir}/%{name} +%{_docdir}/%{name}/html + + +%files tools +%{_bindir}/pub2raw +%{_bindir}/pub2xhtml + + +%changelog +* Tue May 14 2013 David Tardon - 0.0.6-1 +- new release + +* Wed Feb 20 2013 David Tardon - 0.0.5-1 +- new release + +* Wed Jan 30 2013 David Tardon - 0.0.4-1 +- new release + +* Fri Aug 24 2012 David Tardon - 0.0.3-1 +- new release + +* Fri Jul 27 2012 David Tardon - 0.0.2-3 +- rebuilt for boost 1.50 + +* Thu Jul 19 2012 Fedora Release Engineering - 0.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 16 2012 David Tardon - 0.0.2-1 +- Resolves: rhbz#840445 new release + +* Thu Jul 12 2012 David Tardon 0.0.1-1 +- new release + +* Thu Jun 07 2012 David Tardon 0.0.0-1 +- initial import