source: projects/specs/branches/6/g/gtkimageview/gtkimageview-vl.spec @ 1988

Revision 1988, 3.4 KB checked in by owa, 14 years ago (diff)

rebuilt with rpm-4.8.1

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