Received: by mail.netbsd.org (Postfix, from userid 605) id DBF3684E5D; Sun, 9 Oct 2022 12:45:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 16DE284DA9 for ; Sun, 9 Oct 2022 12:45:09 +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 b3zU9WUS-U1d for ; Sun, 9 Oct 2022 12:45:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5B1D984D60 for ; Sun, 9 Oct 2022 12:45:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4FE48FA90; Sun, 9 Oct 2022 12:45:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1665319508266850" MIME-Version: 1.0 Date: Sun, 9 Oct 2022 12:45:08 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/x11/wxGTK32 To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20221009124508.4FE48FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1665319508266850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Sun Oct 9 12:45:08 UTC 2022 Modified Files: pkgsrc/x11/wxGTK32: Makefile Log Message: x11/wxGTK32: revert to building with configure by default since the cmake build is broken for some purposes, which you only notice when building against it. https://github.com/wxWidgets/wxWidgets/issues/22841 https://github.com/wxWidgets/wxWidgets/issues/22858 To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/x11/wxGTK32/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1665319508266850 Content-Disposition: inline Content-Length: 1002 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/wxGTK32/Makefile diff -u pkgsrc/x11/wxGTK32/Makefile:1.18 pkgsrc/x11/wxGTK32/Makefile:1.19 --- pkgsrc/x11/wxGTK32/Makefile:1.18 Thu Oct 6 19:35:04 2022 +++ pkgsrc/x11/wxGTK32/Makefile Sun Oct 9 12:45:08 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.18 2022/10/06 19:35:04 adam Exp $ +# $NetBSD: Makefile,v 1.19 2022/10/09 12:45:08 rhialto Exp $ DISTNAME= wxWidgets-3.2.1 PKGNAME= ${DISTNAME:S/wxWidgets/wxGTK32/} +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_GITHUB:=wxWidgets/} GITHUB_PROJECT= wxWidgets @@ -39,7 +40,9 @@ REPLACE_SH= wx-config.in wx-config-inpl # and remove support for building with GNU_CONFIGURE PKG_OPTIONS_VAR= PKG_OPTIONS.wxGTK32 PKG_SUPPORTED_OPTIONS= cmake -PKG_SUGGESTED_OPTIONS= cmake +# broken: https://github.com/wxWidgets/wxWidgets/issues/22841 +# https://github.com/wxWidgets/wxWidgets/issues/22858 +#PKG_SUGGESTED_OPTIONS= cmake .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mcmake) --_----------=_1665319508266850--