diff options
author | will <will@FreeBSD.org> | 2001-06-11 11:01:32 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2001-06-11 11:01:32 +0800 |
commit | 5a9312e21c8ca4e3ccd299ac6a935302198fdadd (patch) | |
tree | 45222d95f555cb6737fa8c1b48260153f27af90a /math/vecfem/Makefile | |
parent | 3e17e4b65407a73f426d42e6fdbed1423e53d38f (diff) | |
download | freebsd-ports-gnome-5a9312e21c8ca4e3ccd299ac6a935302198fdadd.tar.gz freebsd-ports-gnome-5a9312e21c8ca4e3ccd299ac6a935302198fdadd.tar.zst freebsd-ports-gnome-5a9312e21c8ca4e3ccd299ac6a935302198fdadd.zip |
Add vecfem 3, a program to solve non-linear boundary value problems.
PR: 24459
Submitted by: Ralf Becker <ralf@akk.org>
Diffstat (limited to 'math/vecfem/Makefile')
-rw-r--r-- | math/vecfem/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/math/vecfem/Makefile b/math/vecfem/Makefile new file mode 100644 index 000000000000..38dbfeb5e8bc --- /dev/null +++ b/math/vecfem/Makefile @@ -0,0 +1,36 @@ +# New ports collection Makefile for: vecfem +# Date created: 15 January 2001 +# Whom: Ralf Becker <ralf@akk.org> +# +# $FreeBSD$ +# + +PORTNAME= vecfem +PORTVERSION= 3 +CATEGORIES= math +MASTER_SITES= http://www.massey.ac.nz/~lgrosz/vecfem/downloads/ +DISTNAME= vem + +MAINTAINER= Ralf Becker <ralf@akk.org> + +.ifdef MPI +BUILD_DEPENDS= ${LOCALBASE}/mpich/bin/mpif77:${PORTSDIR}/net/mpich +.endif + +NO_WRKSUBDIR= YES +USE_GMAKE= YES +EXTRACT_SUFFIX= tar.gz +BUILD_WRKSRC= ${WRKDIR}/source +ALL_TARGET= + +MAN7= vemlst.7 + +pre-fetch: +.if !defined(MPI) + @${ECHO_MSG} "Type \"make MPI=yes\" if you want MPI support" +.else + @${ECHO_MSG} "Building ${PORTNAME}-${PORTVERSION} with MPI support" +.endif + +.include <Makefile.inc> +.include <bsd.port.mk> |