Move all to deprecated folder.
This commit is contained in:
14
deprecated/firmware/buildroot/package/openswan/Config.in
Normal file
14
deprecated/firmware/buildroot/package/openswan/Config.in
Normal file
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_OPENSWAN
|
||||
bool "openswan"
|
||||
depends on BR2_USE_MMU # iproute2
|
||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # iproute2
|
||||
select BR2_PACKAGE_GMP
|
||||
select BR2_PACKAGE_IPROUTE2
|
||||
help
|
||||
Openswan is an implementation of IPsec for Linux
|
||||
|
||||
http://www.openswan.org
|
||||
|
||||
comment "openswan needs a toolchain w/ headers >= 3.0"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 c1605c96d3c3cf357cefea7622f3acbc7a02d6a3cebfb76979327b566084a5ea openswan-2.6.46.tar.gz
|
||||
41
deprecated/firmware/buildroot/package/openswan/openswan.mk
Normal file
41
deprecated/firmware/buildroot/package/openswan/openswan.mk
Normal file
@@ -0,0 +1,41 @@
|
||||
################################################################################
|
||||
#
|
||||
# openswan
|
||||
#
|
||||
################################################################################
|
||||
|
||||
OPENSWAN_VERSION = 2.6.46
|
||||
OPENSWAN_SITE = http://download.openswan.org/openswan
|
||||
OPENSWAN_LICENSE = GPLv2+, BSD-3c
|
||||
OPENSWAN_LICENSE_FILES = COPYING LICENSE
|
||||
|
||||
OPENSWAN_DEPENDENCIES = host-bison host-flex gmp iproute2
|
||||
OPENSWAN_MAKE_OPTS = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" \
|
||||
USERCOMPILE="$(TARGET_CFLAGS) $(if $(BR2_STATIC_LIBS),,-fPIE)" \
|
||||
USERLINK="$(TARGET_LDFLAGS) $(if $(BR2_STATIC_LIBS),,-fPIE)" \
|
||||
INC_USRLOCAL=/usr USE_KLIPS=false USE_MAST=false USE_NM=false
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCURL),y)
|
||||
OPENSWAN_DEPENDENCIES += libcurl
|
||||
OPENSWAN_MAKE_OPTS += USE_LIBCURL=true
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
OPENSWAN_DEPENDENCIES += openssl
|
||||
OPENSWAN_MAKE_OPTS += HAVE_OPENSSL=true
|
||||
ifeq ($(BR2_PACKAGE_OCF_LINUX),y)
|
||||
OPENSWAN_MAKE_OPTS += HAVE_OCF=true
|
||||
endif
|
||||
endif
|
||||
|
||||
define OPENSWAN_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \
|
||||
$(OPENSWAN_MAKE_OPTS) programs
|
||||
endef
|
||||
|
||||
define OPENSWAN_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \
|
||||
$(OPENSWAN_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user