3be3e90f93
- Switched to automake 1.11.6, see CVE-2012-3386. - #14669: Fixed extraction of CC from gmp.h. - Fixed case of intermediate zero real or imaginary part in mpc_fma, found by hydra with GMP_CHECK_RANDOMIZE=1346362345. This is on top of the following changes from version 1.0 - Licence change towards LGPLv3+ for the code and GFDLv1.3+ (with no invariant sections) for the documentation. - 100% of all lines are covered by tests - Renamed functions . mpc_mul_2exp to mpc_mul_2ui . mpc_div_2exp to mpc_div_2ui - 0^0, which returned (NaN,NaN) previously, now returns (1,+0). - Removed compatibility with K&R compilers, which was untestable due to lack of such compilers. - New functions . mpc_log10 . mpc_mul_2si, mpc_div_2si - Speed-ups . mpc_fma - Bug fixes . mpc_div and mpc_norm now return a value indicating the effective rounding direction, as the other functions. . mpc_mul, mpc_sqr and mpc_norm now return correct results even if there are over- or underflows during the computation. . mpc_asin, mpc_proj, mpc_sqr: Wrong result when input variable has infinite part and equals output variable is corrected. . mpc_fr_sub: Wrong return value for imaginary part is corrected. Convert to the new LIB_DEPENDS standard and remove hard-coded .so versions from a couple of dependent ports. Bump PORTREVISIONS of all dependent ports. PR: 183141 Approved by: portmgr (bdrewery)
108 lines
3.5 KiB
Makefile
108 lines
3.5 KiB
Makefile
# Created by: NAKATA Maho <maho@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= psi3
|
|
PORTVERSION= 3.4.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= science
|
|
MASTER_SITES= SF/psicode/psi/${PORTVERSION} \
|
|
http://www.psicode.org/doc/:doc \
|
|
${MASTER_SITE_LOCAL:S|%SUBDIR%|maho/psi3|}:doc
|
|
|
|
DISTNAME= psi-${PORTVERSION}
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} installation.pdf:doc userman.pdf:doc progman.pdf:doc
|
|
.endif
|
|
DIST_SUBDIR= psi3
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= maho@FreeBSD.org
|
|
COMMENT= An electronic structure programs for high-accuracy computations
|
|
|
|
.if exists(${LOCALBASE}/lib/libgoto2.so)
|
|
WITH_BLAS?= gotoblas
|
|
.elif exists(${LOCALBASE}/lib/libatlas.so)
|
|
WITH_BLAS?= atlas
|
|
.else
|
|
WITH_BLAS?= reference
|
|
.endif
|
|
|
|
. if ${WITH_BLAS} == reference
|
|
LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas
|
|
LIB_DEPENDS+= lapack:${PORTSDIR}/math/lapack
|
|
BLAS= -lblas
|
|
LAPACK= -llapack
|
|
.elif ${WITH_BLAS} == gotoblas
|
|
LIB_DEPENDS+= goto2:${PORTSDIR}/math/gotoblas
|
|
LIB_DEPENDS+= lapack:${PORTSDIR}/math/lapack
|
|
BLAS= -lgoto2p
|
|
LAPACK= -lgoto2p
|
|
.elif ${WITH_BLAS} == atlas
|
|
LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas
|
|
BLAS= -lptf77blas
|
|
LAPACK= -lalapack -lptcblas
|
|
.endif
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_FORTRAN= yes
|
|
CONFIGURE_ARGS= --with-cc=${CC} \
|
|
--with-cxx=${CXX} \
|
|
--with-fc=${FC} \
|
|
--with-lapack="${LAPACK}" \
|
|
--with-blas="${BLAS}" \
|
|
--datadir=${PREFIX}/share/psi3 \
|
|
--docdir=${WRKSRC}/tmpdoc/ \
|
|
--with-libdirs="-L${LOCALBASE}/lib" \
|
|
--with-libs="-lcompat"
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_OPTIMIZED_FLAGS)
|
|
FFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double
|
|
CFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double
|
|
CXXFLAGS+= -O3 -ffast-math -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -malign-double -Wno-multichar
|
|
.if (${ARCH} == "i386")
|
|
FFLAGS+= -mfancy-math-387
|
|
CFLAGS+= -mfancy-math-387
|
|
CXXFLAGS+= -mfancy-math-387
|
|
.endif # i386
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
MAN1= ccenergy.1 cceom.1 cints.1 clag.1 cscf.1 dboc.1 detcas.1 \
|
|
detcasman.1 detci.1 geom.1 input.1 intder.1 mocube.1 mp2.1 mp2r12.1 \
|
|
nonbonded.1 oeprop.1 optking.1 psi3.1 psiclean.1 stable.1 tocprint.1 \
|
|
transqt.1
|
|
|
|
pre-configure:
|
|
@${ECHO} "You can optimize by setting WITH_OPTIMIZED_FLAGS=yes."
|
|
@${REINPLACE_CMD} -e 's|%%PTHREAD_CFLAGS%%|${PTREAD_CFLAGS}|g ; \
|
|
s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' ${WRKSRC}/src/bin/cints/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|%%PTHREAD_CFLAGS%%|${PTREAD_CFLAGS}|g ; \
|
|
s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' ${WRKSRC}/src/bin/detci/Makefile.in
|
|
|
|
MAKE_ENV+= SCRATCH=${WRKSRC}/tmp
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GMAKE})
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GMAKE} install)
|
|
@${TAR} cf - -C ${WRKSRC}/tmpdoc/man . | ${TAR} xf - -C ${PREFIX}/man
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/psi3
|
|
@${TAR} cf - -C ${WRKSRC}/tmpdoc/html . | ${TAR} xf - -C ${PREFIX}/share/doc/psi3
|
|
@${TAR} cf - -C ${WRKSRC}/tmpdoc/txt . | ${TAR} xf - -C ${PREFIX}/share/doc/psi3
|
|
@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/installation.pdf ${DOCSDIR}
|
|
@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/userman.pdf ${DOCSDIR}
|
|
@${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/progman.pdf ${DOCSDIR}
|
|
.endif
|
|
.if !defined(NOPORTEXAMPLES)
|
|
@${MKDIR} ${PREFIX}/share/examples/psi3
|
|
@${TAR} cf - -C ${WRKSRC}/tests . | ${TAR} xf - -C ${PREFIX}/share/examples/psi3
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|