diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-06-02 06:13:51 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-06-11 22:29:41 +0200 |
commit | 06ad6b03ed6145db19afe3a741858f531efd71c5 (patch) | |
tree | 1bddc9a85fc68682d782889fa4fa5ab67a44cfb7 /package/monit | |
parent | 922fdbcdda7a71447307f648e3c51f42232ddbbe (diff) |
monit: new package
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/monit')
-rw-r--r-- | package/monit/Config.in | 10 | ||||
-rw-r--r-- | package/monit/monit.mk | 30 |
2 files changed, 40 insertions, 0 deletions
diff --git a/package/monit/Config.in b/package/monit/Config.in new file mode 100644 index 000000000..6933aafc8 --- /dev/null +++ b/package/monit/Config.in @@ -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/ diff --git a/package/monit/monit.mk b/package/monit/monit.mk new file mode 100644 index 000000000..958618dc3 --- /dev/null +++ b/package/monit/monit.mk @@ -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)) |