1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-17 12:53:54 +02:00
openwrt-packages/net/openconnect/Makefile

90 lines
2.7 KiB
Makefile
Raw Permalink Normal View History

2014-06-03 18:18:17 +02:00
#
# Copyright (C) 2006-2015 OpenWrt.org
2014-06-03 18:18:17 +02:00
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=openconnect
PKG_VERSION:=9.12
PKG_RELEASE:=4
2014-06-03 18:18:17 +02:00
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://www.infradead.org/openconnect/download
PKG_HASH:=a2bedce3aa4dfe75e36e407e48e8e8bc91d46def5335ac9564fbf91bd4b2413e
PKG_LICENSE:=LGPL-2.1-or-later
PKG_LICENSE_FILES:=COPYING.LGPL
PKG_CPE_ID:=cpe:/a:infradead:openconnect
2014-06-03 18:18:17 +02:00
PKG_CONFIG_DEPENDS:= \
CONFIG_OPENCONNECT_GNUTLS \
CONFIG_OPENCONNECT_OPENSSL \
PKG_BUILD_FLAGS:=no-mips16
2014-06-03 18:18:17 +02:00
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/nls.mk
2014-06-03 18:18:17 +02:00
define Package/openconnect/config
source "$(SOURCE)/Config.in"
endef
define Package/openconnect
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libxml2 +kmod-tun +resolveip +vpnc-scripts +OPENCONNECT_OPENSSL:libopenssl +OPENCONNECT_OPENSSL:p11-kit +OPENCONNECT_OPENSSL:libp11 +OPENCONNECT_GNUTLS:libgnutls +OPENCONNECT_GNUTLS:libtasn1 +OPENCONNECT_STOKEN:libstoken $(ICONV_DEPENDS) $(INTL_DEPENDS)
TITLE:=OpenConnect VPN client (Cisco AnyConnect and Juniper/Pulse compatible)
MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
URL:=https://www.infradead.org/openconnect/
2014-06-03 18:18:17 +02:00
SUBMENU:=VPN
endef
define Package/openconnect/description
A VPN client compatible with several SSL VPN implementations (ocserv, Cisco AnyConnect, Juniper, Palo Alto)
2014-06-03 18:18:17 +02:00
OpenConnect is an SSL VPN client initially created to support Cisco's
AnyConnect SSL VPN. It has since been extended to support the Pulse Connect
Secure VPN (formerly known as Juniper Network Connect or Junos Pulse) and
the Palo Alto Networks GlobalProtect SSL VPN.
A corresponding OpenConnect VPN server implementation can be found in the
ocserv package.
2014-06-03 18:18:17 +02:00
endef
CONFIGURE_ARGS += \
--disable-shared \
--with-libiconv-prefix=$(ICONV_PREFIX) \
--with-libintl-prefix=$(INTL_PREFIX) \
--with-vpnc-script=/lib/netifd/vpnc-script \
--without-libpcsclite \
--without-stoken \
--without-libpskc \
--without-gssapi \
--without-lz4
2014-06-03 18:18:17 +02:00
ifeq ($(CONFIG_OPENCONNECT_OPENSSL),y)
CONFIGURE_ARGS += \
--without-gnutls
endif
ifeq ($(CONFIG_OPENCONNECT_STOKEN),y)
CONFIGURE_ARGS += \
--with-stoken
endif
2014-06-03 18:18:17 +02:00
define Package/openconnect/install
$(INSTALL_DIR) $(1)/etc/openconnect/
2014-06-03 18:18:17 +02:00
$(INSTALL_DIR) $(1)/lib/netifd/proto
$(INSTALL_BIN) ./files/openconnect.sh $(1)/lib/netifd/proto/
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/openconnect $(1)/usr/sbin/
$(INSTALL_BIN) ./files/openconnect-wrapper $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/lib/upgrade/keep.d
$(INSTALL_DATA) ./files/openconnect.upgrade $(1)/lib/upgrade/keep.d/openconnect
2014-06-03 18:18:17 +02:00
endef
$(eval $(call BuildPackage,openconnect))