diff options
Diffstat (limited to 'ntp/Pkgfile')
-rw-r--r-- | ntp/Pkgfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ntp/Pkgfile b/ntp/Pkgfile index 59c02259e..684aeb31f 100644 --- a/ntp/Pkgfile +++ b/ntp/Pkgfile @@ -5,7 +5,7 @@ # Depends on: openssl name=ntp -version=4.2.4p7 +version=4.2.6 release=2 source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$name-$version.tar.gz ntpd @@ -26,8 +26,10 @@ build () { ./configure \ --prefix=/usr \ + --mandir=/usr/man \ --with-sntp \ --with-crypto \ + --without-ntpsnmpd \ --enable-debugging=no \ --enable-ntpdate-step \ --enable-parse-clocks \ @@ -47,6 +49,9 @@ build () { install -m 755 $SRC/ntpd $PKG/etc/rc.d install -m 755 $SRC/ntpdate $PKG/etc/rc.d + # fix remove unnecessary directory + rm -r $PKG/usr/sbin + # initialize ntp.drift file echo "0.0" > $PKG/var/lib/ntp/ntp.drift } |