summaryrefslogtreecommitdiff
path: root/community/uptimed
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-21 14:44:37 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-21 14:44:37 -0300
commit9d6dd0a34cb8bd599c4d06c54dbd247ede60267f (patch)
treecc7662c9e2eda6f7e3b3b0fb3b7c094e4fa54d0b /community/uptimed
parentfe0996f2e8716b772785a0bf93c6a3f2d5dc22ff (diff)
parent70b4878648fd376433739bd5c835503f6301a5b2 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/avifile/PKGBUILD community/blackbox/PKGBUILD community/blobby2/PKGBUILD community/chmsee/PKGBUILD community/extrema/PKGBUILD community/floyd/PKGBUILD community/gnash/PKGBUILD community/gq/PKGBUILD community/gsql/PKGBUILD community/haddock/PKGBUILD community/hashcash/PKGBUILD community/kvpnc/PKGBUILD community/uptimed/PKGBUILD community/wol/PKGBUILD core/jfsutils/PKGBUILD core/reiserfsprogs/PKGBUILD extra/gtk2/PKGBUILD extra/libcroco/PKGBUILD extra/libffado/PKGBUILD extra/librsvg/PKGBUILD extra/lua/PKGBUILD extra/mesa/PKGBUILD extra/valgrind/PKGBUILD extra/xorg-server/PKGBUILD libre/audacious-plugins-libre/PKGBUILD libre/texlive-bin-libre/PKGBUILD multilib/lib32-gtk2/PKGBUILD multilib/lib32-mesa/PKGBUILD multilib/wine/PKGBUILD multilib/wine_gecko/PKGBUILD
Diffstat (limited to 'community/uptimed')
-rw-r--r--community/uptimed/PKGBUILD28
1 files changed, 15 insertions, 13 deletions
diff --git a/community/uptimed/PKGBUILD b/community/uptimed/PKGBUILD
index 87ec6b821..44bd457cd 100644
--- a/community/uptimed/PKGBUILD
+++ b/community/uptimed/PKGBUILD
@@ -1,6 +1,6 @@
-# $Id: PKGBUILD 17435 2010-05-24 10:30:22Z spupykin $
+# $Id: PKGBUILD 58644 2011-11-16 23:03:01Z andrea $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer: Tom Killian <tomk@runbox.com>
+# Contributor: Tom Killian <tomk@runbox.com>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=uptimed
@@ -8,22 +8,23 @@ pkgver=0.3.16
pkgrel=3
pkgdesc="A system uptime record daemon"
arch=(i686 x86_64 'mips64el')
-install=$pkgname.install
url="http://podgorny.cz/uptimed/"
license=('GPL')
-depends=('glibc')
+depends=('glibc' 'bash')
backup=(etc/uptimed.conf)
+options=('!libtool')
+install=$pkgname.install
source=(http://podgorny.cz/$pkgname/releases/$pkgname-$pkgver.tar.bz2
- uptimed)
+ uptimed)
md5sums=('f87ec2cc39039239004afa542cf99c59'
'4ae90bee9fc78014a889a5072effb735')
build() {
- cd $startdir/src/$pkgname-$pkgver
+ cd $srcdir/$pkgname-$pkgver
# Change log path to Arch standard
for M in `ls M*`; do
- sed -i "s|/var/spool/uptimed|$startdir/pkg/var/log/uptimed|" $M
+ sed -i "s|/var/spool/uptimed|$pkgdir/var/log/uptimed|" $M
done
sed -i 's|spool|log|' libuptimed/urec.h
@@ -31,12 +32,13 @@ build() {
libtoolize --force
./configure --prefix=/usr --sysconfdir=/etc
+ make
+}
- make || return 1
- make prefix=$startdir/pkg/usr sysconfdir=$startdir/pkg/etc install
+package() {
+ cd $srcdir/$pkgname-$pkgver
+ make prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install
- mv $startdir/pkg/etc/uptimed.conf-dist \
- $startdir/pkg/etc/uptimed.conf
- install -D ../uptimed $startdir/pkg/etc/rc.d/uptimed
- find $startdir/pkg -name '*.la' -exec rm {} \;
+ mv $pkgdir/etc/uptimed.conf-dist $pkgdir/etc/uptimed.conf
+ install -D $srcdir/uptimed $pkgdir/etc/rc.d/uptimed
}