haproxy: new package
HAProxy is a free, very fast and reliable solution offering high availability, load balancing, and proxying for TCP and HTTP-based applications. http://www.haproxy.org Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
061784404f
commit
169fc99ef2
85
package/haproxy/haproxy.mk
Normal file
85
package/haproxy/haproxy.mk
Normal file
@@ -0,0 +1,85 @@
|
||||
################################################################################
|
||||
#
|
||||
# haproxy
|
||||
#
|
||||
################################################################################
|
||||
|
||||
HAPROXY_VERSION_MAJOR = 1.8
|
||||
HAPROXY_VERSION = $(HAPROXY_VERSION_MAJOR).13
|
||||
HAPROXY_SITE = http://www.haproxy.org/download/$(HAPROXY_VERSION_MAJOR)/src
|
||||
HAPROXY_LICENSE = GPL-2.0+ and LGPL-2.1+ with exceptions
|
||||
HAPROXY_LICENSE_FILES = LICENSE doc/lgpl.txt doc/gpl.txt
|
||||
|
||||
HAPROXY_MAKE_OPTS = \
|
||||
LD=$(TARGET_CC) \
|
||||
PREFIX=/usr \
|
||||
TARGET=custom
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
|
||||
HAPROXY_LIBS += -latomic
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
HAPROXY_MAKE_OPTS += USE_THREAD=1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LUA_5_3),y)
|
||||
HAPROXY_DEPENDENCIES += lua
|
||||
HAPROXY_MAKE_OPTS += USE_LUA=1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
HAPROXY_DEPENDENCIES += openssl
|
||||
HAPROXY_MAKE_OPTS += USE_OPENSSL=1
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
HAPROXY_LIBS += -lz
|
||||
endif
|
||||
endif
|
||||
|
||||
# pcre and pcre2 can't be enabled at the same time so prefer pcre2
|
||||
# Set PCRE2_DIR as haproxy will otherwise try to use pcre2-config and
|
||||
# will default to /usr/local
|
||||
ifeq ($(BR2_PACKAGE_PCRE2),y)
|
||||
HAPROXY_DEPENDENCIES += pcre2
|
||||
HAPROXY_MAKE_OPTS += \
|
||||
PCRE2DIR=$(STAGING_DIR)/usr \
|
||||
USE_PCRE2=1
|
||||
|
||||
# Again, set manually PCRE2_LDFLAGS or default will contain -L/usr/local
|
||||
ifeq ($(BR2_PACKAGE_PCRE2_32),y)
|
||||
HAPROXY_MAKE_OPTS += PCRE2_LDFLAGS=-lpcre2-32
|
||||
else ifeq ($(BR2_PACKAGE_PCRE2_16),y)
|
||||
HAPROXY_MAKE_OPTS += PCRE2_LDFLAGS=-lpcre2-16
|
||||
else
|
||||
HAPROXY_MAKE_OPTS += PCRE2_LDFLAGS=-lpcre2-8
|
||||
endif
|
||||
else ifeq ($(BR2_PACKAGE_PCRE),y)
|
||||
HAPROXY_DEPENDENCIES += pcre
|
||||
HAPROXY_MAKE_OPTS += \
|
||||
PCREDIR=$(STAGING_DIR)/usr \
|
||||
USE_PCRE=1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
|
||||
HAPROXY_DEPENDENCIES += systemd
|
||||
HAPROXY_MAKE_OPTS += USE_SYSTEMD=1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
HAPROXY_DEPENDENCIES += zlib
|
||||
HAPROXY_MAKE_OPTS += USE_ZLIB=1
|
||||
endif
|
||||
|
||||
HAPROXY_MAKE_OPTS += ADDLIB="$(HAPROXY_LIBS)"
|
||||
|
||||
define HAPROXY_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
$(HAPROXY_MAKE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define HAPROXY_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
$(HAPROXY_MAKE_OPTS) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user