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 iperf3 |
---|
7 | version 3.0.11 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | license bsd |
---|
11 | maintainers gmail.com:allan.que openmaintainer |
---|
12 | description Measures the maximum achievable bandwidth on IP networks |
---|
13 | long_description ${name} is a tool for active measurements of the maximum \ |
---|
14 | achievable bandwidth on IP networks. It supports tuning \ |
---|
15 | of various parameters related to timing, protocols, and \ |
---|
16 | buffers. For each test it reports the bandwidth, loss, \ |
---|
17 | and other parameters. |
---|
18 | homepage https://github.com/esnet/iperf |
---|
19 | |
---|
20 | master_sites http://downloads.es.net/pub/iperf |
---|
21 | distname iperf-${version} |
---|
22 | |
---|
23 | conflicts ${name}-devel |
---|
24 | |
---|
25 | checksums rmd160 eb371c0879fad6f2068a279704d637123bbd9162 \ |
---|
26 | sha256 e01db5be6f47f67c987463095fe4f5b8b9ff891fb92c39104d042ad8fde97f6e |
---|
27 | |
---|
28 | subport ${name}-devel { |
---|
29 | PortGroup github 1.0 |
---|
30 | |
---|
31 | github.setup esnet iperf 25eb62c7cddc86cb42c6802841b3a8202511cad0 |
---|
32 | version 20150521 |
---|
33 | fetch.type git |
---|
34 | |
---|
35 | conflicts ${name} |
---|
36 | } |
---|
37 | |
---|
38 | if {${name} == ${subport}} { |
---|
39 | livecheck.url ${master_sites} |
---|
40 | livecheck.regex {iperf-(\d+(?:\.\d+)*)} |
---|
41 | livecheck.type regex |
---|
42 | } else { |
---|
43 | livecheck.type none |
---|
44 | } |
---|
45 | |
---|