Commit 3bc3af3d authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

openswan: new package

parent a79f0494
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -547,6 +547,7 @@ source "package/nuttcp/Config.in"
source "package/olsr/Config.in"
source "package/openntpd/Config.in"
source "package/openssh/Config.in"
source "package/openswan/Config.in"
source "package/openvpn/Config.in"
source "package/portmap/Config.in"
source "package/pppd/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_OPENSWAN
	bool "openswan"
	select BR2_PACKAGE_GMP
	select BR2_PACKAGE_IPROUTE2
	help
	  Openswan is an implementation of IPsec for Linux

	  http://www.openswan.org
+35 −0
Original line number Diff line number Diff line
#############################################################
#
# openswan
#
#############################################################

OPENSWAN_VERSION = 2.6.38
OPENSWAN_SITE = http://download.openswan.org/openswan
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
	$(MAKE) -C $(@D) $(OPENSWAN_MAKE_OPT) programs
endef

define OPENSWAN_INSTALL_TARGET_CMDS
	$(MAKE) -C $(@D) $(OPENSWAN_MAKE_OPT) DESTDIR=$(TARGET_DIR) install
endef

$(eval $(call GENTARGETS))