The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / vde2 / vde2.mk
1 ################################################################################
2 #
3 # vde2
4 #
5 ################################################################################
6
7 VDE2_VERSION = 2.3.2
8 VDE2_SOURCE = vde2-$(VDE2_VERSION).tar.bz2
9 VDE2_SITE = http://downloads.sourceforge.net/project/vde/vde2/$(VDE2_VERSION)
10 VDE2_LICENSE = GPLv2+ LGPLv2.1+ BSD-3c
11 VDE2_LICENSE_FILES = COPYING COPYING.libvdeplug COPYING.slirpvde
12 VDE2_INSTALL_STAGING = YES
13
14 # We touch configure.ac, so we need to autoreconf
15 VDE2_AUTORECONF = YES
16
17 # Reasons for enabling/disabling stuff:
18 # - tuntap is enabled in the hope we're using a recent-enough toolchain
19 #   that does have if_tun.h (virtually everything these days)
20 # - kvde_switch is disabled because it requires a patched kernel
21 # - cryptcab is disabled to not depend on openSSL
22 # - python is disabled to not depend on Python
23 # - pcap is disabled to not depend on libpcap
24 # - profiling is disabled because we do not want to debug/profile
25 #
26 # Note: disabled features can be added with corresponding dependencies
27 #       in future commits.
28 VDE2_CONF_OPTS = \
29         --disable-experimental  \
30         --disable-cryptcab      \
31         --disable-pcap          \
32         --disable-python        \
33         --disable-profile       \
34         --disable-kernel-switch \
35         --enable-tuntap         \
36
37 # Package does not build in parallel due to improper make rules
38 VDE2_MAKE = $(MAKE1)
39
40 $(eval $(autotools-package))