source: projects/specs/trunk/g/gnome-bluetooth/gnome-bluetooth-vl.spec @ 9804

Revision 9804, 12.4 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME-3.18.2 & Cinnamon-2.8.4

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