bdc9364ffa
During _POST_PATCH_HOOKS _DEPENDANCIES aren't guaranteed to be built, however during _PRE_CONFIGURE_HOOKS they should be built. Should fix: http://autobuild.buildroot.net/results/dd8e225e2a49cfa6735bed11459007003a37c137/ http://autobuild.buildroot.net/results/e688c3652bd474ac682984e2e5947701942f0f57/ Cc: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
43 lines
1.6 KiB
Makefile
43 lines
1.6 KiB
Makefile
################################################################################
|
|
#
|
|
# fail2ban
|
|
#
|
|
################################################################################
|
|
|
|
FAIL2BAN_VERSION = 0.11.1
|
|
FAIL2BAN_SITE = $(call github,fail2ban,fail2ban,$(FAIL2BAN_VERSION))
|
|
FAIL2BAN_LICENSE = GPL-2.0+
|
|
FAIL2BAN_LICENSE_FILES = COPYING
|
|
FAIL2BAN_SETUP_TYPE = distutils
|
|
|
|
ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
|
define FAIL2BAN_PYTHON_2TO3
|
|
$(HOST_DIR)/bin/2to3 --write --nobackups --no-diffs $(@D)/bin/* $(@D)/fail2ban
|
|
endef
|
|
FAIL2BAN_DEPENDENCIES += host-python3
|
|
# We can't use _POST_PATCH_HOOKS because dependencies are not guaranteed
|
|
# to build and install before _POST_PATCH_HOOKS run.
|
|
FAIL2BAN_PRE_CONFIGURE_HOOKS += FAIL2BAN_PYTHON_2TO3
|
|
endif
|
|
|
|
define FAIL2BAN_FIX_DEFAULT_CONFIG
|
|
$(SED) '/^socket/c\socket = /run/fail2ban.sock' $(TARGET_DIR)/etc/fail2ban/fail2ban.conf
|
|
$(SED) '/^pidfile/c\pidfile = /run/fail2ban.pid' $(TARGET_DIR)/etc/fail2ban/fail2ban.conf
|
|
$(SED) '/^dbfile/c\dbfile = None' $(TARGET_DIR)/etc/fail2ban/fail2ban.conf
|
|
endef
|
|
FAIL2BAN_POST_INSTALL_TARGET_HOOKS += FAIL2BAN_FIX_DEFAULT_CONFIG
|
|
|
|
define FAIL2BAN_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 755 package/fail2ban/S60fail2ban \
|
|
$(TARGET_DIR)/etc/init.d/S60fail2ban
|
|
endef
|
|
|
|
define FAIL2BAN_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 0644 $(@D)/files/fail2ban.service.in \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/fail2ban.service
|
|
$(SED) 's,@BINDIR@,/usr/bin,g' $(TARGET_DIR)/usr/lib/systemd/system/fail2ban.service
|
|
$(SED) '/^PIDFile/c\PIDFile=/run/fail2ban.pid' $(TARGET_DIR)/usr/lib/systemd/system/fail2ban.service
|
|
endef
|
|
|
|
$(eval $(python-package))
|