freebsd-ports/math/parmgridgen/Makefile
Nicola Vitale 36d8a857f9 ParMGridGen-1.0 is a highly optimized serial and parallel library
for obtaining a sequence of successive coarse grids that are well suited
for geometric multigrid methods.
The quality of the elements of the coarse grids is optimized using a
multilevel framework.
The parallel library is based on MPI and is portable to
a wide range of architectures.

WWW: http://www.mgnet.org/mgnet-codes-parmgridgen.html

PR:		ports/152506
Submitted by:	Stas Timokhin <devel at stasyan.com>
2010-12-15 16:48:09 +00:00

41 lines
1.2 KiB
Makefile

# New ports collection makefile for: math/parmgirdgen
# Date created: 22 Nov 2010
# Whom: Stas Timokhin <devel@stasyan.com>
#
# $FreeBSD$
#
PORTNAME= parmgridgen
PORTVERSION= 1.0
CATEGORIES= math science
MASTER_SITES= http://www.mgnet.org/mgnet/Codes/parmgridgen/
DISTNAME= ParMGridGen-${PORTVERSION}
MAINTAINER= devel@stasyan.com
COMMENT= Library for obtaining a sequence of successive coarse grids
ALL_TARGET= parallel
LIB_DEPENDS+= mpi.0:${PORTSDIR}/net/openmpi
USE_GMAKE= yes
post-patch:
#respect CFLAGS
. for f in IMlib Lib Programs
@${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/MGridGen/${f}/Makefile
. endfor
. for f in IMParMetis-2.0 ParLib Programs
@${REINPLACE_CMD} 's|CFLAGS =|CFLAGS+=|g' ${WRKSRC}/ParMGridGen/${f}/Makefile
. endfor
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mgridgen ${PREFIX}/bin/mgridgen
${INSTALL_PROGRAM} ${WRKSRC}/parmgridgen ${PREFIX}/bin/parmgridgen
${INSTALL_PROGRAM} ${WRKSRC}/libmgrid.a ${PREFIX}/lib/libmgrid.a
${INSTALL_PROGRAM} ${WRKSRC}/libparmgrid.a ${PREFIX}/lib/libparmgrid.a
${INSTALL_DATA} ${WRKSRC}/mgridgen.h ${PREFIX}/include/mgridgen.h
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README
.endif
.include <bsd.port.mk>