- Virtual Tunnels over TCP/IP networks with traffic shaping, compression and encryption
Signed-off-by: Sam Nelson <[email protected]> --- .../recipes-connectivity/vtun/vtun_3.0.3.bb | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 meta-arago-extras/recipes-connectivity/vtun/vtun_3.0.3.bb diff --git a/meta-arago-extras/recipes-connectivity/vtun/vtun_3.0.3.bb b/meta-arago-extras/recipes-connectivity/vtun/vtun_3.0.3.bb new file mode 100755 index 0000000..dc2f79e --- /dev/null +++ b/meta-arago-extras/recipes-connectivity/vtun/vtun_3.0.3.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Virtual Tunnels over TCP/IP networks with traffic shaping, compression and encryption." +HOMEPAGE = "http://vtun.sourceforge.net/" +SECTION = "console/network" +PRIORITY = "optional" +LICENSE = "GPLv2" +DEPENDS = "zlib lzo openssl" +PR = "r0" +LIC_FILES_CHKSUM = "file://vtun.h;md5=72742635d461c045fdd3a1710f9f71be" + +SRC_URI = "http://downloads.sourceforge.net/project/vtun/vtun/${PV}/vtun-${PV}.tar.gz" + +SRC_URI[md5sum] = "f3becf2a0270910a841060c08d1db824" +SRC_URI[sha256sum] = "69dcbe4f8c5ce7d91b4150a6309e536d03b61841169746ca5788413ac7edb9cb" + +inherit autotools + +do_configure() { + sed -i "s/\$BLOWFISH_HDR_DIR \/usr\/include\/ssl/\$BLOWFISH_HDR_DIR \/usr\/include\/ssl \$SSL_HDR_DIR/" configure + oe_runconf --with-lzo-headers=${STAGING_INCDIR}/lzo --with-lzo-lib=${STAGING_LIBDIR} --with-ssl-headers=${STAGING_INCDIR}/openssl --with-ssl-lib=${STAGING_LIBDIR} + sed '102d' Makefile > Makefile.new + mv Makefile.new Makefile +} + + + -- 1.7.9.5 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
