source: projects/specs/trunk/n/nautilus-sendto/nautilus-sendto-vl.spec @ 635

Revision 635, 9.5 KB checked in by kudoh, 14 years ago (diff)
Line 
1Summary:        Nautilus context menu for sending files
2Summary(ja):    "ファイルを送る"ための Nautilus コンテキストメニュー
3
4Name:           nautilus-sendto
5Version:        2.28.3
6Release:        1%{?_dist_release}
7
8Group:          User Interface/Desktops
9License:        GPLv2+
10URL:            ftp://ftp.gnome.org/pub/gnome/sources/%{name}
11Source0:        http://download.gnome.org/sources/%{name}/1.1/%{name}-%{version}.tar.bz2
12BuildRoot: %{_tmppath}/%{name}-%{version}-root
13
14BuildRequires:  gtk2-devel >= 2.14.0
15BuildRequires:  libglade2-devel >= 2.6.0
16BuildRequires:  evolution-data-server-devel >= 2.24.0
17BuildRequires:  libgnomeui-devel >= 2.24.0
18BuildRequires:  nautilus >= 2.24.0
19BuildRequires:  pidgin-devel >= 2.5.0
20BuildRequires:  gettext
21BuildRequires:  perl-XML-Parser intltool
22BuildRequires:  dbus-glib-devel >= 0.70
23BuildRequires:  nautilus-devel
24BuildRequires:  empathy-devel
25
26Requires(pre): GConf2
27Requires(post): GConf2
28Requires(preun): GConf2
29
30# For compat with old nautilus-sendto packaging
31Provides: nautilus-sendto-gaim
32Obsoletes: nautilus-sendto-bluetooth
33Provides: nautilus-sendto-bluetooth
34
35%description
36The nautilus-sendto package provides a Nautilus context menu for
37sending files via other desktop applications.  These functions are
38implemented as plugins, so nautilus-sendto can be extended with
39additional features.
40
41%description -l ja     
42nautilus-sendto パッケージは他のデスクトップアプリケーションを介して
43ファイルを送るためのコンテキストメニューを提供しています。
44これらの機能はプラグインとして提供され、追加の機能を拡張することができます。
45
46%package devel
47Summary:        Development files for %{name}
48Summary(ja):    %{name} の開発ファイル
49Group:          Development/Libraries
50License:        LGPLv2+
51Requires:       %{name} = %{version}-%{release}
52Requires:       gtk-doc pkgconfig
53
54%description devel
55This package contains the libraries amd header files that are needed
56for writing plugins for nautilus-sendto.
57
58%prep
59%setup -q
60
61%build
62%configure
63make %{?_smp_mflags}
64
65
66%install
67rm -rf $RPM_BUILD_ROOT
68export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
69make install DESTDIR=$RPM_BUILD_ROOT
70unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
71
72find $RPM_BUILD_ROOT \( -name '*.a' -o -name '*.la' \) -exec rm -f {} \;
73%find_lang %{name}
74
75%clean
76rm -rf $RPM_BUILD_ROOT
77
78%post
79export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
80gconftool-2 --makefile-install-rule \
81        %{_sysconfdir}/gconf/schemas/nst.schemas > /dev/null || :
82
83%pre
84if [ "$1" -gt 1 ]; then
85  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
86  gconftool-2 --makefile-uninstall-rule \
87        %{_sysconfdir}/gconf/schemas/nst.schemas > /dev/null || :
88fi
89
90%preun
91if [ "$1" -eq 0 ]; then
92  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
93  gconftool-2 --makefile-uninstall-rule \
94        %{_sysconfdir}/gconf/schemas/nst.schemas > /dev/null || :
95fi
96
97%files -f %{name}.lang
98%defattr(-,root,root,-)
99%doc AUTHORS ChangeLog ChangeLog.pre-1.1.4.1 COPYING NEWS
100%{_libdir}/nautilus/extensions-2.0/libnautilus-sendto.so
101%dir %{_libdir}/nautilus-sendto
102%dir %{_libdir}/nautilus-sendto/plugins
103%{_libdir}/nautilus-sendto/plugins/*.so
104%{_datadir}/nautilus-sendto
105%{_bindir}/nautilus-sendto
106%{_sysconfdir}/gconf/schemas/nst.schemas
107%{_mandir}/man1/nautilus-sendto.1.gz
108
109%files devel
110%defattr(-,root,root,-)
111%{_datadir}/gtk-doc/html/nautilus-sendto/
112%{_libdir}/pkgconfig/nautilus-sendto.pc
113%{_includedir}/nautilus-sendto/nautilus-sendto-plugin.h
114
115%changelog
116* Sun Mar 21 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.28.3-1
117- Update to 2.28.3
118- applied new naming policy to spec
119
120* Thu Nov 27 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.28.2-1
121- Update to 2.28.2
122- splitted -devel package
123- Remove unneeded pidgin and gajim BRs
124
125* Thu Sep 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.28.0-1
126- Update to 2.28.0
127
128* Sun Sep 6 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.7-1
129- Update to 1.1.7
130
131* Tue Aug 11 2009 Shu KONNO <owa@bg.wakwak.com> 1.1.6-2
132- added BR: nautilus-devel
133
134* Sun Aug 2 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.6-1
135- Update to 1.1.6
136
137* Sun Jun 14 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.5-2
138- added Japanese description
139- Disable the evolution plugin, it will be in Evolution itself
140  prefer to http://bugzilla.gnome.org/show_bug.cgi?id=579099
141
142* Sat May 23 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.5-1
143- Update to 1.1.5
144
145* Fri Apr 24 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.4-1
146- Update to 1.1.4
147- spec in UTF-8
148
149* Wed Apr 15 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.3-1
150- Update to 1.1.3
151- dropt Patch0
152- changed Summary(ja)
153- fixed BuildRoot
154
155* Sat Apr 11 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.1.2-1
156- Update to 1.1.2
157- added Patch0 (import Fedora package)
158
159* Fri Oct 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.0-1
160- initial build for Vine Linux
161
162* Tue Sep 23 2008 - Bastien Nocera <bnocera@redhat.com> - 1.1.0
163- Update to 1.1.0
164
165* Wed Jul 23 2008 - Bastien Nocera <bnocera@redhat.com> - 1.0.1
166- Update to 1.0.1
167
168* Thu Jun 12 2008 - Bastien Nocera <bnocera@redhat.com> - 1.0.0
169- Update to 1.0.0
170
171* Wed May 14 2008 Matthias Clasen <mclasen@redhat.com> - 0.14.0-4
172- Rebuild again
173
174* Tue May 13 2008 - Bastien Nocera <bnocera@redhat.com> - 0.14.0-3
175- Rebuild
176
177* Sun May  4 2008 Matthias Clasen <mclasen@redhat.com> - 0.14.0-2
178- Fix source url
179
180* Thu Mar 27 2008 - Bastien Nocera <bnocera@redhat.com> - 0.14.0-1
181- Update to 0.14.0
182
183* Thu Feb 07 2008 - Bastien Nocera <bnocera@redhat.com> - 0.13.2-1
184- Update to 0.13.2
185
186* Mon Jan 21 2008 - Bastien Nocera <bnocera@redhat.com> - 0.13.1-1
187- Update to 0.13.1
188
189* Sun Jan 20 2008 - Bastien Nocera <bnocera@redhat.com> - 0.13-1
190- Update to 0.13
191
192* Fri Dec 28 2007 Adel Gadllah <adel.gadllah@gmail.com> - 0.12-7
193- Fix icq file transfers with pidgin RH #408511
194
195* Wed Dec 26 2007 Matthias Clasen <mclasen@redhat.com> - 0.12-6
196- Install the nautilus exension in the right spot
197
198* Mon Nov 19 2007 Matthias Clasen <mclasen@redhat.com> - 0.12-5
199- Fix the pidgin plugin to work with libpurple (#389121)
200
201* Tue Oct 23 2007 Matthias Clasen <mclasen@redhat.com> - 0.12-4
202- Rebuild against new dbus-glib
203
204* Wed Oct 10 2007 Matthias Clasen <mclasen@redhat.com> - 0.12-3
205- Rebuild
206
207* Mon Aug 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.12-2
208- Fix the Thunderbird patch to apply properly
209
210* Mon Aug 13 2007 - Bastien Nocera <bnocera@redhat.com> - 0.12-1
211- Update to 0.12 and drop obsolete patches
212
213* Tue Aug  7 2007 Matthias Clasen <mclasen@redhat.com> - 0.10-5
214- Update the license field
215
216* Fri May 11 2007 Stu Tomlinson <stu@nosnilmot.com> - 0.10-4
217- Update to work with pidgin
218
219* Wed May  9 2007 Matthias Clasen <mclasen@redhat.com> - 0.10-3
220- Fix a problem with dbus error handling  (#239588)
221
222* Mon Apr 16 2007 Warren Togami <wtogami@redhat.com> - 0.10-2
223- disable gaim dep temporarily during transition to pidgin
224
225* Sun Mar 11 2007 - Bastien Nocera <bnocera@redhat.com> - 0.10-1
226- Update to 0.10, as 0.9 didn't compile
227
228* Fri Mar 09 2007 - Bastien Nocera <bnocera@redhat.com> - 0.9-1
229- Update to 0.9
230- Remove the bluetooth subpackage, it only depends on
231  gbus-glib now
232
233* Tue Jan 23 2007 Alexander Larsson <alexl@redhat.com> - 0.8-4
234- Rebuild against new gaim (#223765)
235
236* Wed Nov 15 2006 Matthias Clasen <mclasen@redhat.com> - 0.8-3
237- Rebuild against new libbtctl
238
239* Fri Oct 27 2006 Matthew Barnes <mbarnes@redhat.com> - 0.8-2
240- Update BuildRequires for evolution-data-server-devel.
241- Rebuild against evolution-data-server-1.9.1.
242
243* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 0.8-1
244- Upgrade to 0.8
245
246* Sat Sep 16 2006 Matthias Clasen <mclasen@redhat.com> - 0.7-5
247- Include Thunderbird support and make it work
248- Add missing BRs
249
250* Mon Aug 14 2006 Alexander Larsson <alexl@redhat.com> - 0.7-4
251- Buildrequire nautilus-devel
252
253* Thu Aug 10 2006 Alexander Larsson <alexl@redhat.com> - 0.7-3
254- Make nautilus-sendto-bluetooth require gnome-bluetooth (#201908)
255
256* Sat Aug 05 2006 Caolan McNamara <caolanm@redhat.com> - 0.7-2
257- rebuild against new e-d-s
258
259* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.7-1.1
260- rebuild
261
262* Tue Jul 11 2006 Matthias Clasen  <mclasen@redhat.com> - 0.7-1
263- Update to 0.7
264
265* Wed Jun 14 2006 Alexander Larsson <alexl@redhat.com> - 0.5-4
266- Rebuild again, hopefully fixing libbluetooth issue
267
268* Mon Jun 12 2006 Alexander Larsson <alexl@redhat.com> - 0.5-3
269- Rebuild for new libbluetooth soname
270
271* Sat Jun 10 2006 Matthias Clasen <mclasen@redhat.com> 0.5-2
272- Add missing BuildRequires
273
274* Mon May 22 2006 Alexander Larsson <alexl@redhat.com> 0.5-1
275- Update to 0.5
276- Add libgnomeui-devel buildreq
277
278* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.4-7.2
279- bump again for double-long bug on ppc(64)
280
281* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.4-7.1
282- rebuilt for new gcc4.1 snapshot and glibc changes
283
284* Sat Jan 28 2006 David Malcolm <dmalcolm@redhat.com> 0.4-7
285- rebuild for new e-d-s
286
287* Tue Dec 20 2005 Alexander Larsson <alexl@redhat.com> 0.4-6
288- Rebuild
289
290* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
291- rebuilt
292
293* Wed Nov  9 2005 Alexander Larsson <alexl@redhat.com> - 0.4-5
294- Build in Core
295- Move gaim plugin into main package
296- Fix up some build requirements
297- No bluetooth on s390*
298
299* Sat Oct  8 2005 Paul W. Frields <stickster@gmail.com> - 0.4-4
300- Eliminate superfluous Requires
301
302* Sat Oct  8 2005 Paul W. Frields <stickster@gmail.com> - 0.4-3
303- Rearrange Requires and BuildRequires for subpackages
304- Include default Evolution plugin in main package
305
306* Fri Oct  7 2005 Paul W. Frields <stickster@gmail.com> - 0.4-2
307- Use appropriate BuildRequires for nautilus and gaim
308
309* Fri Oct  7 2005 Paul W. Frields <stickster@gmail.com> - 0.4-1
310- Initial version
Note: See TracBrowser for help on using the repository browser.