This commit is contained in:
parent
9fa68a9b31
commit
61e33f7a14
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Aug 8 18:53:55 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
- Use %fdupes
|
||||||
|
- Split off a -lang subpackage
|
||||||
|
- s#%run_ldconfig#/sbin/ldconfig/ in %post and %postun.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Jul 27 20:53:00 CEST 2007 - maw@suse.de
|
Fri Jul 27 20:53:00 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
@ -11,12 +11,12 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: gnome-bluetooth
|
Name: gnome-bluetooth
|
||||||
BuildRequires: gob2 intltool libbtctl-devel libglade2-devel libgnomeui-devel libusb-devel perl-XML-Parser python-devel python-gtk-devel update-desktop-files
|
BuildRequires: fdupes gob2 intltool libbtctl-devel libglade2-devel libgnomeui-devel libusb-devel perl-XML-Parser python-devel python-gtk-devel update-desktop-files
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Group: System/GUI/GNOME
|
Group: System/GUI/GNOME
|
||||||
Requires: gnome-vfs2 python-gnome
|
Requires: gnome-vfs2 python-gnome
|
||||||
Version: 0.8.0
|
Version: 0.8.0
|
||||||
Release: 92
|
Release: 99
|
||||||
Summary: GNOME Bluetooth Support
|
Summary: GNOME Bluetooth Support
|
||||||
URL: http://usefulinc.com/software/gnome-bluetooth/
|
URL: http://usefulinc.com/software/gnome-bluetooth/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -26,6 +26,7 @@ Patch1: gnome-bluetooth-pixmapsdir.patch
|
|||||||
Patch2: gnome-bluetooth-transparent-trayicon.patch
|
Patch2: gnome-bluetooth-transparent-trayicon.patch
|
||||||
Patch3: gnome-bluetooth-fail-cleanly.patch
|
Patch3: gnome-bluetooth-fail-cleanly.patch
|
||||||
Patch4: dont-disable-deprecated.patch
|
Patch4: dont-disable-deprecated.patch
|
||||||
|
Requires: %{name}-lang = %{version}
|
||||||
Autoreqprov: on
|
Autoreqprov: on
|
||||||
|
|
||||||
%py_requires
|
%py_requires
|
||||||
@ -33,12 +34,12 @@ Autoreqprov: on
|
|||||||
%gconf_schemas_prereq
|
%gconf_schemas_prereq
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This package contains a controller class, GnomebtController, to control
|
This package contains a controller class, GnomebtController, to
|
||||||
Bluetooth devices and a simple GUI to explore which devices are
|
controlBluetooth devices and a simple GUI to explore which devices are
|
||||||
available (gnome-bluetooth-manager). An OBEX server is available,
|
available (gnome-bluetooth-manager). An OBEX server is
|
||||||
gnome-obex-server. This receives files sent via Bluetooth to your PC
|
available,gnome-obex-server. This receives files sent via Bluetooth to
|
||||||
and saves them in your home directory. The program gnome-obex-send
|
yourPC and saves them in your home directory. The program
|
||||||
enables you to send files. It is used by the Nautilus
|
gnome-obex-send enables you to send files. It is used by the Nautilus
|
||||||
component--select the files to send and choose "Send via Bluetooth"
|
component--select the files to send and choose "Send via Bluetooth"
|
||||||
from the context menu.
|
from the context menu.
|
||||||
|
|
||||||
@ -94,6 +95,7 @@ Authors:
|
|||||||
Anders Carlsson <andersca@gnu.org>
|
Anders Carlsson <andersca@gnu.org>
|
||||||
James Henstridge <james@daa.com.au>
|
James Henstridge <james@daa.com.au>
|
||||||
|
|
||||||
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
@ -122,19 +124,21 @@ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/pixmaps
|
|||||||
%suse_update_desktop_file -G "" -C "Receive files sent by Bluetooth devices" gnome-obex-server System Applet
|
%suse_update_desktop_file -G "" -C "Receive files sent by Bluetooth devices" gnome-obex-server System Applet
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
%find_gconf_schemas
|
%find_gconf_schemas
|
||||||
cat %{name}.lang %{name}.schemas_list >%{name}.lst
|
cat %{name}.schemas_list >%{name}.lst
|
||||||
rm $RPM_BUILD_ROOT%{py_sitedir}/gnomebt/*.la
|
rm $RPM_BUILD_ROOT%{py_sitedir}/gnomebt/*.la
|
||||||
|
|
||||||
|
%fdupes $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
|
|
||||||
%pre -f %{name}.schemas_pre
|
%pre -f %{name}.schemas_pre
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
|
|
||||||
%posttrans -f %{name}.schemas_posttrans
|
%posttrans -f %{name}.schemas_posttrans
|
||||||
|
|
||||||
@ -150,6 +154,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/pixmaps/blueradio-48.png
|
%{_datadir}/pixmaps/blueradio-48.png
|
||||||
%{py_sitedir}/gnomebt
|
%{py_sitedir}/gnomebt
|
||||||
|
|
||||||
|
%files lang -f %{name}.lang
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%{_includedir}/gnome-bluetooth
|
%{_includedir}/gnome-bluetooth
|
||||||
@ -158,6 +164,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Aug 08 2007 - maw@suse.de
|
||||||
|
- Use %%fdupes
|
||||||
|
- Split off a -lang subpackage
|
||||||
|
- s#%%run_ldconfig#/sbin/ldconfig/ in %%post and %%postun.
|
||||||
* Fri Jul 27 2007 - maw@suse.de
|
* Fri Jul 27 2007 - maw@suse.de
|
||||||
- Add dont-disable-deprecated.patch.
|
- Add dont-disable-deprecated.patch.
|
||||||
* Wed May 23 2007 - prusnak@suse.cz
|
* Wed May 23 2007 - prusnak@suse.cz
|
||||||
|
Loading…
Reference in New Issue
Block a user