Received: by mail.netbsd.org (Postfix, from userid 605) id 63B8184D01; Fri, 20 Jan 2023 11:39:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9453E84CED for ; Fri, 20 Jan 2023 11:39:33 +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 FkFtVz9I9Y26 for ; Fri, 20 Jan 2023 11:39:33 +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 E6AB784C71 for ; Fri, 20 Jan 2023 11:39:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DB20BFA90; Fri, 20 Jan 2023 11:39:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674214772217930" MIME-Version: 1.0 Date: Fri, 20 Jan 2023 11:39:32 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/archivers/libzip To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230120113932.DB20BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674214772217930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jan 20 11:39:32 UTC 2023 Modified Files: pkgsrc/archivers/libzip: Makefile Log Message: libzip: convert to cmake/build.mk To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 pkgsrc/archivers/libzip/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674214772217930 Content-Disposition: inline Content-Length: 960 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/libzip/Makefile diff -u pkgsrc/archivers/libzip/Makefile:1.61 pkgsrc/archivers/libzip/Makefile:1.62 --- pkgsrc/archivers/libzip/Makefile:1.61 Wed Oct 26 10:31:00 2022 +++ pkgsrc/archivers/libzip/Makefile Fri Jan 20 11:39:32 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2022/10/26 10:31:00 wiz Exp $ +# $NetBSD: Makefile,v 1.62 2023/01/20 11:39:32 wiz Exp $ DISTNAME= libzip-1.9.2 PKGREVISION= 1 @@ -13,15 +13,15 @@ HOMEPAGE= https://www.libzip.org/ COMMENT= C library to manipulate zip archives LICENSE= modified-bsd -USE_CMAKE= yes USE_TOOLS+= perl:build TEST_TARGET= test # for tests -MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/lib +MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/${CMAKE_BUILD_DIR}/lib .include "options.mk" +.include "../../devel/cmake/build.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../archivers/bzip2/buildlink3.mk" .include "../../archivers/xz/buildlink3.mk" --_----------=_1674214772217930--