diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb')
-rw-r--r-- | meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb b/meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb new file mode 100644 index 0000000000..9ef0fbf0b5 --- /dev/null +++ b/meta-networking/recipes-support/openvpn/openvpn_2.1.3.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "A full-featured SSL VPN solution via tun device" | ||
2 | HOMEPAGE = "http://openvpn.sourceforge.net" | ||
3 | SECTION = "console/network" | ||
4 | LICENSE = "GPLv2" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=5aac200199fde47501876cba7263cb0c" | ||
6 | DEPENDS = "lzo openssl" | ||
7 | |||
8 | inherit autotools | ||
9 | |||
10 | SRC_URI = "http://openvpn.net/release/openvpn-${PV}.tar.gz \ | ||
11 | file://openvpn" | ||
12 | |||
13 | SRC_URI[md5sum] = "7486d3e270ba4b033e311d3e022a0ad7" | ||
14 | SRC_URI[sha256sum] = "5185181df2e6043bd667377bc92e36ea5a5bd7600af209654f109b6403ca5b36" | ||
15 | |||
16 | CFLAGS += "-fno-inline" | ||
17 | |||
18 | # I want openvpn to be able to read password from file (hrw) | ||
19 | EXTRA_OECONF += "--enable-password-save" | ||
20 | |||
21 | do_install_append() { | ||
22 | install -d ${D}/${sysconfdir}/init.d | ||
23 | install -d ${D}/${sysconfdir}/openvpn | ||
24 | install -m 755 ${WORKDIR}/openvpn ${D}/${sysconfdir}/init.d | ||
25 | } | ||
26 | |||
27 | RRECOMMENDS_${PN} = "kernel-module-tun" | ||