mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e8241cc711
* Add support for Winbond 83781 and 83782 chips PR: 16242 Submitted by: Maintainer
29 lines
758 B
Makefile
29 lines
758 B
Makefile
# New ports collection makefile for: healthd
|
|
# Version required: 0.3
|
|
# Date created: 15 November 1999
|
|
# Whom: jim@thehousleys.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= healthd-0.3
|
|
CATEGORIES= sysutils
|
|
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>
|