gnome-bluetooth-vl.spec 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. Summary: GNOME Bluetooth Subsystem
  2. Summary(ja): GNOME Bluetooth サブシステム
  3. Name: gnome-bluetooth
  4. Version: 3.20.0
  5. Release: 1%{?_dist_release}
  6. License: GPLv2+
  7. Group: System Environment/Libraries
  8. URL: http://live.gnome.org/GnomeBluetooth
  9. Source0: http://ftp.gnome.org/pub/gnome/sources/gnome-bluetooth/3.20/%{name}-%{version}.tar.xz
  10. Source1: 61-gnome-bluetooth-rfkill.rules
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  12. BuildRequires: bluez-libs-devel >= 2.8
  13. BuildRequires: libbonobo-devel >= 2.32.0
  14. BuildRequires: libbonoboui-devel >= 2.24.4
  15. BuildRequires: unique3-devel
  16. BuildRequires: libnotify-devel
  17. BuildRequires: eudev-libudev-devel
  18. BuildRequires: libcanberra-gtk3-devel
  19. BuildRequires: gnome-doc-utils
  20. BuildRequires: intltool, automake, libtool, gettext
  21. BuildRequires: itstool
  22. Requires: %{name}-libs = %{version}-%{release}
  23. Requires: bluez >= 4.42
  24. Requires: obexd
  25. Requires(post): desktop-file-utils
  26. Requires(postun): desktop-file-utils
  27. ExcludeArch: s390 s390x
  28. Obsoletes: bluez-gnome < 1.9
  29. Obsoletes: nautilus-sendto-gnome-bluetooth < 3.7
  30. # virtual package
  31. Provides: dbus-bluez-pin-helper
  32. Vendor: Project Vine
  33. Distribution: Vine Linux
  34. Packager: Takemikaduchi
  35. %description
  36. This package contains a library with widgets for Bluetooth applications.
  37. %description -l ja
  38. このパッケージには、 Bluetooth アプリケーションのためのウィジェットと
  39. ライブラリが含まれます。
  40. %package libs
  41. Summary: Libraries for applications, which use gnome-bluetooth
  42. Summary(ja):Gnome-bluetooth を使用するアプリケーション用ライブラリ
  43. Group: Development/Libraries
  44. %description libs
  45. This package contains the libraries for applications,
  46. which use gnome-bluetooth.
  47. %description libs -l ja
  48. このパッケージには Gnome-bluetoothを使用するアプリケーション用の
  49. ライブラリが含まれています。
  50. %package devel
  51. Summary: Files for the development of applications, which use gnome-bluetooth
  52. Summary(ja): Gnome-bluetoothを使用するアプリケーション開発用ファイル
  53. Group: Development/Libraries
  54. License: LGPLv2+
  55. Requires: %{name}-libs = %{version}-%{release}
  56. Requires: pkgconfig
  57. Requires: gtk3-devel
  58. %description devel
  59. This package contains the files for the development of applications,
  60. which will use gnome-bluetooth.
  61. %description devel -l ja
  62. このパッケージにはGnome-bluetoothを使用するアプリケーションを
  63. 開発するためのヘッダーファイルなどが含まれています(develパッケージ)
  64. %prep
  65. %setup -q -n gnome-bluetooth-%{version}
  66. %build
  67. %configure \
  68. --disable-desktop-update \
  69. --disable-icon-update \
  70. --enable-introspection=yes
  71. make %{?_smp_mflags}
  72. %install
  73. rm -rf $RPM_BUILD_ROOT
  74. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  75. make DESTDIR=$RPM_BUILD_ROOT install
  76. # we do not want .la files
  77. rm -f $RPM_BUILD_ROOT%{_libdir}/gnome-vfs-2.0/modules/libbluetooth.*a
  78. rm -f $RPM_BUILD_ROOT%{_libdir}/libgnome-bluetooth.la
  79. rm -f $RPM_BUILD_ROOT/%{_libdir}/gnome-bluetooth/plugins/*.la
  80. rm -f $RPM_BUILD_ROOT/%{_libdir}/control-center-1/panels/*.la
  81. install -m0644 -D %{SOURCE1} $RPM_BUILD_ROOT/lib/udev/rules.d/61-gnome-bluetooth-rfkill.rules
  82. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  83. %find_lang gnome-bluetooth2
  84. %clean
  85. rm -rf $RPM_BUILD_ROOT
  86. %post
  87. update-desktop-database -q
  88. %postun
  89. update-desktop-database -q
  90. if [ $1 -eq 0 ] ; then
  91. touch --no-create %{_datadir}/icons/hicolor &>/dev/null
  92. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  93. fi
  94. %post libs
  95. /sbin/ldconfig
  96. touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
  97. %posttrans libs
  98. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  99. %postun libs
  100. /sbin/ldconfig
  101. if [ $1 -eq 0 ] ; then
  102. touch --no-create %{_datadir}/icons/hicolor &>/dev/null
  103. gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
  104. fi
  105. %files -f gnome-bluetooth2.lang
  106. %defattr(-, root, root)
  107. %doc README NEWS COPYING
  108. %{_bindir}/bluetooth-*
  109. %{_datadir}/applications/*.desktop
  110. %{_datadir}/gnome-bluetooth/
  111. %{_mandir}/man1/*
  112. /lib/udev/rules.d/61-gnome-bluetooth-rfkill.rules
  113. %files libs
  114. %defattr(-,root,root,-)
  115. %doc COPYING.LIB
  116. %{_libdir}/libgnome-bluetooth.so.*
  117. %{_libdir}/girepository-1.0/GnomeBluetooth-1.0.typelib
  118. %{_datadir}/icons/hicolor/*/apps/*
  119. %{_datadir}/icons/hicolor/*/status/*
  120. %files devel
  121. %defattr(-,root,root,-)
  122. %{_includedir}/gnome-bluetooth/
  123. %{_libdir}/libgnome-bluetooth.so
  124. %{_libdir}/pkgconfig/gnome-bluetooth-1.0.pc
  125. %{_datadir}/gir-1.0/GnomeBluetooth-1.0.gir
  126. %{_datadir}/gtk-doc/html/gnome-bluetooth/
  127. %changelog
  128. * Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.20.0-1
  129. - new upstream release
  130. * Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.2-1
  131. - new upstream release
  132. * Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.1-1
  133. - new upstream release
  134. * Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.0-1
  135. - new upstream release
  136. - add BuildRequires: libcanberra-gtk3-devel
  137. * Sun May 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.1-1
  138. - new upstream release
  139. * Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
  140. - new upstream release
  141. * Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
  142. - new upstream release
  143. - add BuildRequires: eudev-libudev-devel
  144. * Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-2
  145. - rebuild with VineSeed environment
  146. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
  147. - new upstream release
  148. * Sun Jun 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
  149. - new upstream release
  150. * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.0-1
  151. - new upstream release
  152. - remove BuildRequires: nautilus-sendto-devel
  153. * Fri Nov 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
  154. - new upstream release
  155. * Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
  156. - new upstream release
  157. - add Obsoletes: bluez-gnome < 1.9
  158. - add BuildRequires: itstool
  159. * Sun Jul 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-2
  160. - fix spec file
  161. * Sun Jul 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-1
  162. - new upstream release
  163. * Fri Jun 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
  164. - new upstream release
  165. - add BuildRequires: nautilus-sendto-devel
  166. - create nautilus-sendto-gnome-bluetooth package
  167. * Sun Apr 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
  168. - new upstream release
  169. - remove BuildRequires: GConf2-devel
  170. * Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
  171. - new upstream release
  172. * Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
  173. - new upstream release
  174. * Fri Sep 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  175. - new upstream release
  176. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
  177. - new upstream release
  178. * Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
  179. - new upstream release
  180. - change BuildRequires: unique3-devel instead of unique-devel
  181. - add BuildRequires: control-center-devel
  182. * Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  183. - new upstream release
  184. - remove BuildRequires: gir-repository-devel
  185. - add Requires(post) and Requires(postun): desktop-file-utils
  186. * Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
  187. - rebuild with rpm-4.8.1 for pkg-config file
  188. * Wed Apr 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  189. - new upstream release
  190. - add BuildRequires: gir-repository-devel
  191. - add configure option (--disable-nautilus-sendto)
  192. * Wed Dec 30 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.6-1
  193. - new upstream release
  194. - merge spec file from FC package
  195. * Fri Oct 24 2008 Seiichirou Babasaki 0.11.0-6
  196. - Update to 0.11.0 (VineSeed)
  197. - added "# Maintainers: " comments.
  198. - changed UTF-8 encode at gnome-bluetooth.vsc.spec
  199. - FedoraCore - LOGS
  200. -- 0.11.0-5
  201. -- Rebuild against new bluez-libs
  202. -- 0.11.0-4
  203. -- Changed name of icon file(#444811)
  204. -- 0.11.0-3
  205. -- Remove gnome-obex-server, we should use gnome-user-share now
  206. -- 0.11.0-1
  207. -- gcc43 rebuild
  208. -- 0.11.0 - Update to 0.11.0
  209. -- 0.10.0 - Update to 0.10.0
  210. -- 0.9.1-4
  211. -- marked gnome-obex-server.schemas as config file
  212. -- changed upstream URL
  213. -- 0.9.1-3
  214. -- fixed wrong source URL
  215. -- 0.9.1-2
  216. -- rebuilt for F8
  217. -- changed license tag to GPLv2 and LGPLv2+
  218. -- 0.9.1-1
  219. -- Upgrade to 0.9.1 to fix a crasher in the server
  220. -- 0.9.0-1
  221. -- Update for 0.9.0
  222. -- Fix installation of the python bindings
  223. -- 0.8.0-4
  224. -- Remove unncessary gconfd killing from scripts (#224561)
  225. -- 0.8.0-3
  226. -- corrected BuildRoot
  227. -- smp flags added
  228. -- specfile cleanup
  229. -- fixed desktop file
  230. - Updated specfile
  231. * Fri Sep 26 2008 Seiichirou Babasaki 0.8.0-2
  232. - Updated specfile
  233. * Wed Jan 16 2008 Seiichirou Babasaki 0.8.0-1
  234. - Import gnome-bluetooth - Packager: Babasaki
  235. - Updated specfile (downgrade -> 0.8.0-0vl1)
  236. #----------------------------------------------------------------------------
  237. * Mon Nov 13 2006 Harald Hoyer <harald@redhat.com> - 0.8.0-1
  238. - version 0.8.0
  239. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-10.1
  240. - rebuild
  241. * Wed Jun 14 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-10
  242. - bump for new openobex
  243. * Sun Jun 11 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-9
  244. - Missing automake, libtool, gettext BR
  245. * Sun Jun 11 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-6
  246. - Bump for new libbluetooth
  247. * Wed May 31 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-6
  248. - add dependency on bluez-utils, cosmetic tweaks (bug #190280)
  249. * Tue May 30 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-5
  250. - install schemata correctly (bug #193518)
  251. * Mon May 29 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-3
  252. - more build requires (bug #193374)
  253. * Mon Feb 27 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-2
  254. - pydir fixes for lib64
  255. * Thu Feb 16 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-1
  256. - version 0.7.0
  257. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-2.2.1
  258. - bump again for double-long bug on ppc(64)
  259. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-2.2
  260. - rebuilt for new gcc4.1 snapshot and glibc changes
  261. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  262. - rebuilt
  263. * Fri Oct 07 2005 Harald Hoyer <harald@redhat.com> - 0.6.0-2
  264. - Fix relative path for the icons in desktop files which no longer works
  265. with the icon cache.
  266. * Wed Sep 28 2005 Harald Hoyer <harald@redhat.com> - 0.6.0-1
  267. - new version 0.6.0
  268. * Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> 0.5.1-14
  269. - rebuild for new cairo
  270. * Thu Jul 7 2005 Matthias Saou <http://freshrpms.net/> 0.5.1-13
  271. - Minor spec file cleanups.
  272. - Fix relative path for the icons in desktop files which no longer works
  273. with the icon cache.
  274. - Remove useless zero epochs.
  275. - Remove explicit python abi requirement, it's automatic for FC4 and up.
  276. * Thu Mar 31 2005 Harald Hoyer <harald@redhat.com> - 0.5.1-12
  277. - removed base requirement from libs
  278. * Tue Mar 29 2005 Warren Togami <wtogami@redhat.com> - 0.5.1-11
  279. - devel req glib2-devel libbtctl-devel for pkgconfig (#152488)
  280. * Wed Mar 02 2005 Harald Hoyer <harald@redhat.com>
  281. - rebuilt
  282. * Mon Feb 21 2005 Harald Hoyer <harald@redhat.com> - 0.5.1-9
  283. - added gnome hbox patch for bug rh#149215
  284. * Tue Dec 07 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-8
  285. - added requires for python-abi
  286. * Tue Dec 07 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-7
  287. - split package into app, libs and devel
  288. * Mon Oct 25 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-6
  289. - fixed again gnome-bluetooth-manager script for 64bit (bug 134864)
  290. * Fri Oct 08 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-5
  291. - buildrequire pygtk2-devel (bug 135032)
  292. - fixed gnome-bluetooth-manager script for 64bit (bug 134864)
  293. - fixed segfault on file receive (bug 133041)
  294. * Mon Sep 27 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-4
  295. - buildrequire libbtctl-devel
  296. - buildrequire openobex-devel >= 1.0.1
  297. - pythondir -> pyexecdir
  298. * Wed Jul 28 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-3
  299. - added build dependency for librsvg2-devel
  300. * Tue Jul 27 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-2
  301. - added pydir patch
  302. * Thu Jul 22 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-1
  303. - version 0.5.1
  304. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  305. - rebuilt
  306. * Tue May 25 2004 Harald Hoyer <harald@redhat.com> - 0.4.1-8
  307. - corrected BuildRequires
  308. * Wed Mar 10 2004 Harald Hoyer <harald@redhat.com> - 0.4.1-7
  309. - added EggToolBar patch for gcc34
  310. * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
  311. - rebuilt
  312. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  313. - rebuilt
  314. * Mon Jan 26 2004 Harald Hoyer <harald@redhat.de> 0.4.1-4
  315. - added autofoo patch
  316. * Thu Aug 28 2003 Harald Hoyer <harald@redhat.de> 0.4.1-3
  317. - add .so to gnome-vfs module, if libtool does not!
  318. * Thu Aug 07 2003 Harald Hoyer <harald@redhat.de> 0.4.1-2
  319. - call libtool finish
  320. * Wed Aug 6 2003 Harald Hoyer <harald@redhat.de> 0.4.1-1
  321. - new version 0.4.1
  322. * Thu Jun 5 2003 Harald Hoyer <harald@redhat.de> 0.4-1
  323. - initial RPM