a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
79 lines
1.9 KiB
Makefile
79 lines
1.9 KiB
Makefile
# Created by: bf@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= spblas
|
|
DISTVERSION= 1_02
|
|
PORTREVISION= 7
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://math.nist.gov/spblas/:1 LOCAL/bf/:1 NL/blas/blast-forum/:2
|
|
DISTFILES= nist_spblas_${DISTVERSION}.zip:1
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= NIST Sparse Basic Linear Algebra Subprograms (BLAS)
|
|
|
|
LICENSE= PD
|
|
|
|
USES= dos2unix uidfix zip
|
|
USE_GCC= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
HEADERS= blas_enum.h blas_sparse.h blas_sparse_proto.h
|
|
HDIR= include/spblas
|
|
MAKE_ENV= LIB=spblas SHLIB_MAJOR="${SHLIB_MAJOR}" \
|
|
SRCCONF=/dev/null SRCS="${SRCS}"
|
|
|
|
NO_WRKSUBDIR= yes
|
|
OPTIONS_DEFINE= PROFILE DOCS EXAMPLES
|
|
|
|
PLIST_FILES= ${HEADERS:S|^|${HDIR}/|} lib/libspblas.a lib/libspblas.so \
|
|
lib/libspblas.so.${SHLIB_MAJOR}
|
|
|
|
SHLIB_MAJOR= 1
|
|
SRCS= nist_spblas.cc
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPROFILE}
|
|
.if defined(NOPROFILE) || defined(NO_PROFILE) || defined(WITHOUT_PROFILE)
|
|
IGNORE= you have defined WITH_PROFILE, but have also defined\
|
|
WITHOUT_PROFILE, NOPROFILE, or NO_PROFILE
|
|
.elif !exists(/usr/lib/libc_p.a)
|
|
IGNORE= you have chosen WITH_PROFILE, but have not installed the\
|
|
base system profiling libraries
|
|
.endif
|
|
PLIST_FILES+= lib/libspblas_p.a
|
|
.else
|
|
MAKE_ENV+= NO_PROFILE=yes
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PORTDOCS= blas-report.pdf
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDOCS} || make(makesum)
|
|
DISTFILES+= blas-report.pdf:2
|
|
EXTRACT_ONLY= nist_spblas_${DISTVERSION}.zip
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
PORTEXAMPLES= ${SRCS}
|
|
.endif
|
|
|
|
post-extract:
|
|
@${PRINTF} "LIBDIR=\t${PREFIX}/lib\n.include <bsd.lib.mk>\n" > \
|
|
${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/${HDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${HEADERS} ${STAGEDIR}${PREFIX}/${HDIR}
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|