]> git.pld-linux.org Git - packages/apcupsd.git/blobdiff - apcupsd.spec
- some fixes.
[packages/apcupsd.git] / apcupsd.spec
index 8e27aa31e61fd38dd1c679e862c1ce16e9c5de21..f93b1ed4a0963a7320276ff54dd6971d8d2db303 100644 (file)
-Summary:       APC UPS Daemon.
-Summary(pl):   APC UPS demon.
 Name:          apcupsd
 Version:       3.5.8
-Release:       1
-Copyright:     GPL
-Group:         Daemons
-Group(pl):     Demony  
+Release:       2
+License:       GPL v2
+Group:         System Environment/Daemons
 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
+Patch1:                apcups-makefile.patch
+Patch2:                apcupsd-Makefile-fix.patch
+Summary:       power management software for APC UPS hardware
+URL:           http://www.brisse.dk/site/apcupsd/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+#Icon:         apcupsd-logo.xpm
 
 %define        _prefix /
-%define        _mandir /usr/share/man
+%define _mandir        /usr/share/man
 
 %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
+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
-
 %prep
 %setup -q -n %{name}-%{version}.src
 %patch0 -p1
-%patch1 -p0
-%patch2 -p1
+%patch1 -p1
+%patch2 -p0
 
 %build
-make linux \
-       MANPREFIX=$RPM_BUILD_ROOT%{_mandir} \
-       CFLAGS="$RPM_OPT_FLAGS -I./include"
+mv Makefile Makefile.orig
+cat Makefile.orig \
+ | sed "s,^PREFIX    =,PREFIX    = ${RPM_BUILD_ROOT},"  \
+ | sed "s,^MANPREFIX = /usr,MANPREFIX = ${RPM_BUILD_ROOT}/usr," \
+ > Makefile
+make linux
 
 %install
+rm -rf ${RPM_BUILD_ROOT}
 
-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}
-
-install docs/apcupsd.man8 $RPM_BUILD_ROOT%{_mandir}/man8/apcupsd.8
+# Some issues :
+# - why doesn't the Makefile know that it should install *-linux ??
+# - make install tries to stop apcupsd. That's not necessary (buildroot) (hany: not issue anymore)
 
-install apcupsd ${RPM_BUILD_ROOT}/etc/rc.d/init.d/apcupsd
+#install -d ${RPM_BUILD_ROOT}/{sbin,bin,etc/rc.d/init.d,usr/man/man8,var/log}
+install -d ${RPM_BUILD_ROOT}/{bin,sbin,usr/share/man/man8}
+install -d ${RPM_BUILD_ROOT}/{etc/rc.d/init.d,var/log}
 
+NAME="-linux"  make MANPREFIX="${RPM_BUILD_ROOT}/usr/share/" install
+# hany: why this? we're just building. not installing
+#[ -x /sbin/powersc ] && /sbin/powersc RESTARTME
+gzip -9nf ${RPM_BUILD_ROOT}/usr/share/man/man8/*
+install installs/apcupsd.conf ${RPM_BUILD_ROOT}/etc
+install installs/apcups.rhs ${RPM_BUILD_ROOT}/etc/rc.d/init.d/apcups
 touch ${RPM_BUILD_ROOT}/var/log/apcupsd.log
 touch ${RPM_BUILD_ROOT}/etc/apcupsd.status
 
-gzip -9fn $RPM_BUILD_ROOT%{_mandir}/man8/*
-
 %clean
 rm -rf ${RPM_BUILD_ROOT}
 
 %post
-/sbin/chkconfig --add apcupsd
+/sbin/ldconfig
+/sbin/chkconfig --add apcups
+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.\
+if [ -f /etc/powerfail ]; then\
+  echo "APCUPSD to the Rescue!"\
+  echo\
+  /sbin/powersc KILL\
+  echo\
+  sleep 120\
+  exit 1\
+fi\
+' /etc/rc.d/init.d/halt.rpmorig > /etc/rc.d/init.d/halt
+
+fi
+echo Check the documentation to see whether /etc/rc.d/init.d/halt has a
+echo correct invocation of /sbin/powersc .
 
 %preun
-/sbin/chkconfig --del apcupsd
+chkconfig --del apcups
 
 %files
-%defattr(644, root, root,755)
+%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
+%doc %{name}-%{version}.src.lsm
+%doc readmes/*
+%doc docs/apcupsd.docs
+%doc installs/halt.rhs installs/apcups.rhs installs/powersc
+%attr(644,root,root) /usr/share/man/man8/apcupsd.8.gz
+%attr(755, root, bin)  /sbin/apcupsd
+%attr(755, root, root) /bin/apcaccess
+%attr(755, root, bin)  %config /sbin/powersc
+%attr(640, root, root) %config(noreplace) /etc/apcupsd.conf
+%attr(754, root, root) /etc/rc.d/init.d/apcups
 %ghost /var/log/apcupsd.log
 %ghost /etc/apcupsd.status
This page took 0.045075 seconds and 4 git commands to generate.