878dc8cc9b
--enable-password-save option has been removed
(9ffd00e754
). Since
it now defaults to "enabled" in the upstream package, there is no
point in adding Config.in.legacy support for it: Config.in.legacy
logic only kicks in when the option is enabled, but the upstream
package precisely preserve the compatibility with this situation.
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# openvpn
|
|
#
|
|
################################################################################
|
|
|
|
OPENVPN_VERSION = 2.4.0
|
|
OPENVPN_SOURCE = openvpn-$(OPENVPN_VERSION).tar.xz
|
|
OPENVPN_SITE = http://swupdate.openvpn.net/community/releases
|
|
OPENVPN_DEPENDENCIES = host-pkgconf openssl
|
|
OPENVPN_LICENSE = GPLv2
|
|
OPENVPN_LICENSE_FILES = COPYRIGHT.GPL
|
|
OPENVPN_CONF_OPTS = \
|
|
--disable-plugin-auth-pam \
|
|
--enable-iproute2 \
|
|
--with-crypto-library=openssl \
|
|
$(if $(BR2_STATIC_LIBS),--disable-plugins)
|
|
OPENVPN_CONF_ENV = IFCONFIG=/sbin/ifconfig \
|
|
NETSTAT=/bin/netstat \
|
|
ROUTE=/sbin/route
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENVPN_SMALL),y)
|
|
OPENVPN_CONF_OPTS += \
|
|
--enable-small \
|
|
--disable-plugins \
|
|
--disable-eurephia
|
|
endif
|
|
|
|
# BusyBox 1.21+ places the ip applet in the "correct" place
|
|
# but previous versions didn't.
|
|
ifeq ($(BR2_PACKAGE_IPROUTE2),y)
|
|
OPENVPN_CONF_ENV += IPROUTE=/sbin/ip
|
|
else ifeq ($(BR2_BUSYBOX_VERSION_1_19_X)$(BR2_BUSYBOX_VERSION_1_20_X),y)
|
|
OPENVPN_CONF_ENV += IPROUTE=/bin/ip
|
|
else
|
|
OPENVPN_CONF_ENV += IPROUTE=/sbin/ip
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
|
|
OPENVPN_DEPENDENCIES += lzo
|
|
else
|
|
OPENVPN_CONF_OPTS += --disable-lzo
|
|
endif
|
|
|
|
define OPENVPN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 $(@D)/src/openvpn/openvpn \
|
|
$(TARGET_DIR)/usr/sbin/openvpn
|
|
endef
|
|
|
|
define OPENVPN_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/openvpn/S60openvpn \
|
|
$(TARGET_DIR)/etc/init.d/S60openvpn
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|