openbsd-ports/net/ntp/Makefile
naddy d159f8d1ad Make use of "find -exec {} +" (which is POSIX) and "find -delete"
(which is not) throughout the ports Makefiles.

* Replace find|xargs with find -exec {} +
* Replace -exec {} \; with -exec {} + if applicable.
* Use the -delete operator to remove files and empty directories.
* Combine and tweak some find(1) invocations while here.

ok kn@ rsadowski@ espie@
2020-03-20 16:44:21 +00:00

58 lines
1.7 KiB
Makefile

# $OpenBSD: Makefile,v 1.80 2020/03/20 16:44:26 naddy 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= 5
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>