diff options
author | Maho Nakata <maho@FreeBSD.org> | 2003-07-13 05:29:48 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2003-07-13 05:29:48 +0000 |
commit | b92ae7663739e230ac19d009dc2d4d3dcfbb4894 (patch) | |
tree | f2fc4e92ab0da22c85065739d28a68671d2f76ce /cad/tochnog/Makefile | |
parent | 7ea36c0d51916398cdfaf33201b50daa4247ccbb (diff) | |
download | ports-b92ae7663739e230ac19d009dc2d4d3dcfbb4894.tar.gz ports-b92ae7663739e230ac19d009dc2d4d3dcfbb4894.zip |
Notes
Diffstat (limited to 'cad/tochnog/Makefile')
-rw-r--r-- | cad/tochnog/Makefile | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/cad/tochnog/Makefile b/cad/tochnog/Makefile new file mode 100644 index 000000000000..b1ca841911d9 --- /dev/null +++ b/cad/tochnog/Makefile @@ -0,0 +1,78 @@ +# New ports collection makefile for: tochnog +# Date created: 19 Apr 2003 +# Whom: Pedro Giffuni <giffunip@asme.org> +# +# $FreeBSD$ +# + +PORTNAME= tochnog +PORTVERSION= 20010211 +CATEGORIES= cad +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= tochnog +DISTNAME= ${PORTNAME}_feb11_2001 + +MAINTAINER= ports@FreeBSD.org +COMMENT= A free explicit/implicit Finite Element Program + +BUILD_DEPENDS= ${LOCALBASE}/lib/libf2c.a:${PORTSDIR}/lang/f2c \ + ${LOCALBASE}/lib/libf77blas.a:${PORTSDIR}/math/atlas +.ifdef USE_THREADS +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu_mt.a:${PORTSDIR}/math/superlu_mt +.else +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu.a:${PORTSDIR}/math/superlu +.endif + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +USE_GCC= 2.95 +.endif + +USE_REINPLACE= yes +WRKSRC= ${WRKDIR}/${PORTNAME}/src +MAKEFILE= makefile + +.ifdef USE_THREADS +BLAS_LIBS= -L${LOCALBASE}/lib -lptf77blas -latlas_r +SUPERLU= superlu_mt +ALL_TARGET= freebsd_parallel +.else +BLAS_LIBS= -L${LOCALBASE}/lib -lf77blas -latlas +SUPERLU= superlu +ALL_TARGET= freebsd_old +.endif + +.ifndef USE_THREADS +pre-everything:: + @${ECHO_MSG} "make USE_THREADS=yes for threaded version" +.endif + +post-patch: + @${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g ; \ + s,%%PTHREAD_CFLAGS%%,${PTHREAD_CFLAGS},g ; s,%%PTHREAD_LIBS%%,${PTHREAD_LIBS},g ; \ + s,%%SUPERLU%%,${SUPERLU},g ; \ + s,%%BLAS_LIBS%%,${BLAS_LIBS},g' \ + ${WRKSRC}/makefile +.ifdef USE_THREADS + @${REINPLACE_CMD} -e 's,SUPERLU_MT_USE 0,SUPERLU_MT_USE 1,' \ + ${WRKSRC}/tnsuplu.h +.else + @${REINPLACE_CMD} -e 's,SUPERLU_USE 0,SUPERLU_USE 1,' \ + ${WRKSRC}/tnsuplu.h +.endif + +post-build: + @(cd ${WRKDIR}/tochnog/tools; ${CXX} ${CFLAGS} -o aba2tn aba2tn.cc) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/tochnog ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKDIR}/tochnog/tools/aba2tn ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKDIR}/tochnog/tools/*.awk ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR}/test + @${RM} -f ${WRKDIR}/tochnog/test/*.orig + ${INSTALL_DATA} ${WRKDIR}/tochnog/test/* ${DOCSDIR}/test +.endif + +.include <bsd.port.post.mk> |