blob: ce77473f1a6d181e7f2f8ce04a4af1f34036fa3b (
plain)
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
|
# Created by: stephen@FreeBSD.org
# $FreeBSD$
PORTNAME= librsb
PORTVERSION= 1.2.0r7
PORTREVISION= 3
CATEGORIES= math
MASTER_SITES= SF/librsb
DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/-rc/}
MAINTAINER= stephen@FreeBSD.org
COMMENT= Sparse matrix library
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= gsed:textproc/gsed \
bash:shells/bash
USES= fortran compiler:openmp gmake shebangfix libtool
INSTALL_TARGET= install-strip
GNU_CONFIGURE= yes
CFLAGS+= -fPIC
CONFIGURE_ARGS= --enable-fortran-module-install \
--enable-matrix-types="double, double complex"
SHEBANG_FILES= scripts/*.sh
USE_LDCONFIG= yes
MANUAL_PACKAGE_BUILD= Optimizes for the local machine
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -E s/sed/gsed/g ${WRKSRC}/scripts/*.sh
check regression-test test: build
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} qtests
.include <bsd.port.mk>
|