mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
# Created by: Oliver Lehmann <oliver@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hpl
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 7
|
|
CATEGORIES= benchmarks
|
|
MASTER_SITES= NETLIB/benchmark/hpl
|
|
|
|
MAINTAINER= oliver@FreeBSD.org
|
|
COMMENT= High Performance Computing Linpack Benchmark
|
|
|
|
LIB_DEPENDS= libblas.so:math/blas \
|
|
libmpich.so:net/mpich2
|
|
|
|
USES= fortran
|
|
USE_LDCONFIG= yes
|
|
HPL_ARCH?= FreeBSD_PIV_CBLAS
|
|
MAKE_ARGS= arch=${HPL_ARCH}
|
|
ALL_TARGET= build
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^TOPdir[ ]*=.*$$|TOPdir = ${WRKSRC}| ; \
|
|
s|^MPdir[ ]*=.*$$|MPdir = ${LOCALBASE}| ; \
|
|
s|^LAdir[ ]*=.*$$|LAdir = ${LOCALBASE}| ; \
|
|
s|^CC[ ]*=.*$$|CC = ${CC}| ; \
|
|
s|^CCFLAGS[ ]*=.*$$|CCFLAGS = $$\(HPL_DEFS\) ${CFLAGS} -fomit-frame-pointer -funroll-loops| ; \
|
|
s|^LINKER[ ]*=.*$$|LINKER = ${FC}| ; \
|
|
s|^ARCHIVER[ ]*=.*$$|ARCHIVER = ${AR}| ; \
|
|
s|ARCH[ )]|_&|g ; \
|
|
s|^HPL_OPTS[ ]*=.*$$|HPL_OPTS =| ; \
|
|
s|^LAlib[ ]*=.*$$|LAlib = $$\(LAdir\)/lib/libblas.a| ; \
|
|
s|libpmpich.a|libmpl.a -lpthread|' \
|
|
${WRKSRC}/setup/Make.${HPL_ARCH}
|
|
@${REINPLACE_CMD} -e 's|HPL\.dat|${PREFIX}/etc/${PORTNAME}/&|' \
|
|
${WRKSRC}/testing/ptest/HPL_pdinfo.c
|
|
@${CP} ${WRKSRC}/setup/Make.${HPL_ARCH} ${WRKSRC}/
|
|
@${REINPLACE_CMD} -e '/^build/s|$$| startup|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${HPL_ARCH}/xhpl ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/bin/${HPL_ARCH}/HPL.dat ${STAGEDIR}${ETCDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/man/man3/*.3 ${STAGEDIR}${MAN3PREFIX}/man/man3/
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in BUGS COPYRIGHT HISTORY README TODO TUNING
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|