Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Jan 2019 10:46:24 +0000 (UTC)
From:      Stefan Esser <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r491618 - in head/net: . timed
Message-ID:  <201901301046.x0UAkO4M047694@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: se
Date: Wed Jan 30 10:46:24 2019
New Revision: 491618
URL: https://svnweb.freebsd.org/changeset/ports/491618

Log:
  Add new port net/timed.
  
  This port is a slightly modified version of the code as distributed with
  FreeBSD up to version 12.
  
  This software is only useful to provide time synchronization for devices
  that do not support a more modern time synchronization protocol (e.g., ntp).
  
  Approved by:	antoine (mentor)

Added:
  head/net/timed/
  head/net/timed/Makefile   (contents, props changed)
  head/net/timed/distinfo   (contents, props changed)
  head/net/timed/pkg-descr   (contents, props changed)
  head/net/timed/pkg-plist   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Wed Jan 30 10:35:47 2019	(r491617)
+++ head/net/Makefile	Wed Jan 30 10:46:24 2019	(r491618)
@@ -1440,6 +1440,7 @@
     SUBDIR += throttled
     SUBDIR += tigervnc
     SUBDIR += tightvnc
+    SUBDIR += timed
     SUBDIR += tintin++
     SUBDIR += tiny-network-utilities
     SUBDIR += tinyfugue

Added: head/net/timed/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/timed/Makefile	Wed Jan 30 10:46:24 2019	(r491618)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	timed
+PORTVERSION=	8.1
+CATEGORIES=	net
+
+MAINTAINER=	se@FreeBSD.org
+COMMENT=	Old time synchronisation service superseded by more modern protocols
+
+LICENSE=	BSD3CLAUSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	freebsd
+
+post-build:
+		${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/rc.d/timed
+
+do-install:
+.for f in timed timedc
+		${INSTALL_PROGRAM} ${WRKSRC}/${f}/${f} \
+			${STAGEDIR}${PREFIX}/sbin
+		${INSTALL_MAN} ${WRKSRC}/${f}/${f}.8 \
+			${STAGEDIR}${MAN8PREFIX}/man/man8/
+.endfor
+		${INSTALL_DATA} ${WRKSRC}/rc.d/timed \
+			${STAGEDIR}${PREFIX}/etc/rc.d/
+
+.include <bsd.port.mk>

Added: head/net/timed/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/timed/distinfo	Wed Jan 30 10:46:24 2019	(r491618)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1548844195
+SHA256 (freebsd-timed-8.1_GH0.tar.gz) = 3e0882c602f2b1a618f172810c4f5369c7fd978f76c4fa1ab697bfdd12765665
+SIZE (freebsd-timed-8.1_GH0.tar.gz) = 48014

Added: head/net/timed/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/timed/pkg-descr	Wed Jan 30 10:46:24 2019	(r491618)
@@ -0,0 +1,5 @@
+This port preserves the timed time synchronisation daemon and the timedc
+control command, which have been declared deprecated in FreeBSD-12.1 and
+removed from the FreeBSD sources in version 13.
+
+WWW: https://github.com/freebsd/timed

Added: head/net/timed/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/timed/pkg-plist	Wed Jan 30 10:46:24 2019	(r491618)
@@ -0,0 +1,6 @@
+etc/rc.d/timed
+man/man8/timed.8.gz
+man/man8/timedc.8.gz
+sbin/timed
+@mode 4555
+sbin/timedc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901301046.x0UAkO4M047694>