123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
- Name: pdfshuffler
- Version: 0.5
- Release: 1%{?_dist_release}
- Summary: PDF file merging, rearranging, and splitting
- Summary(ja): PDF ファイルのマージ、再配置、分割
- Group: Applications/Publishing
- License: GPLv2+
- URL: http://sourceforge.net/projects/pdfshuffler/
- Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
- SOurce1: pdfshuffler_ja.po
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- BuildRequires: python-devel
- BuildRequires: python-setuptools
- BuildRequires: desktop-file-utils
- BuildRequires: gettext
- Requires: pygtk2
- Requires: pyPdf
- Requires: pypoppler
- %description
- PDF-Shuffler is a small python-gtk application, which helps the user
- to merge or split pdf documents and rotate, crop and rearrange their
- pages using an interactive and intuitive graphical interface.
- %description -l ja
- PDF-Shuffler は PDF ドキュメントのマージ、分割、回転、ページの再配置を
- インタラクティブで直感的なグラフィカルインターフェイスを使用し、
- 手助けする小さな python-gtk アプリケーションです。
- %prep
- %setup -q
- %{__cp} -f %{SOURCE1} po/ja.po
- %build
- %{__python} setup.py build
- %install
- rm -rf %{buildroot}
- %{__python} setup.py install --root %{buildroot}
- desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
- %find_lang %{name}
- %clean
- rm -rf %{buildroot}
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc AUTHORS ChangeLog COPYING README TODO
- %{_mandir}/man*/*.*
- %{_bindir}/%{name}
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/pixmaps/%{name}.png
- %{_datadir}/pixmaps/%{name}.svg
- %{python_sitelib}/%{name}*.egg-info
- %changelog
- * Thu Feb 11 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> - 0.5-1
- - initial build for VineSeed
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.2-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Fri Jul 17 2009 Fabian Affolter <fabian@bernewireless.net> - 0.4.2-1
- - Updated to new upstream version 0.4.2
- * Sat Apr 25 2009 Fabian Affolter <fabian@bernewireless.net> - 0.4-2
- - Removed patch0
- - Removed permission changing of doc files
- - Removed ghostscript and added pypoppler as a requirement
- * Sat Apr 25 2009 Fabian Affolter <fabian@bernewireless.net> - 0.4-1
- - Updated to new upstream version 0.4
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.1-4
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Sat Feb 14 2009 Fabian Affolter <fabian@bernewireless.net> - 0.3.1-3
- - Fixed requirements
- * Sat Jan 31 2009 Fabian Affolter <fabian@bernewireless.net> - 0.3.1-2
- - Fixed typo in summary and .desktop file
- * Sat Jan 24 2009 Fabian Affolter <fabian@bernewireless.net> - 0.3.1-1
- - Initial package for Fedora
|