git: 72e82b9c5639 - main - biology/fastani: Broken where OpenMP isn't available; Update WWW
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 03 Nov 2024 06:47:57 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=72e82b9c563912ee65f656d9aaba164fc9f3d0f8 commit 72e82b9c563912ee65f656d9aaba164fc9f3d0f8 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2024-11-03 05:45:54 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2024-11-03 06:47:52 +0000 biology/fastani: Broken where OpenMP isn't available; Update WWW Reported by: fallout --- biology/fastani/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/biology/fastani/Makefile b/biology/fastani/Makefile index 5608f01a847f..2d77344aac34 100644 --- a/biology/fastani/Makefile +++ b/biology/fastani/Makefile @@ -5,7 +5,7 @@ CATEGORIES= biology MAINTAINER= yuri@FreeBSD.org COMMENT= Fast Whole-Genome Similarity (ANI) Estimation -WWW= https://github.com/shenwei356/unikmer/ +WWW= https://github.com/ParBLiSS/FastANI LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE @@ -14,6 +14,10 @@ LIB_DEPENDS= libgsl.so:math/gsl USES= cmake:testing +.if !exists(/usr/include/omp.h) +BROKEN= build w/out OpenMP support still attempts to use omp.h, see https://github.com/ParBLiSS/FastANI/issues/139 +.endif + USE_GITHUB= yes GH_ACCOUNT= ParBLiSS GH_PROJECT= FastANI