[packages] nagios-plugins: fix segfault in check_ping command (closes: #5015)
[openwrt/svn-archive/archive.git] / net / nagios-plugins / Makefile
1 #
2 # Copyright (C) 2008-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=nagios-plugins
11 PKG_VERSION:=1.4.12
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/nagiosplug
16 PKG_MD5SUM:=af68d00bbe2c39de02803d23e5eecca3
17
18 include $(INCLUDE_DIR)/package.mk
19
20 comma:= ,
21
22 define Package/nagios-plugins
23 SECTION:=net
24 CATEGORY:=Network
25 SUBMENU:=Monitoring
26 DEPENDS:=+uclibcxx +libpq
27 TITLE:=plugins for Nagios checks
28 URL:=http://nagiosplug.sourceforge.net/
29 endef
30
31 CONFIGURE_ARGS += \
32 --without-mysql \
33 --with-openssl="$(STAGING_DIR)/usr" \
34 --with-ping-command="/bin/ping -w %d -c %d %s" \
35 --with-ping6-command="/bin/ping6 -w %d -c %d %s" \
36 --with-ps-command="/bin/ps -Aopid" \
37 --with-ps-cols="6" \
38 --with-ps-format="%d %s %d %s %s %n" \
39 --with-ps-varlist="&procuid$(comma)&procpid$(comma)&procvsz$(comma)procstat$(comma)procprog$(comma)&pos" \
40 --with-uptime-command="/usr/bin/uptime" \
41 --with-ssh-command="/usr/bin/ssh" \
42 --with-nslookup-command="/usr/bin/nslookup"
43
44 define Build/Compile
45 $(MAKE) -C $(PKG_BUILD_DIR) \
46 DESTDIR="$(PKG_INSTALL_DIR)" \
47 all install
48 endef
49
50 define Package/nagios-plugins/install
51 $(INSTALL_DIR) $(1)/usr/libexec/nagios
52 $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/libexec/nagios/
53 endef
54
55 $(eval $(call BuildPackage,nagios-plugins))