# New ports collection makefile for: tochnog # Date created: 19 Apr 2003 # Whom: Pedro Giffuni # # $FreeBSD$ # PORTNAME= tochnog PORTVERSION= 20010211 PORTREVISION= 3 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 .ifdef WITH_THREADS BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu_mt.a:${PORTSDIR}/math/superlu_mt .else BUILD_DEPENDS+= ${LOCALBASE}/lib/libsuperlu.a:${PORTSDIR}/math/superlu .endif LIB_DEPENDS= atlas:${PORTSDIR}/math/atlas WRKSRC= ${WRKDIR}/${PORTNAME}/src MAKEFILE= makefile # You can set GIDDIR to share/gid to install the scripts to be used # with the cad/linux-gid port, otherwise they can be linked to the data # directory to avoid polluting the port space. GIDDIR?= share/${PORTNAME} PLIST_SUB+= GIDDIR=${GIDDIR} GID_PTYPES= ${PREFIX}/${GIDDIR}/problemtypes .ifdef WITH_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 WITH_THREADS pre-everything:: @${ECHO_MSG} "make WITH_THREADS=yes for threaded version" .endif pre-build: @${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 WITH_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} ${CXXFLAGS} -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 ${MKDIR} ${GID_PTYPES}/tochnog.gid ${INSTALL_DATA} ${WRKDIR}/tochnog/gid/tochnog.gid/tochnog.cnd \ ${GID_PTYPES}/tochnog.gid ${INSTALL_DATA} ${WRKDIR}/tochnog/gid/tochnog.gid/tochnog.mat \ ${GID_PTYPES}/tochnog.gid ${INSTALL_SCRIPT} ${WRKDIR}/tochnog/gid/tochnog.gid/tochnog.ba* \ ${GID_PTYPES}/tochnog.gid .if !defined(NOPORTDOCS) ${MKDIR} ${EXAMPLESDIR} @${RM} -f ${WRKDIR}/tochnog/test/*.orig ${INSTALL_DATA} ${WRKDIR}/tochnog/test/* ${EXAMPLESDIR} .endif .include