- disable the auth code; it's likely to have issues on 32-bit arches (wrong format strings for variable sizes) and has an sscanf that doesn't seem like a great idea. can be reviewed if anyone is actually using that... - switch from github on-the-fly generated tarballs to proper uploaded ones ok lteo (maintainer)
28 lines
520 B
Makefile
28 lines
520 B
Makefile
# $OpenBSD: Makefile,v 1.4 2019/06/28 07:25:37 sthen Exp $
|
|
|
|
COMMENT= tool to measure maximum achievable bandwidth on IP networks
|
|
|
|
V= 3.7
|
|
PKGNAME= iperf3-${V}
|
|
DISTNAME= iperf-${V}
|
|
|
|
SHARED_LIBS += iperf 1.0 # 0.0
|
|
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= https://software.es.net/iperf/
|
|
|
|
MAINTAINER= Lawrence Teo <lteo@openbsd.org>
|
|
|
|
# BSD 3-clause
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB += c m
|
|
|
|
MASTER_SITES= https://downloads.es.net/pub/iperf/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-openssl=no
|
|
|
|
.include <bsd.port.mk>
|