summaryrefslogtreecommitdiff
path: root/community/uptimed
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-05-14 01:18:40 -0700
committerroot <root@rshg054.dnsready.net>2013-05-14 01:18:40 -0700
commit2e5b72e5e8dfb5199a9b0da7c76d052a456662c2 (patch)
treefa055d4e2f367acb518de6c4e06b77b6d8cbef75 /community/uptimed
parent66cb4a487ad73063c6b000279a5d5558fb7603f5 (diff)
Tue May 14 01:18:40 PDT 2013
Diffstat (limited to 'community/uptimed')
-rw-r--r--community/uptimed/PKGBUILD14
-rw-r--r--community/uptimed/rc.d39
2 files changed, 6 insertions, 47 deletions
diff --git a/community/uptimed/PKGBUILD b/community/uptimed/PKGBUILD
index 12ae4bb73..b1a758000 100644
--- a/community/uptimed/PKGBUILD
+++ b/community/uptimed/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 72798 2012-06-22 12:52:28Z dreisner $
+# $Id: PKGBUILD 90733 2013-05-13 14:40:26Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Tom Killian <tomk@runbox.com>
@@ -6,7 +6,7 @@
pkgname=uptimed
pkgver=0.3.17
-pkgrel=2
+pkgrel=3
pkgdesc="A system uptime record daemon"
arch=(i686 x86_64)
url="http://podgorny.cz/uptimed/"
@@ -16,20 +16,19 @@ backup=(etc/uptimed.conf)
options=('!libtool')
install=$pkgname.install
source=(http://podgorny.cz/$pkgname/releases/$pkgname-$pkgver.tar.bz2
- rc.d
service)
md5sums=('528b62c33454b33537c3bf2366977bdb'
- '4ae90bee9fc78014a889a5072effb735'
'657102b06613ddb9811427bee1973c6b')
build() {
cd $srcdir/$pkgname-$pkgver
-
+
# Change log path to Arch standard
for M in `ls M*`; do
- sed -i "s|/var/spool/uptimed|$pkgdir/var/log/uptimed|" $M
+ sed -i "s|/var/spool/uptimed|/var/log/uptimed|" $M
done
sed -i 's|spool|log|' libuptimed/urec.h
+ sed -i 's|AM_CONFIG_HEADER|AC_CONFIG_HEADER|g' configure.ac
autoreconf
libtoolize --force
@@ -40,9 +39,8 @@ build() {
package() {
cd $srcdir/$pkgname-$pkgver
- make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install
+ make install DESTDIR=$pkgdir
mv $pkgdir/etc/uptimed.conf-dist $pkgdir/etc/uptimed.conf
- install -Dm755 $srcdir/rc.d $pkgdir/etc/rc.d/uptimed
install -Dm644 $srcdir/service $pkgdir/usr/lib/systemd/system/uptimed.service
}
diff --git a/community/uptimed/rc.d b/community/uptimed/rc.d
deleted file mode 100644
index 6fe9ec3e3..000000000
--- a/community/uptimed/rc.d
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PID=`pidof -o %PPID /usr/sbin/uptimed`
-case "$1" in
- start)
- stat_busy "Starting Uptimed Daemon"
- [ -z "$PID" ] && /usr/sbin/uptimed -b # create the boot record
- if [ $? -gt 0 ] ; then
- stat_fail
- else
- add_daemon uptimed # create the 'state' dir
- /usr/sbin/uptimed # fire up the daemon
- if [ $? -gt 0 ]; then
- stat_fail
- fi
- stat_done
- fi
- ;;
- stop)
- stat_busy "Stopping Uptimed Daemon"
- [ "$PID" ] && kill $PID &> /dev/null
- if [ $? -gt 0 ]; then
- stat_fail
- else
- rm_daemon uptimed # remove the 'state' dir
- stat_done
- fi
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0