Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A0B0384EB9 for ; Thu, 31 Aug 2023 10:22:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id kIvQWjOZd1bE for ; Thu, 31 Aug 2023 10:22:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2315384D05 for ; Thu, 31 Aug 2023 10:22:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1CBECFBDB; Thu, 31 Aug 2023 10:22:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693477350169910" MIME-Version: 1.0 Date: Thu, 31 Aug 2023 10:22:30 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/flann-lib To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230831102230.1CBECFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693477350169910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Aug 31 10:22:30 UTC 2023 Modified Files: pkgsrc/math/flann-lib: Makefile buildlink3.mk Log Message: flann-lib: buildlinking needs lz4; switch to cmake/build.mk To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/math/flann-lib/Makefile \ pkgsrc/math/flann-lib/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693477350169910 Content-Disposition: inline Content-Length: 1646 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/flann-lib/Makefile diff -u pkgsrc/math/flann-lib/Makefile:1.4 pkgsrc/math/flann-lib/Makefile:1.5 --- pkgsrc/math/flann-lib/Makefile:1.4 Mon Aug 14 05:24:49 2023 +++ pkgsrc/math/flann-lib/Makefile Thu Aug 31 10:22:29 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2023/08/14 05:24:49 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2023/08/31 10:22:29 adam Exp $ DISTNAME= flann-1.9.2 PKGNAME= ${DISTNAME:S/-/-lib-/} @@ -12,7 +12,6 @@ HOMEPAGE= https://github.com/mariusmuja/ COMMENT= Fast Library for Approximate Nearest Neighbors LICENSE= modified-bsd -USE_CMAKE= yes USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config @@ -27,5 +26,6 @@ CMAKE_ARGS+= -DBUILD_CUDA_LIB=OFF PKGCONFIG_OVERRIDE+= cmake/flann.pc.in .include "../../archivers/lz4/buildlink3.mk" +.include "../../devel/cmake/build.mk" .include "../../devel/hdf5-c++/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/flann-lib/buildlink3.mk diff -u pkgsrc/math/flann-lib/buildlink3.mk:1.4 pkgsrc/math/flann-lib/buildlink3.mk:1.5 --- pkgsrc/math/flann-lib/buildlink3.mk:1.4 Mon Aug 14 05:24:49 2023 +++ pkgsrc/math/flann-lib/buildlink3.mk Thu Aug 31 10:22:29 2023 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.4 2023/08/14 05:24:49 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2023/08/31 10:22:29 adam Exp $ BUILDLINK_TREE+= flann-lib @@ -9,6 +9,7 @@ BUILDLINK_API_DEPENDS.flann-lib+= flann- BUILDLINK_ABI_DEPENDS.flann-lib+= flann-lib>=1.9.2nb1 BUILDLINK_PKGSRCDIR.flann-lib?= ../../math/flann-lib +.include "../../archivers/lz4/buildlink3.mk" .include "../../devel/hdf5-c++/buildlink3.mk" .endif # FLANN_LIB_BUILDLINK3_MK --_----------=_1693477350169910--