58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.81 2020/09/27 14:48:17 matthieu Exp $
|
|
|
|
COMMENT= Network Time Protocol reference implementation
|
|
|
|
# NTP sometimes has a 'pN' in its version number, which we don't want
|
|
# to confuse with the ports system's 'pN' convention, so convert it to
|
|
# 'pl' for local use.
|
|
|
|
VERSION= 4.2.8p10
|
|
REVISION= 6
|
|
DISTNAME= ntp-${VERSION}
|
|
PKGNAME= ntp-${VERSION:S/p/pl/}
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://www.ntp.org/
|
|
|
|
MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ \
|
|
http://archive.ntp.org/ntp4/ntp-4.2/
|
|
|
|
# modified ISC
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += c crypto curses edit event_core event_pthreads m pthread ssl
|
|
|
|
# enabling SEPARATE_BUILD causes the parser to be rebuilt .y -> .c,
|
|
# which requires bison
|
|
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.69
|
|
|
|
CONFIGURE_ARGS= --docdir=${TRUEPREFIX}/share/doc/ntp \
|
|
--enable-parse-clocks \
|
|
--with-binsubdir=sbin \
|
|
--without-ntpsnmpd
|
|
CONFIGURE_ENV= CPPFLAGS='-DCONFIG_FILE="\"${SYSCONFDIR}/ntp.conf\"" \
|
|
-DKEYFILE="\"${SYSCONFDIR}/ntp.keys\""' \
|
|
ac_cv_header_sys_audioio_h=no
|
|
|
|
LIB_DEPENDS= devel/libevent2
|
|
|
|
# autogen >= 5.18.5 required to regenerate outdated files because
|
|
# the distribution tarball was updated incompletely
|
|
post-extract:
|
|
@touch ${WRKDIR}/timestamp
|
|
@find ${WRKSRC} -type f -exec touch -r ${WRKDIR}/timestamp {} +
|
|
|
|
# patch-sntp_tests_packetProcessing_c triggers a ruby script to regenerate
|
|
# run-packetProcessing.c. Avoid ruby, run file does not change anyway.
|
|
post-patch:
|
|
cp ${WRKSRC}/sntp/loc/freebsd ${WRKSRC}/sntp/loc/openbsd
|
|
touch ${WRKSRC}/sntp/tests/run-packetProcessing.c
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/ntp
|
|
@cd ${WRKSRC}/conf && pax -rw * ${PREFIX}/share/examples/ntp
|
|
|
|
.include <bsd.port.mk>
|