mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
e1bfdfbe56
Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine
33 lines
771 B
Makefile
33 lines
771 B
Makefile
# Created by: dikshie <dikshie@lapi.itb.ac.id>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pathchirp
|
|
PORTVERSION= 2.4.1
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= http://www.spin.rice.edu/Software/pathChirp/
|
|
|
|
MAINTAINER= dikshie@lapi.itb.ac.id
|
|
COMMENT= Measurement tool for available bandwidth estimation
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= gmake
|
|
USE_CSTD= gnu89
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= bin/pathchirp_rcv bin/pathchirp_snd bin/pathchirp_run
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/CFLAGS.*O4/d' ${WRKSRC}/configure
|
|
|
|
do-install:
|
|
.for f in rcv snd run
|
|
${INSTALL_PROGRAM} ${WRKSRC}/Bin/${ARCH}/${PORTNAME}_${f} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|