mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
4e896a50f8
- math/p5-Math-GSL does not seem to have any upstream activity to make it work with this version -> mark it broken - this also breaks the two consumers of this port - biology/gemma: has a conflict with cblas, and is makred broken. PR: 241363 Exp-run by: antoine
32 lines
643 B
Makefile
32 lines
643 B
Makefile
# Created by: Andrew L. Neporada <andrew@chg.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gsl
|
|
PORTVERSION= 2.6
|
|
CATEGORIES= math
|
|
MASTER_SITES= GNU
|
|
|
|
MAINTAINER= tcberner@FreeBSD.org
|
|
COMMENT= The GNU Scientific Library - mathematical libs
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= libtool pathfix
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
INFO= gsl-ref
|
|
|
|
#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>
|