123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
- Summary: customizable image viewer that specifically designed to handle comic books
- Summary(ja): 漫画向けに特化してデザインされたカスタム可能なイメージビューワ
- Name: mcomix
- Version: 0.91
- Release: 1%{?_dist_release}
- Source0: mcomix-%{version}.tar.bz2
- Source1: mcomix_ja.po
- License: GPLv2
- Group: Applications/Graphics
- URL: http://mcomix.sourceforge.net/
- Requires: pygtk2 >= 2.12, python-imaging >= 1.1.5, libjpeg-turbo
- Requires: python >= 2.5
- BuildRequires: python >= 2.5
- BuildRequires: pygtk2-devel python-imaging
- BuildRequires: gettext
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildArch: noarch
- %description
- MComix is a user-friendly, customizable image viewer. It is specifically
- designed to handle comic books, but also serves as a generic viewer. It
- reads images in ZIP, RAR or tar archives as well as plain image files.
- It is written in Python and uses GTK+ through the PyGTK bindings.
- %description -l ja
- MComix はユーザーフレンドリでカスタマイズ可能なイメージビューワです。
- このビューワは漫画を読むのに特化してデザインされていますが、一般的な画像
- ビューワとしても利用できます。
- 通常のイメージファイルと同様に、ZIP、RAR または tar (gzip 及び bzip2 で圧縮
- されたものも含む) アーカイブ中のイメージも読み込めます。
- Python で書かれており、PyGTK バインディングを通じて GTK+ を使用しています。
- %prep
- %setup -qn mcomix-%{version}
- %{__cp} -f %{SOURCE1} mcomix/messages/ja/LC_MESSAGES/mcomix.po
- msgfmt -o mcomix/messages/ja/LC_MESSAGES/mcomix.mo mcomix/messages/ja/LC_MESSAGES/mcomix.po
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__python} setup.py install --single-version-externally-managed --root=$RPM_BUILD_ROOT
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %post
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
- %postun
- if [ $1 -eq 0 ] ; then
- touch --no-create %{_datadir}/icons/hicolor &>/dev/null
- gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
- fi
- %posttrans
- gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
- %files
- %defattr(-,root,root)
- %doc ChangeLog README
- %{_bindir}/%{name}
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/icons/hicolor/
- %{_datadir}/mime/packages/%{name}.xml
- %{_mandir}/man1/*.1.gz
- %{python_sitelib}/*
- %changelog
- * Wed May 11 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.91-1
- - new upstream release
- - changed Lisence tag
- - applied to GPLv2
- - changed URL
- - changed BuildArch to noarch
- * Sun Nov 14 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.90.2-2
- - updated source1
- - probed %%post and %%postun
- - added %%posttrans
- * Sat Oct 30 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 0.90.2-1
- - initial build for VineSeed
|