blob: 722be7fd29b6b7e90b6b967e4d1b518cc18dba86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: Andrew L. Neporada <andrew@chg.ru>
PORTNAME= gsl
PORTVERSION= 2.7
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>
|