mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
Changelog: =========== - add OpenSSL 3.0+ PKCS#11 support using OSSL_STORE API - add OpenSSL Engine support (with OpenSSL < 3.0) - update package links for distros in README - remove deprecated option --plugin - increase the maximum size of the proxy response - route: always remove wrong pppd route to self - fix several Coverity warnings - fix a memory leak in new ipv4_drop_wrong_route method - HTTP: fixes missing '\0' in debug - IO: fixes a RC use after free - SSL: Avoid leaking SSL context Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
826 B
BlitzBasic
26 lines
826 B
BlitzBasic
SUMMARY = "Client for PPP+SSL VPN tunnel services"
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3d575262a651a6f1a17210ce41bf907d"
|
|
|
|
SRC_URI = "git://github.com/adrienverge/openfortivpn.git;protocol=https;branch=master;tag=v${PV}"
|
|
SRCREV = "9230413f47de40fbf0dc8ba18eff42e943e27ca7"
|
|
|
|
DEPENDS = "openssl"
|
|
|
|
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
|
|
|
|
PACKAGECONFIG[resolvconf] = "--with-resolvconf=${base_sbindir}/resolvconf --enable-resolvconf,--with-resolvconf=DISABLED,,"
|
|
PACKAGECONFIG[systemd] = "--with-systemdsystemunitdir=${systemd_system_unitdir},--without-systemdsystemunitdir,,"
|
|
|
|
|
|
inherit autotools pkgconfig systemd
|
|
|
|
EXTRA_OECONF = " \
|
|
--with-pppd=${sbindir}/pppd \
|
|
--disable-proc \
|
|
"
|
|
|
|
SYSTEMD_SERVICE:${PN} = "openfortivpn@.service"
|
|
|
|
RDEPENDS:${PN} = "ppp"
|