[packages] zabbix: Fix build.
[openwrt/svn-archive/archive.git] / admin / zabbix / Makefile
1 #
2 # Copyright (C) 2006-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:=zabbix
11 PKG_VERSION:=1.6
12 PKG_RELEASE:=2
13 PKG_MD5SUM:=39d4c871439b1b4f0429964b4abbfc45
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/zabbix
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 PKG_CONFIGURE_OPTIONS:= \
54 --bindir="/usr/sbin" \
55 --enable-agent
56
57 ifneq ($(CONFIG_PACKAGE_zabbix-server),)
58 PKG_CONFIGURE_OPTIONS+= \
59 --enable-server \
60 --with-sqlite3="$(STAGING_DIR)/usr"
61 endif
62
63 MAKE_FLAGS += ARCH="linux"
64
65 define Build/Configure
66 $(call Build/Configure/Default, \
67 $(PKG_CONFIGURE_OPTIONS) \
68 )
69 endef
70
71 define Package/zabbix-agent/conffiles
72 /etc/zabbix/zabbix_agentd.conf
73 endef
74
75 define Package/zabbix-agent/install
76 $(INSTALL_DIR) $(1)/usr/sbin
77 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_agentd $(1)/usr/sbin/
78 $(INSTALL_DIR) $(1)/etc/zabbix
79 $(INSTALL_CONF) ./files/zabbix_agentd.conf $(1)/etc/zabbix/
80 $(INSTALL_DIR) $(1)/etc/init.d
81 $(INSTALL_BIN) ./files/zabbix_agentd.init $(1)/etc/init.d/zabbix_agentd
82 endef
83
84 define Package/zabbix-agent/postinst
85 #!/bin/sh
86
87 name=zabbix
88 id=53
89
90 # do not change below
91 # check if we are on real system
92 if [ -z "$${IPKG_INSTROOT}" ]; then
93 # create copies of passwd and group, if we use squashfs
94 rootfs=`mount |awk '/root/ { print $$5 }'`
95 if [ "$$rootfs" = "squashfs" ]; then
96 if [ -h /etc/group ]; then
97 rm /etc/group
98 cp /rom/etc/group /etc/group
99 fi
100 if [ -h /etc/passwd ]; then
101 rm /etc/passwd
102 cp /rom/etc/passwd /etc/passwd
103 fi
104 fi
105 fi
106
107 echo ""
108 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
109 echo "adding group $$name to /etc/group"
110 echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
111 fi
112
113 if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
114 echo "adding user $$name to /etc/passwd"
115 echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
116 fi
117
118 chown $${name} $${IPKG_INSTROOT}/etc/zabbix/zabbix_agentd.conf
119
120 endef
121
122 define Package/zabbix-sender/install
123 $(INSTALL_DIR) $(1)/usr/sbin
124 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_sender $(1)/usr/sbin/
125 $(INSTALL_DIR) $(1)/etc/zabbix
126 endef
127
128 define Package/zabbix-server/conffiles
129 /etc/zabbix/zabbix_server.conf
130 endef
131
132 define Package/zabbix-server/install
133 $(INSTALL_DIR) $(1)/usr/sbin
134 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/zabbix_server $(1)/usr/sbin/
135 $(INSTALL_DIR) $(1)/etc/zabbix
136 $(INSTALL_CONF) $(PKG_BUILD_DIR)/misc/conf/zabbix_server.conf $(1)/etc/zabbix/
137 endef
138
139 $(eval $(call BuildPackage,zabbix-agent))
140 $(eval $(call BuildPackage,zabbix-sender))
141 $(eval $(call BuildPackage,zabbix-server))