cdae2b24f0
openswan needs host-bison. The dependency was already there, but the build was not executed with $(TARGET_MAKE_ENV) in the environment, and therefore $(HOST_DIR)/usr/bin was not in the PATH. While we're at it, add licensing informations to openswan. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
#############################################################
|
|
#
|
|
# openswan
|
|
#
|
|
#############################################################
|
|
|
|
OPENSWAN_VERSION = 2.6.38
|
|
OPENSWAN_SITE = http://download.openswan.org/openswan
|
|
OPENSWAN_LICENSE = GPLv2+, BSD-3c
|
|
OPENSWAN_LICENSE_FILES = COPYING LICENSE
|
|
|
|
OPENSWAN_DEPENDENCIES = host-bison gmp iproute2
|
|
OPENSWAN_MAKE_OPT = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" \
|
|
USERCOMPILE="$(TARGET_CFLAGS)" INC_USRLOCAL=/usr \
|
|
USE_KLIPS=false USE_MAST=false USE_NM=false
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
|
OPENSWAN_DEPENDENCIES += libcurl
|
|
OPENSWAN_MAKE_OPT += USE_LIBCURL=true
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPENSWAN_DEPENDENCIES += openssl
|
|
OPENSWAN_MAKE_OPT += HAVE_OPENSSL=true
|
|
ifeq ($(BR2_PACKAGE_OPENSSL_OCF),y)
|
|
OPENSWAN_MAKE_OPT += HAVE_OCF=true
|
|
endif
|
|
endif
|
|
|
|
define OPENSWAN_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
$(OPENSWAN_MAKE_OPT) programs
|
|
endef
|
|
|
|
define OPENSWAN_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
$(OPENSWAN_MAKE_OPT) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|