]> git.pld-linux.org Git - packages/acpid.git/blame - acpid.spec
- rel 8
[packages/acpid.git] / acpid.spec
CommitLineData
21cec536
ER
1# TODO:
2# - better event handling in power.sh
3# - better default configuration of events in /etc/acpi
4# - processor and fan module support (?)
beca40f2
ER
5# - run-parts(8)-like [A-Z...] regexp from Debian for config scan is evil as it
6# is locale dependant (http://www.gentoo.org/news/en/gwn/20060522-newsletter.xml#doc_chap2)
7# also it does not allow *.conf files (missing "."), which is not backward
8# compatible (custom files can be left unprocessed)
9# but if patch is made to allow ".", must consider to ignore .rpm{new,old,save} files
3f3c20dc 10# - build and package kacpimon
e5bcd3b5 11Summary: ACPI Event Daemon
e0dc1852 12Summary(pl.UTF-8): Demon zdarzeń ACPI
e5bcd3b5 13Name: acpid
a8549c1d 14Version: 2.0.10
7bddd2e1 15Release: 8
2c9e8004 16License: GPL v2+
e5bcd3b5 17Group: Daemons
beca40f2 18Source0: http://tedfelix.com/linux/%{name}-%{version}.tar.gz
a8549c1d 19# Source0-md5: d5dd88bcfaa4a0bf51905e95115da6df
258a99b0
PG
20Source1: %{name}.init
21Source2: %{name}.sysconfig
3f9b4ca2 22Source3: %{name}.logrotate
393dd5c2 23Source4: %{name}.button.conf
24Source5: %{name}.battery.conf
25Source6: %{name}.button.sh
26Source7: %{name}.battery.sh
513e3ad0 27Source8: %{name}.upstart
914b6166 28Source9: %{name}.service
beca40f2 29URL: http://tedfelix.com/linux/acpid-netlink.html
d26689d0 30BuildRequires: rpmbuild(macros) >= 1.268
8c4ef41e 31Requires(post,preun): /sbin/chkconfig
d80b7c34 32Requires: rc-scripts >= 0.4.3.0
2c9e8004
JB
33Provides: acpi-daemon
34Obsoletes: acpi-daemon
35Obsoletes: apm-daemon
36ExclusiveArch: %{ix86} %{x8664} ia64
e5bcd3b5 37BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11f5d39c
AM
38
39%description
40acpid is a daemon that dispatches ACPI events to user-space programs.
41
6d2541a2 42%description -l pl.UTF-8
d35e6720
JB
43acpid to demon przekazujący zdarzenia ACPI do programów w przestrzeni
44użytkownika.
dd33996b
MM
45
46%package policy
47Summary: ACPID policy files
cd3a030e 48Summary(pl.UTF-8): Pliki z polityką dla ACPID
dd33996b 49Group: Daemons
cd3a030e 50Requires: %{name} = %{version}-%{release}
dd33996b
MM
51
52%description policy
53This package contains scripts and configuration files which allow
cd3a030e 54ACPID to take action on incoming ACPI events (eg. to run a script that
dd33996b
MM
55suspends the system when the power button is pressed).
56
57Notice: on most current systems you DO NOT want this package
58installed, since there are other software packages responsible for
cd3a030e 59handling ACPI events (one example being gnome-power-manager) and
dd33996b
MM
60having ACPID also respond will lead to problems. In such cases ACPID
61should only act as a message broker.
62
63%description policy -l pl.UTF-8
cd3a030e 64Ten pakiet zawiera skrypty i pliki konfiguracyjne, które umożliwiają
ffb56f1a
ER
65demonowi ACPI wykonywanie operacji na podstawie przychodzących zdarzeń
66ACPI (np. uruchomienie skryptu usypiającego system, gdy użytkownik
67naciśnie przycisk zasilania).
dd33996b 68
cd3a030e
JB
69Uwaga: na większości obecnych systemów NIE NALEŻY instalować tego
70pakietu, gdyż za reagowanie na zdarzenia ACPI są w nich odpowiedzialne
71inne programy (np. gnome-power-manager), więc ACPID by tylko
72przeszkadzał. W takich przypadkach demon ACPI powinien działać
73wyłącznie jako dyspozytor wiadomości.
11f5d39c
AM
74
75%prep
e5bcd3b5 76%setup -q
11f5d39c
AM
77
78%build
8e1353a0
ER
79%{__make} \
80 CC="%{__cc}" \
830eabe3 81 LDFLAGS="%{rpmcflags} %{rpmldflags}" \
82 OPT="%{rpmcppflags} %{rpmcflags} -Wno-error"
11f5d39c
AM
83
84%install
85rm -rf $RPM_BUILD_ROOT
feb72aac 86install -d $RPM_BUILD_ROOT{/etc/{logrotate.d,rc.d/init.d,sysconfig,init},/var/log} \
914b6166 87 $RPM_BUILD_ROOT{%{_sysconfdir}/acpi/{events,actions},%{systemdunitdir}}
3f3c20dc
ER
88
89%{__make} install \
90 DESTDIR=$RPM_BUILD_ROOT
ffb56f1a 91
ffb56f1a 92install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/acpid
feb72aac
ER
93cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/acpid
94cp -p %{SOURCE3} $RPM_BUILD_ROOT/etc/logrotate.d/acpid
95cp -p %{SOURCE8} $RPM_BUILD_ROOT/etc/init/acpid.conf
96cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/button
97cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/battery
ffb56f1a
ER
98install -p %{SOURCE6} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/button.sh
99install -p %{SOURCE7} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/battery.sh
914b6166
PG
100install %{SOURCE9} $RPM_BUILD_ROOT%{systemdunitdir}
101
3f9b4ca2 102> $RPM_BUILD_ROOT/var/log/acpid
3f3c20dc 103rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
11f5d39c 104
e5bcd3b5
JB
105%clean
106rm -rf $RPM_BUILD_ROOT
11f5d39c
AM
107
108%post
e5bcd3b5 109/sbin/chkconfig --add acpid
d26689d0 110%service acpid restart "ACPI daemon"
914b6166 111%systemd_post acpid.service
11f5d39c
AM
112
113%preun
11f5d39c 114if [ "$1" = "0" ]; then
d26689d0 115 %service acpid stop
11f5d39c
AM
116 /sbin/chkconfig --del acpid
117fi
914b6166
PG
118%systemd_preun acpid.service
119
120%postun
121%systemd_reload
e5bcd3b5 122
8cfce282
JR
123%triggerpostun -- %{name} < 2.0.10-6
124%systemd_trigger acpid.service
63950c22 125
e5bcd3b5
JB
126%files
127%defattr(644,root,root,755)
3f3c20dc 128%doc Changelog README TODO TESTPLAN
2c9e8004 129%attr(755,root,root) %{_sbindir}/acpid
ffb56f1a 130%attr(755,root,root) %{_bindir}/acpi_listen
e5bcd3b5
JB
131%dir %{_sysconfdir}/acpi
132%dir %{_sysconfdir}/acpi/events
133%dir %{_sysconfdir}/acpi/actions
893b1623 134%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/acpid
f9bd0618 135%attr(754,root,root) /etc/rc.d/init.d/acpid
893b1623 136%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/acpid
feb72aac 137%config(noreplace) %verify(not md5 mtime size) /etc/init/acpid.conf
7bddd2e1 138%{systemdunitdir}/acpid.service
3f9b4ca2 139%attr(640,root,root) %ghost /var/log/acpid
3c10aae9 140%{_mandir}/man8/acpid.8*
ffb56f1a 141%{_mandir}/man8/acpi_listen.8*
dd33996b
MM
142
143%files policy
144%defattr(644,root,root,755)
beca40f2
ER
145%config(noreplace,missingok) %verify(not md5 mtime size) %{_sysconfdir}/acpi/events/button
146%config(noreplace,missingok) %verify(not md5 mtime size) %{_sysconfdir}/acpi/events/battery
dd33996b 147%attr(754,root,root) %config(noreplace,missingok) %verify(not md5 mtime size) %{_sysconfdir}/acpi/actions/*.sh
This page took 0.060319 seconds and 4 git commands to generate.