summaryrefslogtreecommitdiff
path: root/community/oidentd/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-19 20:37:04 -0300
commita379247a5f187c1608664530e9ff85663eff3201 (patch)
tree3a49e87e7419c4aca35d1f4f2e591d12c3821c78 /community/oidentd/PKGBUILD
parent1bf114d00280c9cfb2075d30830fdf86adb30951 (diff)
parent81ee1980feda43043eaebae2c596ae116a21f6e5 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/cuetools/PKGBUILD community/ekg2/PKGBUILD community/libcss/PKGBUILD community/libwapcaplet/PKGBUILD community/lxrandr/PKGBUILD community/menu-cache/PKGBUILD community/mumble/PKGBUILD community/ngircd/PKGBUILD community/oidentd/PKGBUILD community/openbox/PKGBUILD community/preload/PKGBUILD community/xdg-user-dirs/PKGBUILD extra/gdome2/PKGBUILD extra/libdiscid/PKGBUILD extra/pymad/PKGBUILD extra/qhull/PKGBUILD extra/speech-dispatcher/PKGBUILD multilib/lib32-gmp/PKGBUILD testing/xorg-server/PKGBUILD
Diffstat (limited to 'community/oidentd/PKGBUILD')
-rw-r--r--community/oidentd/PKGBUILD22
1 files changed, 11 insertions, 11 deletions
diff --git a/community/oidentd/PKGBUILD b/community/oidentd/PKGBUILD
index 8cbc50307..b40ed4ea7 100644
--- a/community/oidentd/PKGBUILD
+++ b/community/oidentd/PKGBUILD
@@ -1,33 +1,33 @@
-# $Id: PKGBUILD 24924 2010-08-29 18:14:02Z mherych $
+# $Id: PKGBUILD 64895 2012-02-18 19:49:45Z bpiotrowski $
# Maintainer: simo <simo@archlinux.org>
# Maintainer: Mateusz Herych <heniekk@gmail.com>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=oidentd
pkgver=2.0.8
-pkgrel=4
-pkgdesc="oidentd is an ident (rfc1413 compliant) daemon that runs on Linux"
+pkgrel=5
+pkgdesc="An ident (rfc1413 compliant) daemon that runs on Linux"
arch=('i686' 'x86_64' 'mips64el')
url="http://dev.ojnk.net/"
license=('GPL')
-depends=('glibc')
+depends=('glibc' 'bash')
source=(http://downloads.sourceforge.net/sourceforge/ojnk/oidentd-$pkgver.tar.gz
- oidentd.rc
- oidentd.default)
+ oidentd.rc
+ oidentd.default)
md5sums=('c3d9a56255819ef8904b867284386911'
'93cbf742cdd0b053f67482273d715f25'
'603307525771724b0f55a2c34fbc3f3e')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
- make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install
}
package() {
- cd $srcdir/$pkgname-$pkgver
- install -D -m 755 $srcdir/$pkgname.rc $pkgdir/etc/rc.d/oidentd
- install -D -m 644 $srcdir/$pkgname.default $pkgdir/etc/conf.d/oidentd
+ cd "$srcdir/$pkgname-$pkgver"
+ make prefix="$pkgdir"/usr mandir="$pkgdir"/usr/share/man install
+ install -D -m 755 "$srcdir"/$pkgname.rc "$pkgdir"/etc/rc.d/oidentd
+ install -D -m 644 "$srcdir"/$pkgname.default "$pkgdir"/etc/conf.d/oidentd
}