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.

105 lines
3.0 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
10 years ago
10 years ago
  1. #
  2. # Copyright (C) 2007-2011 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:=ocserv
  9. PKG_VERSION:=0.10.9
  10. PKG_RELEASE:=2
  11. PKG_USE_MIPS16:=0
  12. PKG_BUILD_DIR :=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  14. PKG_SOURCE_URL:=ftp://ftp.infradead.org/pub/ocserv/
  15. PKG_MD5SUM:=74834c59aa96beaa222c21ee6521adb2
  16. PKG_LICENSE:=GPLv2
  17. PKG_LICENSE_FILES:=COPYING
  18. PKG_FIXUP:=autoreconf
  19. PKG_CONFIG_DEPENDS:= \
  20. CONFIG_OCSERV_PAM \
  21. CONFIG_OCSERV_SECCOMP \
  22. CONFIG_OCSERV_PROTOBUF \
  23. include $(INCLUDE_DIR)/package.mk
  24. define Package/ocserv/config
  25. source "$(SOURCE)/Config.in"
  26. endef
  27. define Package/ocserv
  28. SECTION:=net
  29. CATEGORY:=Network
  30. SUBMENU:=VPN
  31. TITLE:=OpenConnect VPN server
  32. URL:=http://www.infradead.org/ocserv/
  33. MAINTAINER:=Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
  34. DEPENDS:= +OCSERV_RADIUS:libradcli +OCSERV_HTTP_PARSER:libhttp-parser +OCSERV_SECCOMP:libseccomp +libgnutls +certtool +libncurses +libreadline +OCSERV_PAM:libpam +OCSERV_PROTOBUF:libprotobuf-c +kmod-tun
  35. USERID:=ocserv=72:ocserv=72
  36. endef
  37. define Package/ocserv/description
  38. OpenConnect server (ocserv) is an SSL VPN server. Its purpose is to be
  39. a secure, small, fast and configurable VPN server. It implements the
  40. OpenConnect SSL VPN protocol, and has also (currently experimental)
  41. compatibility with clients using the AnyConnect SSL VPN protocol. The
  42. OpenConnect VPN protocol uses the standard IETF security protocols such
  43. as TLS 1.2, and Datagram TLS to provide the secure VPN service.
  44. endef
  45. EXTRA_CPPFLAGS+=-I$(STAGING_DIR)/usr/include/readline/
  46. EXTRA_LDFLAGS+=-lncurses
  47. CONFIGURE_ARGS+= \
  48. --enable-local-libopts \
  49. --with-libreadline-prefix="$(STAGING_DIR)/" \
  50. --without-libnl \
  51. --without-gssapi \
  52. --with-libcrypt-prefix="$(STAGING_DIR)/" \
  53. ifneq ($(CONFIG_OCSERV_PAM),y)
  54. CONFIGURE_ARGS += --without-pam
  55. endif
  56. ifneq ($(CONFIG_OCSERV_RADIUS),y)
  57. CONFIGURE_ARGS += --without-radius
  58. endif
  59. ifneq ($(CONFIG_OCSERV_SECCOMP),y)
  60. CONFIGURE_ARGS += --disable-seccomp
  61. endif
  62. ifneq ($(CONFIG_OCSERV_PROTOBUF),y)
  63. CONFIGURE_ARGS += --without-protobuf
  64. endif
  65. ifneq ($(CONFIG_OCSERV_HTTP_PARSER),y)
  66. CONFIGURE_ARGS += --without-http-parser
  67. endif
  68. define Package/ocserv/conffiles
  69. /etc/config/ocserv
  70. endef
  71. define Package/ocserv/install
  72. $(INSTALL_DIR) $(1)/usr/sbin
  73. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ocserv $(1)/usr/sbin/
  74. $(INSTALL_DIR) $(1)/usr/bin
  75. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ocpasswd $(1)/usr/bin/
  76. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/occtl $(1)/usr/bin/
  77. $(INSTALL_DIR) $(1)/etc/init.d
  78. $(INSTALL_BIN) ./files/ocserv.init $(1)/etc/init.d/ocserv
  79. $(INSTALL_DIR) $(1)/etc/ocserv
  80. $(INSTALL_CONF) ./files/ocserv.conf.template $(1)/etc/ocserv/ocserv.conf.template
  81. $(INSTALL_DIR) $(1)/etc/config
  82. $(INSTALL_CONF) ./files/config $(1)/etc/config/ocserv
  83. $(INSTALL_DIR) $(1)/lib/upgrade/keep.d
  84. $(INSTALL_DATA) ./files/ocserv.upgrade $(1)/lib/upgrade/keep.d/ocserv
  85. endef
  86. $(eval $(call BuildPackage,ocserv))