1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name vde2 |
---|
7 | version 2.3.1 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | |
---|
12 | description ethernet compliant virtual network |
---|
13 | |
---|
14 | long_description VDE is an ethernet compliant virtual network that can be \ |
---|
15 | spawned over a set of physical computer over the Internet. |
---|
16 | |
---|
17 | homepage http://vde.sourceforge.net/ |
---|
18 | |
---|
19 | master_sites sourceforge:vde |
---|
20 | |
---|
21 | checksums md5 c8c2acb92a72f779e0b484b1543a1cc3 \ |
---|
22 | sha1 63a8f33215a564cbc2ee52249aac00988d62874b \ |
---|
23 | rmd160 d8bf525c9e75e9bc90ce0732d6052ab5f809e599 |
---|
24 | |
---|
25 | configure.args --disable-kernel-switch \ |
---|
26 | --disable-tuntap \ |
---|
27 | --disable-pcap \ |
---|
28 | --enable-cryptcab |
---|
29 | |
---|
30 | variant tuntap description {Enable support for TAP devices} { |
---|
31 | |
---|
32 | depends_lib-append port:tuntaposx |
---|
33 | configure.args-replace "s|--disable-tuntap|--enable-tuntap|" |
---|
34 | } |
---|
35 | |
---|
36 | variant pcap description {Enable support for packet capturing} { |
---|
37 | |
---|
38 | depends_lib-append port:libpcap |
---|
39 | configure.args-replace "s|--disable-pcap|--enable-pcap|" |
---|
40 | } |
---|
41 | |
---|
42 | livecheck.type sourceforge |
---|
43 | livecheck.regex "${name}-(\\d+\\.\\d+(\\.\\d+)?)${extract.suffix}" |
---|