mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e3f400194b
While here simplify the port's Makefile and fix the wrong usage of bzero and other library functions that take a buffer size: The size parameter passed was always the pointer, not the buffer pointed to, i.e. "bzero(buf, sizeof(buf)" instead of "bzero(buf, sizeof(*buf)" ...
23 lines
454 B
Makefile
23 lines
454 B
Makefile
# Created by: walt
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= monitord
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://lissyara.su/distfiles/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Service that restarts other standalone services
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
USE_RC_SUBR= monitord
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/monitord.conf.sample \
|
|
${STAGEDIR}${PREFIX}/etc/monitord.conf.sample
|
|
|
|
.include <bsd.port.mk>
|