From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB60115802E for ; Wed, 3 Jul 2024 05:49:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17FA0E2A0A; Wed, 3 Jul 2024 05:49:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9265E2A0A for ; Wed, 3 Jul 2024 05:49:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C509D342F65 for ; Wed, 3 Jul 2024 05:49:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2ED631D9A for ; Wed, 3 Jul 2024 05:48:59 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1719985720.94b4114fe9fd8130eb75fe82122eec1a67027c33.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild X-VCS-Directories: sci-mathematics/wxmaxima/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 94b4114fe9fd8130eb75fe82122eec1a67027c33 X-VCS-Branch: master Date: Wed, 3 Jul 2024 05:48:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8b072e0d-477e-423e-9886-c5f9d15a0bc3 X-Archives-Hash: 7de66c15e567db8e896bd82a71be54a6 commit: 94b4114fe9fd8130eb75fe82122eec1a67027c33 Author: Andrey Grozin gentoo org> AuthorDate: Wed Jul 3 05:47:49 2024 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Wed Jul 3 05:48:40 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94b4114f sci-mathematics/wxmaxima: call setup-wxwidgets from src_configure Signed-off-by: Andrey Grozin gentoo.org> sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild b/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild index 3fbeb1a253b0..18b5ffff5949 100644 --- a/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild +++ b/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild @@ -27,7 +27,6 @@ RDEPEND="${DEPEND} sci-mathematics/maxima" src_prepare() { - setup-wxwidgets cmake_src_prepare sed -e "s|GPL.txt ||g" -e "s|share/doc/${PN}|share/doc/${PF}|g" -i CMakeLists.txt \ @@ -48,6 +47,8 @@ src_prepare() { } src_configure() { + setup-wxwidgets + local mycmakeargs=( -DWXM_UNIT_TESTS=$(usex test) -DWXM_DISABLE_WEBVIEW=$(usex webkit OFF ON)