2004-11-21 21:56:57 +01:00
|
|
|
# New ports collection makefile for: petsc
|
|
|
|
# Date created: 25 September 2004
|
|
|
|
# Whom: Thierry Thomas <thierry@pompo.net>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= petsc
|
2005-09-17 23:08:25 +02:00
|
|
|
PORTVERSION= 2.3.0
|
2005-10-10 22:33:56 +02:00
|
|
|
PORTREVISION= 3
|
2004-11-21 21:56:57 +01:00
|
|
|
CATEGORIES= math parallel
|
2005-10-12 21:28:40 +02:00
|
|
|
MASTER_SITES= ftp://ftp.mcs.anl.gov/pub/petsc/release-snapshots/
|
|
|
|
DISTNAME= v${PORTVERSION}-${PATCHLEVEL}.${PORTNAME}
|
2004-11-21 21:56:57 +01:00
|
|
|
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
COMMENT= Portable, Extensible Toolkit for Scientific computation
|
|
|
|
|
2005-10-12 21:28:40 +02:00
|
|
|
PATCHLEVEL= 36
|
|
|
|
|
2004-11-21 21:56:57 +01:00
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
USE_PYTHON= yes
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
CONFIGURE_SCRIPT= config/configure.py
|
|
|
|
CONFIGURE_LOG= configure.log
|
|
|
|
CONFIGURE_ENV= PETSC_ARCH=${TARGET} \
|
|
|
|
PETSC_DIR=${WRKSRC}
|
2005-09-17 23:08:25 +02:00
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --CFLAGS="${CFLAGS}" \
|
|
|
|
--CXX_CXXFLAGS="${CXXFLAGS}" --FFLAGS="${FFLAGS}" \
|
|
|
|
--with-python=1 ---with-shared=1
|
|
|
|
ALL_TARGET= all python
|
2004-11-21 21:56:57 +01:00
|
|
|
MAKEFILE= makefile
|
2005-09-17 23:08:25 +02:00
|
|
|
MAKE_ENV= PETSC_DIR=${WRKSRC}
|
2004-11-21 21:56:57 +01:00
|
|
|
|
2005-09-17 23:08:25 +02:00
|
|
|
SUB_FILES= pkg-message
|
2005-10-10 22:33:56 +02:00
|
|
|
SUB_LIST= PETSC_ARCH=${TARGET} PETSC_DIR=${PREFIX}/${PFX}
|
2004-11-21 21:56:57 +01:00
|
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
|
|
USE_XLIB= yes
|
|
|
|
CONFIGURE_ARGS+= --with-x-include=${X11BASE}/include \
|
|
|
|
--with-x-library=${X11BASE}/lib/libX11.so
|
|
|
|
.endif
|
|
|
|
|
|
|
|
FFLAGS?= -O2
|
|
|
|
PFX= ${PORTNAME}-${PORTVERSION}
|
|
|
|
WRKSRC= ${WRKDIR}/${PFX}
|
|
|
|
TARGET= ${OPSYS:L}
|
|
|
|
PLIST_SUB= PFX=${PFX} TARGET=${TARGET}
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_BLASLAPACK)
|
|
|
|
LIB_DEPENDS+= f77blas.1:${PORTSDIR}/math/atlas
|
|
|
|
LIBBLASLAPACK= "-L${LOCALBASE}/lib -lalapack -lf77blas -lcblas -latlas -lg2c -lm"
|
|
|
|
CONFIGURE_ARGS+= --with-blas-lapack-lib=${LIBBLASLAPACK}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_SUPERLU)
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu.a:${PORTSDIR}/math/superlu
|
|
|
|
CONFIGURE_ARGS+= --with-superlu-include=${LOCALBASE}/include/superlu \
|
2005-09-17 23:08:25 +02:00
|
|
|
--with-superlu-lib=${LOCALBASE}/lib/libsuperlu.a
|
2004-11-21 21:56:57 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_UMFPACK)
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libumfpack.a:${PORTSDIR}/math/umfpack
|
|
|
|
CONFIGURE_ARGS+= --with-umfpack-include="${LOCALBASE}/include/UMFPACK" \
|
2005-09-17 23:08:25 +02:00
|
|
|
--with-umfpack-lib=[${LOCALBASE}/lib/libumfpack.a,${LOCALBASE}/lib/libamd.a]
|
2004-11-21 21:56:57 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
PORTDOCS= *
|
|
|
|
#BUILD_DEPENDS+= c2html:${PORTSDIR}/textproc/c2html \
|
|
|
|
# pdflatex:${PORTSDIR}/print/teTeX-base \
|
|
|
|
# doc2lt:${PORTSDIR}/textproc/sowing
|
|
|
|
.endif
|
|
|
|
|
|
|
|
LIBSCALAPACK= ${LOCALBASE}/lib/libscalapack.a
|
|
|
|
LIBBLACS= ${LOCALBASE}/lib/libblacs.a
|
|
|
|
MPIDIR= ${LOCALBASE}/mpich
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if exists(${MPIDIR}/bin/mpiCC)
|
|
|
|
WITH_MPI= yes
|
|
|
|
.endif
|
|
|
|
.if defined(WITH_MPI)
|
|
|
|
PKGNAMESUFFIX+= -mpich
|
|
|
|
BUILD_DEPENDS+= ${MPIDIR}/bin/mpiCC:${PORTSDIR}/net/mpich
|
|
|
|
RUN_DEPENDS+= ${MPIDIR}/bin/mpirun:${PORTSDIR}/net/mpich
|
|
|
|
CONFIGURE_ARGS+= --with-mpi-dir=${LOCALBASE}/mpich
|
|
|
|
CONFLICTS= petsc-2*
|
|
|
|
PLIST_SUB+= MPI=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --with-mpi=0
|
|
|
|
CONFLICTS= petsc-mpich-2*
|
|
|
|
WITHOUT_BS95= yes
|
|
|
|
WITHOUT_PARMETIS= yes
|
|
|
|
WITHOUT_SPOOLES= yes
|
|
|
|
PLIST_SUB+= MPI="@comment "
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITHOUT_BS95)
|
|
|
|
CONFIGURE_ARGS+= --with-blocksolve95=0
|
|
|
|
.else
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libBS95.a:${PORTSDIR}/math/blocksolve95
|
|
|
|
CONFIGURE_ARGS+= --with-blocksolve95-include=${LOCALBASE}/include \
|
2005-09-17 23:08:25 +02:00
|
|
|
--with-blocksolve95-lib=${LOCALBASE}/lib/libBS95.a
|
2004-11-21 21:56:57 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITHOUT_PARMETIS)
|
|
|
|
CONFIGURE_ARGS+= --with-parmetis=0
|
|
|
|
.else
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/parmetis/libparmetis.a:${PORTSDIR}/math/parmetis
|
2005-09-17 23:08:25 +02:00
|
|
|
LIBPARMETIS= "${LOCALBASE}/lib/parmetis/libparmetis.a ${LOCALBASE}/lib/parmetis/libmetis.a"
|
2004-11-21 21:56:57 +01:00
|
|
|
CONFIGURE_ARGS+= --with-parmetis=1 \
|
|
|
|
--with-parmetis-include=${LOCALBASE}/include/parmetis \
|
2005-09-17 23:08:25 +02:00
|
|
|
--with-parmetis-lib=[${LOCALBASE}/lib/parmetis/libparmetis.a,${LOCALBASE}/lib/parmetis/libmetis.a,${LIBDIR}/libm.a]
|
2004-11-21 21:56:57 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
#.if exists(${LIBBLACS})
|
|
|
|
#WITH_BLACS= yes
|
|
|
|
#.endif
|
|
|
|
#.if defined(WITH_BLACS)
|
|
|
|
#BUILD_DEPENDS+= ${LIBBLACS}:${PORTSDIR}/math/blacs
|
|
|
|
#CONFIGURE_ARGS+= --with_mumps=1 \
|
|
|
|
# --with-blacs-lib=1
|
|
|
|
#. if exists(${LIBSCALAPACK})
|
|
|
|
#WITH_SCALAPACK= yes
|
|
|
|
#. endif
|
|
|
|
#. if defined(WITH_SCALAPACK)
|
|
|
|
#BUILD_DEPENDS+= ${LIBSCALAPACK}:${PORTSDIR}/math/scalapack
|
|
|
|
#CONFIGURE_ARGS+= --with-scalapack-lib=1
|
|
|
|
#. endif
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
#.if exists(${LOCALBASE}/bin/lgrind)
|
|
|
|
#WITH_LGRIND= yes
|
|
|
|
#.endif
|
|
|
|
#.if defined(WITH_LGRIND)
|
|
|
|
#BUILD_DEPENDS+= lgrind:${PORTSDIR}/print/lgrind
|
|
|
|
#RUN_DEPENDS+= lgrind:${PORTSDIR}/print/lgrind
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
#.if exists(${LOCALBASE}/lib/libnetcdf.so)
|
|
|
|
#WITH_NETCDF= yes
|
|
|
|
#.endif
|
|
|
|
#.if defined(WITH_NETCDF)
|
|
|
|
#LIB_DEPENDS+= netcdf.1:${PORTSDIR}/math/netcdf
|
|
|
|
#CONFIGURE_ENV+= NETCDF_INCLUDE=${LOCALBASE}/include \
|
|
|
|
# NETCDF_LIB=${LOCALBASE}/lib
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
.if exists(${LOCALBASE}/bin/svn)
|
|
|
|
WITH_SVN= yes
|
|
|
|
.endif
|
|
|
|
.if defined(WITH_SVN)
|
|
|
|
BUILD_DEPENDS+= svn:${PORTSDIR}/devel/subversion
|
|
|
|
RUN_DEPENDS+= svn:${PORTSDIR}/devel/subversion
|
|
|
|
.endif
|
|
|
|
|
|
|
|
#.if exists(${LOCALBASE}/bin/valgrind)
|
|
|
|
#WITH_VALGRIND= yes
|
|
|
|
#.endif
|
|
|
|
#.if defined(WITH_VALGRIND)
|
|
|
|
#BUILD_DEPENDS+= valgrind:${PORTSDIR}/devel/valgrind
|
|
|
|
#RUN_DEPENDS+= valgrind:${PORTSDIR}/devel/valgrind
|
|
|
|
#.endif
|
|
|
|
|
|
|
|
.if !defined(WITHOUT_SPOOLES)
|
|
|
|
. if exists(${LOCALBASE}/lib/libspooles.a) \
|
|
|
|
&& !exists(${LOCALBASE}/include/spooles/MPI/spoolesMPI.h)
|
2005-08-30 22:31:02 +02:00
|
|
|
BROKEN= "Please deinstall spooles and reinstall spooles-mpich"
|
2004-11-21 21:56:57 +01:00
|
|
|
. else
|
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libspooles.a:${PORTSDIR}/math/spooles-mpich
|
|
|
|
. endif
|
|
|
|
CONFIGURE_ARGS+= --with-spooles-include=${LOCALBASE}/include/spooles \
|
2005-09-17 23:08:25 +02:00
|
|
|
--with-spooles-lib=[${LOCALBASE}/lib/libspooles.a,${LIBDIR}/libm.a]
|
2004-11-21 21:56:57 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
pre-everything::
|
|
|
|
@${ECHO_MSG}
|
|
|
|
.if !defined (WITH_MPI)
|
|
|
|
@${ECHO_MSG} "Define WITH_MPI to use mpich."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITH_SVN)
|
|
|
|
@${ECHO_MSG} "Define WITH_SVN to use subversion."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_X11)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_X11 to remove X11 support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_BLASLAPACK)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_BLASLAPACK to remove Blas / Lapack support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_BS95)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_BS95 to remove BlockSolve95 support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_PARMETIS)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_PARMETIS to remove ParMETIS support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_SPOOLES)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_SPOOLES to remove SPOOLES support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_SUPERLU)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_SUPERLU to remove SuperLU support."
|
|
|
|
.endif
|
|
|
|
.if !defined (WITHOUT_UMFPACK)
|
|
|
|
@${ECHO_MSG} "Define WITHOUT_UMFPACK to remove UMFPACK support."
|
|
|
|
.endif
|
|
|
|
@${ECHO_MSG}
|
|
|
|
|
|
|
|
pre-configure:
|
2005-09-17 23:08:25 +02:00
|
|
|
@${RM} ${WRKSRC}/bmake/common/rules.shared.basic.orig
|
2004-12-06 14:24:16 +01:00
|
|
|
@${REINPLACE_CMD} -e "s|AMD/Include|include/AMD|" \
|
|
|
|
-e "s|AMD/Lib|${LOCALBASE}/lib|" \
|
2005-09-17 23:08:25 +02:00
|
|
|
${WRKSRC}/python/PETSc/packages/UMFPACK.py
|
2004-11-21 21:56:57 +01:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/${PFX}/bin
|
|
|
|
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/${PFX}/bin
|
|
|
|
${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/${PFX}/bmake
|
|
|
|
${PYTHON_CMD} -O ${PYTHON_LIBDIR}/compileall.py ${PREFIX}/${PFX}/bmake
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
|
|
|
|
${MAKEFILE} ${MAKE_ARGS} install_docs)
|
|
|
|
.endif
|
2005-09-17 23:08:25 +02:00
|
|
|
@${ECHO_MSG}
|
2004-11-21 21:56:57 +01:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
2005-09-17 23:08:25 +02:00
|
|
|
@${ECHO_MSG}
|
2004-11-21 21:56:57 +01:00
|
|
|
|
|
|
|
.if defined(MAINTAINER_MODE)
|
|
|
|
test: build
|
|
|
|
@(cd ${BUILD_WRKSRC}; \
|
|
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test)
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|