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 C858C1382C5 for ; Wed, 16 May 2018 08:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9271E0932; Wed, 16 May 2018 08:18:44 +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 B4292E0932 for ; Wed, 16 May 2018 08:18:44 +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 9DF93335C60 for ; Wed, 16 May 2018 08:18:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 380BA43 for ; Wed, 16 May 2018 08:18:42 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1526458662.d008f46f41469c0d7370ca37c3360ba9c5a20202.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/qtads/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/qtads/qtads-2.1.7-r1.ebuild X-VCS-Directories: games-engines/qtads/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d008f46f41469c0d7370ca37c3360ba9c5a20202 X-VCS-Branch: master Date: Wed, 16 May 2018 08:18:42 +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-Archives-Salt: 365e0571-f217-459d-8fda-630d3c2b520b X-Archives-Hash: 2beddd32c96ba35e20c376f9c713653f commit: d008f46f41469c0d7370ca37c3360ba9c5a20202 Author: Nikos Chantziaras gmail com> AuthorDate: Sun Apr 29 19:12:41 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed May 16 08:17:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d008f46f games-engines/qtads-2.1.7-r1: fix build with GCC 7 Current version of QTads cannot be built with GCC 7. The next version will fix that, but for now, we need -fpermissive. Closes: https://bugs.gentoo.org/654356 Package-Manager: Portage-2.3.36, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/8208 games-engines/qtads/qtads-2.1.7-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/games-engines/qtads/qtads-2.1.7-r1.ebuild b/games-engines/qtads/qtads-2.1.7-r1.ebuild index 521b932662c..500c1f64211 100644 --- a/games-engines/qtads/qtads-2.1.7-r1.ebuild +++ b/games-engines/qtads/qtads-2.1.7-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit gnome2-utils qmake-utils xdg +inherit gnome2-utils qmake-utils xdg flag-o-matic DESCRIPTION="Multimedia interpreter for TADS text adventures" HOMEPAGE="http://qtads.sourceforge.net" @@ -21,6 +21,8 @@ DEPEND="media-libs/libsdl[sound] RDEPEND="${DEPEND}" src_configure() { + # bug 654356 temp fix + append-cxxflags -fpermissive eqmake5 qtads.pro -after CONFIG-=silent }