contrib/ntp/Pkgfile

60 lines
1.5 KiB
Plaintext

# Description: Network Time Protocol software
# URL: https://www.ntp.org
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: openssl
name=ntp
version=4.2.8p15
release=1
source=(https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/$name-$version.tar.gz
ntpd ntpdate ntp.conf ntp-64bit.diff)
build () {
mkdir -p $PKG/etc/{rc.d,ntp} \
$PKG/var/log \
$PKG/var/run/ntp \
$PKG/var/lib/ntp/stats \
$PKG/usr/share/man/{man8,man5}
cd $name-$version
patch -p1 -i ../ntp-64bit.diff
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/ntp \
--with-sntp \
--with-crypto \
--without-ntpsnmpd \
--enable-debugging=no \
--enable-ntpdate-step \
--enable-parse-clocks \
--enable-all-clocks \
CFLAGS="$CFLAGS" \
LDFLAGS="$LDFLAGS"
# substitute the default configuration path
sed -i -e 's;\(CONFIG_FILE[^"]*"\)/etc/ntp.conf;\1/etc/ntp/ntp.conf;' \
include/ntp_config.h
make
make DESTDIR=$PKG install
touch $PKG/var/log/ntp.log
install -m 644 $SRC/ntp.conf $PKG/etc/ntp
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
# assign ownership to ntp:ntp
chown -R ntp:ntp $PKG/var/lib/ntp $PKG/var/run/ntp $PKG/var/log/ntp.log
# clean up the mess..
rm -r $PKG/usr/share/{doc,ntp}
}