From e71669a53443f7c57e6f6e2feb5c2b3a1b19b491 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 21 Aug 2009 14:21:34 +0000 Subject: unstable/apcupsd: moved from testing. it does not build currently --- unstable/apcupsd/APKBUILD | 26 ++++++++++++++++++++++++++ unstable/apcupsd/apcupsd.initd | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 unstable/apcupsd/APKBUILD create mode 100644 unstable/apcupsd/apcupsd.initd (limited to 'unstable') diff --git a/unstable/apcupsd/APKBUILD b/unstable/apcupsd/APKBUILD new file mode 100644 index 000000000..e0fdfdd7e --- /dev/null +++ b/unstable/apcupsd/APKBUILD @@ -0,0 +1,26 @@ +pkgname=apcupsd +pkgver=3.14.6 +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 + " + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./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="7df2dbe325a6b1822763cbf6a9fa8263 apcupsd-3.14.6.tar.gz +d276b567fd8dfb9e2a74e533b25de031 apcupsd.initd" diff --git a/unstable/apcupsd/apcupsd.initd b/unstable/apcupsd/apcupsd.initd new file mode 100644 index 000000000..43868f75d --- /dev/null +++ b/unstable/apcupsd/apcupsd.initd @@ -0,0 +1,37 @@ +#!/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 +} + +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 $? +} + -- cgit v1.2.3