gtkimageview-vl.spec 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. Summary: Simple image viewer widget for GTK
  2. Summary(ja): GTK 用のシンプルなイメージビューワウィジェット
  3. Name: gtkimageview
  4. Version: 1.6.4
  5. Release: 2%{?_dist_release}
  6. Source0: %{name}-%{version}.tar.gz
  7. License: LGPL
  8. Group: System Environment/Libraries
  9. URL: http://trac.bjourne.webfactional.com/
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: gtk2-devel
  12. BuildRequires: gtk-doc
  13. %description
  14. GtkImageView is a simple image viewer widget for GTK.
  15. Similar to the image viewer panes in gThumb or Eye of
  16. Gnome. It makes writing image viewing and editing
  17. applications easy.
  18. Among its features are:
  19. * Mouse and keyboard zooming.
  20. * Scrolling and dragging.
  21. * Adjustable interpolation.
  22. * Fullscreen mode.
  23. * GIF animation support.
  24. %description -l ja
  25. GtkImageView は GTK 用のシンプルなイメージビューワウィジ
  26. ェットです。Eye of Gnome や gThumb のようなイメージビューア
  27. ペインを提供します。これによりイメージを表示したり編集したり
  28. するアプリケーションが簡単に開発できるようになります。
  29. 主な特徴は以下の通りです。
  30. * マウスやキーボードを使ったズーム
  31. * スクロールおよびドラッグ
  32. * 調整可能な画像補間
  33. * フルスクリーン表示
  34. * GIF アニメーションのサポート
  35. #-----------------------------------------------------------------------------
  36. %package devel
  37. Summary: Libraries and header files for gtkimageview
  38. Summary(ja): gtkimageview 用のヘッダファイル及びライブラリ
  39. Group: Development/Libraries
  40. Requires: %{name} = %{version}-%{release}
  41. Requires: gtk2-devel
  42. %description devel
  43. This package contains the header files and libraries for
  44. gtkimageview. If you like to develop programs using gtkimageview,
  45. you will need to install gtkimageview-devel.
  46. %description devel -l ja
  47. このパッケージは gtkimageview 用のヘッダファイル及びライブラリ
  48. を含んでいます。もし gtkimageview を使用したプログラムを開発す
  49. る場合は、このパッケージをインストールする必要があります。
  50. #-----------------------------------------------------------------------------
  51. %prep
  52. %setup -q
  53. %build
  54. %configure --disable-static
  55. make
  56. %install
  57. rm -rf $RPM_BUILD_ROOT
  58. make install DESTDIR=$RPM_BUILD_ROOT
  59. # remove unnecessary file
  60. rm -rf $RPM_BUILD_ROOT/%{_libdir}/libgtkimageview.la
  61. %clean
  62. rm -rf $RPM_BUILD_ROOT
  63. %post -p /sbin/ldconfig
  64. %postun -p /sbin/ldconfig
  65. %files
  66. %defattr(-,root,root)
  67. %doc COPYING README
  68. %{_libdir}/libgtkimageview.so.*
  69. %files devel
  70. %defattr(-,root,root)
  71. %{_includedir}/gtkimageview/*
  72. #{_libdir}/libgtkimageview.a
  73. %{_libdir}/libgtkimageview.so
  74. %{_libdir}/pkgconfig/gtkimageview.pc
  75. %{_datadir}/gtk-doc/html/gtkimageview/*
  76. %changelog
  77. * Sun Oct 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.6.4-2
  78. - rebuilt with rpm-4.8.1 for pkg-config
  79. * Sat Apr 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.4-1
  80. - new upstream release
  81. - removed static library from devel package
  82. - fixed License tag
  83. * Sun Oct 5 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.6.1-1
  84. - new upstream release
  85. - applied new versioning policy
  86. - spec in UTF-8
  87. * Fri Aug 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3.0-0vl2
  88. - rebuilt for VineSeed
  89. * Wed Aug 07 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.3.0-0vl1
  90. - initial build for Vine Linux.