mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# Created by: Jason Bacon
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openkim
|
|
PORTVERSION= 1.1.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://s3.openkim.org/openkim-api/
|
|
DISTNAME= ${PORTNAME}-api-v${PORTVERSION}
|
|
|
|
MAINTAINER= bacon4000@gmail.com
|
|
COMMENT= Knowledgebase of Interatomic Models
|
|
|
|
LICENSE= CDDL
|
|
|
|
MAKE_ENV+= KIM_DIR=${WRKSRC}
|
|
|
|
USES= gmake fortran tar:tgz
|
|
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# Is there a better way to detect 32-bit systems?
|
|
.if ${ARCH} == "armv6" || ${ARCH} == "i386" || ${ARCH} == "mips" || ${ARCH} == "powerpc"
|
|
MAKE_ENV+= KIM_SYSTEM32="yes"
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} \
|
|
-e "s|gcc|${CC}|g" \
|
|
-e "s|g++|${CXX}|g" \
|
|
-e "s|= gfortran|= ${FC}|g" \
|
|
-e "s|-O3|${CFLAGS}|g" \
|
|
-e "s|LINKLIBFLAG =|LINKLIBFLAG = ${LDFLAGS}|" \
|
|
${WRKSRC}/KIM_API/GNU_compiler_settings.mk
|
|
|
|
# Required for main build to succeed
|
|
pre-build:
|
|
(cd ${WRKSRC} && ${MAKE_CMD} KIM_DIR=${WRKSRC} examples)
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib ${STAGEDIR}${PREFIX}/include/KIM_API
|
|
${INSTALL_DATA} ${WRKSRC}/KIM_API/libkim.a ${STAGEDIR}${PREFIX}/lib
|
|
${INSTALL_DATA} ${WRKSRC}/KIM_API/*.h ${STAGEDIR}${PREFIX}/include/KIM_API
|
|
|
|
regression-test:
|
|
(cd ${WRKSRC}/TESTs/ex_test_Ar_free_cluster_CLUSTER_F90 && \
|
|
${ECHO_CMD} "ex_model_Ar_P_MLJ_CLUSTER_C" | ./ex_test_Ar_free_cluster_CLUSTER_F90)
|
|
|
|
.include <bsd.port.mk>
|