summaryrefslogtreecommitdiff
path: root/science
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2011-08-25 22:25:45 +0000
committerMaho Nakata <maho@FreeBSD.org>2011-08-25 22:25:45 +0000
commitc7fc2e3749e07673829ce9fb74c018b451aabbdd (patch)
treeede8b714c10216e96ade90c771f095d84587a807 /science
parent- Updated to 1.12c (diff)
Fix for experimental gcc 4.6 build, and many small fixes
and improvements, and bump portrevision. Submitted by: bf
Notes
Notes: svn path=/head/; revision=280425
Diffstat (limited to 'science')
-rw-r--r--science/mbdyn/Makefile33
1 files changed, 20 insertions, 13 deletions
diff --git a/science/mbdyn/Makefile b/science/mbdyn/Makefile
index 298c3f9f20eb..ea3eaa3d9baa 100644
--- a/science/mbdyn/Makefile
+++ b/science/mbdyn/Makefile
@@ -7,26 +7,27 @@
PORTNAME= mbdyn
PORTVERSION= 1.3.9
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= science
MASTER_SITES= http://www.aero.polimi.it/~masarati/Download/mbdyn/
MAINTAINER= maho@FreeBSD.org
COMMENT= A MultiBody Dynamics analysis system
-LIB_DEPENDS= umfpack:${PORTSDIR}/math/suitesparse
+LICENSE= GPLv2
+
+LIB_DEPENDS= arpack:${PORTSDIR}/math/arpack \
+ umfpack:${PORTSDIR}/math/suitesparse
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_FORTRAN= yes
MAN1= mbdyn.1
-CPPFLAGS+= -I${LOCALBASE}/include/suitesparse
-CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib/${CC} -L${LOCALBASE}/lib" \
- CPPFLAGS="${CPPFLAGS}"
+CPPFLAGS+= -fpermissive -I${LOCALBASE}/include/suitesparse
+LDFLAGS+= -L${LOCALBASE}/lib
+CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS+= --program-prefix=''
-LIB_DEPENDS+= arpack:${PORTSDIR}/math/arpack
-
OPTIONS= MPI "Enable mpich-support" off \
METIS "Enable metis-support" off \
CHACO "Enable chaco-support" off \
@@ -38,22 +39,24 @@ OPTIONS= MPI "Enable mpich-support" off \
USE_BLAS?= reference
. if ${USE_BLAS} == reference
-LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
+LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas \
+ lapack.4:${PORTSDIR}/math/lapack
CONFIGURE_ARGS+= --with-blas=blas
+LAPACK_LIBS= -llapack
.elif ${USE_BLAS} == gotoblas
LIB_DEPENDS+= goto:${PORTSDIR}/math/gotoblas
-CONFIGURE_ARGS+= --with-blas=goto
+CONFIGURE_ARGS+= --with-blas=goto --with-goto=goto2
+LAPACK_LIBS= -lgoto2
.elif ${USE_BLAS} == atlas
LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas
CONFIGURE_ARGS+= --with-blas=atlas
+LAPACK_LIBS= -lalapack
.endif
-LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack
.if defined(WITH_MPI)
LIB_DEPENDS+= mpich:${PORTSDIR}/net/mpich2
CONFIGURE_ARGS+= --with-mpi=yes --enable-schur
CPPFLAGS+= -I${LOCALBASE}/include
-LDFLAGS+= "-L${LOCALBASE}/lib"
. if !defined(WITH_METIS)
WITH_CHACO= yes
. endif
@@ -77,8 +80,8 @@ CONFIGURE_ARGS+= --with-chaco=no
.endif
.if defined(WITH_GINAC)
-LIB_DEPENDS+= metis:${PORTSDIR}/math/metis
-LIB_DEPENDS+= ginac:${PORTSDIR}/math/GiNaC
+LIB_DEPENDS+= metis:${PORTSDIR}/math/metis \
+ ginac:${PORTSDIR}/math/GiNaC
CONFIGURE_ARGS+= --with-ginac=yes
CPPFLAGS+= -I${LOCALBASE}/include/metis
.else
@@ -94,4 +97,8 @@ CPPFLAGS+= -I${LOCALBASE}/include/tcl8.4
CONFIGURE_ARGS+= --with-tcl=no
.endif
+post-patch:
+ ${REINPLACE_CMD} -e '/try_lapack_LIBS=/s/-llapack/${LAPACK_LIBS}/' \
+ ${WRKSRC}/configure
+
.include <bsd.port.post.mk>