You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.9 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. #
  2. # Copyright (C) 2006 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=openconnect
  9. PKG_VERSION:=6.00
  10. PKG_RELEASE:=4
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=ftp://ftp.infradead.org/pub/openconnect/
  13. PKG_MD5SUM:=7e28e23c6e281be31446e6c365f5d273
  14. PKG_CONFIG_DEPENDS:= \
  15. CONFIG_OPENCONNECT_GNUTLS \
  16. CONFIG_OPENCONNECT_OPENSSL \
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/openconnect/config
  19. source "$(SOURCE)/Config.in"
  20. endef
  21. define Package/openconnect
  22. SECTION:=net
  23. CATEGORY:=Network
  24. DEPENDS:=+libxml2 +kmod-tun +resolveip +OPENCONNECT_OPENSSL:libopenssl +OPENCONNECT_GNUTLS:libgnutls
  25. TITLE:=OpenConnect VPN client (Cisco AnyConnect compatible)
  26. MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
  27. URL:=http://www.infradead.org/openconnect/
  28. SUBMENU:=VPN
  29. endef
  30. define Package/openconnect/description
  31. A VPN client compatible with Cisco's AnyConnect SSL VPN and ocserv.
  32. OpenConnect is a client that follows the Cisco's AnyConnect SSL VPN protocol,
  33. which is supported by IOS 12.4(9)T or later on Cisco SR500, 870, 880, 1800,
  34. 2800, 3800, 7200 Series and Cisco 7301 Routers, as well as the OpenConnect
  35. VPN server.
  36. endef
  37. CONFIGURE_ARGS += \
  38. --disable-shared \
  39. --with-vpnc-script=/lib/netifd/vpnc-script
  40. ifeq ($(CONFIG_OPENCONNECT_OPENSSL),y)
  41. CONFIGURE_ARGS += \
  42. --without-gnutls
  43. endif
  44. define Package/openconnect/install
  45. $(INSTALL_DIR) $(1)/etc/openconnect/
  46. $(INSTALL_DIR) $(1)/lib/netifd/proto
  47. $(INSTALL_BIN) ./files/openconnect.sh $(1)/lib/netifd/proto/
  48. $(INSTALL_BIN) ./files/vpnc-script $(1)/lib/netifd/
  49. $(INSTALL_DIR) $(1)/usr/sbin
  50. $(INSTALL_BIN) $(PKG_BUILD_DIR)/openconnect $(1)/usr/sbin/
  51. $(INSTALL_BIN) ./files/openconnect-wrapper $(1)/usr/sbin/
  52. endef
  53. $(eval $(call BuildPackage,openconnect))