]> git.pld-linux.org Git - packages/apcupsd.git/blobdiff - apcupsd.spec
- 3.8.1 is no longer available and vulnerable to remote root exploit,
[packages/apcupsd.git] / apcupsd.spec
index 4ab74403f252a724e5ff0d580220d5365c4758ea..83d7b066b0f2693f00683515f0fbdaf265221c40 100644 (file)
-Summary:       APC UPS Daemon.
-Summary(pl):   APC UPS demon.
+# TODO:
+# - update paths and pld patches
+# - avoid messing in halt script in %post
+Summary:       Power management software for APC UPS hardware
+Summary(pl):   Oprogramowanie do zarz±dzania energi± dla UPS-ów APC
 Name:          apcupsd
-Version:       3.5.8
-Release:       1
-Copyright:     GPL
-Group:         Daemons
-Group(pl):     Demony  
-Source:                http://www.brisse.dk/site/apcupsd/download/%{name}-%{version}.src.tar.gz
-Patch0:                apcups-initscript.patch
-Patch1:                apcups-Makefile.fix
-Patch2:                apcups-inetd.patch
-BuildRoot:     /tmp/%{name}-root
-
-%define        _prefix /
-%define        _mandir /usr/share/man
+Version:       3.10.5
+Release:       0.1
+License:       GPL v2
+Group:         Networking/Daemons
+Source0:       http://dl.sourceforge.net/apcupsd/%{name}-%{version}.tar.gz
+Patch0:                %{name}-paths.patch
+Patch1:                %{name}-pld.patch
+#Patch1:       apcups-makefile.patch
+#Patch2:       %{name}-Makefile-fix.patch
+URL:           http://www.apcupsd.com/
+Requires(post,preun):  /sbin/chkconfig
+Requires(post):        fileutils
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define                _sysconfdir     /etc/apcupsd
 
 %description
-UPS power management under Linux for APCC Products.
-It allows your computer/server to run during power problems
-for a specified length of time or the life of the batteries
-in your BackUPS, BackUPS Pro, SmartUPS v/s, or SmartUPS, and
-then properly executes a controlled shutdown during an
-extended power failure.
+UPS power management under Linux for APCC Products. It allows your
+computer/server to run during power problems for a specified length of
+time or the life of the batteries in your BackUPS, BackUPS Pro,
+SmartUPS v/s, or SmartUPS, and then properly executes a controlled
+shutdown during an extended power failure.
 
 %description -l pl
+Oprogramowanie do zarz±dzania energi± dla UPS-ów APC. Pozwala
+komputerowi dzia³aæ po awarii zasilania przez okre¶lony czas lub czas
+¿ycia akumulatorów w BackUPS, BackUPS Pro, SmartUPS v/s, SmartUPS oraz
+odpowiednio uruchamia kontrolowany shutdown przy d³u¿szej awarii
+zasilania.
 
 %prep
-%setup -q -n %{name}-%{version}.src
-%patch0 -p1
-%patch1 -p0
-%patch2 -p1
+%setup -q
+#%patch0 -p1   -- configure should be patched to move files from /var/log to /var/lib
+#%patch1 -p1   -- probably should be updated
+#%patch2 -p0
 
 %build
-make MANPREFIX=$RPM_BUILD_ROOT%{_mandir} linux
+%configure2_13
+%{__make}
 
 %install
+rm -rf $RPM_BUILD_ROOT
+#install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d,/var/log,/var/lib/apcupsd}
 
-install -d $RPM_BUILD_ROOT{%{_sysconfdir}/rc.d/init.d,%{_bindir},%{_sbindir},%{_mandir}/man8,/var/log}
-
-install installs/apcupsd.conf $RPM_BUILD_ROOT%{_sysconfdir}
-
-install -s apcupsd-linux $RPM_BUILD_ROOT%{_sbindir}/apcupsd
-install -s apcaccess-linux $RPM_BUILD_ROOT%{_bindir}/apcaccess
-
-install installs/powersc $RPM_BUILD_ROOT%{_sbindir}
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
 
-install docs/apcupsd.man8 $RPM_BUILD_ROOT%{_mandir}/man8/apcupsd.8
+install platforms/redhat/apcupsd $RPM_BUILD_ROOT/etc/rc.d/init.d/apcupsd
+#install platforms/pld/apcupsd  $RPM_BUILD_ROOT/etc/rc.d/init.d/apcupsd
 
-install apcupsd ${RPM_BUILD_ROOT}/etc/rc.d/init.d/apcupsd
-
-touch ${RPM_BUILD_ROOT}/var/log/apcupsd.log
-touch ${RPM_BUILD_ROOT}/etc/apcupsd.status
-
-gzip -9fn $RPM_BUILD_ROOT%{_mandir}/man8/*
+touch $RPM_BUILD_ROOT/var/log/apcupsd.log
+touch $RPM_BUILD_ROOT/var/lib/apcupsd/apcupsd.status
+touch $RPM_BUILD_ROOT/var/lib/apcupsd/apcupsd.events
 
 %clean
-rm -rf ${RPM_BUILD_ROOT}
+rm -rf $RPM_BUILD_ROOT
 
 %post
 /sbin/chkconfig --add apcupsd
 
+#if !(grep /sbin/powersc /etc/rc.d/init.d/halt > /dev/null); then
+cp -f /etc/rc.d/init.d/halt /etc/rc.d/init.d/halt.rpmorig
+#sed -e '/# Now halt or reboot./i\' \
+#     -e '\
+# See if this is a powerfail situation.\
+
+echo '
+if [ -f /etc/apcupsd/powerfail ]; then\
+  echo "APCUPSD to the Rescue!"\
+  echo\
+  /etc/apcupsd/apccontrol killpower \
+  echo\
+  sleep 120\
+  exit 1\
+fi\
+' >  /etc/rc.d/init.d/halt
+#' /etc/rc.d/init.d/halt.rpmorig > /etc/rc.d/init.d/halt
+#fi
+chmod 754 /etc/rc.d/init.d/halt
+
 %preun
-/sbin/chkconfig --del apcupsd
+if [ "$1" = "0" ]; then
+       /sbin/chkconfig --del apcupsd
+fi
 
 %files
-%defattr(644, root, root,755)
-%doc README.NEW Changelog port.gif Statement.APCC
-%attr(644, root, root) %{_mandir}/man8/apcupsd.8.gz
-%attr(755, root, bin)  %{_sbindir}/apcupsd
-%attr(755, root, root) %{_bindir}/apcaccess
-%attr(755, root, bin)  %config %{_sbindir}/powersc
-%config(noreplace) /etc/apcupsd.conf
-%config /etc/rc.d/init.d/apcupsd
+%defattr(644,root,root,755)
+%doc ChangeLog Developers doc/{README.apcaccess,developers_manual,home-page,logo,manual}
+%{_mandir}/man8/apcupsd.*
+%attr(755,root,root) %{_sbindir}/*
+#%attr(755,root,root) %config /sbin/powersc
+%attr(640,root,root) %config(noreplace) %{_sysconfdir}/apcupsd.conf
+%attr(754,root,root) /etc/rc.d/init.d/apcupsd
 %ghost /var/log/apcupsd.log
-%ghost /etc/apcupsd.status
-
-%changelog
-* Wed Oct 13 1999 Wojciech "sas" Ciêciwa <cieciwa@alpha.zarz.agh.edu.pl>
-- build rpm.
+%ghost /var/lib/apcupsd/apcupsd.status
+%ghost /var/lib/apcupsd/apcupsd.events
This page took 0.055209 seconds and 4 git commands to generate.