e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
38 lines
939 B
Makefile
38 lines
939 B
Makefile
#############################################################
|
|
#
|
|
# openvpn
|
|
#
|
|
#############################################################
|
|
|
|
OPENVPN_VERSION = 2.2.2
|
|
OPENVPN_SITE = http://swupdate.openvpn.net/community/releases
|
|
OPENVPN_CONF_OPT = --enable-small --disable-plugins
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENVPN_LZO),y)
|
|
OPENVPN_DEPENDENCIES += lzo
|
|
else
|
|
OPENVPN_CONF_OPT += --disable-lzo
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENVPN_OPENSSL),y)
|
|
OPENVPN_DEPENDENCIES += openssl
|
|
else
|
|
OPENVPN_CONF_OPT += --disable-crypto --disable-ssl
|
|
endif
|
|
|
|
define OPENVPN_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 $(@D)/openvpn \
|
|
$(TARGET_DIR)/usr/sbin/openvpn
|
|
if [ ! -f $(TARGET_DIR)/etc/init.d/openvpn ]; then \
|
|
$(INSTALL) -m 755 -D package/openvpn/openvpn.init \
|
|
$(TARGET_DIR)/etc/init.d/openvpn; \
|
|
fi
|
|
endef
|
|
|
|
define OPENVPN_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/sbin/openvpn
|
|
rm -f $(TARGET_DIR)/etc/init.d/openvpn
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|