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 5C250158087 for ; Thu, 3 Feb 2022 09:12:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A19E82BC003; Thu, 3 Feb 2022 09:12:25 +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 362042BC003 for ; Thu, 3 Feb 2022 09:12:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BE3353432B6 for ; Thu, 3 Feb 2022 09:12:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19A2D268 for ; Thu, 3 Feb 2022 09:12:22 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1643879513.33ce6ae80b24b231e526d388109a780dd84ca202.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/odamex/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/odamex/odamex-0.9.5.ebuild X-VCS-Directories: games-engines/odamex/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 33ce6ae80b24b231e526d388109a780dd84ca202 X-VCS-Branch: master Date: Thu, 3 Feb 2022 09:12:22 +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: bc5dd8cd-b085-44c9-8eec-8af9ed41e215 X-Archives-Hash: f163c79f8f815099fa9a43f530e88dac commit: 33ce6ae80b24b231e526d388109a780dd84ca202 Author: William Breathitt Gray gmail com> AuthorDate: Thu Feb 3 08:21:12 2022 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Thu Feb 3 09:11:53 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ce6ae8 games-engines/odamex: Disable find_package(x11) only for client Closes: https://bugs.gentoo.org/832449 Signed-off-by: William Breathitt Gray gmail.com> Closes: https://github.com/gentoo/gentoo/pull/24063 Signed-off-by: James Le Cuirot gentoo.org> games-engines/odamex/odamex-0.9.5.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-engines/odamex/odamex-0.9.5.ebuild b/games-engines/odamex/odamex-0.9.5.ebuild index 62d3c471ea58..56b4b013e2cf 100644 --- a/games-engines/odamex/odamex-0.9.5.ebuild +++ b/games-engines/odamex/odamex-0.9.5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 WX_GTK_VER="3.0-gtk3" inherit cmake desktop prefix wxwidgets xdg @@ -49,7 +49,6 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X) -DUSE_INTERNAL_LIBS=0 -DBUILD_CLIENT=$(usex client) -DBUILD_LAUNCHER=$(usex odalaunch) @@ -59,6 +58,7 @@ src_configure() { -DENABLE_PORTMIDI=$(usex portmidi) -DUSE_MINIUPNP=$(usex upnp) ) + use client && mycmakeargs+=(-DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)) cmake_src_configure }