mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
4a93b234ef
While here, use PORTDOCS for listing documentation files. Approved by: mat (mentor) Sponsored by: ESnet
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# Created by: Bruce A. Mah <bmah@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= iperf
|
|
PORTVERSION= 3.0.5
|
|
CATEGORIES= benchmarks ipv6
|
|
MASTER_SITES= http://downloads.es.net/pub/iperf/
|
|
PKGNAMESUFFIX= 3
|
|
|
|
MAINTAINER= bmah@FreeBSD.org
|
|
COMMENT= Improved tool to measure TCP and UDP bandwidth
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= libtool:keepla
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= AUTHORS README.md RELEASE_NOTES
|
|
|
|
# Set ${DOCSDIR} to avoid conflict with benchmarks/iperf ${DOCSDIR}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
|
|
post-patch:
|
|
# automake generates a buggy Makefile.in that tries to do ${RANLIB} on
|
|
# libiperf3.a after installing with mode 444; this breaks staging.
|
|
# Since ${RANLIB} was already run on the library, this broken
|
|
# invocation was redundant, and can be eliminated. The fix below is
|
|
# based on the solution for a similar situation for an unrelated port
|
|
# in r339298.
|
|
@${REINPLACE_CMD} -e '/echo.*RANLIB/,+1d' ${WRKSRC}/src/Makefile.in
|
|
# Don't build stuff that we're not going to install. Among other
|
|
# things this means we're not going to try to build profiled objects
|
|
# and/or executables.
|
|
@${REINPLACE_CMD} -e '/^PROGRAMS /s/\$$(noinst_PROGRAMS)//' ${WRKSRC}/src/Makefile.in
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|