if a port needs 2.x then set MODPY_VERSION=${MODPY_DEFAULT_VERSION_2}. This commit doesn't change any versions currently used; it may be that some ports have MODPY_DEFAULT_VERSION_2 but don't require it, those should be cleaned up in the course of updating ports where possible. Python module ports providing py3-* packages should still use FLAVOR=python3 so that we don't have a mixture of dependencies some using ${MODPY_FLAVOR} and others not.
42 lines
779 B
Makefile
42 lines
779 B
Makefile
# $OpenBSD: Makefile,v 1.15 2021/02/23 19:39:10 sthen Exp $
|
|
|
|
COMMENT= multi-protocol distributed load testing tool
|
|
|
|
V= 1.7.0
|
|
DISTNAME= tsung-$V
|
|
REVISION= 1
|
|
|
|
CATEGORIES= benchmarks net
|
|
|
|
HOMEPAGE= http://tsung.erlang-projects.org/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= http://tsung.erlang-projects.org/dist/
|
|
|
|
MODULES= lang/erlang \
|
|
lang/python
|
|
MODERL_VERSION= 21
|
|
MODPY_BUILDDEP= No
|
|
|
|
RUN_DEPENDS= graphics/py-matplotlib${MODPY_FLAVOR} \
|
|
math/gnuplot \
|
|
shells/bash
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= HOME=/tmp \
|
|
ERL=${MODERL_ERL} \
|
|
ERLC=${MODERL_ERLC}
|
|
|
|
MODPY_ADJ_FILES= src/tsung-plotter/tsplot.py.in
|
|
|
|
TEST_TARGET= test
|
|
|
|
FAKE_FLAGS= CONFDIR="${PREFIX}/share/examples/tsung/" \
|
|
MAN_DIR="${PREFIX}/man/man1/"
|
|
|
|
SUBST_VARS+= V
|
|
|
|
.include <bsd.port.mk>
|