nautilus-sendto-vl.spec 9.5 KB

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