mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
34 lines
793 B
Makefile
34 lines
793 B
Makefile
COMMENT= parallel internet measurement utility
|
|
|
|
# https://mailman.caida.org/pipermail/scamper-announce/
|
|
V= 20260420
|
|
DISTNAME= scamper-cvs-$V
|
|
PKGNAME= scamper-$V
|
|
|
|
SHARED_LIBS += scamperctrl 5.1 # 6.1
|
|
SHARED_LIBS += scamperfile 18.0 # 19.0
|
|
|
|
CATEGORIES= net benchmarks
|
|
|
|
HOMEPAGE= https://www.caida.org/tools/measurement/scamper/
|
|
|
|
MAINTAINER= Stuart Henderson <stu.ports@spacehopper.org>
|
|
|
|
# GPLv2 only
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB += c crypto m ssl pthread z
|
|
|
|
SITES= https://www.caida.org/tools/measurement/scamper/code/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-privsep-user=_scamper
|
|
|
|
post-install:
|
|
.for i in trace ping tracelb dealias neighbourdisc sniff host
|
|
ln ${PREFIX}/bin/scamper ${PREFIX}/bin/scamper-$i
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|