void-packages/srcpkgs/openntpd/template
Enno Boland 7933cbb4a4 Revert "openntpd: no alias to /etc/sv/ntpd."
This reverts commit eaad88f1b0.

xtraeme explained that it's a bad idea due to various base packages.
2016-04-04 07:53:36 +02:00

37 lines
1.1 KiB
Bash

# Template file for 'openntpd'
pkgname=openntpd
version=5.9p1
revision=4
build_style=gnu-configure
configure_args="--with-privsep-user=$pkgname --with-cacert=/etc/ssl/certs.pem"
hostmakedepends="automake libtool"
makedepends="libressl-devel"
depends="ca-certificates"
short_desc="FREE, easy to use implementation of the Network Time Protocol"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="BSD"
homepage="http://openntpd.org/"
distfiles="http://ftp.openbsd.org/pub/OpenBSD/OpenNTPD/${pkgname}-${version}.tar.gz"
checksum=200c04056d4d6441653cac71d515611f3903aa7b15b8f5661a40dab3fb3697b3
conf_files="/etc/ntpd.conf"
provides="ntp-daemon-0_1"
system_accounts="$pkgname"
alternatives="
ntpd:ntpd:/usr/bin/openntpd
ntpd:ntpd.8:/usr/share/man/man8/openntpd.8
ntpd:ntpd:/etc/sv/openntpd"
pre_configure() {
autoreconf -fi
}
post_install() {
# Rename files for alternatives.
mv ${DESTDIR}/usr/bin/{ntpd,$pkgname}
mv ${DESTDIR}/usr/share/man/man8/{ntpd,openntpd}.8
# Use a symlink instead.
rm ${DESTDIR}/usr/bin/ntpctl
ln -s openntpd ${DESTDIR}/usr/bin/ntpctl
vsv $pkgname
vlicense COPYING
}