109 lines
3.2 KiB
RPMSpec
109 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package rtkit
|
|
#
|
|
# Copyright (c) 2011 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/
|
|
#
|
|
|
|
Name: rtkit
|
|
Summary: Realtime Policy and Watchdog Daemon
|
|
License: GPL-3.0+ and BSD-3-Clause
|
|
Group: System/Base
|
|
Version: 0.10_git201107141740
|
|
Release: 0
|
|
# The daemon itself is GPL v3 or later, the reference implementation for the client BSD-3-Clause
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Url: http://git.0pointer.de/?p=rtkit.git
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: dbus-1-devel >= 1.2
|
|
BuildRequires: libcap-devel
|
|
BuildRequires: polkit-devel
|
|
Requires: polkit
|
|
PreReq: dbus-1
|
|
%if 0%{?suse_version} > 1140
|
|
BuildRequires: systemd
|
|
%{?systemd_requires}
|
|
%define has_systemd 1
|
|
%endif
|
|
|
|
%description
|
|
RealtimeKit is a D-Bus system service that changes the
|
|
scheduling policy of user processes/threads to SCHED_RR (i.e. realtime
|
|
scheduling mode) on request. It is intended to be used as a secure
|
|
mechanism to allow real-time scheduling to be used by normal user
|
|
processes.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
./bootstrap.sh
|
|
# %configure --libexecdir=$prefix/lib/rtkit
|
|
%configure \
|
|
%if 0%{?has_systemd}
|
|
--with-systemdsystemunitdir=%{_unitdir} \
|
|
%endif
|
|
--libexecdir=%{_libexecdir}/rtkit
|
|
|
|
make %{?_smp_mflags}
|
|
./rtkit-daemon --introspect > org.freedesktop.RealtimeKit1.xml
|
|
|
|
%install
|
|
%makeinstall
|
|
install -D org.freedesktop.RealtimeKit1.xml $RPM_BUILD_ROOT/%{_datadir}/dbus-1/interfaces/org.freedesktop.RealtimeKit1.xml
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%preun
|
|
%if 0%{?has_systemd}
|
|
%service_del_preun rtkit-daemon.service
|
|
%endif
|
|
|
|
%pre
|
|
groupadd -r rtkit &>/dev/null || :
|
|
/usr/bin/id rtkit >/dev/null 2>&1 || \
|
|
useradd -r -g rtkit -c 'RealtimeKit' -s /bin/false -d /proc rtkit
|
|
|
|
%if 0%{?has_systemd}
|
|
%service_add_pre rtkit-daemon.service
|
|
%endif
|
|
|
|
%post
|
|
dbus-send --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig >/dev/null 2>&1 || :
|
|
%if 0%{?has_systemd}
|
|
%service_add_post rtkit-daemon.service
|
|
%endif
|
|
|
|
%postun
|
|
%if 0%{?has_systemd}
|
|
%service_del_postun rtkit-daemon.service
|
|
%endif
|
|
|
|
%files
|
|
%defattr(0644,root,root,0755)
|
|
%doc README GPL LICENSE rtkit.c rtkit.h
|
|
%attr(0755,root,root) %{_sbindir}/rtkitctl
|
|
%dir %{_libexecdir}/rtkit
|
|
%attr(0755,root,root) %{_libexecdir}/rtkit/rtkit-daemon
|
|
%{_datadir}/dbus-1/system-services/org.freedesktop.RealtimeKit1.service
|
|
%{_datadir}/dbus-1/interfaces/org.freedesktop.RealtimeKit1.xml
|
|
%{_datadir}/polkit-1/actions/org.freedesktop.RealtimeKit1.policy
|
|
%{_sysconfdir}/dbus-1/system.d/org.freedesktop.RealtimeKit1.conf
|
|
%{_mandir}/man8/rtkitctl.*
|
|
%if 0%{?has_systemd}
|
|
%{_unitdir}/rtkit-daemon.service
|
|
%endif
|
|
|
|
%changelog
|