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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CD5971382C5 for ; Thu, 14 Jan 2021 14:13:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EED82E08F1; Thu, 14 Jan 2021 14:13:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ADF09E08F1 for ; Thu, 14 Jan 2021 14:13:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DF9433BEE9 for ; Thu, 14 Jan 2021 14:13:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96688498 for ; Thu, 14 Jan 2021 14:13:53 +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: <1610633629.57d5dbb0f7c5e705bb010e752fc2ae13c9367012.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/warzone2100/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-strategy/warzone2100/warzone2100-3.4.1.ebuild X-VCS-Directories: games-strategy/warzone2100/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 57d5dbb0f7c5e705bb010e752fc2ae13c9367012 X-VCS-Branch: master Date: Thu, 14 Jan 2021 14:13:53 +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: 895610c2-c2a5-498f-a96a-dd53c87ae9b0 X-Archives-Hash: 9f70a13231fe57657a9af4dc9dce148e commit: 57d5dbb0f7c5e705bb010e752fc2ae13c9367012 Author: Sam James gentoo org> AuthorDate: Thu Jan 14 14:13:45 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 14 14:13:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57d5dbb0 games-strategy/warzone2100: assorted fixes * Disable -Werror * Label "Gentoo" as the distributor * Sort CMake options Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> games-strategy/warzone2100/warzone2100-3.4.1.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/games-strategy/warzone2100/warzone2100-3.4.1.ebuild b/games-strategy/warzone2100/warzone2100-3.4.1.ebuild index 0b755f3f625..0438b6f0bd7 100644 --- a/games-strategy/warzone2100/warzone2100-3.4.1.ebuild +++ b/games-strategy/warzone2100/warzone2100-3.4.1.ebuild @@ -81,10 +81,12 @@ src_prepare() { src_configure() { local mycmakeargs=( - -DBUILD_SHARED_LIBS="OFF" + -DWZ_ENABLE_WARNINGS_AS_ERRORS=OFF + -DWZ_DISTRIBUTOR="Gentoo" -DWZ_PORTABLE="OFF" - -DENABLE_NLS="$(usex nls)" -DWZ_ENABLE_BACKEND_VULKAN="$(usex vulkan)" + -DBUILD_SHARED_LIBS="OFF" + -DENABLE_NLS="$(usex nls)" -DENABLE_DISCORD="$(usex discord)" ) cmake_src_configure