blob: 2fa594a3508f2e1739aa159f379fbdda9c936689 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# New ports collection makefile for: monitord
# Date created: 5 June 2000
# Whom: walt
#
# $FreeBSD$
#
PORTNAME= monitord
PORTVERSION= 0.4.1
CATEGORIES= sysutils
MASTER_SITES= ftp://ftp.erudition.net/pub/monitord/
MAINTAINER= walt@erudition.net
COMMENT= Service that restarts other standalone services
MAN8= monitord.8
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 502126
BROKEN= "Does not compile on FreeBSD >= 5.x"
.endif
post-install:
@${CP} ${WRKSRC}/monitord.conf.sample ${PREFIX}/etc/monitord.conf.sample
.include <bsd.port.post.mk>
|