7f4a8c598715d8ced45360cb003ea3a25995d3d0
[openwrt/svn-archive/archive.git] / net / nagios / Makefile
1 #
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id: $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=nagios
12 PKG_VERSION:=2.9
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/nagios
17 PKG_MD5SUM:=b6e3a21c91edb063c00712c6001e15ec
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/nagios
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libpthread +microperl
28 TITLE:=service and network monitoring program
29 DESCRIPTION:=\
30 service and network monitoring program
31 URL:=http://www.nagios.org/
32 endef
33
34 define Package/send-nagios/conffiles
35 /etc/send_nagios.cfg
36 endef
37
38 define Build/Configure
39 $(call Build/Configure/Default,\
40 --with-nagios-user="root" \
41 --with-nagios-group="root" \
42 )
43 endef
44
45 define Build/Compile
46 $(call Build/Compile/Default,\
47 DESTDIR="$(PKG_INSTALL_DIR)" \
48 INSTALL_OPTS="" \
49 all install install-config \
50 )
51 endef
52
53 define Package/nagios/install
54 $(CP) $(PKG_INSTALL_DIR) $(1)/
55 endef
56
57 $(eval $(call BuildPackage,nagios))