123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- %global apiversion 0.0
- Name: librevenge
- Version: 0.0.4
- Release: 2%{?_dist_release}
- Summary: A base library for writing document import filters
- Summary(ja): ドキュメントのインポートフィルタを作成するための基礎ライブラリ
- # src/lib/RVNGOLEStream.{h,cpp} are BSD
- License: (LGPLv2+ or MPLv2.0) and BSD
- Group: System Environment/Libraries
- URL: http://sourceforge.net/p/libwpd/wiki/librevenge/
- Vendor: Project Vine
- Distribution: Vine Linux
- Source: http://downloads.sourceforge.net/libwpd/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: cppunit-devel
- BuildRequires: doxygen
- BuildRequires: libboost-devel
- BuildRequires: zlib-devel
- %description
- %{name} is a base library for writing document import filters. It has
- interfaces for text documents, vector graphics, spreadsheets and
- presentations.
- %package devel
- Summary: Development files for %{name}
- Summary(ja): %{name} の開発用ファイル
- Group: Development/Libraries
- Requires: %{name} = %{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
- Summary(ja): %{name} API のドキュメント
- Group: Documentation
- BuildArch: noarch
- %description doc
- The %{name}-doc package contains documentation files for %{name}.
- %prep
- %autosetup -p1
- %build
- %configure --disable-silent-rules --disable-static --disable-werror --enable-pretty-printers
- 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
- # we install API docs directly from build
- rm -rf %{buildroot}/%{_docdir}/%{name}
- %post
- /sbin/ldconfig
- %postun
- /sbin/ldconfig
- #%check
- #export LD_LIBRARY_PATH=%{buildroot}%{_libdir}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
- #make %{?_smp_mflags} check
- %clean
- rm -rf %{buildroot}
- %files
- %doc COPYING.* README NEWS
- %{_libdir}/%{name}-%{apiversion}.so.*
- %{_libdir}/%{name}-generators-%{apiversion}.so.*
- %{_libdir}/%{name}-stream-%{apiversion}.so.*
- %files devel
- %doc ChangeLog
- %{_includedir}/%{name}-%{apiversion}
- %{_libdir}/%{name}-%{apiversion}.so
- %{_libdir}/%{name}-generators-%{apiversion}.so
- %{_libdir}/%{name}-stream-%{apiversion}.so
- %{_libdir}/pkgconfig/%{name}-%{apiversion}.pc
- %{_libdir}/pkgconfig/%{name}-generators-%{apiversion}.pc
- %{_libdir}/pkgconfig/%{name}-stream-%{apiversion}.pc
- %{_datadir}/gdb/auto-load%{_libdir}/%{name}-%{apiversion}.py*
- %{_datadir}/gdb/auto-load%{_libdir}/%{name}-stream-%{apiversion}.py*
- %dir %{_datadir}/%{name}
- %{_datadir}/%{name}/python
- %files doc
- %doc COPYING.*
- %doc docs/doxygen/html
- %changelog
- * Sun Jul 3 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.0.4-2
- - fixed %%post and %%postun scripts.
- * Sat Jul 2 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.0.4-1
- - new upstream release.
- * Tue Jan 13 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.0.2-2
- - Initial build for Vine Linux
- * Wed Dec 24 2014 David Tardon <dtardon@redhat.com> - 0.0.2-1
- - new upstream release
- * Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
- * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.1-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
- * Tue Jun 03 2014 David Tardon <dtardon@redhat.com> - 0.0.1-1
- - new upstream release
- * Tue May 27 2014 David Tardon <dtardon@redhat.com> - 0.0.0-2
- - remove extra dirs from filelist
- * Fri May 23 2014 David Tardon <dtardon@redhat.com> - 0.0.0-1
- - initial import
|