blob: 24eb9d47e8729d7bc6e15a3bd66565c950ff9db1 (
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
31
32
33
34
35
36
37
38
39
40
41
|
# Created by: Andrew L. Neporada <andrew@chg.ru>
# $FreeBSD$
PORTNAME= gsl
PORTVERSION= 1.16
CATEGORIES= math
MASTER_SITES= GNU
MAINTAINER= bf@FreeBSD.org
COMMENT= The GNU Scientific Library - mathematical libs
LICENSE= GPLv3
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV+= MAKEINFO='makeinfo --no-split'
MAN1= gsl-config.1 gsl-randist.1 gsl-histogram.1
MAN3= gsl.3
INFO= gsl-ref
post-extract:
@${RM} -f ${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.pre.mk>
.if ${ARCH} == "powerpc"
BROKEN= Does not compile on powerpc
.endif
.include <bsd.port.post.mk>
|