summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity
diff options
context:
space:
mode:
authorOleksandr Kravchuk <open.source@oleksandr-kravchuk.com>2019-03-16 15:49:36 +0100
committerKhem Raj <raj.khem@gmail.com>2019-03-17 08:44:41 -0700
commit01a7a781969002d0909e67428cdfe21004affc14 (patch)
tree032a40bbc2eafca1e21d91c01646ba3100340176 /meta-networking/recipes-connectivity
parent5ea50a04748e7caa4974bdbe65ff5df6cb27fc8d (diff)
downloadmeta-openembedded-01a7a781969002d0909e67428cdfe21004affc14.tar.gz
openconnect: update to 8.02
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity')
-rw-r--r--meta-networking/recipes-connectivity/openconnect/openconnect_git.bb14
1 files changed, 10 insertions, 4 deletions
diff --git a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
index c944144e2..050a2833c 100644
--- a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
+++ b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
@@ -2,7 +2,11 @@ SUMMARY = "Open client for Cisco AnyConnect VPN"
2LICENSE = "LGPLv2.1" 2LICENSE = "LGPLv2.1"
3LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad" 3LIC_FILES_CHKSUM = "file://COPYING.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad"
4 4
5SRC_URI = "git://git.infradead.org/users/dwmw2/openconnect.git"
6SRCREV = "6487ee8763e1b6345718684909aca970befbc49d"
7
5DEPENDS = "vpnc libxml2 krb5 gettext-native" 8DEPENDS = "vpnc libxml2 krb5 gettext-native"
9RDEPENDS_${PN} = "bash python"
6 10
7PACKAGECONFIG ??= "gnutls lz4 libproxy" 11PACKAGECONFIG ??= "gnutls lz4 libproxy"
8 12
@@ -14,10 +18,7 @@ PACKAGECONFIG[libproxy] = "--with-libproxy,--without-libproxy,libproxy,"
14# not config defaults 18# not config defaults
15PACKAGECONFIG[pcsc-lite] = "--with-libpcsclite,--without-libpcsclite,pcsc-lite," 19PACKAGECONFIG[pcsc-lite] = "--with-libpcsclite,--without-libpcsclite,pcsc-lite,"
16 20
17PV = "7.08" 21PV = "8.02"
18
19SRCREV = "9697bea0e50952cab57063238b43a7099e498cbb"
20SRC_URI = "git://git.infradead.org/users/dwmw2/openconnect.git"
21 22
22S = "${WORKDIR}/git" 23S = "${WORKDIR}/git"
23 24
@@ -25,3 +26,8 @@ inherit autotools pkgconfig
25 26
26EXTRA_OECONF += "--with-vpnc-script=${SYSROOT_DESTDIR}${sysconfdir}/vpnc/vpnc-script \ 27EXTRA_OECONF += "--with-vpnc-script=${SYSROOT_DESTDIR}${sysconfdir}/vpnc/vpnc-script \
27 --disable-static" 28 --disable-static"
29
30do_configure_append() {
31 # script has /usr/bin/python2 path hardcoded
32 sed -i -e 's=python2\.*=python=g' ${S}/trojans/tncc-wrapper.py
33}