git: e17ba537c699 - 2024Q4 - biology/fastani: Broken where OpenMP isn't available; Update WWW
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 09 Dec 2024 21:59:21 UTC
The branch 2024Q4 has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=e17ba537c6998bfbb3cf7542a66ab66292211cc1 commit e17ba537c6998bfbb3cf7542a66ab66292211cc1 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2024-11-03 05:45:54 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2024-12-09 21:59:19 +0000 biology/fastani: Broken where OpenMP isn't available; Update WWW Reported by: fallout (cherry picked from commit 72e82b9c563912ee65f656d9aaba164fc9f3d0f8) --- 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