From 72e82b9c563912ee65f656d9aaba164fc9f3d0f8 Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Sat, 2 Nov 2024 22:45:54 -0700 Subject: [PATCH] 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