File udisks.spec of Package udisks
#
# spec file for package udisks
#
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%define _udevdir %(pkg-config --variable=udevdir udev)
Name: udisks
Version: 1.0.5
Release: 0
Summary: Disk Management Service
License: GPL-2.0+
Group: System/Daemons
Url: http://cgit.freedesktop.org/udisks/
Source: http://hal.freedesktop.org/releases/%{name}-%{version}.tar.gz
# Need this one until bnc#504064 has been resolved -- mboman@suse.de
Source2: umount.udisks
Obsoletes: DeviceKit-disks <= 009
Provides: DeviceKit-disks = 009
# avahi BuildRequires is solely for directory ownerships.
BuildRequires: avahi
BuildRequires: dbus-1-glib-devel
#BuildRequires: device-mapper-devel
BuildRequires: gtk-doc
BuildRequires: intltool
BuildRequires: libatasmart-devel
BuildRequires: libgudev-1_0-devel
BuildRequires: parted-devel
BuildRequires: polkit-devel
BuildRequires: sg3_utils-devel
#BuildRequires: sqlite3-devel
BuildRequires: pkgconfig(gudev-1.0)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(systemd)
# udev BuildRequires is solely for directory ownerships.
BuildRequires: pkgconfig(udev)
#BuildRequires: zlib-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Upstream First - Policy:
# Never add any patches to this package without the upstream commit id
# in the patch. Any patches added here without a very good reason to make
# an exception will be silently removed with the next version update.
%description
udisks provides a daemon, D-Bus API and command line tools
for managing disks and storage devices.
%package devel
Summary: Disk Management Service - Development Files
Group: Development/Libraries/Other
Requires: %{name} = %{version}
Requires: glib2-devel
Provides: DeviceKit-disks-devel = 009
Obsoletes: DeviceKit-disks-devel <= 009
%description devel
udisks provides a daemon, D-Bus API and command line tools
for managing disks and storage devices.
%prep
%setup -q
%build
export V=1
%configure \
--enable-gtk-doc \
--disable-static \
--libexecdir=%{_prefix}/lib/udisks
make %{?_smp_mflags}
%install
%makeinstall
find %{buildroot}%{_libdir} -name '*.la' -delete -print >/dev/null 2>&1 || :
# Not allowed to install into /sbin so move it to /usr/sbin (see bnc#504064)
mkdir -p %{buildroot}%{_sbindir}
mv %{buildroot}/sbin/umount.udisks %{buildroot}%{_sbindir}
cp %{S:2} %{buildroot}/sbin/
# udev files are not necessarily in /lib/udev anymore
if test "%{_udevdir}" != "/lib/udev"; then
mkdir -p %{buildroot}%{_udevdir}
mv %{buildroot}/lib/udev/* %{buildroot}%{_udevdir}
fi
%find_lang %{name}
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS COPYING NEWS README
%{_udevdir}/udisks-*
%{_udevdir}/rules.d/80-udisks.rules
%{_bindir}/udisks
%{_bindir}/udisks-tcp-bridge
%{_prefix}/lib/udisks
%attr(0755,root,root) /sbin/umount.udisks
%{_sbindir}/umount.udisks
%{_datadir}/polkit-1/actions/org.freedesktop.udisks.policy
%{_datadir}/dbus-1/interfaces/org.freedesktop.UDisks.xml
%{_datadir}/dbus-1/interfaces/org.freedesktop.UDisks.Adapter.xml
%{_datadir}/dbus-1/interfaces/org.freedesktop.UDisks.Device.xml
%{_datadir}/dbus-1/interfaces/org.freedesktop.UDisks.Expander.xml
%{_datadir}/dbus-1/interfaces/org.freedesktop.UDisks.Port.xml
%{_datadir}/dbus-1/system-services/org.freedesktop.UDisks.service
%{_sysconfdir}/avahi/services/udisks.service
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.UDisks.conf
%{_unitdir}/udisks.service
%attr(0644,root,root) %{_sysconfdir}/profile.d/udisks-bash-completion.sh
%doc %{_mandir}/man1/udisks-tcp-bridge.1%{?ext_man}
%doc %{_mandir}/man1/udisks.1%{?ext_man}
%doc %{_mandir}/man7/udisks.7%{?ext_man}
%doc %{_mandir}/man8/udisks-daemon.8%{?ext_man}
%attr(0770,root,root) %dir %{_localstatedir}/lib/udisks
%files devel
%defattr(-,root,root,-)
%{_datadir}/pkgconfig/udisks.pc
%doc %{_datadir}/gtk-doc/html/udisks/
%changelog