Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B60EB84EB9 for ; Thu, 31 Aug 2023 10:03:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id O4c2Jun0Ch7X for ; Thu, 31 Aug 2023 10:03:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2989684D13 for ; Thu, 31 Aug 2023 10:03:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 230AEFBDB; Thu, 31 Aug 2023 10:03:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693476195196920" MIME-Version: 1.0 Date: Thu, 31 Aug 2023 10:03:15 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/geography/laszip To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230831100315.230AEFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693476195196920 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:03:15 UTC 2023 Modified Files: pkgsrc/geography/laszip: Makefile distinfo Added Files: pkgsrc/geography/laszip/patches: patch-cmake_macros.cmake Log Message: laszip: fix library name on Darwin To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/geography/laszip/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/geography/laszip/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/geography/laszip/patches/patch-cmake_macros.cmake Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693476195196920 Content-Disposition: inline Content-Length: 2334 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/laszip/Makefile diff -u pkgsrc/geography/laszip/Makefile:1.1 pkgsrc/geography/laszip/Makefile:1.2 --- pkgsrc/geography/laszip/Makefile:1.1 Mon May 17 10:01:31 2021 +++ pkgsrc/geography/laszip/Makefile Thu Aug 31 10:03:14 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2021/05/17 10:01:31 thor Exp $ +# $NetBSD: Makefile,v 1.2 2023/08/31 10:03:14 adam Exp $ DISTNAME= laszip-src-3.4.3 PKGNAME= ${DISTNAME:S/-src//} @@ -12,7 +12,7 @@ HOMEPAGE= https://laszip.org/ COMMENT= Free and lossless LiDAR compression LICENSE= gnu-lgpl-v2.1 -USE_CMAKE= yes USE_LANGUAGES= c c++ +.include "../../devel/cmake/build.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/geography/laszip/distinfo diff -u pkgsrc/geography/laszip/distinfo:1.3 pkgsrc/geography/laszip/distinfo:1.4 --- pkgsrc/geography/laszip/distinfo:1.3 Tue Oct 26 10:45:10 2021 +++ pkgsrc/geography/laszip/distinfo Thu Aug 31 10:03:14 2023 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2021/10/26 10:45:10 nia Exp $ +$NetBSD: distinfo,v 1.4 2023/08/31 10:03:14 adam Exp $ BLAKE2s (laszip-src-3.4.3.tar.gz) = 95903e791a0b4a6983abb2fadc4f5b240693a87223b0a79db9e801438e18ff9c SHA512 (laszip-src-3.4.3.tar.gz) = 52033d4e271a75f77de9f112e034ff080e476c0d117010136088b255323e4542550c0fa4f87d86521959787919ca3c7e49ef8c8975ba8f8239799a4d7f34d53f Size (laszip-src-3.4.3.tar.gz) = 219534 bytes +SHA1 (patch-cmake_macros.cmake) = 21ec51be44c85a5b834833550b99f4d80fbd0b12 Added files: Index: pkgsrc/geography/laszip/patches/patch-cmake_macros.cmake diff -u /dev/null pkgsrc/geography/laszip/patches/patch-cmake_macros.cmake:1.1 --- /dev/null Thu Aug 31 10:03:15 2023 +++ pkgsrc/geography/laszip/patches/patch-cmake_macros.cmake Thu Aug 31 10:03:14 2023 @@ -0,0 +1,15 @@ +$NetBSD: patch-cmake_macros.cmake,v 1.1 2023/08/31 10:03:14 adam Exp $ + +Fix library name on Darwin. + +--- cmake/macros.cmake.orig 2023-08-31 09:59:47.000000000 +0000 ++++ cmake/macros.cmake +@@ -70,7 +70,7 @@ macro(LASZIP_ADD_LIBRARY _name) + RUNTIME DESTINATION ${LASZIP_BIN_INSTALL_DIR} + LIBRARY DESTINATION ${LASZIP_LIB_INSTALL_DIR} + ARCHIVE DESTINATION ${LASZIP_LIB_INSTALL_DIR}) +- if (APPLE) ++ if (FALSE) + set_target_properties(${_name} PROPERTIES INSTALL_NAME_DIR + "@executable_path/../lib") + endif() --_----------=_1693476195196920--