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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BAD4E158087 for ; Sun, 16 Jan 2022 02:12:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F07B12BC00D; Sun, 16 Jan 2022 02:12:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DF7F2BC00D for ; Sun, 16 Jan 2022 02:12:17 +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 E70E3342FC9 for ; Sun, 16 Jan 2022 02:12:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35F27261 for ; Sun, 16 Jan 2022 02:12:14 +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: <1642299108.dcefab179a1230eed77c6732e355a1e32edd1950.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/ogre/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/ogre/ogre-1.9.0-r3.ebuild X-VCS-Directories: dev-games/ogre/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dcefab179a1230eed77c6732e355a1e32edd1950 X-VCS-Branch: master Date: Sun, 16 Jan 2022 02:12:14 +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: 5d3cd9c9-9ee3-46d0-98a2-f1653c1287e2 X-Archives-Hash: 4363b53e60ef765f860a071aec1ccc07 commit: dcefab179a1230eed77c6732e355a1e32edd1950 Author: Sam James gentoo org> AuthorDate: Sun Jan 16 02:11:48 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 16 02:11:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcefab17 dev-games/ogre: workaround 1.9.0 USE=examples failure with GCC 11 Fixed properly in newer versions. Closes: https://bugs.gentoo.org/829253 Signed-off-by: Sam James gentoo.org> dev-games/ogre/ogre-1.9.0-r3.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-games/ogre/ogre-1.9.0-r3.ebuild b/dev-games/ogre/ogre-1.9.0-r3.ebuild index 4adb836a28a4..cb80cd8c754e 100644 --- a/dev-games/ogre/ogre-1.9.0-r3.ebuild +++ b/dev-games/ogre/ogre-1.9.0-r3.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 CMAKE_REMOVE_MODULES_LIST="FindFreetype FindDoxygen FindZLIB" -inherit cmake vcs-snapshot +inherit cmake flag-o-matic vcs-snapshot DESCRIPTION="Object-oriented Graphics Rendering Engine" HOMEPAGE="https://www.ogre3d.org/" @@ -114,6 +114,11 @@ src_configure() { done fi + if use examples ; then + # bug #829253 + append-cxxflags -std=c++14 + fi + cmake_src_configure }