source: projects/specs/tags/6_0_REL/l/liferea/liferea-vl.spec @ 4290

Revision 4290, 6.2 KB checked in by kudoh, 13 years ago (diff)
Line 
1Name: liferea
2Version: 1.6.6b
3Release: 1%{?_dist_release}
4License: GPL
5Group: Applications/Internet
6URL: http://liferea.sourceforge.net/
7Source0: http://prdownloads.sourceforge.net/liferea/%{name}-%{version}.tar.gz
8Patch0: lX11.patch
9
10Requires(post): GConf2
11Requires(preun): GConf2
12
13BuildRequires: GConf2-devel gtk2-devel gnome-vfs2-devel
14BuildRequires: libxml2-devel zlib-devel gettext
15BuildRequires: libxslt-devel sqlite3-devel libglade2-devel
16BuildRequires: libnotify-devel gnutls-devel
17BuildRequires: xulrunner-devel
18BuildRequires: dbus-devel dbus-glib-devel
19BuildRequires: libsoup-devel WebKit-gtk-devel
20BuildRequires: intltool >= 0.35
21BuildRequires: libtool libSM-devel perl-XML-Parser
22BuildRoot: %{_tmppath}/%{name}-%{version}-root
23
24Summary: aggregator for online news feeds
25Summary(ja): オンラインニュースアグリゲータ
26
27Vendor: Project Vine
28Distribution: Vine Linux
29
30%description
31Liferea is an aggregator for online news feeds. There are many other news
32readers available, but these others are not available for Linux or require
33many extra libraries to be installed. Liferea tries to fill this gap by
34creating a fast, easy to use, easy to install news aggregator for GTK/GNOME.
35
36Technical Details
37 * RSS/RDF, CDF, Atom, OCS, OPML.
38 * Filters to scrape websites or postprocess feeds.
39 * Supports Enclosures (Podcasting).
40 * Bandwidth saving by supporting feed specified update intervals,
41   HTTP compression and etags.
42
43Liferea is an abbreviation for Linux Feed Reader.
44
45%description -l ja
46liferea はオンラインニュースフィードのアグリゲータです。
47多くのニュースリーダーがありますが、それらは Linux では利用できない、
48または多くの追加ライブラリをインストールする必要があります。
49liferea は GTK/GNOME で高速且つ簡単に使用とインストールが可能な
50ニュースアグリゲータを作成することでこのギャップを埋めようとしたものです。
51
52技術面の詳細
53 * RSS/RDF 、CDF 、Atom 、OCS、OPML。
54 * ウェブサイトをまとめたり、あるいはフィードを後処理するためのフィルタ。
55 * Enclosures (Podcasting) をサポート。
56 * フィードのアップデート間隔の指定、HTTP 圧縮と etags のサポートで帯域幅を節約。
57
58Liferea は Linux Feed Reader を省略したものです。
59
60%prep
61%setup -q
62%patch0 -p1 -b .lX11
63
64%build
65autoreconf
66libtoolize --copy --force
67%configure --disable-schemas-install --enable-static=no
68%{__make} %{?_smp_mflags}
69
70%install
71%{__rm} -rf %{buildroot}
72%makeinstall
73
74rm -f $RPM_BUILD_ROOT%{_libdir}/liferea/*.{a,la}
75rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
76
77%find_lang %{name}
78
79%clean
80%{__rm} -rf %{buildroot}
81
82%preun
83GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/%{name}.schemas >/dev/null
84
85%post
86GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/%{name}.schemas >/dev/null
87touch --no-create %{_datadir}/icons/hicolor
88if [ -x /usr/bin/gtk-update-icon-cache ]; then
89  gtk-update-icon-cache -q %{_datadir}/icons/hicolor ||:
90fi
91
92%postun
93touch --no-create %{_datadir}/icons/hicolor
94if [ -x /usr/bin/gtk-update-icon-cache ]; then
95  gtk-update-icon-cache -q %{_datadir}/icons/hicolor ||:
96fi
97
98%files -f %{name}.lang
99%defattr(-,root,root)
100%doc AUTHORS COPYING ChangeLog INSTALL NEWS README
101%config %{_sysconfdir}/gconf/schemas/*
102%{_bindir}/*
103%{_libdir}/liferea
104%{_datadir}/applications/*
105%{_datadir}/%{name}/*
106#{_datadir}/locale/*/LC_MESSAGES/*
107%{_datadir}/icons/*
108%{_mandir}/man?/*
109
110%changelog
111* Wed Jun 29 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.6b-1
112- new upstream release
113
114* Wed Sep 29 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.5-1
115- new upstream release
116- added BuildRequires: libtool, libSM-devel, perl-XML-Parser
117- run autoreconf in %%build
118- deleted unrecognized option
119- used %%{?_smp_mflags}
120
121* Thu Jul 15 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.4-1
122- new upstream release
123- added patch1 from Fedora
124
125* Thu Mar 4 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.3-1
126- new upstream release
127
128* Fri Feb 19 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.2-1
129- new upstream release
130- changed BuildRequires: xulrunner-devel-unstable to xulrunner-devel
131- done libtoolize --copy --force before configure
132
133* Wed Dec 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.1-2
134- added Japanese description
135
136* Thu Dec 3 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.1-1
137- new upstream release
138
139* Thu Aug 20 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.0-2
140- run gtk-update-icon-cache in %post, %postun
141- added BuildRequires: libsoup-devel, WebKit-gtk-devel
142
143* Fri Aug 7 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.6.0-1
144- new upstream release
145
146* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.26-1
147- new upstream release
148
149* Mon Jan 19 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.23-3
150- rebuilt with gnutls-2.6.3
151
152* Sat Jan 17 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.4.23-2
153- disabled GtkHTML2 support
154- updated --with-gecko configure option
155- added BuildRequires: libxslt-devel, sqlite3-devel and libglade2-devel
156
157* Fri Jan  2 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.23-1
158- new upstream release
159- BuildRequires: gecko-devel-unstable (instead of firefox-devel)
160
161* Tue Nov 27 2007 IWAI, Masaharu <iwai@alib.jp> 1.4.8-0vl1
162- new upstream release
163
164* Sun Sep  9 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.4.1-0vl1
165- new upstream release
166- added Japanese summary
167- using firefox instead of mozilla
168
169* Mon Jan 16 2006 Yasumichi Akahoshi <yasumichi@vinelinux.org> - 1.0-0vl2
170- fixed %pre and %post scripts.
171
172* Thu Dec 29 2005 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 1.0-0vl1
173- new upstream
174- update description
175
176* Sun Dec 12 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.6.4b-0vl1
177- new upstream
178
179* Fri Oct 15 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.6.0-0vl2
180- add defattr in files section
181
182* Sun Oct  3 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.6.0-0vl1
183- new upstream
184
185* Tue Aug 24 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.5.3b-0vl1
186- new upstream
187- add BuildPreReq zlib-devel mozilla-devel gettext
188- install gconf schemas
189
190* Sun Feb 15 2004 USAMI Kosuke <usami-k@yc5.so-net.ne.jp> - 0.4.6b-0vl1
191- Initial build.
192
Note: See TracBrowser for help on using the repository browser.