Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 May 2023 20:00:54 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 40cccee32402 - main - math/fann: fix plist without libomp
Message-ID:  <202305092000.349K0sai070677@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/ports/commit/?id=40cccee32402d3f22c63040869c37ac5a962c9b9

commit 40cccee32402d3f22c63040869c37ac5a962c9b9
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-05-09 19:54:43 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-05-09 19:54:43 +0000

    math/fann: fix plist without libomp
    
    pkg-static: Unable to access file /wrkdirs/usr/ports/math/fann/work/stage/usr/local/include/parallel_fann.h:No such file or directory
    pkg-static: Unable to access file /wrkdirs/usr/ports/math/fann/work/stage/usr/local/include/parallel_fann.hpp:No such file or directory
---
 math/fann/Makefile  | 6 ++++++
 math/fann/pkg-plist | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/math/fann/Makefile b/math/fann/Makefile
index 85e71ff6a3f8..63d8bd6c79c3 100644
--- a/math/fann/Makefile
+++ b/math/fann/Makefile
@@ -16,4 +16,10 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	libfann
 GH_TAGNAME=	8409b42
 
+.if !exists(/usr/include/omp.h)
+PLIST_SUB=	OPENMP="@comment "
+.else
+PLIST_SUB=	OPENMP=""
+.endif
+
 .include <bsd.port.mk>
diff --git a/math/fann/pkg-plist b/math/fann/pkg-plist
index 0e982deeb0d5..b490ccd1056d 100644
--- a/math/fann/pkg-plist
+++ b/math/fann/pkg-plist
@@ -12,8 +12,8 @@ include/fann_train.h
 include/fann_training_data_cpp.h
 include/fixedfann.h
 include/floatfann.h
-include/parallel_fann.h
-include/parallel_fann.hpp
+%%OPENMP%%include/parallel_fann.h
+%%OPENMP%%include/parallel_fann.hpp
 lib/cmake/fann/fann-config.cmake
 lib/cmake/fann/fann-use.cmake
 lib/libdoublefann.a



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305092000.349K0sai070677>