5069db76e5
the one-second sleep between invocations was moved to after the actual invocation. This sleep could be interrupted by a SIGCHLD in the case of a failing service, and the service could be restarted way more than the documented once-per-second. Move the sleep back before the fork(), just don't sleep before the very first fork, so the service starts faster. Silence by: Daniel J. Bernstein (no telling if he'll fix this in later daemontools releases, so I guess we'll have to do it as part of our port..) Approved by: nbm (maintainer)
41 lines
949 B
Makefile
41 lines
949 B
Makefile
# New ports collection makefile for: daemontools
|
|
# Date created: 09 June 1998
|
|
# Whom: Dom Mitchell <dom@myrddin.demon.co.uk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= daemontools
|
|
PORTVERSION= 0.70
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://cr.yp.to/daemontools/ \
|
|
ftp://cr.yp.to/daemontools/
|
|
|
|
MAINTAINER= nbm@FreeBSD.org
|
|
|
|
NO_PACKAGE= "Unsure of djb\'s license"
|
|
|
|
ALL_TARGET= it
|
|
INSTALL_TARGET= setup check
|
|
|
|
SAMPLERC= svscan.sh.sample
|
|
SERVICEDIR?= /var/service/
|
|
|
|
post-patch:
|
|
@echo "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc
|
|
@echo "${CC} -s" > ${WRKSRC}/conf-ld
|
|
@echo "${PREFIX}" > ${WRKSRC}/conf-home
|
|
|
|
post-build:
|
|
@${SED} "s!/usr/local/!${PREFIX}/!;s!/var/service!${SERVICEDIR}!g" \
|
|
${FILESDIR}/${SAMPLERC} > ${WRKDIR}/${SAMPLERC}
|
|
|
|
post-install:
|
|
@${INSTALL} -d -o ${SHAREOWN} -g ${SHAREGRP} -m 755 \
|
|
${PREFIX}/share/examples/${PORTNAME}
|
|
@${INSTALL_DATA} ${WRKDIR}/${SAMPLERC} \
|
|
${PREFIX}/share/examples/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|