63e653adaa
From [1] * What is new in gsl-2.7: * fixed doc bug for gsl_histogram_min_bin (lhcsky at 163.com) * fixed bug #60335 (spmatrix test failure, J. Lamb) * fixed bug #36577 * clarified documentation on interpolation accelerators (V. Krishnan) * fixed bug #45521 (erroneous GSL_ERROR_NULL in ode-initval2, thanks to M. Sitte) * fixed doc bug #59758 * fixed bug #58202 (rstat median for n=5) * added support for native C complex number types in gsl_complex when using a C11 compiler * upgraded to autoconf 2.71, automake 1.16.3, libtool 2.4.6 * updated exponential fitting example for nonlinear least squares * added banded LU decomposition and solver (gsl_linalg_LU_band) * New functions added to the library: - gsl_matrix_norm1 - gsl_spmatrix_norm1 - gsl_matrix_complex_conjtrans_memcpy - gsl_linalg_QL: decomp, unpack - gsl_linalg_complex_QR_* (thanks to Christian Krueger) - gsl_vector_sum - gsl_matrix_scale_rows - gsl_matrix_scale_columns - gsl_multilarge_linear_matrix_ptr - gsl_multilarge_linear_rhs_ptr - gsl_spmatrix_dense_add (renamed from gsl_spmatrix_add_to_dense) - gsl_spmatrix_dense_sub - gsl_linalg_cholesky_band: solvem, svxm, scale, scale_apply - gsl_linalg_QR_UD: decomp, lssolve - gsl_linalg_QR_UU: decomp, lssolve, QTvec - gsl_linalg_QR_UZ: decomp - gsl_multifit_linear_lcurvature - gsl_spline2d_eval_extrap * bug fix in checking vector lengths in gsl_vector_memcpy (dieggsy@pm.me) * made gsl_sf_legendre_array_index() inline and documented - gsl_sf_legendre_nlm() [1] http://git.savannah.gnu.org/cgit/gsl.git/tree/NEWS PR: 256423 Exp-run by: antoine
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
# Created by: jesper@jdn.dk
|
|
|
|
PORTNAME= sipp
|
|
PORTVERSION= 3.5.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= benchmarks net
|
|
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/v${PORTVERSION}/
|
|
|
|
MAINTAINER= farrokhi@FreeBSD.org
|
|
COMMENT= SIP benchmarking and testing tool
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BROKEN_FreeBSD_12_powerpc64= fails to compile: /usr/local/lib/gcc9/include/c++/cstddef:52:8: expected unqualified-id before string constant
|
|
|
|
BUILD_DEPENDS= help2man:misc/help2man
|
|
|
|
USES= autoreconf compiler:c++11-lang gmake ncurses pkgconfig
|
|
|
|
PLIST_FILES= bin/sipp man/man1/sipp.1.gz
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS_DEFINE= OPENSSL GSL PCAP RTPSTREAM SCTP
|
|
OPTIONS_DEFAULT= OPENSSL PCAP RTPSTREAM
|
|
OPENSSL_DESC= OpenSSL support (for digest auth and SIP over TLS)
|
|
GSL_DESC= GSL support (for statistical distributed pauses)
|
|
PCAP_DESC= PCAP Support
|
|
RTPSTREAM_DESC= RTP Streaming Support
|
|
SCTP_DESC= SCTP Transport Protocol Support
|
|
|
|
GSL_CONFIGURE_WITH= gsl
|
|
SCTP_CONFIGURE_WITH= sctp
|
|
RTPSTREAM_CONFIGURE_WITH= rtpstream
|
|
OPENSSL_CONFIGURE_WITH= openssl
|
|
|
|
OPENSSL_USES= ssl
|
|
GSL_LIB_DEPENDS= libgsl.so:math/gsl
|
|
|
|
PCAP_FILES= dtmf_2833_0.pcap dtmf_2833_1.pcap dtmf_2833_2.pcap \
|
|
dtmf_2833_3.pcap dtmf_2833_4.pcap dtmf_2833_5.pcap \
|
|
dtmf_2833_6.pcap dtmf_2833_7.pcap dtmf_2833_8.pcap \
|
|
dtmf_2833_9.pcap dtmf_2833_pound.pcap dtmf_2833_star.pcap \
|
|
g711a.pcap
|
|
|
|
PCAP_PLIST_FILES= ${PCAP_FILES:S|^|${DATADIR}/pcap/|}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|[[:<:]]curses|ncurses|' ${WRKSRC}/configure.ac
|
|
|
|
post-patch-PCAP-on:
|
|
@${REINPLACE_CMD} \
|
|
's|\(\\"\)\(pcap/[^"]*\.pcap\\"\)|\1${DATADIR}/\2|' \
|
|
${WRKSRC}/src/scenario.cpp
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/include/sipp.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
do-install-PCAP-on:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/pcap
|
|
.for f in ${PCAP_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/pcap/${f} ${STAGEDIR}${DATADIR}/pcap/${f}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|