diff options
Diffstat (limited to 'community/openntpd/PKGBUILD')
-rw-r--r-- | community/openntpd/PKGBUILD | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/community/openntpd/PKGBUILD b/community/openntpd/PKGBUILD index 3d82658ca..5bddf7dca 100644 --- a/community/openntpd/PKGBUILD +++ b/community/openntpd/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 68196 2012-03-18 22:40:01Z arodseth $ +# $Id: PKGBUILD 72171 2012-06-09 14:07:36Z dreisner $ # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> # Contributor: Mark Rosenstand <mark@borkware.net> # Contributor: Giorgio Lando <patroclo7@gmail.com> (adjtimex patch) @@ -6,7 +6,7 @@ pkgname=openntpd pkgver=3.9p1 -pkgrel=14 +pkgrel=15 pkgdesc="Free, easy to use implementation of the Network Time Protocol." url="http://www.openntpd.org/" arch=('x86_64' 'i686') @@ -15,11 +15,13 @@ depends=('openssl') backup=('etc/ntpd.conf' 'etc/conf.d/openntpd') install=$pkgname.install source=(ftp://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/$pkgname-$pkgver.tar.gz - 'openntpd' 'openntpd.conf' 'linux-adjtimex.patch') + 'openntpd' 'openntpd.conf' 'linux-adjtimex.patch' 'openntpd.tmpfiles' 'openntpd.service') sha256sums=('83dd7c1e8ec8b4567afe49af539271b5a73562fb7a3ca51df73eccba89ec8c49' - '14b08ad387b4e16293c43386f25758699461b8b57afe41a49cc795a5e517f71e' + 'b486b7034b8d3d790b6bc1793dd8a44c68b82c8dc833b617c60674b0a7c9d98f' '77a0d1f3439d779c2ce259becf3fa583c21a16682a4f5327094da2e9837f6f96' - '3abcec94c072b5913ef7156a22049d796ff04e19105befe1ea81a66522928fd2') + '3abcec94c072b5913ef7156a22049d796ff04e19105befe1ea81a66522928fd2' + 'fe12841110c3c080519e248988c4b6334f54bd9646b015753c7e15de2a9600c5' + 'b54b88cb0fe35636405e2b09744633cd815edb3e8c864035bcdb05f727858f53') build() { cd "$srcdir/$pkgname-$pkgver" @@ -30,7 +32,7 @@ build() { --prefix=/usr \ --sysconfdir=/etc \ --with-privsep-user=ntp \ - --with-privsep-path=/var/run/openntpd/ \ + --with-privsep-path=/run/openntpd/ \ --with-adjtimex make } @@ -44,6 +46,12 @@ package() { install -Dm644 "$srcdir/$pkgname-$pkgver/LICENCE" \ "$pkgdir/usr/share/licenses/$pkgname/LICENCE" sed -i 's/\*/0.0.0.0/' $pkgdir/etc/ntpd.conf + + install -Dm644 "$srcdir/openntpd.tmpfiles" "$pkgdir/usr/lib/tmpfiles.d/openntpd.conf" + install -Dm644 "$srcdir/openntpd.service" "$pkgdir/usr/lib/systemd/system/openntpd.service" + + # avoid conflict with filesystem>=2012.06 + rm -r "$pkgdir/run" } # vim:set ts=2 sw=2 et: |