7cf19d0259
-- This release optionally makes use of OpenSSL, it is now possible to monitor processes forged with SSL. It is also possible to run monit's HTTP server with SSL. Also added: Timestamp monitoring for files and directories and an SSH protocol test. brad@ ok
41 lines
994 B
Makefile
41 lines
994 B
Makefile
# $OpenBSD: Makefile,v 1.2 2002/12/26 00:45:55 margarida Exp $
|
|
|
|
COMMENT= "monitoring and managing daemons utility"
|
|
|
|
VERSION= 3.1
|
|
DISTNAME= monit-${VERSION}
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.tildeslash.com/monit/
|
|
|
|
MASTER_SITES= ${HOMEPAGE}dist/
|
|
|
|
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/monit
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/monit/api-docs
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/monit
|
|
cd ${WRKSRC} && ${INSTALL_DATA} FAQ.txt \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} monit.html \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/doc/api-docs && ${INSTALL_DATA} * \
|
|
${PREFIX}/share/doc/monit/api-docs
|
|
cd ${WRKSRC} && ${INSTALL_DATA} monitrc \
|
|
${PREFIX}/share/examples/monit
|
|
|
|
.include <bsd.port.mk>
|