mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-06 01:57:40 +00:00
3b1a1bcee4
- Expire after the last version without /usr/lib/libomp.so - Drop SOVERSION for seamless transition (i.e., avoid conditionals) PR: 236907 Approved by: bapt (maintainer) Differential Revision: https://reviews.freebsd.org/D19767
38 lines
989 B
Makefile
38 lines
989 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= HipMCL
|
|
DISTVERSION= g20180814
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= High-performance parallel algorithm for large-scale network clustering
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
LIB_DEPENDS= libCombBLAS.so:math/combblas \
|
|
libmpi.so:net/mpich \
|
|
libomp.so:devel/openmp
|
|
RUN_DEPENDS= ${LOCALBASE}/lib/gcc${GCC_DEFAULT}/libgcc_s.so.1:lang/gcc${GCC_DEFAULT} # because of the link flags induced by mpich
|
|
|
|
USES= cmake compiler:c++14-lang dos2unix localbase:ldflags
|
|
DOS2UNIX_FILES= CMakeLists.txt
|
|
|
|
BB_ACCOUNT= azadcse
|
|
BB_PROJECT= ${PORTNAME:tl}
|
|
BB_COMMIT= e20476acc473
|
|
|
|
WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT}
|
|
|
|
PLIST_FILES= bin/${PORTNAME:tl}
|
|
|
|
post-extract:
|
|
@${RM} -r ${WRKSRC}/src/CombBLAS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${BUILD_WRKSRC}/bin/hipmcl ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|