diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-26 09:46:40 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-10-26 09:46:40 +0000 |
commit | b135457ff0ba0eda52c9808f767a2a30013cc9ac (patch) | |
tree | 7a0eedc9b318548ba10777091a2270f6528a25cd /unstable | |
parent | 21bc3ff0b7a620a08f55f2da39c2cf6772c2f4b7 (diff) | |
download | aports-b135457ff0ba0eda52c9808f767a2a30013cc9ac.tar.bz2 aports-b135457ff0ba0eda52c9808f767a2a30013cc9ac.tar.xz |
testing/apcupsd: moved from unstable
it builds
Diffstat (limited to 'unstable')
-rw-r--r-- | unstable/apcupsd/APKBUILD | 30 | ||||
-rw-r--r-- | unstable/apcupsd/apcupsd-alpine.patch | 41 | ||||
-rw-r--r-- | unstable/apcupsd/apcupsd.initd | 38 |
3 files changed, 0 insertions, 109 deletions
diff --git a/unstable/apcupsd/APKBUILD b/unstable/apcupsd/APKBUILD deleted file mode 100644 index 4adc8c0966..0000000000 --- a/unstable/apcupsd/APKBUILD +++ /dev/null @@ -1,30 +0,0 @@ -pkgname=apcupsd -pkgver=3.14.7 -pkgrel=0 -pkgdesc="A Daemon to control APC UPSes" -subpackages="$pkgname-doc" -url="http://www.apcupsd.org" -license="GPL-2" -depends="util-linux-ng" -makedepends= -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - apcupsd.initd - apcupsd-alpine.patch - " - -build() { - cd "$srcdir/$pkgname-$pkgver" - patch -p1 < ../apcupsd-alpine.patch || return 1 - - ac_cv_path_SHUTDOWN="/sbin/poweroff" \ - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --enable-usb - make || return 1 - make DESTDIR=$pkgdir install - install -D -m755 "$srcdir"/apcupsd.initd "$pkgdir"/etc/init.d/apcupsd -} - -md5sums="bb2f8e4fc6b2f5d7b3e236eb57b81640 apcupsd-3.14.7.tar.gz -0798cd407de6f199d4c267036ec54c5b apcupsd.initd -08d9cc703cdd4275d342882deed1d719 apcupsd-alpine.patch" diff --git a/unstable/apcupsd/apcupsd-alpine.patch b/unstable/apcupsd/apcupsd-alpine.patch deleted file mode 100644 index 3f5c6965b7..0000000000 --- a/unstable/apcupsd/apcupsd-alpine.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- a/platforms/apccontrol.in Mon Oct 26 09:12:30 2009 -+++ b/platforms/apccontrol.in Mon Oct 26 09:36:47 2009 -@@ -20,11 +20,20 @@ - - APCPID=@PIDDIR@/apcupsd.pid - APCUPSD=@sbindir@/apcupsd --SHUTDOWN=@SHUTDOWN@ -+POWEROFF=/sbin/poweroff -+REBOOT=/sbin/reboot - SCRIPTSHELL=@SCRIPTSHELL@ - SCRIPTDIR=@sysconfdir@ --WALL=wall -+WALL=_wall - -+_wall() { -+ local i -+ local msg=$(cat) -+ for i in /dev/pts/*; do -+ [ -c "$i" ] && echo "$msg" > $i -+ done -+} -+ - # - # Concatenate all output from this script to the events file - # Note, the following kills the script in a power fail situation -@@ -100,11 +109,13 @@ - ;; - doreboot) - echo "UPS ${2} initiating Reboot Sequence" | ${WALL} -- ${SHUTDOWN} -r now "apcupsd UPS ${2} initiated reboot" -+ echo "apcupsd UPS ${2} initiated reboot" | ${WALL} -+ $REBOOT - ;; - doshutdown) - echo "UPS ${2} initiated Shutdown Sequence" | ${WALL} -- ${SHUTDOWN} -h now "apcupsd UPS ${2} initiated shutdown" -+ echo "apcupsd UPS ${2} initiated shutdown" | ${WALL} -+ $POWEROFF - ;; - annoyme) - echo "Power problems with UPS ${2}. Please logoff." | ${WALL} diff --git a/unstable/apcupsd/apcupsd.initd b/unstable/apcupsd/apcupsd.initd deleted file mode 100644 index 5265347f41..0000000000 --- a/unstable/apcupsd/apcupsd.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/files/apcupsd.init.2,v 1.1 2009/01/15 15:21:11 flameeyes Exp $ - -INSTANCE="${SVCNAME#*.}" -if [ -z "${INSTANCE}" ] || [ "${SVCNAME}" = "apcupsd" ]; then - INSTANCE="apcupsd" -fi - -depend() { - use net - after firewall -} - -start() { - rm -f /etc/apcupsd/powerfail - - export SERVICE="${SVCNAME}" - - ebegin "Starting APC UPS daemon" - start-stop-daemon \ - --start --pidfile "/var/run/${SVCNAME}.pid" \ - --exec /sbin/apcupsd -- \ - -f "/etc/apcupsd/${INSTANCE}.conf" \ - -P "/var/run/${SVCNAME}.pid" - eend $? -} - -stop() { - ebegin "Stopping APC UPS daemon" - start-stop-daemon \ - --stop --pidfile "/var/run/${SVCNAME}.pid" \ - --retry TERM/5/TERM/5 \ - --exec /sbin/apcupsd - eend $? -} - |