This release introduces some new features and fixes several bugs: http://savannah.gnu.org/forum/forum.php?forum_id=8751 * update to 2.3 and take maintainership * update math/py-gsl to 2.2.0 for gsl2 support * update math/rubygem-rb-gsl to 2.1.0.2 for gsl2 support PR: 218952 Exp-run by: antoine Reviewed by: mat, rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D10522
35 lines
750 B
Makefile
35 lines
750 B
Makefile
# Created by: Andrew L. Neporada <andrew@chg.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gsl
|
|
PORTVERSION= 2.3
|
|
CATEGORIES= math
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= tcberner@FreeBSD.org
|
|
COMMENT= The GNU Scientific Library - mathematical libs
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= libtool makeinfo pathfix
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= MAKEINFO='makeinfo --no-split'
|
|
INSTALL_TARGET= install-strip
|
|
|
|
INFO= gsl-ref
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/doc/gsl-ref.info*
|
|
|
|
#prevent regression test coredumps from causing failures on the
|
|
#package-building cluster:
|
|
.ifndef(MAINTAINER_MODE)
|
|
CORELIMIT?= /usr/bin/limits -Sc 0
|
|
.endif
|
|
|
|
check regression-test test: build
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${CORELIMIT} ${MAKE_CMD} \
|
|
${MAKE_ARGS} check
|
|
|
|
.include <bsd.port.mk>
|