From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 05/51] package/vde2: new package
Date: Mon, 10 Dec 2012 07:41:28 +0100 [thread overview]
Message-ID: <50C58418.3060201@mind.be> (raw)
In-Reply-To: <1355070924-8009-6-git-send-email-yann.morin.1998@free.fr>
On 09/12/12 17:34, Yann E. MORIN wrote:
> VDE is an ethernet compliant virtual network that can be
> spawned over a set of physical computer over the Internet.
>
> Signed-off-by: "Yann E. MORIN"<yann.morin.1998@free.fr>
> ---
> package/Config.in | 1 +
> package/vde2/Config.in | 10 ++++++++++
> package/vde2/vde2.mk | 36 ++++++++++++++++++++++++++++++++++++
> 3 files changed, 47 insertions(+), 0 deletions(-)
> create mode 100644 package/vde2/Config.in
> create mode 100644 package/vde2/vde2.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 74e439e..529c1ce 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -667,6 +667,7 @@ source "package/ttcp/Config.in"
> source "package/udpcast/Config.in"
> source "package/ulogd/Config.in"
> source "package/ushare/Config.in"
> +source "package/vde2/Config.in"
> source "package/vpnc/Config.in"
> source "package/vsftpd/Config.in"
> source "package/vtun/Config.in"
> diff --git a/package/vde2/Config.in b/package/vde2/Config.in
> new file mode 100644
> index 0000000..1591bc4
> --- /dev/null
> +++ b/package/vde2/Config.in
> @@ -0,0 +1,10 @@
> +config BR2_PACKAGE_VDE2
> + bool "vde2"
> + help
> + VDE is an ethernet compliant virtual network that can be
> + spawned over a set of physical computer over the Internet.
computer -> computers
> + VDE is part of virtualsquare project.
_the_ virtualsquare project.
> +
> + http://vde.sourceforge.net/
> +
> + Note: only the libraries are installed.
> diff --git a/package/vde2/vde2.mk b/package/vde2/vde2.mk
> new file mode 100644
> index 0000000..b2e0fea
> --- /dev/null
> +++ b/package/vde2/vde2.mk
> @@ -0,0 +1,36 @@
> +#############################################################
> +#
> +# vde2
> +#
> +#############################################################
> +
> +VDE2_VERSION = 2.3.2
> +VDE2_SOURCE = vde2-$(VDE2_VERSION).tar.bz2
> +VDE2_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/vde/vde2/$(VDE2_VERSION)
Should be a downloads.sourceforge.net URL.
Regards,
Arnout
> +VDE2_LICENSE = GPLv2+ LGPLv2.1+ BSD-3c
> +VDE2_LICENSE_FILES = COPYING COPYING.libvdeplug COPYING.slirpvde
> +VDE2_INSTALL_STAGING = YES
> +
> +# Reasons for enabling/disabling stuff:
> +# - tuntap is enabled in the hope we're using a recent-enough toolchain
> +# that does have if_tun.h (virtually everything these days)
> +# - kvde_switch is disabled because it requires a patched kernel
> +# - cryptcab is disabled to not depend on openSSL
> +# - python is disabled to not depend on Python
> +# - pcap is disabled to not depend on libpcap
> +# - profiling is disabled because we do not want to debug/profile
> +#
> +# Note: disabled features can be added with corresponding dependencies
> +# in future commits.
> +VDE2_CONF_OPT = --disable-experimental \
> + --disable-cryptcab \
> + --disable-pcap \
> + --disable-python \
> + --disable-profile \
> + --disable-kernel-switch \
> + --enable-tuntap \
> +
> +# Package does not build in parallel due to improper make rules
> +VDE2_MAKE = $(MAKE1)
> +
> +$(eval $(autotools-package))
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
next prev parent reply other threads:[~2012-12-10 6:41 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-09 16:34 [Buildroot] [PATCH 0/51 v4] Add QEMU for runing on the target Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 01/51] package/qemu: add license information Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 02/51] package/qemu: fix host-qemu variable names Yann E. MORIN
2012-12-10 6:37 ` Arnout Vandecappelle
2012-12-10 8:11 ` Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 03/51] package/qemu: use autotools-package infrastructure Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 04/51] package/qemu: bump version Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 05/51] package/vde2: new package Yann E. MORIN
2012-12-10 6:41 ` Arnout Vandecappelle [this message]
2012-12-10 17:49 ` Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 06/51] package/libiscsi: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 07/51] package/usbredir: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 08/51] package/celt051: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 09/51] package/python-pyparsing: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 10/51] package/spice-protocol: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 11/51] package/cegui06: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 12/51] package/slirp: " Yann E. MORIN
2012-12-09 18:42 ` Thomas Petazzoni
2012-12-09 21:20 ` Yann E. MORIN
2012-12-09 21:37 ` Yann E. MORIN
2012-12-10 8:14 ` Thomas Petazzoni
2012-12-09 16:34 ` [Buildroot] [PATCH 13/51] package/spice: " Yann E. MORIN
2012-12-09 18:43 ` Thomas Petazzoni
2012-12-09 16:34 ` [Buildroot] [PATCH 14/51] package/spice: enable client Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 15/51] package/spice: enable GUI Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 16/51] package/spice: enable slirp support Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 17/51] package/libseccomp: new package Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 18/51] package/keyutils: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 19/51] package/pmake: add host pmake Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 20/51] package/libbsd: new package Yann E. MORIN
2012-12-09 18:05 ` Yann E. MORIN
2012-12-09 18:46 ` Thomas Petazzoni
2012-12-09 22:06 ` Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 21/51] package/libedit2: " Yann E. MORIN
2012-12-09 18:52 ` Thomas Petazzoni
2012-12-09 21:45 ` Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 22/51] package/ceph: " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 23/51] package/qemu: build for the target (i386 or x86_64 only) Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 24/51] package/qemu: add basic target selection Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 25/51] package/qemu: add fine-grained " Yann E. MORIN
2012-12-09 16:34 ` [Buildroot] [PATCH 26/51] package/qemu: add SDL frontends Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 27/51] package/qemu: add option to enable/disable the VNC frontend Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 28/51] package/qemu: add VNC jpeg and png compression Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 29/51] package/qemu: add VNC TLS-encryption Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 30/51] package/qemu: add option to not install blobs Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 31/51] package/qemu: add option to remove unwanted keymaps Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 32/51] package/qemu: add uuid support Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 33/51] package/qemu: add support for capabilities Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 34/51] package/qemu: add attr/xattr option Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 35/51] package/qemu: add support for virtfs Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 36/51] package/qemu: add support for cURL Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 37/51] package/qemu: enable use of the curses frontend Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 38/51] package/qemu: add BlueZ connectivity Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 39/51] package/qemu: add AIO support Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 40/51] package/qemu: add support for VDE switches Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 41/51] package/qemu: add iSCSI support Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 42/51] package/qemu: add support for USB redirection Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 43/51] package/qemu: add support for Spice Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 44/51] package/qemu: enable sound Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 45/51] package/qemu: add support for libseccomp Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 46/51] package/qemu: option to build the docs Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 47/51] package/qemu: move sub-options into a sub-menu Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 48/51] package/qemu: enable a static build Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 49/51] package/dtc: new package Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 50/51] package/dtc: add option to install programs Yann E. MORIN
2012-12-09 16:35 ` [Buildroot] [PATCH 51/51] package/qemu: add support for FDT Yann E. MORIN
2012-12-09 18:41 ` [Buildroot] [PATCH 0/51 v4] Add QEMU for runing on the target Thomas Petazzoni
2012-12-09 19:43 ` Yann E. MORIN
2012-12-10 8:17 ` Thomas Petazzoni
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50C58418.3060201@mind.be \
--to=arnout@mind.be \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.