diff options
author | sergei <sergei@FreeBSD.org> | 2003-11-11 21:01:09 +0000 |
---|---|---|
committer | sergei <sergei@FreeBSD.org> | 2003-11-11 21:01:09 +0000 |
commit | 24e11c45cd3516febb301589cf4f66b3922d4f7b (patch) | |
tree | 91b701e54ee4755fadaab27becef398a92d1641c /sysutils/clockspeed-conf/Makefile | |
parent | db83be69a7803db765a6fbacb106c9571e83de47 (diff) | |
download | FreeBSD-ports-24e11c45cd3516febb301589cf4f66b3922d4f7b.zip FreeBSD-ports-24e11c45cd3516febb301589cf4f66b3922d4f7b.tar.gz |
Add clockspeed-conf 0.4.5:
The clockspeed-conf package provides configuration
scripts to set up a clockspeed client and/or a taiclockd
server using Dan Bernstein's daemontools for supervision
and his clockspeed package for time synchronisation.
Author: Patrick Atamaniuk <atamaniuk at frobs.net>
WWW: http://foo42.de/devel/sysutils/clockspeed-conf/
PR: 51036
Submitted by: Patrick Atamaniuk <atamaniuk at frobs.net>
Diffstat (limited to 'sysutils/clockspeed-conf/Makefile')
-rw-r--r-- | sysutils/clockspeed-conf/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sysutils/clockspeed-conf/Makefile b/sysutils/clockspeed-conf/Makefile new file mode 100644 index 0000000..c05eb18 --- /dev/null +++ b/sysutils/clockspeed-conf/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: clockspeed-conf +# Date created: 10 April 2003 +# Whom: Patrick Atamaniuk <atamaniuk at frobs.net> +# +# $FreeBSD$ +# + +PORTNAME= clockspeed-conf +PORTVERSION= 0.4.5 +CATEGORIES= sysutils +MASTER_SITES= http://foo42.de/distfiles/ + +MAINTAINER= atamaniuk-ports@frobs.net +COMMENT= Supervise scripts for clockspeed to use daemontools + +RUN_DEPENDS= supervise:${PORTSDIR}/sysutils/daemontools \ + clockspeed:${PORTSDIR}/sysutils/clockspeed + +MAN8= clockspeed-conf.8 taiclockd-conf.8 +DOCS= COPYRIGHT README TODO + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR} +.endif + @${ECHO_MSG} "***" + @${ECHO_MSG} "*** Type 'make ids' to create user/group IDs" + @${ECHO_MSG} "***" + +ids: + @${SH} ${FILESDIR}/create_ids.sh + +.include <bsd.port.mk> |