CVE-2016-9042, CVE-2017-6451, CVE-2017-6452, CVE-2017-6455, CVE-2017-6458, CVE-2017-6459, CVE-2017-6460, CVE-2017-6462, CVE-2017-6463, CVE-2017-6464 Adapt OpenSSL #ifdef for LibreSSL. Fix regression tests, prevent them from crashing. OK deraadt@
57 lines
1.7 KiB
Makefile
57 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.72 2017/03/27 11:33:40 bluhm 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
|
|
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_CDROM= Yes
|
|
|
|
WANTLIB += c crypto edit event_core event_pthreads
|
|
WANTLIB += m pthread ssl termcap
|
|
|
|
# enabling SEPARATE_BUILD causes the parser to be rebuilt .y -> .c,
|
|
# which requires bison
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
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 -print0 | xargs -0 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>
|