acpid/acpid.spec

109 lines
3.3 KiB
RPMSpec
Raw Normal View History

#
# spec file for package acpid
#
# 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/
#
Name: acpid
Version: 2.0.20
Release: 0
Summary: Executes Actions at ACPI Events
License: GPL-2.0+
Group: System/Daemons
Url: http://tedfelix.com/linux/acpid-netlink.html
Source: http://downloads.sourceforge.net/project/acpid2/%{name}-%{version}.tar.xz
Source3: README.SUSE
Source5: events.power_button
Source6: thinkpad_handler
Source7: power_button
Source8: acpid.service
Source9: events.thinkpad
Source10: events.sleep_button
Source11: sleep_button
# PATCH-MISSING-TAG -- See http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
Patch1: acpid-makefile.patch
BuildRequires: systemd-rpm-macros
BuildRequires: xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
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
cp %{SOURCE3} %{SOURCE5} %{SOURCE6} %{SOURCE7} %{SOURCE9} %{SOURCE10} %{SOURCE11} .
%build
export LDFLAGS="-Wl,-z,relro,-z,now"
%configure
make %{?_smp_mflags}
%install
make install DESTDIR=%{buildroot} SBINDIR=%{_sbindir}
install -Dm 744 thinkpad_handler %{buildroot}%{_prefix}/lib/acpid/thinkpad_handler
install -Dm 644 events.thinkpad %{buildroot}%{_sysconfdir}/acpi/events/thinkpad
mkdir -p %{buildroot}/%{_unitdir}
install -m 644 %{SOURCE8} %{buildroot}/%{_unitdir}
ln -sf ../../%{_unitdir}/acpid.service %{buildroot}%{_sbindir}/rcacpid
# formerly installed, but no longer useful with systemd. Keep as documentation.
cp -p events.power_button events.sleep_button power_button sleep_button samples/
# for the rpmlint fascists
mv samples examples
# keep the logfile
install -dm 755 %{buildroot}%{_localstatedir}/log
touch %{buildroot}%{_localstatedir}/log/acpid
%pre
%service_add_pre acpid.service
%post
%service_add_post acpid.service
%postun
%service_del_postun acpid.service
%preun
%service_del_preun acpid.service
%files
%defattr(-,root,root)
%dir %{_sysconfdir}/acpi
%dir %{_sysconfdir}/acpi/events
%{_sysconfdir}/acpi/events/thinkpad
%{_prefix}/lib/acpid
%_unitdir/%{name}.service
%{_sbindir}/rcacpid
%{_sbindir}/acpid
%{_sbindir}/kacpimon
%{_bindir}/acpi_listen
%doc README.SUSE README Changelog examples
%{_mandir}/man8/acpid.8.gz
%{_mandir}/man8/acpi_listen.8.gz
%{_mandir}/man8/kacpimon.8.gz
%ghost %config(noreplace,missingok) %{_localstatedir}/log/acpid
%changelog