Index: head/net/openntpd/Makefile =================================================================== --- head/net/openntpd/Makefile (revision 377522) +++ head/net/openntpd/Makefile (revision 377523) @@ -1,31 +1,31 @@ # $FreeBSD$ PORTNAME= openntpd -PORTVERSION= 5.7p1 +PORTVERSION= 5.7p2 PORTEPOCH= 2 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_OPENBSD} MASTER_SITE_SUBDIR= OpenNTPD MAINTAINER= naddy@FreeBSD.org COMMENT= Network Time Protocol (NTP) daemon LICENSE= ISCL USERS= _ntp GROUPS= _ntp USE_RC_SUBR= openntpd GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var \ --disable-silent-rules pre-build: ${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' \ ${WRKSRC}/ntpd.conf.5 ${WRKSRC}/ntpd.8 post-install: cd ${STAGEDIR}${PREFIX}/etc; ${MV} ntpd.conf ntpd.conf.sample .include Index: head/net/openntpd/distinfo =================================================================== --- head/net/openntpd/distinfo (revision 377522) +++ head/net/openntpd/distinfo (revision 377523) @@ -1,2 +1,2 @@ -SHA256 (openntpd-5.7p1.tar.gz) = 071cfdcfc179c481568a2b8262945243a3123abfc7fa8831da1bbff3729b8307 -SIZE (openntpd-5.7p1.tar.gz) = 400113 +SHA256 (openntpd-5.7p2.tar.gz) = 1640ad4a6e6475f6065d5f999b17b5dc6ab40dc17309b782b9ae390fe54bd6a5 +SIZE (openntpd-5.7p2.tar.gz) = 408421 Index: head/net/openntpd/files/patch-ntpd.c =================================================================== --- head/net/openntpd/files/patch-ntpd.c (revision 377522) +++ head/net/openntpd/files/patch-ntpd.c (nonexistent) @@ -1,25 +0,0 @@ ---- ntpd.c.orig 2015-01-08 06:57:55 UTC -+++ ntpd.c -@@ -515,7 +515,11 @@ readfreq(void) - log_warn("adjfreq failed"); - else if (current == 0) { - if (fscanf(fp, "%le", &d) == 1) -- ntpd_adjfreq(d, 0); -+ /* -+ * Drift file in ppm for compatibility -+ * with reference ntpd. -+ */ -+ ntpd_adjfreq(d / 1e6, 0); - else - log_warnx("can't read %s", DRIFTFILE); - } -@@ -538,7 +542,8 @@ writefreq(double d) - return 0; - } - -- fprintf(fp, "%e\n", d); -+ /* Drift file in ppm for compatibility with reference ntpd. */ -+ fprintf(fp, "%e\n", d * 1e6); - r = ferror(fp); - if (fclose(fp) != 0 || r != 0) { - if (warnonce) { Property changes on: head/net/openntpd/files/patch-ntpd.c ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -on \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property