diff options
author | feld <feld@FreeBSD.org> | 2014-12-22 09:02:56 +0800 |
---|---|---|
committer | feld <feld@FreeBSD.org> | 2014-12-22 09:02:56 +0800 |
commit | 67953bbaecb9f784f89e2bd1fbb3a2049be9cfc0 (patch) | |
tree | 3eae337191a6ff2c848f62ad6a7a7fd3bddefffc | |
parent | bd03e1a3b6ed019d030a450fd8c148a33a30b92b (diff) | |
download | freebsd-ports-graphics-67953bbaecb9f784f89e2bd1fbb3a2049be9cfc0.tar.gz freebsd-ports-graphics-67953bbaecb9f784f89e2bd1fbb3a2049be9cfc0.tar.zst freebsd-ports-graphics-67953bbaecb9f784f89e2bd1fbb3a2049be9cfc0.zip |
Welcome ntimed to the ports tree. This is a new NTP client authored by
phk.
Anyone is welcome to steal or update this port. I'm just bringing it to
the tree so the masses can start playing with it and providing phk
feedback.
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/ntimed/Makefile | 32 | ||||
-rw-r--r-- | net/ntimed/distinfo | 2 | ||||
-rw-r--r-- | net/ntimed/pkg-descr | 5 |
4 files changed, 40 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 4389485c0f9..18284d28e28 100644 --- a/net/Makefile +++ b/net/Makefile @@ -420,6 +420,7 @@ SUBDIR += nss-pam-ldapd-sasl SUBDIR += nss_ldap SUBDIR += nstxd + SUBDIR += ntimed SUBDIR += ntlmaps SUBDIR += ntop SUBDIR += ntopng diff --git a/net/ntimed/Makefile b/net/ntimed/Makefile new file mode 100644 index 00000000000..446ba922b5c --- /dev/null +++ b/net/ntimed/Makefile @@ -0,0 +1,32 @@ +# Created by: Mark Felder <feld@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= ntimed +PORTVERSION= 0.0.2014.12.21 +CATEGORIES= net + +MAINTAINER= feld@FreeBSD.org +COMMENT= Network time synchronization client + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= bsdphk +GH_PROJECT= ntimed +GH_COMMIT= f3810d7 +GH_TAGNAME= ${GH_COMMIT} + +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-Ntimed-${GH_COMMIT} + +PLIST_FILES= sbin/ntimed-client + +.include <bsd.port.pre.mk> + +do-configure: + cd ${WRKSRC} && ${SH} configure + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ntimed-client ${STAGEDIR}/${LOCALBASE}/sbin/ + +.include <bsd.port.post.mk> + diff --git a/net/ntimed/distinfo b/net/ntimed/distinfo new file mode 100644 index 00000000000..4e86312e518 --- /dev/null +++ b/net/ntimed/distinfo @@ -0,0 +1,2 @@ +SHA256 (ntimed-0.0.2014.12.21.tar.gz) = a589a01b7df4dedf7f97beb47e54c6ceebed5de583eee422949a07a0c6477ed5 +SIZE (ntimed-0.0.2014.12.21.tar.gz) = 31041 diff --git a/net/ntimed/pkg-descr b/net/ntimed/pkg-descr new file mode 100644 index 00000000000..ed05ad33cf7 --- /dev/null +++ b/net/ntimed/pkg-descr @@ -0,0 +1,5 @@ +This is a preview/early-acces/alpha/buzzword-of-the-times release of a +new FOSS project written to gradually take over the world of networked +timekeeping. + +WWW: https://github.com/bsdphk/Ntimed |