diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-11-21 00:45:22 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-11-21 00:45:22 +0000 |
commit | 121e45fc7d12d5d96a40f5a9eecfb9deafcdf839 (patch) | |
tree | 82340783a21e28eb84e62b05d6871c4352bd1cc1 /sysutils/healthd/Makefile | |
parent | 8e16073972dfdf85cfca5b770894d144091a94bf (diff) | |
download | FreeBSD-ports-121e45fc7d12d5d96a40f5a9eecfb9deafcdf839.zip FreeBSD-ports-121e45fc7d12d5d96a40f5a9eecfb9deafcdf839.tar.gz |
Update to version 0.2
PR: 14934
Submitted by: maintainer
Diffstat (limited to 'sysutils/healthd/Makefile')
-rw-r--r-- | sysutils/healthd/Makefile | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/sysutils/healthd/Makefile b/sysutils/healthd/Makefile index 0a3f46c..46d727c 100644 --- a/sysutils/healthd/Makefile +++ b/sysutils/healthd/Makefile @@ -1,18 +1,28 @@ # New ports collection makefile for: healthd -# Version required: 0.1 -# Date created: 24 October 1999 +# Version required: 0.2 +# Date created: 15 November 1999 # Whom: jim@thehousleys.net # # $FreeBSD$ # -DISTNAME= healthd-0.1 +DISTNAME= healthd-0.2 CATEGORIES= sysutils -MASTER_SITES= http://www.thehousleys.net/healthd/ +MASTER_SITES= http://healthd.thehousleys.net/ MAINTAINER= jim@thehousleys.net HAS_CONFIGURE= yes CONFIGURE_ARGS= --exec-prefix=${PREFIX} +MAN8= healthd.8 + +post-install: + @if [ ! -f ${PREFIX}/etc/rc.d/healthd.sh ]; then \ + ${ECHO} "Installing ${PREFIX}/etc/rc.d/healthd.sh startup file."; \ + ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/healthd.sh; \ + ${ECHO} "[ -x ${PREFIX}/bin/healthd ] && ${PREFIX}/bin/healthd > /dev/null && ${ECHO} -n ' healthd'" >> ${PREFIX}/etc/rc.d/healthd.sh; \ + ${CHMOD} 751 ${PREFIX}/etc/rc.d/healthd.sh; \ + fi + .include <bsd.port.mk> |