bluez/bluez.spec

207 lines
5.7 KiB
RPMSpec
Raw Normal View History

2008-09-12 17:00:29 +00:00
Summary: Bluetooth utilities
2008-09-11 02:10:24 +00:00
Name: bluez
Version: 4.5
2008-09-12 22:29:05 +00:00
Release: 3%{?dist}
2008-09-11 02:10:24 +00:00
License: GPLv2+
2008-09-12 17:00:29 +00:00
Group: Applications/System
2008-09-11 02:10:24 +00:00
Source: http://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.gz
Source1: bluetooth.init
Source2: bluetooth.conf
Patch1: bluez-utils-oui-usage.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
URL: http://www.bluez.org/
BuildRequires: flex
BuildRequires: dbus-devel >= 0.90
BuildRequires: libusb-devel, glib2-devel, alsa-lib-devel
BuildRequires: gstreamer-plugins-base-devel, gstreamer-devel
BuildRequires: libsndfile-devel
ExcludeArch: s390 s390x
2008-09-12 17:00:29 +00:00
Obsoletes: bluez-pan < 4.0, bluez-sdp < 4.0
Requires: initscripts, bluez-libs = %{version}
Requires: dbus >= 0.60
Requires: hwdata >= 0.215
Requires: dbus-bluez-pin-helper
Requires(preun): /sbin/chkconfig, /sbin/service
Requires(post): /sbin/chkconfig, /sbin/service
Obsoletes: bluez-utils < 4.5-2
Provides: bluez-utils = %{version}-%{release}
2008-09-11 02:10:24 +00:00
%description
2008-09-12 17:00:29 +00:00
Utilities for use in Bluetooth applications:
- hcitool
- hciattach
- hciconfig
- bluetoothd
- l2ping
- start scripts (Red Hat)
- pcmcia configuration files
2008-09-11 02:10:24 +00:00
The BLUETOOTH trademarks are owned by Bluetooth SIG, Inc., U.S.A.
%package libs
Summary: Libraries for use in Bluetooth applications
Group: System Environment/Libraries
%package libs-devel
Summary: Development libraries for Bluetooth applications
Group: Development/Libraries
Requires: bluez-libs = %{version}
Requires: pkgconfig
Obsoletes: bluez-sdp-devel < 4.0
2008-09-12 17:00:29 +00:00
%package cups
2008-09-11 02:10:24 +00:00
Summary: CUPS printer backend for Bluetooth printers
Group: System Environment/Daemons
2008-09-12 22:29:05 +00:00
Obsoletes: bluez-utils-cups < 4.5-2
2008-09-12 17:00:29 +00:00
Provides: bluez-utils-cups = %{version}-%{release}
2008-09-11 02:10:24 +00:00
Requires: bluez-libs = %{version}
Requires: cups
2008-09-12 17:00:29 +00:00
%package gstreamer
2008-09-11 02:10:24 +00:00
Summary: GStreamer support for SBC audio format
Group: System Environment/Daemons
2008-09-12 22:29:05 +00:00
Obsoletes: bluez-utils-gstreamer < 4.5-2
2008-09-12 17:00:29 +00:00
Provides: bluez-utils-gstreamer = %{version}-%{release}
2008-09-11 02:10:24 +00:00
Requires: bluez-libs = %{version}
2008-09-12 17:00:29 +00:00
%package alsa
2008-09-11 02:10:24 +00:00
Summary: ALSA support for Bluetooth audio devices
2008-09-12 22:29:05 +00:00
Obsoletes: bluez-utils-alsa < 4.5-2
Provides: bluez-utils-alsa = %{version}-%{release}
2008-09-11 02:10:24 +00:00
Group: System Environment/Daemons
Requires: bluez-libs = %{version}
2008-09-12 17:00:29 +00:00
%description cups
2008-09-11 02:10:24 +00:00
This package contains the CUPS backend
2008-09-12 17:00:29 +00:00
%description gstreamer
2008-09-11 02:10:24 +00:00
This package contains gstreamer plugins for the Bluetooth SBC audio format
2008-09-12 17:00:29 +00:00
%description alsa
2008-09-11 02:10:24 +00:00
This package contains ALSA support for Bluetooth audio devices
%description libs
Libraries for use in Bluetooth applications.
%description libs-devel
bluez-libs-devel contains development libraries and headers for
use in Bluetooth applications.
%prep
%setup -q
%patch1 -p0 -b .oui
%build
%configure --enable-cups --enable-hid2hci --enable-dfutool --enable-tools --enable-bccmd --enable-gstreamer --enable-hidd --enable-pand --enable-dund
make
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
/sbin/ldconfig -n $RPM_BUILD_ROOT/%{_libdir}
# Remove autocrap and libtool droppings
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la \
$RPM_BUILD_ROOT/%{_libdir}/alsa-lib/*.la \
$RPM_BUILD_ROOT/%{_libdir}/bluetooth/plugins/*.la \
$RPM_BUILD_ROOT/%{_libdir}/gstreamer-0.10/*.la
install -D -m0755 %SOURCE1 $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/bluetooth
install -D -m0644 %SOURCE2 $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/bluetooth
# Remove the cups backend from libdir, and install it in /usr/lib whatever the install
rm -rf ${RPM_BUILD_ROOT}%{_libdir}/cups
install -D -m0755 cups/bluetooth ${RPM_BUILD_ROOT}/usr/lib/cups/backend/bluetooth
install -D -m0755 scripts/bluetooth.rules ${RPM_BUILD_ROOT}/%{_sysconfdir}/udev/rules.d/97-bluetooth-serial.rules
install -D -m0755 scripts/bluetooth_serial ${RPM_BUILD_ROOT}/lib/udev/bluetooth_serial
%clean
rm -rf $RPM_BUILD_ROOT
%post libs -p /sbin/ldconfig
2008-09-12 17:00:29 +00:00
%post
2008-09-11 02:10:24 +00:00
/sbin/chkconfig --add bluetooth
if [ "$1" -ge "1" ]; then
/sbin/service bluetooth condrestart >/dev/null 2>&1 || :
fi
exit 0
%postun libs -p /sbin/ldconfig
2008-09-12 17:00:29 +00:00
%preun
2008-09-11 02:10:24 +00:00
if [ "$1" = "0" ]; then
/sbin/service bluetooth stop >/dev/null 2>&1 || :
/sbin/chkconfig --del bluetooth
fi
2008-09-12 17:00:29 +00:00
%files
2008-09-11 02:10:24 +00:00
%defattr(-, root, root)
%{_bindir}/*
%{_sbindir}/*
%{_mandir}/man1/*
%{_mandir}/man8/*
%dir %{_sysconfdir}/bluetooth/
%config(noreplace) %{_sysconfdir}/bluetooth/*
%config(noreplace) %{_sysconfdir}/sysconfig/*
%config %{_sysconfdir}/dbus-1/system.d/bluetooth.conf
%{_libdir}/bluetooth/plugins/*.so
/lib/udev/bluetooth_serial
%{_sysconfdir}/udev/rules.d/97-bluetooth-serial.rules
/etc/rc.d/init.d/*
%files libs
%defattr(-, root, root)
%{_libdir}/libbluetooth.so.*
%doc AUTHORS COPYING INSTALL ChangeLog README
%files libs-devel
%defattr(-, root, root)
%{_libdir}/libbluetooth.so
%dir %{_includedir}/bluetooth
%{_includedir}/bluetooth/*
%{_libdir}/pkgconfig/bluez.pc
2008-09-12 17:00:29 +00:00
%files cups
2008-09-11 02:10:24 +00:00
%defattr(-, root, root)
/usr/lib/cups/backend/bluetooth
2008-09-12 17:00:29 +00:00
%files gstreamer
2008-09-11 02:10:24 +00:00
%defattr(-, root, root)
%{_libdir}/gstreamer-*/*.so
2008-09-12 17:00:29 +00:00
%files alsa
2008-09-11 02:10:24 +00:00
%defattr(-, root, root)
%{_libdir}/alsa-lib/*.so
%changelog
2008-09-12 22:29:05 +00:00
* Fri Sep 12 2008 - David Woodhouse <David.Woodhouse@intel.com> - 4.5-3
- Bluez-alsa needs to provide/obsolete bluez-utils-alsa
- Use versioned Obsoletes:
2008-09-12 17:00:29 +00:00
* Fri Sep 12 2008 - David Woodhouse <David.Woodhouse@intel.com> - 4.5-2
- Change main utils package name to 'bluez'; likewise its subpackages
- Remove references to obsolete initscripts (hidd,pand,dund)
* Fri Sep 12 2008 - Bastien Nocera <bnocera@redhat.com> - 4.5-1
- Update to 4.5
- Fix initscript to actually start bluetoothd by hand
- Add chkconfig information to the initscript
2008-09-11 02:10:24 +00:00
* Tue Sep 09 2008 - David Woodhouse <David.Woodhouse@intel.com> - 4.4-2
- Fix rpmlint problems
- Fix input device handling
* Tue Sep 09 2008 - Bastien Nocera <bnocera@redhat.com> - 4.4-1
- Update to 4.4
- Update source address, and remove unneeded deps (thanks Marcel)
* Mon Aug 11 2008 - Bastien Nocera <bnocera@redhat.com> - 4.1-1
- Initial build