packages/zabbix: use common CONFIGURE_ARGS var, cleanup

git-svn-id: svn://svn.openwrt.org/openwrt/packages@23438 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2010-10-14 12:41:29 +00:00
parent 01afea6fff
commit 26387c4086

View File

@ -1,5 +1,5 @@
#
# Copyright (C) 2006-2009 OpenWrt.org
# Copyright (C) 2006-2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@ -10,10 +10,10 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=zabbix
PKG_VERSION:=1.6
PKG_RELEASE:=2
PKG_MD5SUM:=39d4c871439b1b4f0429964b4abbfc45
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/zabbix
PKG_MD5SUM:=39d4c871439b1b4f0429964b4abbfc45
PKG_BUILD_DEPENDS:=libsqlite3
PKG_INSTALL:=1
@ -50,24 +50,18 @@ ifneq ($(SDK),)
CONFIG_PACKAGE_zabbix-server:=m
endif
PKG_CONFIGURE_OPTIONS:= \
CONFIGURE_ARGS+= \
--bindir="/usr/sbin" \
--enable-agent
ifneq ($(CONFIG_PACKAGE_zabbix-server),)
PKG_CONFIGURE_OPTIONS+= \
CONFIGURE_ARGS+= \
--enable-server \
--with-sqlite3="$(STAGING_DIR)/usr"
endif
MAKE_FLAGS += ARCH="linux"
define Build/Configure
$(call Build/Configure/Default, \
$(PKG_CONFIGURE_OPTIONS) \
)
endef
define Package/zabbix-agent/conffiles
/etc/zabbix/zabbix_agentd.conf
endef