2009-12-21 20:58:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 Thomas Heil <heil@terminal-consulting.de>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=haproxy
|
|
|
|
PKG_VERSION:=1.3.22
|
2010-01-14 12:32:27 +00:00
|
|
|
PKG_RELEASE:=2
|
2009-12-21 20:58:46 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://haproxy.1wt.eu/download/1.3/src/
|
|
|
|
PKG_MD5SUM:=b84e0935cfea99eda43645d53bb82367
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/haproxy
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+libpcre +libltdl
|
|
|
|
TITLE:=The Reliable, High Performance TCP/HTTP Load Balancer
|
|
|
|
URL:=http://haproxy.1wt.eu/
|
|
|
|
SUBMENU:=Proxy Servers
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/haproxy/conffiles
|
|
|
|
/etc/haproxy.cfg
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/haproxy/description
|
|
|
|
Open source High Performance TCP/HTTP Load Balancer
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) TARGET=$(if $(CONFIG_LINUX_2_4),linux24,linux26) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LD="$(TARGET_CC)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2009-12-22 13:37:26 +00:00
|
|
|
SMALL_OPTS="-DBUFSIZE=8192 -DMAXREWRITE=1024" \
|
2009-12-21 20:58:46 +00:00
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/haproxy/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/haproxy $(1)/usr/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc
|
|
|
|
$(INSTALL_CONF) ./files/haproxy.cfg $(1)/etc/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/haproxy.init $(1)/etc/init.d/haproxy
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,haproxy))
|