Tweak net/gssdp version 0.14.10
[dports.git] / math / qrupdate / Makefile
1 # Created by: Robert Jenssen
2 # $FreeBSD$
3
4 PORTNAME=       qrupdate
5 PORTVERSION=    1.1.2
6 PORTREVISION=   3
7 CATEGORIES=     math
8 MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
9 MASTER_SITE_SUBDIR=     qrupdate/qrupdate/1.2
10
11 MAINTAINER=     robertjenssen@ozemail.com.au
12 COMMENT=        Fortran library for fast updates of QR and Cholesky decomposition
13
14 LIB_DEPENDS=    libblas.so:${PORTSDIR}/math/blas \
15                 liblapack.so:${PORTSDIR}/math/lapack
16
17 USES=           fortran gmake
18
19 .include <bsd.port.pre.mk>
20
21 .if ${ARCH} == "sparc64"
22 PICFLAG?=       -fPIC
23 BROKEN=         Does not compile on sparc64: assertions fail
24 .else
25 PICFLAG?=       -fpic
26 .endif
27
28 USE_LDCONFIG=   yes
29
30 pre-build:
31         @${REINPLACE_CMD} -e 's+%%FC%%+${FC}+g ; s+%%FFLAGS%%+${FFLAGS}+g ; \
32                 s+%%PICFLAG%%+${PICFLAG}+g ; ' \
33                 ${WRKSRC}/Makeconf
34
35 .include <bsd.port.post.mk>