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 1A6F0158087 for ; Fri, 28 Jan 2022 07:53:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FC8A2BC06A; Fri, 28 Jan 2022 07:53:58 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A4332BC06A for ; Fri, 28 Jan 2022 07:53:58 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67F2B3432CA for ; Fri, 28 Jan 2022 07:53:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5E252C4 for ; Fri, 28 Jan 2022 07:53:54 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1643356407.1f693e0323f6bf0be380c1dfbedab4fe22561ac7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/vtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/vtk/vtk-9.0.3-r3.ebuild sci-libs/vtk/vtk-9.0.3-r4.ebuild X-VCS-Directories: sci-libs/vtk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1f693e0323f6bf0be380c1dfbedab4fe22561ac7 X-VCS-Branch: master Date: Fri, 28 Jan 2022 07:53:54 +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: b93ff0cd-cbe0-4ab1-8445-e838232dd58b X-Archives-Hash: b48705df2a64317e5199cd6255bb3b73 commit: 1f693e0323f6bf0be380c1dfbedab4fe22561ac7 Author: Bernd Waibel posteo net> AuthorDate: Wed Jan 26 17:03:21 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 28 07:53:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f693e03 sci-libs/vtk: fix build with USE=offscreen The package can be built with either USE=offscreen, or with USE=X enabled, but not with both simultaneously. Closes: https://bugs.gentoo.org/830774 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Closes: https://github.com/gentoo/gentoo/pull/23970 Signed-off-by: Sam James gentoo.org> sci-libs/vtk/{vtk-9.0.3-r3.ebuild => vtk-9.0.3-r4.ebuild} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sci-libs/vtk/vtk-9.0.3-r3.ebuild b/sci-libs/vtk/vtk-9.0.3-r4.ebuild similarity index 99% rename from sci-libs/vtk/vtk-9.0.3-r3.ebuild rename to sci-libs/vtk/vtk-9.0.3-r4.ebuild index db7df9ecb55d..578cf8ade8fb 100644 --- a/sci-libs/vtk/vtk-9.0.3-r3.ebuild +++ b/sci-libs/vtk/vtk-9.0.3-r4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -47,6 +47,7 @@ REQUIRED_USE=" qt5? ( X rendering ) tk? ( X rendering python ) web? ( python ) + ^^ ( X offscreen ) " RDEPEND=" @@ -358,9 +359,9 @@ src_configure() { if use offscreen; then mycmakeargs+=( - -DVTK_OPENGL_HAS_OSMESA=ON -DVTK_DEFAULT_RENDER_WINDOW_OFFSCREEN=ON -DVTK_DEFAULT_RENDER_WINDOW_HEADLESS=ON + -DVTK_OPENGL_HAS_OSMESA=ON ) fi