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

Revision 10716, 12.5 KB checked in by Takemikaduchi, 8 years ago (diff)

GNOME-3.20

Line 
1Summary: GNOME Bluetooth Subsystem
2Summary(ja): GNOME Bluetooth サブシステム
3Name: gnome-bluetooth
4Version: 3.20.0
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.20/%{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* Sun Jul 17 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.20.0-1
170- new upstream release
171
172* Sun Jan 24 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.2-1
173- new upstream release
174
175* Fri Nov 13 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.1-1
176- new upstream release
177
178* Sun Nov 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.18.0-1
179- new upstream release
180- add BuildRequires: libcanberra-gtk3-devel
181
182* Sun May 03 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.1-1
183- new upstream release
184
185* Sun Mar 29 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.16.0-1
186- new upstream release
187
188* Sun Oct 26 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.14.0-1
189- new upstream release
190- add BuildRequires: eudev-libudev-devel
191
192* Sat Jan 04 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-2
193- rebuild with VineSeed environment
194
195* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
196- new upstream release
197
198* Sun Jun 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
199- new upstream release
200
201* Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.0-1
202- new upstream release
203- remove BuildRequires: nautilus-sendto-devel
204
205* Fri Nov 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
206- new upstream release
207
208* Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
209- new upstream release
210- add Obsoletes: bluez-gnome < 1.9
211- add BuildRequires: itstool
212
213* Sun Jul 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-2
214- fix spec file
215
216* Sun Jul 08 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-1
217- new upstream release
218
219* Fri Jun 22 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
220- new upstream release
221- add BuildRequires: nautilus-sendto-devel
222- create nautilus-sendto-gnome-bluetooth package
223
224* Sun Apr 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
225- new upstream release
226- remove BuildRequires: GConf2-devel
227
228* Wed Feb 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
229- new upstream release
230
231* Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
232- new upstream release
233
234* Fri Sep 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
235- new upstream release
236
237* Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
238- new upstream release
239
240* Tue Aug 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.4-1
241- new upstream release
242- change BuildRequires: unique3-devel instead of unique-devel
243- add BuildRequires: control-center-devel
244
245* Sun Oct 03 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
246- new upstream release
247- remove BuildRequires: gir-repository-devel
248- add Requires(post) and Requires(postun): desktop-file-utils
249
250* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
251- rebuild with rpm-4.8.1 for pkg-config file
252
253* Wed Apr 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
254- new upstream release
255- add BuildRequires: gir-repository-devel
256- add configure option (--disable-nautilus-sendto)
257
258* Wed Dec 30 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.6-1
259- new upstream release
260- merge spec file from FC package
261
262* Fri Oct 24  2008 Seiichirou Babasaki 0.11.0-6
263- Update to 0.11.0 (VineSeed)
264- added "# Maintainers: " comments.
265- changed UTF-8 encode at gnome-bluetooth.vsc.spec
266- FedoraCore - LOGS
267-- 0.11.0-5
268-- Rebuild against new bluez-libs
269-- 0.11.0-4
270-- Changed name of icon file(#444811)
271-- 0.11.0-3
272-- Remove gnome-obex-server, we should use gnome-user-share now
273-- 0.11.0-1
274-- gcc43 rebuild
275-- 0.11.0 - Update to 0.11.0
276-- 0.10.0 - Update to 0.10.0
277-- 0.9.1-4
278-- marked gnome-obex-server.schemas as config file
279-- changed upstream URL
280-- 0.9.1-3
281-- fixed wrong source URL
282-- 0.9.1-2
283-- rebuilt for F8
284-- changed license tag to GPLv2 and LGPLv2+
285-- 0.9.1-1
286-- Upgrade to 0.9.1 to fix a crasher in the server
287-- 0.9.0-1
288-- Update for 0.9.0
289-- Fix installation of the python bindings
290-- 0.8.0-4
291-- Remove unncessary gconfd killing from scripts (#224561)
292-- 0.8.0-3
293-- corrected BuildRoot
294-- smp flags added
295-- specfile cleanup
296-- fixed desktop file
297- Updated specfile
298
299* Fri Sep 26 2008 Seiichirou Babasaki 0.8.0-2
300- Updated specfile
301
302* Wed Jan 16 2008 Seiichirou Babasaki 0.8.0-1
303- Import gnome-bluetooth - Packager: Babasaki
304- Updated specfile (downgrade -> 0.8.0-0vl1)
305
306#----------------------------------------------------------------------------
307* Mon Nov 13 2006 Harald Hoyer <harald@redhat.com> - 0.8.0-1
308- version 0.8.0
309
310* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-10.1
311- rebuild
312
313* Wed Jun 14 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-10
314- bump for new openobex
315
316* Sun Jun 11 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-9
317- Missing automake, libtool, gettext BR
318
319* Sun Jun 11 2006 Jesse Keating <jkeating@redhat.com> - 0.7.0-6
320- Bump for new libbluetooth
321
322* Wed May 31 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-6
323- add dependency on bluez-utils, cosmetic tweaks (bug #190280)
324
325* Tue May 30 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-5
326- install schemata correctly (bug #193518)
327
328* Mon May 29 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-3
329- more build requires (bug #193374)
330
331* Mon Feb 27 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-2
332- pydir fixes for lib64
333
334* Thu Feb 16 2006 Harald Hoyer <harald@redhat.com> - 0.7.0-1
335- version 0.7.0
336
337* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-2.2.1
338- bump again for double-long bug on ppc(64)
339
340* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.6.0-2.2
341- rebuilt for new gcc4.1 snapshot and glibc changes
342
343* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
344- rebuilt
345
346* Fri Oct 07 2005 Harald Hoyer <harald@redhat.com> - 0.6.0-2
347- Fix relative path for the icons in desktop files which no longer works
348  with the icon cache.
349
350* Wed Sep 28 2005 Harald Hoyer <harald@redhat.com> - 0.6.0-1
351- new version 0.6.0
352
353* Tue Aug 16 2005 Warren Togami <wtogami@redhat.com> 0.5.1-14
354- rebuild for new cairo
355
356* Thu Jul  7 2005 Matthias Saou <http://freshrpms.net/> 0.5.1-13
357- Minor spec file cleanups.
358- Fix relative path for the icons in desktop files which no longer works
359  with the icon cache.
360- Remove useless zero epochs.
361- Remove explicit python abi requirement, it's automatic for FC4 and up.
362
363* Thu Mar 31 2005 Harald Hoyer <harald@redhat.com> - 0.5.1-12
364- removed base requirement from libs
365
366* Tue Mar 29 2005 Warren Togami <wtogami@redhat.com> - 0.5.1-11
367- devel req glib2-devel libbtctl-devel for pkgconfig (#152488)
368
369* Wed Mar 02 2005 Harald Hoyer <harald@redhat.com>
370- rebuilt
371
372* Mon Feb 21 2005 Harald Hoyer <harald@redhat.com> - 0.5.1-9
373- added gnome hbox patch for bug rh#149215
374
375* Tue Dec 07 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-8
376- added requires for python-abi
377
378* Tue Dec 07 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-7
379- split package into app, libs and devel
380
381* Mon Oct 25 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-6
382- fixed again gnome-bluetooth-manager script for 64bit (bug 134864)
383
384* Fri Oct 08 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-5
385- buildrequire pygtk2-devel (bug 135032)
386- fixed gnome-bluetooth-manager script for 64bit (bug 134864)
387- fixed segfault on file receive (bug 133041)
388
389* Mon Sep 27 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-4
390- buildrequire libbtctl-devel
391- buildrequire openobex-devel >= 1.0.1
392- pythondir -> pyexecdir
393
394* Wed Jul 28 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-3
395- added build dependency for librsvg2-devel
396
397* Tue Jul 27 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-2
398- added pydir patch
399
400* Thu Jul 22 2004 Harald Hoyer <harald@redhat.com> - 0.5.1-1
401- version 0.5.1
402
403* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
404- rebuilt
405
406* Tue May 25 2004 Harald Hoyer <harald@redhat.com> - 0.4.1-8
407- corrected BuildRequires
408
409* Wed Mar 10 2004 Harald Hoyer <harald@redhat.com> - 0.4.1-7
410- added EggToolBar patch for gcc34
411
412* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
413- rebuilt
414
415* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
416- rebuilt
417
418* Mon Jan 26 2004 Harald Hoyer <harald@redhat.de> 0.4.1-4
419- added autofoo patch
420
421* Thu Aug 28 2003 Harald Hoyer <harald@redhat.de> 0.4.1-3
422- add .so to gnome-vfs module, if libtool does not!
423
424* Thu Aug 07 2003 Harald Hoyer <harald@redhat.de> 0.4.1-2
425- call libtool finish
426
427* Wed Aug  6 2003 Harald Hoyer <harald@redhat.de> 0.4.1-1
428- new version 0.4.1
429
430* Thu Jun  5 2003 Harald Hoyer <harald@redhat.de> 0.4-1
431- initial RPM
432
433
Note: See TracBrowser for help on using the repository browser.