cvsdist 362041
Summary: ACPI Event Daemon
cvsdist 362041
Name: acpid
Bill Nottingham 404e8d
Version: 1.0.4
Zdenek Prikryl ac2e04
Release: 9%{?dist}
cvsdist 214c23
License: GPL
cvsdist 362041
Group: System Environment/Daemons
cvsdist b5f579
Source: http://prdownloads.sourceforge.net/acpid/acpid-%{version}.tar.gz
cvsdist 214c23
Source1: acpid.logrotate
cvsdist 362041
Source2: acpid.init
Phil Knirsch 107c11
Source3: acpid.video.conf
Phil Knirsch efb245
Source4: acpid.power.conf
Zdenek Prikryl ac2e04
Source5: acpid.power.sh
Phil Knirsch 204db7
Patch1: acpid-1.0.3-makefile.patch
Phil Knirsch 204db7
Patch2: acpid-1.0.4-warning.patch
Phil Knirsch 204db7
Patch3: acpid-1.0.4-pie.patch
Zdenek Prikryl 523421
Patch4: acpid-1.0.4-fd.patch
Phil Knirsch 1bedf4
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
cvsdist 15e91f
ExclusiveArch: ia64 x86_64 %{ix86}
cvsdist b5f579
URL: http://acpid.sourceforge.net/
Phil Knirsch 1bedf4
Requires(post): /sbin/chkconfig
Phil Knirsch 1bedf4
Requires(preun): /sbin/chkconfig
Phil Knirsch 1bedf4
Requires(preun): /sbin/service
cvsdist 362041
cvsdist 362041
cvsdist 362041
%description
cvsdist 362041
acpid is a daemon that dispatches ACPI events to user-space programs.
cvsdist 362041
cvsdist 362041
cvsdist 362041
%prep
Phil Knirsch 1bedf4
%setup -q
Phil Knirsch 204db7
%patch1 -p1 -b .makefile
Phil Knirsch 204db7
%patch2 -p1 -b .warning
Phil Knirsch 204db7
%patch3 -p1 -b .pie
Zdenek Prikryl 523421
%patch4 -p1 -b .fd
cvsdist 362041
cvsdist 362041
%build
Phil Knirsch 1bedf4
make %{?_smp_mflags}
cvsdist 362041
cvsdist 362041
cvsdist 362041
%install
cvsdist 362041
rm -rf $RPM_BUILD_ROOT
cvsdist 362041
mkdir -p $RPM_BUILD_ROOT
cvsdist 362041
make install INSTPREFIX=$RPM_BUILD_ROOT
cvsdist 362041
Phil Knirsch 1bedf4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
Phil Knirsch 1bedf4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions
Phil Knirsch 1bedf4
chmod 755 $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events
Phil Knirsch 1bedf4
install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/video.conf
Phil Knirsch 1bedf4
install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/events/power.conf
Zdenek Prikryl ac2e04
install -m 755 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/acpi/actions/power.sh
cvsdist 362041
Phil Knirsch 1bedf4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d
Phil Knirsch 1bedf4
install -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/acpid
cvsdist 214c23
Phil Knirsch 1bedf4
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
Phil Knirsch 1bedf4
install -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/acpid
cvsdist 362041
cvsdist 362041
cvsdist b5f579
%clean
cvsdist b5f579
rm -rf $RPM_BUILD_ROOT
cvsdist b5f579
cvsdist b5f579
cvsdist 362041
%files
cvsdist 362041
%defattr(-,root,root)
Phil Knirsch 1bedf4
%doc COPYING README Changelog TODO
Phil Knirsch 1bedf4
%dir %{_sysconfdir}/acpi
Phil Knirsch 1bedf4
%dir %{_sysconfdir}/acpi/events
Phil Knirsch 1bedf4
%dir %{_sysconfdir}/acpi/actions
Phil Knirsch 1bedf4
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/acpi/events/video.conf
Phil Knirsch 1bedf4
%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/acpi/events/power.conf
Zdenek Prikryl ac2e04
%config(noreplace) %attr(0755,root,root) %{_sysconfdir}/acpi/actions/power.sh
Phil Knirsch 1bedf4
%config(noreplace) %{_sysconfdir}/logrotate.d/acpid
Phil Knirsch 1bedf4
%{_bindir}/acpi_listen
Phil Knirsch 1bedf4
%{_sbindir}/acpid
Phil Knirsch 1bedf4
%attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/acpid
Phil Knirsch 1bedf4
%{_mandir}/man8/acpid.8.gz
Phil Knirsch 1bedf4
%{_mandir}/man8/acpi_listen.8.gz
cvsdist 362041
cvsdist 362041
cvsdist 362041
%post
cvsdist 362041
/sbin/chkconfig --add acpid
cvsdist 362041
cvsdist 362041
%preun
cvsdist 362041
if [ "$1" = "0" ]; then
cvsdist 214c23
	/sbin/service acpid stop >/dev/null 2>&1
