Ticket #29319: Portfile

File Portfile, 1.4 KB (added by chris.perl@…, 13 years ago)
Line 
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
4PortSystem          1.0
5
6name                vde2
7version             2.3.1
8categories          net
9platforms           darwin
10maintainers         nomaintainer
11
12description         ethernet compliant virtual network
13
14long_description    VDE is an ethernet compliant virtual network that can be \
15                    spawned over a set of physical computer over the Internet.
16
17homepage            http://vde.sourceforge.net/
18
19master_sites        sourceforge:vde
20
21checksums           md5     c8c2acb92a72f779e0b484b1543a1cc3 \
22                    sha1    63a8f33215a564cbc2ee52249aac00988d62874b \
23                    rmd160  d8bf525c9e75e9bc90ce0732d6052ab5f809e599
24
25configure.args              --disable-kernel-switch \
26                            --disable-tuntap \
27                            --disable-pcap \
28                            --enable-cryptcab
29
30variant 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
36variant 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
42livecheck.type      sourceforge
43livecheck.regex     "${name}-(\\d+\\.\\d+(\\.\\d+)?)${extract.suffix}"