summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Chantziaras <realnc@gmail.com>2018-04-29 22:12:41 +0300
committerAndreas Sturmlechner <asturm@gentoo.org>2018-05-16 10:17:42 +0200
commitd008f46f41469c0d7370ca37c3360ba9c5a20202 (patch)
tree6101987299b726afa0f1e5a78e5a1ea4d4855aad /games-engines/qtads
parentx11-terms/terminology: bump to 1.2.1 (diff)
downloadgentoo-d008f46f41469c0d7370ca37c3360ba9c5a20202.tar.gz
gentoo-d008f46f41469c0d7370ca37c3360ba9c5a20202.tar.bz2
gentoo-d008f46f41469c0d7370ca37c3360ba9c5a20202.zip
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
Diffstat (limited to 'games-engines/qtads')
-rw-r--r--games-engines/qtads/qtads-2.1.7-r1.ebuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/games-engines/qtads/qtads-2.1.7-r1.ebuild b/games-engines/qtads/qtads-2.1.7-r1.ebuild
index 521b932662cb..500c1f64211d 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
}