monit: new package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2012-06-02 06:13:51 +00:00 committed by Peter Korsgaard
parent 922fdbcdda
commit 06ad6b03ed
3 changed files with 43 additions and 0 deletions

View File

@ -647,6 +647,9 @@ source "package/htop/Config.in"
source "package/kmod/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/module-init-tools/Config.in"
endif
source "package/monit/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/procps/Config.in"
source "package/psmisc/Config.in"
source "package/rsyslog/Config.in"

10
package/monit/Config.in Normal file
View File

@ -0,0 +1,10 @@
config BR2_PACKAGE_MONIT
bool "monit"
help
Monit is a free open source utility for managing and
monitoring, processes, programs, files, directories and
filesystems on a UNIX system. Monit conducts automatic
maintenance and repair and can execute meaningful causal
actions in error situations.
http://mmonit.com/monit/

30
package/monit/monit.mk Normal file
View File

@ -0,0 +1,30 @@
#############################################################
#
# monit
#
#############################################################
MONIT_VERSION = 5.4
MONIT_SITE = http://mmonit.com/monit/dist/
MONIT_CONF_ENV = \
libmonit_cv_setjmp_available=yes \
libmonit_cv_vsnprintf_c99_conformant=yes
MONIT_CONF_OPT += \
--without-pam
ifeq ($(BR2_PACKAGE_OPENSSL),y)
MONIT_CONF_OPT += --with-ssl
MONIT_DEPENDENCIES += openssl
else
MONIT_CONF_OPT += --without-ssl
endif
ifeq ($(BR2_LARGEFILE),y)
MONIT_CONF_OPT += --with-largefiles
else
MONIT_CONF_OPT += --without-largefiles
endif
$(eval $(call AUTOTARGETS))