diff options
author | fredb <fredb@pkgsrc.org> | 2001-07-12 16:24:58 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2001-07-12 16:24:58 +0000 |
commit | 9a872eacf7f33c82bff03d70a7e1258d00e8e393 (patch) | |
tree | b35d98749f18c003b6174f82feab73f2c9be14a5 /net/ntp4/Makefile | |
parent | cdc44631a62e90871110e62bd33f66d8ca4f6cfa (diff) | |
download | pkgsrc-9a872eacf7f33c82bff03d70a7e1258d00e8e393.tar.gz |
Update to latest release candidate, ntp-4.0.99m-rc3. Continued
refinements since 4.0.99k, a new feature -- an experimental
"huff-n-puff" filter (optionally enabled in /etc/ntp.conf) -- which
discards samples with the highest delays, and new drivers for:
Forum Graphic GPS, WWV/H, Heath GC-100 II, HOPF serial and PCI,
ONCORE, ulink331.
Drop the packages's requirement for GNU readline. It turns out
that command line editing in "ntpq" is not all that useful, as
you can alway let your shell recall "ntpq -c <command>".
Diffstat (limited to 'net/ntp4/Makefile')
-rw-r--r-- | net/ntp4/Makefile | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/net/ntp4/Makefile b/net/ntp4/Makefile index 07110e6398e..48b8775ba0f 100644 --- a/net/ntp4/Makefile +++ b/net/ntp4/Makefile @@ -1,28 +1,35 @@ -# $NetBSD: Makefile,v 1.16 2001/06/12 20:33:06 jlam Exp $ +# $NetBSD: Makefile,v 1.17 2001/07/12 16:24:58 fredb Exp $ # -DISTNAME= ntp-4.0.99k +DISTNAME= ntp-4.0.99m-rc3 +PKGNAME= ntp-4.0.99.13.3 CATEGORIES= net MASTER_SITES= ftp://ftp.udel.edu/pub/ntp/ntp4/ \ http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ -MAINTAINER= fb@enteract.com +MAINTAINER= fredb@netbsd.org HOMEPAGE= http://www.ntp.org/ COMMENT= Network Time Protocol Version 4 -DEPENDS+= readline-4.*:../../devel/readline - GNU_CONFIGURE= YES -LIBS= -ltermcap # for ntpdc +CONFIGURE_ENV+= PATH_PERL="${PERL5}" DOCDIR= ${PREFIX}/share/doc EXAMPLESDIR= ${PREFIX}/share/examples +pre-configure: + cd ${WRKSRC} && \ + ${TOUCH} stamp-h.in COPYRIGHT \ + `${FIND} . -name aclocal.m4 -print` \ + `${FIND} . -name configure -print` \ + `${FIND} . -name Makefile.in -print` + post-install: - cd ${WRKSRC}; \ - ${RM} html/.cvsignore* 2> /dev/null || ${TRUE}; \ - ${PAX} -r -w -s "/html/ntp4/" html ${DOCDIR}; \ + cd ${WRKSRC} && \ + ${RM} conf/.cvsignore* 2> /dev/null || ${TRUE}; \ + ${RM} html/.cvsignore* 2> /dev/null || ${TRUE}; \ + ${PAX} -r -w -s "/html/ntp4/" html ${DOCDIR}; \ ${PAX} -r -w -s "/conf/ntp4/" conf ${EXAMPLESDIR} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCDIR}/ntp4 ${EXAMPLESDIR}/ntp4 ${CHMOD} -R ${SHAREMODE} ${DOCDIR}/ntp4 ${EXAMPLESDIR}/ntp4 |