acpid/acpid.spec

115 lines
3.4 KiB
RPMSpec

#
# spec file for package acpid
#
# 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: acpid
Url: http://tedfelix.com/linux/acpid-netlink.html
Version: 2.0.13
Release: 5
License: GPL-2.0+
Group: System/Daemons
PreReq: %insserv_prereq %fillup_prereq
Summary: Executes Actions at ACPI Events
Source: http://tedfelix.com//linux/%{name}-%{version}.tar.gz
Source2: rcacpid
Source3: README.SuSE
Source4: thinkpad_acpi.modprobe
Source5: events.power_button
Source9: events.thinkpad
Source6: thinkpad_handler
Source7: power_button
Source8: acpid.service
Patch1: acpid-makefile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: systemd
ExclusiveArch: %ix86 x86_64 ia64
%systemd_requires
%description
ACPID is a completely flexible, totally extensible daemon for
delivering ACPI events. It listens to a file (/proc/acpi/event) and,
when an event occurs, executes programs to handle the event. The start
script loads all needed modules.
Configure it in /etc/sysconfig/powermanagement.
%prep
%setup -q
%patch1 -p0
cp %{S:2} %{S:3} %{S:4} %{S:5} %{S:6} %{S:7} %{S:9} .
%build
export LDFLAGS="-Wl,-z,relro,-z,now"
make OPT="$RPM_OPT_FLAGS" %{?_smp_mflags}
%install
make install DESTDIR=$RPM_BUILD_ROOT SBINDIR=/sbin
install -Dm 744 rcacpid %{buildroot}/etc/init.d/acpid
install -Dm 644 thinkpad_acpi.modprobe %{buildroot}/etc/modprobe.d/50-thinkpad_acpi.conf
install -Dm 744 thinkpad_handler %{buildroot}/usr/lib/acpid/thinkpad_handler
install -Dm 744 power_button %{buildroot}/usr/lib/acpid/power_button
mkdir -p %{buildroot}/usr/sbin
ln -sf ../../etc/init.d/acpid %{buildroot}/usr/sbin/rcacpid
install -Dm 644 events.power_button %{buildroot}/etc/acpi/events/power_button
install -Dm 644 events.thinkpad %{buildroot}/etc/acpi/events/thinkpad
mkdir -p $RPM_BUILD_ROOT/%{_unitdir}
install -m 644 %{SOURCE8} $RPM_BUILD_ROOT/%{_unitdir}
# for the rpmlint fascists
mv samples examples
# keep the logfile
install -dm 755 %buildroot%_var/log
touch %buildroot%_var/log/acpid
%pre
%service_add_pre acpid.service
%post
%{fillup_and_insserv -y -f acpid}
%service_add_post acpid.service
%postun
%restart_on_update acpid
%{insserv_cleanup}
%service_del_postun acpid.service
%preun
%stop_on_removal acpid
%service_del_preun acpid.service
%files
%defattr(-,root,root)
%dir /etc/modprobe.d
%dir /etc/acpi
%dir /etc/acpi/events
/etc/acpi/events/thinkpad
/etc/acpi/events/power_button
/usr/lib/acpid
/etc/init.d/acpid
/etc/modprobe.d/50-thinkpad_acpi.conf
%_unitdir/%{name}.service
/usr/sbin/rcacpid
/sbin/acpid
/usr/bin/acpi_listen
%doc README.SuSE README Changelog examples
/usr/share/man/man8/acpid.8.gz
/usr/share/man/man8/acpi_listen.8.gz
%ghost %config(noreplace,missingok) %_var/log/acpid
%changelog