juhosg fa9f419ee5 packages/nagios: fix whitespaces
Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@40226 3c298f89-4303-0410-b956-a3cf2f4a3e73
2014-03-27 07:05:51 +00:00

76 lines
1.8 KiB
Makefile

#
# Copyright (C) 2008-2011 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=nagios
PKG_VERSION:=2.10
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/nagios
PKG_MD5SUM:=8c3a29e138f2ff8c8abbd3dd8a40c4b6
include $(INCLUDE_DIR)/package.mk
define Package/nagios
SECTION:=admin
CATEGORY:=Administration
DEPENDS:=+libpthread +microperl +libltdl
TITLE:=service and network monitoring program
URL:=http://www.nagios.org/
endef
define Package/nagios/description
service and network monitoring program
endef
EXTRA_CFLAGS += $(TARGET_CPPFLAGS)
CONFIGURE_VARS += \
ac_cv_lib_gd_gdImagePng_1=no \
ac_cv_lib_gd_gdImagePng_2=no \
ac_cv_lib_gd_gdImagePng_3=no \
ac_cv_lib_gd_gdImagePng_4=no
CONFIGURE_ARGS += \
--with-nagios-user="root" \
--with-nagios-group="root" \
--sysconfdir="/etc/nagios" \
--without-gd-lib \
--without-gd-inc \
CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)"
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
INSTALL_OPTS="" \
STRIP=: \
all install install-config
endef
define Package/nagios/install
$(INSTALL_DIR) $(1)/etc/nagios
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/etc/nagios/* $(1)/etc/nagios/
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{nagios,nagiostats} $(1)/usr/bin/
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/usr/share
$(CP) $(PKG_INSTALL_DIR)/usr/share/* $(1)/usr/share/
endef
define Package/nagios/conffiles
/etc/nagios/cgi.cfg
/etc/nagios/commands.cfg
/etc/nagios/localhost.cfg
/etc/nagios/nagios.cfg
/etc/nagios/resource.cfg
endef
$(eval $(call BuildPackage,nagios))