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.

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