ffd23dbbbc
The append_params_quoted procedure was only needed while the final OpenVPN was eval'd, now that the service wrappers pass the command line through to ssd unmangled, the extraneous quotes cause issues in the openvpn command line parser, so remove them. git-svn-id: svn://svn.openwrt.org/openwrt/packages@30719 3c298f89-4303-0410-b956-a3cf2f4a3e73
174 lines
3.9 KiB
Makefile
174 lines
3.9 KiB
Makefile
#
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=openvpn
|
|
PKG_VERSION:=2.2.1
|
|
PKG_RELEASE:=5
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://swupdate.openvpn.net/community/releases @SF/openvpn
|
|
PKG_MD5SUM:=500bee5449b29906150569aaf2eb2730
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/openvpn
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=VPN
|
|
DEPENDS:=+kmod-tun +libopenssl +!OPENVPN_DISABLE_LZO:liblzo
|
|
TITLE:=Open source VPN solution using SSL
|
|
URL:=http://openvpn.net
|
|
MENU:=1
|
|
endef
|
|
|
|
define Package/openvpn/description
|
|
Open source VPN solution using SSL
|
|
endef
|
|
|
|
define Package/openvpn/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
|
|
define Package/openvpn-easy-rsa
|
|
$(call Package/openvpn)
|
|
DEPENDS:=+openssl-util
|
|
TITLE:=Simple shell scripts to manage a Certificate Authority
|
|
endef
|
|
|
|
define Package/openvpn-easy-rsa/conffiles
|
|
/etc/easy-rsa/keys/serial
|
|
/etc/easy-rsa/keys/index.txt
|
|
/etc/easy-rsa/vars
|
|
endef
|
|
|
|
CONFIGURE_ARGS+= \
|
|
--with-ifconfig-path=/sbin/ifconfig \
|
|
--with-iproute-path=/usr/sbin/ip \
|
|
--with-route-path=/sbin/route \
|
|
--disable-debug \
|
|
--disable-plugins \
|
|
--disable-pthread \
|
|
--disable-selinux \
|
|
--disable-socks \
|
|
--enable-small
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_LZO),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-lzo
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_CRYPTO),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-crypto
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_SSL),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-ssl
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_X509_ALT_USERNAME),y)
|
|
CONFIGURE_ARGS += \
|
|
--enable-x509-alt-username
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_MULTI),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-multi
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_SERVER),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-server
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_EUREPHIA),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-eurephia
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_MANAGEMENT),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-management
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_PKCS11),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-pkcs11
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_HTTP),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-http
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_FRAGMENT),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-fragment
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_MULTIHOME),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-multihome
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_PORT_SHARE),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-port-share
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_ENABLE_PASSWORD_SAVE),y)
|
|
CONFIGURE_ARGS += \
|
|
--enable-password-save
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_DEF_AUTH),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-def-auth
|
|
endif
|
|
|
|
ifeq ($(CONFIG_OPENVPN_DISABLE_PF),y)
|
|
CONFIGURE_ARGS += \
|
|
--disable-pf
|
|
endif
|
|
|
|
define Package/openvpn/conffiles
|
|
/etc/config/openvpn
|
|
endef
|
|
|
|
define Package/openvpn/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/openvpn $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/openvpn
|
|
$(INSTALL_DIR) $(1)/lib/upgrade/keep.d
|
|
$(INSTALL_DATA) files/openvpn.upgrade $(1)/lib/upgrade/keep.d/openvpn
|
|
endef
|
|
|
|
define Package/openvpn-easy-rsa/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/easy-rsa/2.0/{build-*,clean-all,inherit-inter,list-crl,pkitool,revoke-full,sign-req,whichopensslcnf} $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/easy-rsa
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/easy-rsa/2.0/openssl-1.0.0.cnf $(1)/etc/easy-rsa/openssl-1.0.0.cnf
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/easy-rsa/2.0/vars $(1)/etc/easy-rsa/vars
|
|
$(INSTALL_DIR) $(1)/etc/easy-rsa/keys
|
|
$(INSTALL_DATA) files/easy-rsa.index $(1)/etc/easy-rsa/keys/index.txt
|
|
$(INSTALL_DATA) files/easy-rsa.serial $(1)/etc/easy-rsa/keys/serial
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,openvpn))
|
|
$(eval $(call BuildPackage,openvpn-easy-rsa))
|