void-packages/templates/ntp/template
Juan RP 3667f039f2 Install all packages via DESTDIR var and not prefix.
This removes many assignments that were needed before, and fixes
some packages to install its manpage/info files.

--HG--
extra : convert_revision : 5422f921ef81d089ed95ce0c52e5106ea10b2165
2009-03-18 10:02:43 +01:00

34 lines
1.2 KiB
Text

# Template file for 'ntp'
pkgname=ntp
sourcepkg=ntp
version=4.2.4p6
distfiles="http://archive.ntp.org/ntp4/$pkgname-$version.tar.gz"
build_style=gnu_configure
configure_args="--enable-linuxcaps --enable-getifaddrs=glibc
--enable-all-clocks --enable-parse-clocks --with-crypto=openssl
--enable-accurate-adjtime --without-rpath --enable-ipv6"
short_desc="The Network Time Protocol"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=647640067c7c6a4c568af54c139ce07bbf9f69b54bf9be2704b4c99c56651067
long_desc="
The Network Time Protocol (NTP) is used to synchronize a computer's
time with another reference time source. This package includes ntpd
(a daemon which continuously adjusts system time) and utilities used
to query and configure the ntpd daemon."
subpackages="perl"
Add_dependency full glibc
Add_dependency full openssl
post_install()
{
install -d ${DESTDIR}/etc/rc.d
install -d ${DESTDIR}/usr/share/ntp
install -d ${DESTDIR}/usr/share/doc/ntp
install -m 755 ${FILESDIR}/ntpd ${DESTDIR}/etc/rc.d/ntpd
install -m 755 ${FILESDIR}/ntpdate ${DESTDIR}/etc/rc.d/ntpdate
install -m 644 ${FILESDIR}/ntp.conf ${DESTDIR}/etc/ntp.conf
cp -a ${wrksrc}/html ${DESTDIR}/usr/share/doc/ntp
cp -a ${wrksrc}/conf ${DESTDIR}/usr/share/ntp
}