]> git.pld-linux.org Git - packages/liferea.git/blob - liferea.spec
- added -libnotify-0.7.patch and -nm09.patch
[packages/liferea.git] / liferea.spec
1 # TODO:
2 # - create subpackage -lua (?)
3 #
4 # Conditional build:
5 %bcond_without  dbus            # without D-Bus support
6 %bcond_without  lua             # without LUA scripting support
7 %bcond_without  nm              # with NetworkManager support
8 #
9 Summary:        A RSS feed reader
10 Summary(pl.UTF-8):      Program do pobierania informacji w formacie RSS
11 Name:           liferea
12 Version:        1.6.5
13 Release:        3
14 License:        GPL v2
15 Group:          X11/Applications/Networking
16 Source0:        http://downloads.sourceforge.net/liferea/%{name}-%{version}.tar.gz
17 # Source0-md5:  b5a2c0803eec5d0aff0b9ca4114eaf16
18 Patch0:         %{name}-desktop.patch
19 Patch1:         %{name}-lua51.patch
20 Patch2:         %{name}-libnotify-0.7.patch
21 Patch3:         %{name}-nm09.patch
22 URL:            http://liferea.sourceforge.net/
23 BuildRequires:  GConf2-devel >= 2.10.0
24 %{?with_nm:BuildRequires:       NetworkManager-devel}
25 BuildRequires:  autoconf >= 2.59
26 BuildRequires:  automake >= 1:1.6
27 BuildRequires:  avahi-glib-devel >= 0.6.0
28 %{?with_dbus:BuildRequires:     dbus-glib-devel >= 0.33}
29 BuildRequires:  geoclue-devel
30 BuildRequires:  gettext-devel
31 BuildRequires:  gstreamer-devel >= 0.10
32 BuildRequires:  gtk+2-devel >= 2:2.16.0
33 BuildRequires:  gtk-webkit-devel >= 1.1.7
34 BuildRequires:  intltool >= 0.35.5
35 BuildRequires:  libglade2-devel >= 1:2.0.0
36 BuildRequires:  libnotify-devel >= 0.7.0
37 BuildRequires:  libsoup-devel >= 2.26.1
38 BuildRequires:  libtool
39 BuildRequires:  libxml2-devel >= 1:2.6.27
40 BuildRequires:  libxslt-devel >= 1.1.19
41 %{?with_lua:BuildRequires:      lua51-devel}
42 BuildRequires:  pkgconfig
43 BuildRequires:  rpmbuild(macros) >= 1.311
44 BuildRequires:  sqlite3-devel >= 3.6.10
45 BuildRequires:  xorg-lib-libSM-devel
46 Requires(post,postun):  gtk-update-icon-cache
47 Requires(post,postun):  hicolor-icon-theme
48 Requires(post,preun):   GConf2
49 Obsoletes:      liferea-gtkhtml
50 Obsoletes:      liferea-mozilla
51 Obsoletes:      liferea-webkit
52 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
53
54 %description
55 Liferea is a GTK+ clone of FeedReader.
56
57 %description -l pl.UTF-8
58 Liferea jest klonem, napisanym za pomocą biblioteki GTK+, programu
59 FeedReader.
60
61 %prep
62 %setup -q
63 %patch0 -p1
64 %patch1 -p1
65 %patch2 -p1
66 %patch3 -p1
67
68 %build
69 %{__glib_gettextize}
70 %{__intltoolize}
71 %{__aclocal}
72 %{__libtoolize}
73 %{__automake}
74 %{__autoheader}
75 %{__autoconf}
76 %configure \
77         --disable-schemas-install \
78         %{!?with_dbus: --disable-dbus} \
79         %{!?with_lua: --disable-lua} \
80         %{!?with_nm: --disable-nm}
81
82 %{__make}
83
84 %install
85 rm -rf $RPM_BUILD_ROOT
86
87 %{__make} install \
88         DESTDIR=$RPM_BUILD_ROOT
89
90 rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/lib*.la
91
92 %find_lang %{name}
93
94 %post
95 %gconf_schema_install liferea.schemas
96 %update_icon_cache hicolor
97
98 %preun
99 %gconf_schema_uninstall liferea.schemas
100
101 %postun
102 %update_icon_cache hicolor
103
104 %clean
105 rm -rf $RPM_BUILD_ROOT
106
107 %files -f %{name}.lang
108 %defattr(644,root,root,755)
109 %doc AUTHORS ChangeLog NEWS README
110 %attr(755,root,root) %{_bindir}/liferea
111 %attr(755,root,root) %{_bindir}/liferea-add-feed
112 %dir %{_libdir}/%{name}
113 %attr(755,root,root) %{_libdir}/%{name}/liblinotiflibnotify.so
114 %if %{with lua}
115 %attr(755,root,root) %{_libdir}/%{name}/libliscrlua.so
116 %endif
117 %{_iconsdir}/hicolor/*/*/*.png
118 %{_iconsdir}/hicolor/*/*/*.svg
119 %{_sysconfdir}/gconf/schemas/liferea.schemas
120 %{_datadir}/%{name}
121 %{_desktopdir}/liferea.desktop
122 %{_mandir}/man1/liferea.1*
123 %lang(pl) %{_mandir}/pl/man1/liferea.1*
This page took 0.034427 seconds and 4 git commands to generate.