123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- Name: pdfchain
- Version: 0.4.4
- Release: 2%{?_dist_release}
- Epoch: 1
- Summary: A GUI for pdftk
- Summary(ja): pdftk のグラフィカルユーザーインターフェイス
- Group: Applications/Productivity
- License: GPLv3
- URL: http://sourceforge.net/projects/pdfchain
- Source0: http://downloads.sourceforge.net/pdfchain/%{name}-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- # Patch to make desktop file conform to standards
- #Patch0: pdfchain-desktop.patch
- BuildRequires: desktop-file-utils
- BuildRequires: gettext
- BuildRequires: glibmm-devel
- BuildRequires: gtkmm3-devel
- BuildRequires: intltool
- BuildRequires: perl-XML-Parser
- # For dir ownership
- Requires: hicolor-icon-theme
- Requires: pdftk
- Requires(post): desktop-file-utils
- Requires(postun): desktop-file-utils
- %description
- PDF Chain is a GUI for pdftk written with gtkmm. You can merge some pdf files
- to one pdf file or split. There are also some options and tools.
- %description -l ja
- PDF Chain は gtkmm で書かれた pdftk のグラフィカルユーザーインターフェイスです。
- 複数の pdf ファイルを一つのファイルにマージしたり、分割したりすることができます。
- また、幾つかのオプションとツールがあります。
- %prep
- %setup -q
- #%patch0 -p1
- #%patch1 -p1
- #%patch2 -p1
- # Stop if files acquire content
- #[ -s NEWS ] && exit 1
- #[ -s README ] && exit 1
- %build
- %configure
- make %{?_smp_mflags}
- %install
- rm -rf %{buildroot}
- make install DESTDIR=%{buildroot}
- # Remove doc dir
- rm -rf %{buildroot}%{_prefix}/doc/pdfchain
- # Validate desktop file
- desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
- %post
- # Update mime types
- update-desktop-database &> /dev/null || :
- # Update icon cache
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
- %postun
- # Update mime types
- update-desktop-database &> /dev/null || :
- # Update icon cache
- if [ $1 -eq 0 ] ; then
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null
- gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
- fi
- %posttrans
- # Update icon cache
- gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
- %clean
- rm -rf %{buildroot}
- %files
- %defattr(-,root,root,-)
- %doc %{_datadir}/doc/%{name}/*
- %{_bindir}/%{name}
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/icons/hicolor/*/apps/%{name}.png
- %{_datadir}/pixmaps/%{name}.png
- %changelog
- * Sun May 04 2014 Toshiahru Kudoh <toshi.kd2@gmail.com> - 0.4.4-2
- - rebuilt with new toolchain
- * Sat Jul 20 2013 Toshiahru Kudoh <toshi.kd2@gmail.com> - 0.4.4-1
- - new upstream release
- * Sun May 05 2013 Toshiahru Kudoh <toshi.kd2@gmail.com> - 0.4.0-1
- - new upstream release
- - deleted Patch0
- * Sat Dec 03 2011 Toshiahru Kudoh <toshi.kd2@gmail.com> - 0.3.3-1
- - new upstream release
- - added Epoch:1
- - dropt patch1,2
- - changed BuildRequires: gtkmm2-devel to gtkmm3-devel
- * Sat Sep 18 2010 Toshiahru Kudoh <toshi.kd2@gmail.com> - 0.123-1
- - initial build for VineSeed
- * Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.123-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Thu Jul 16 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.123-1
- - Update to 0.123.
- * Wed May 27 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.99-3
- - Added missing BR: desktop-file-utils.
- - Set license as GPLv3 for now.
- * Wed May 27 2009 Jussi Lehtola <jussilehtola@fedoraproject.org> - 0.99-2
- - Clean up spec file for inclusion into Fedora.
- * Wed May 6 2009 Leigh Scott <leigh123linux@googlemail.com> - 0.99-1
- - Initial build
|