mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
* needed for exalt * fix LICENSE * add LIC_FILES_CHKSUM * .inc merged to .bb and cleaned files Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
31 lines
1.1 KiB
BlitzBasic
31 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "A client for the Cisco3000 VPN Concentrator"
|
|
HOMEPAGE = "http://www.unix-ag.uni-kl.de/~massar/vpnc/"
|
|
AUTHOR = "Maurice Massar vpnc@unix-ag.uni-kl.de"
|
|
SECTION = "console/network"
|
|
PRIORITY = "optional"
|
|
LICENSE = "GPL-2.0+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=173b74cb8ac640a9992c03f3bce22a33"
|
|
DEPENDS = "libgcrypt"
|
|
RDEPENDS_${PN} = "kernel-module-tun"
|
|
|
|
CFLAGS_append = ' -DVERSION=\\"${PV}\\"'
|
|
LDFLAGS_append = " -lgcrypt -lgpg-error"
|
|
|
|
do_install () {
|
|
sed -i s:m600:m\ 600:g Makefile
|
|
oe_runmake 'DESTDIR=${D}' 'PREFIX=/usr' install
|
|
rm -f ${D}${sysconfdir}/vpnc/vpnc.conf #This file is useless
|
|
install ${WORKDIR}/default.conf ${D}${sysconfdir}/vpnc/default.conf
|
|
}
|
|
|
|
CONFFILES_${PN} = "${sysconfdir}/vpnc/default.conf"
|
|
|
|
SRC_URI = "http://www.unix-ag.uni-kl.de/~massar/vpnc/vpnc-${PV}.tar.gz \
|
|
file://makeman.patch \
|
|
file://vpnc-install.patch \
|
|
file://long-help \
|
|
file://default.conf"
|
|
|
|
SRC_URI[md5sum] = "4378f9551d5b077e1770bbe09995afb3"
|
|
SRC_URI[sha256sum] = "46cea3bd02f207c62c7c6f2f22133382602baeda1dc320747809e94881414884"
|