cvsdist 362041
	/sbin/chkconfig --del acpid
cvsdist 362041
fi
cvsdist 362041
cvsdist 214c23
%postun
cvsdist 214c23
if [ "$1" -ge "1" ]; then
cvsdist 214c23
	/sbin/service acpid condrestart >/dev/null 2>&1
cvsdist 214c23
fi
cvsdist 214c23
cvsdist 362041
%changelog
Zdenek Prikryl ac2e04
* Wed Jan 23 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.4-9.fc7
Zdenek Prikryl ac2e04
- Fixed managing of power button (#361501)
Zdenek Prikryl ac2e04
- Fixed power script to check for KDE power manager (#419331)
Zdenek Prikryl ac2e04
Zdenek Prikryl 523421
* Wed Sep 26 2007 Zdenek Prikryl <zprikryl@redhat.com> - 1.0.4-8.fc7
Zdenek Prikryl 523421
- Fixed leak of a file descriptor (#304761)
Zdenek Prikryl 523421
Phil Knirsch 6db586
* Wed Feb 14 2007 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-7.fc7
Phil Knirsch 6db586
- Dropped /var/log/acpid ownership as per review (225237)
Phil Knirsch 6db586
Phil Knirsch 1bedf4
* Wed Feb 07 2007 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-6.fc7
Phil Knirsch 1bedf4
- Tons of specfile changes due to review (#225237)
Phil Knirsch 1bedf4
Phil Knirsch 204db7
* Tue Oct 10 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-5
Phil Knirsch 204db7
- Made acpid a PIE binary (#210016)
Phil Knirsch 204db7
Phil Knirsch efb245
* Thu Aug 24 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-4
Phil Knirsch efb245
- Made a better fix for the powerdown button which checks if g-p-m is running
Phil Knirsch 4d6c1c
- Don't install sample.conf anymore, not needed
Phil Knirsch efb245
Phil Knirsch 9e8331
* Thu Aug 10 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-3
Phil Knirsch 9e8331
- Disable the automatic shutdown -h via powerdown button by default due to
Phil Knirsch 9e8331
  conflicts with gnome-power-manager
Phil Knirsch 9e8331
Jesse Keating e5fadf
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-2.1
Jesse Keating e5fadf
- rebuild
Jesse Keating e5fadf
Phil Knirsch 107c11
* Wed Mar 01 2006 Phil Knirsch <pknirsch@redhat.com> - 1.0.4-2
Phil Knirsch 107c11
- Added video.conf file to turn on DPMS when opening the laptop lid. Disabled
Phil Knirsch 107c11
  by default.
Phil Knirsch 107c11
Jesse Keating f04719
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.0.4-1.2
Jesse Keating f04719
- rebuilt for new gcc4.1 snapshot and glibc changes
Jesse Keating f04719
Jesse Keating ee93ec
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
Jesse Keating ee93ec
- rebuilt
Jesse Keating ee93ec
Bill Nottingham 404e8d
* Wed Mar 16 2005 Bill Nottingham <notting@redhat.com> - 1.0.4-1
Bill Nottingham 404e8d
- update to 1.0.4
Bill Nottingham 404e8d
cvsdist 214c23
* Mon Aug  9 2004 Miloslav Trmac <mitr@redhat.com> - 1.0.3-2
cvsdist 214c23
- Update to 1.0.3 (fixes #128834)
cvsdist 214c23
- s/Copyright/License/
cvsdist 214c23
- Add logrotate config file (#110677, from Michal Jaegermann)
cvsdist 214c23
- Don't verify contents of /var/log/acpid (#125862)
cvsdist 214c23
- Use $RPM_OPT_FLAGS
cvsdist 214c23
- Fix and cleanup acpid-1.0.1-pm1.patch
cvsdist 214c23
- Add condrestart to %%postun
cvsdist 214c23
cvsdist 15e91f
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 15e91f
- rebuilt
cvsdist 15e91f
cvsdist a8b516
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist a8b516
- rebuilt
cvsdist a8b516
cvsdist b5f579
* Wed Oct 22 2003  Bill Nottingham <notting@redhat.com> 1.0.2-5
cvsdist b5f579
- fix handling of sample.conf (#107160)
cvsdist b5f579
- mark for translations (#107459)
cvsdist b5f579
cvsdist b5f579
* Sun Oct 19 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist b5f579
- add %%clean specfile target
cvsdist b5f579
cvsdist b5f579
* Wed Oct  1 2003  Bill Nottingham <notting@redhat.com> 1.0.2-3
cvsdist b5f579
- re-enable x86
cvsdist b5f579
- don't load the button module
cvsdist b5f579
cvsdist b5f579
* Thu Aug  7 2003  Bill Nottingham <notting@redhat.com> 1.0.2-2
cvsdist b5f579
- no x86 for now
cvsdist b5f579
cvsdist b5f579
* Mon Jul  7 2003  Bill Nottingham <notting@redhat.com> 1.0.2-1
cvsdist b5f579
- update to 1.0.2
cvsdist b5f579
cvsdist 362041
* Wed Dec 11 2002  Bill Nottingham <notting@redhat.com> 1.0.1-4
cvsdist 362041
- don't start if /proc/acpi/event isn't there
cvsdist 362041
cvsdist 362041
* Thu Nov 14 2002  Bill Nottingham <notting@redhat.com> 1.0.1-3
cvsdist 362041
- build on more arches
cvsdist 362041
cvsdist 362041
* Mon Aug 26 2002  Bill Nottingham <notting@redhat.com> 1.0.1-2
cvsdist 362041
- tweak default config to run shutdown -h now on a power button event
cvsdist 362041
cvsdist 362041
* Thu Aug 22 2002  Bill Nottingham <notting@redhat.com> 1.0.1-1
cvsdist 362041
- initial build, bang on included specfile
cvsdist 362041
cvsdist 362041
* Fri Mar 15 2002  Tim Hockin <thockin@sun.com>
cvsdist 362041
  - Updated RPM spec with patch from sun for chkconfig on/off
cvsdist 362041
  - Add Changelog, make 'make rpm' use it.
cvsdist 362041
cvsdist 362041
* Wed Mar 13 2002  Tim Hockin <thockin@sun.com>
cvsdist 362041
  - Fixed logging bug - not appending to log (O_APPEND needed)
cvsdist 362041
  - Fix 'make install' to not need root access
cvsdist 362041
  - Fix RPM spec to not need root
cvsdist 362041
cvsdist 362041
* Thu Sep 6 2001 Tim Hockin <thockin@sun.com>
cvsdist 362041
  - 1.0.0
cvsdist 362041
cvsdist 362041
* Thu Aug 16 2001  Tim Hockin <thockin@sun.com>
cvsdist 362041
  - Added commandline options to actions
cvsdist 362041
cvsdist 362041
* Wed Aug 15 2001  Tim Hockin <thockin@sun.com>
cvsdist 362041
  - Added UNIX domain socket support
cvsdist 362041
  - Changed /etc/acpid.d to /etc/acpid/events
cvsdist 362041
cvsdist 362041
* Mon Aug 13 2001  Tim Hockin <thockin@sun.com>
cvsdist 362041
  - added changelog
cvsdist 362041
  - 0.99.1-1
cvsdist 362041