- take ownership (at least for now) - submit two patches back to nagious-plugins sf project - fix path to ../../security/openssh - changes since 1.4.1: * THANKS.in: More contributors * plugins/t/check_ping.t: Added test to make sure hostname has to be specified * plugins/: check_procs.c, check_swap.c: - Cleanup minor compile errors on Irix * plugins/check_ping.c: Using common message * plugins/check_ping.c: Required hostname not flagging as an error * plugins/Makefile.am: Some makes do not like blank lines after "\". Fixed check_ldaps to only generate if check_ldap was created (Chester Hosey) * plugins/check_load.c: Fix to parsing of uptime (Ronald Tin - 1254656) * configure.in: - Removing typos * plugins/check_ping.c: More diagnostic messages from check_ping * plugins/check_ping.c: re-add a call to setlocale(LC_ALL, "") in check_ping.c * THANKS.in: For help in fixing Red Hat problem with ECHILD and waitpid * plugins/popen.c, Makefile.am, configure.in, config_test/Makefile, config_test/child_test.c, config_test/run_tests: ECHILD error at waitpid on Red Hat systems (Peter Pramberger and Sascha Runschke - 1250191) * plugins-scripts/subst.in: Better comments for what the substitutions are doing * doc/BRANCHING: Move notes on branching away from RELEASING
27 lines
707 B
Makefile
27 lines
707 B
Makefile
# $NetBSD: Makefile,v 1.11 2005/12/27 21:41:30 absd Exp $
|
|
#
|
|
|
|
CATEGORIES= net sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nagiosplug/}
|
|
|
|
MAINTAINER= abs@NetBSD.org
|
|
HOMEPAGE= http://sourceforge.net/projects/nagiosplug/
|
|
COMMENT= Nagios plugins
|
|
|
|
.include "Makefile.common"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
CONFIGURE_ARGS+= --with-df-command="/bin/df -Pklt nokernfs,procfs,fdesc"
|
|
.endif
|
|
|
|
DEPENDS+= nagios-base>=1.0:../../wip/nagios-base
|
|
|
|
.if !exists(/usr/bin/ssh)
|
|
DEPENDS+= {ssh{,6}-[0-9]*,openssh-[0-9]*}:../../security/openssh
|
|
.endif
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|