[packages_10.03.2] merge r31318
[10.03/packages.git] / admin / zabbix / Makefile
1 #
2 # Copyright (C) 2006-2011 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:=zabbix
11 PKG_VERSION:=1.6
12 PKG_RELEASE:=3
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/zabbix
16 PKG_MD5SUM:=39d4c871439b1b4f0429964b4abbfc45
17
18 PKG_BUILD_DEPENDS:=libsqlite3
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/zabbix/Default
24   SECTION:=admin
25   CATEGORY:=Administration
26   TITLE:=Zabbix
27   URL:=http://www.zabbix.com/
28   SUBMENU:=zabbix
29   DEPENDS:=+libcurl
30 endef
31
32 define Package/zabbix-agent
33   $(call Package/zabbix/Default)
34   TITLE+= agent
35 endef
36
37 define Package/zabbix-sender
38   $(call Package/zabbix/Default)
39   TITLE+= sender
40 endef
41
42 define Package/zabbix-server
43   $(call Package/zabbix/Default)
44   TITLE+= server
45   DEPENDS += +libsqlite3
46 endef
47
48
49 ifneq ($(SDK),)
50 CONFIG_PACKAGE_zabbix-server:=m
51 endif
52
53 CONFIGURE_ARGS+= \
54         --bindir="/usr/sbin" \
55         --enable-agent
56
57 ifneq ($(CONFIG_PACKAGE_zabbix-server),)
58   CONFIGURE_ARGS+= \
59         --enable-server \
60         --with-sqlite3="$(STAGING_DIR)/usr"
61 endif
62
63 MAKE_FLAGS += ARCH="linux"
64
65 define Package/zabbix-agent/conffiles
66 /etc/zabbix/zabbix_agentd.conf
67 endef
68
69 define Package/zabbix-agent/install
70         $(INSTALL_DIR) $(1)/usr/sbin
71         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_agentd $(1)/usr/sbin/
72         $(INSTALL_DIR) $(1)/etc/zabbix
73         $(INSTALL_CONF) ./files/zabbix_agentd.conf $(1)/etc/zabbix/
74         $(INSTALL_DIR) $(1)/etc/init.d
75         $(INSTALL_BIN) ./files/zabbix_agentd.init $(1)/etc/init.d/zabbix_agentd
76 endef
77
78 define Package/zabbix-sender/install
79         $(INSTALL_DIR) $(1)/usr/sbin
80         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_sender $(1)/usr/sbin/
81         $(INSTALL_DIR) $(1)/etc/zabbix
82 endef
83
84 define Package/zabbix-server/conffiles
85 /etc/zabbix/zabbix_server.conf
86 endef
87
88 define Package/zabbix-server/install
89         $(INSTALL_DIR) $(1)/usr/sbin
90         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_server $(1)/usr/sbin/
91         $(INSTALL_DIR) $(1)/etc/zabbix
92         $(INSTALL_CONF) $(PKG_BUILD_DIR)/misc/conf/zabbix_server.conf $(1)/etc/zabbix/
93 endef
94
95 $(eval $(call BuildPackage,zabbix-agent))
96 $(eval $(call BuildPackage,zabbix-sender))
97 $(eval $(call BuildPackage,zabbix-server))