b844c54ecb
There exists security vulnerabilites in the monit HTTP interface, which could allow an attacker in the worst case to gain root access to the system. This issue only affect monit if monit is started with http server support. From: Robert Nagy <thuglife at bsd dot hu> No response from MAINTAINER.
40 lines
955 B
Makefile
40 lines
955 B
Makefile
# $OpenBSD: Makefile,v 1.5 2004/04/13 08:57:59 brad Exp $
|
|
|
|
COMMENT= "monitoring and managing daemons utility"
|
|
|
|
VERSION= 4.2.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/examples/monit
|
|
cd ${WRKSRC} && ${INSTALL_DATA} FAQ.txt README.SSL UPGRADE.txt \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} monit.html examples.html \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC}/protocols && ${INSTALL_DATA} NOTES \
|
|
${PREFIX}/share/doc/monit
|
|
cd ${WRKSRC} && ${INSTALL_DATA} monitrc \
|
|
${PREFIX}/share/examples/monit
|
|
|
|
.include <bsd.port.mk>
|