mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
7663c0789c
PR: 228598 Submitted by: martinp@tildeslash.com (maintainer)
39 lines
818 B
Makefile
39 lines
818 B
Makefile
# Created by: Martin Pala <martinp@tildeslash.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= monit
|
|
PORTVERSION= 5.25.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://mmonit.com/monit/dist/
|
|
|
|
MAINTAINER= martinp@tildeslash.com
|
|
COMMENT= Unix system management and proactive monitoring
|
|
|
|
LICENSE= AGPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= bison gmake
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/monit \
|
|
etc/monitrc.sample \
|
|
man/man1/monit.1.gz
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
PORTDOCS= COPYING README CHANGES
|
|
|
|
OPTIONS_DEFINE= DOCS SSL
|
|
OPTIONS_DEFAULT=SSL
|
|
|
|
SSL_CONFIGURE_OFF= --without-ssl
|
|
SSL_USES= ssl
|
|
|
|
post-install:
|
|
${INSTALL} -m 600 ${WRKSRC}/monitrc ${STAGEDIR}${PREFIX}/etc/monitrc.sample
|
|
${INSTALL} -d ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL} -m 644 ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|