34 lines
747 B
Makefile
34 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.29 2016/12/05 15:21:35 sthen Exp $
|
|
|
|
SHARED_LIBS += scamperfile 1.1 # 0.0
|
|
|
|
COMMENT = parallel internet measurement utility
|
|
|
|
V = 20161204
|
|
DISTNAME = scamper-cvs-$V
|
|
PKGNAME = scamper-$V
|
|
|
|
CATEGORIES = net benchmarks
|
|
|
|
HOMEPAGE = http://www.caida.org/tools/measurement/scamper/
|
|
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2 only
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c crypto m ssl
|
|
|
|
MASTER_SITES = http://www.caida.org/tools/measurement/scamper/code/
|
|
|
|
SEPARATE_BUILD = Yes
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS = --with-privsep-user=_scamper
|
|
|
|
post-install:
|
|
.for i in trace ping tracelb dealias neighbourdisc sniff
|
|
ln ${PREFIX}/bin/scamper ${PREFIX}/bin/scamper-$i
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|