Received: by mail.netbsd.org (Postfix, from userid 605) id 1478784DE7; Mon, 22 Jun 2020 09:57:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8EE8A84DC4 for ; Mon, 22 Jun 2020 09:57:19 +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 TH0pTnyN5rA1 for ; Mon, 22 Jun 2020 09:57:19 +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 DD6D784DAF for ; Mon, 22 Jun 2020 09:57:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CC9CCFB28; Mon, 22 Jun 2020 09:57:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159281983873150" MIME-Version: 1.0 Date: Mon, 22 Jun 2020 09:57:18 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/mgba To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200622095718.CC9CCFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159281983873150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jun 22 09:57:18 UTC 2020 Modified Files: pkgsrc/emulators/mgba: Makefile Log Message: mgba: Switch to minizip until I understand why libzip detection fails To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/emulators/mgba/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159281983873150 Content-Disposition: inline Content-Length: 955 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/mgba/Makefile diff -u pkgsrc/emulators/mgba/Makefile:1.15 pkgsrc/emulators/mgba/Makefile:1.16 --- pkgsrc/emulators/mgba/Makefile:1.15 Fri Jun 19 13:06:35 2020 +++ pkgsrc/emulators/mgba/Makefile Mon Jun 22 09:57:18 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.15 2020/06/19 13:06:35 nia Exp $ +# $NetBSD: Makefile,v 1.16 2020/06/22 09:57:18 nia Exp $ DISTNAME= mgba-0.8.2 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_GITHUB:=mgba-emu/} @@ -17,10 +18,10 @@ USE_LANGUAGES= c c++ GCC_REQD+= 5 CMAKE_ARGS+= -DUSE_DISCORD_RPC=OFF -CMAKE_ARGS+= -DUSE_MINIZIP=OFF # using libzip +CMAKE_ARGS+= -DUSE_LIBZIP=OFF # using minizip .include "options.mk" -.include "../../archivers/libzip/buildlink3.mk" +.include "../../archivers/minizip/buildlink3.mk" .include "../../databases/sqlite3/buildlink3.mk" .include "../../devel/libelf/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" --_----------=_159281983873150--