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 75BA7138434 for ; Wed, 19 Oct 2016 14:39:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EB93E0B2A; Wed, 19 Oct 2016 14:39:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7697EE0B2A for ; Wed, 19 Oct 2016 14:39:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FF01341398 for ; Wed, 19 Oct 2016 14:39:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 600772F7 for ; Wed, 19 Oct 2016 14:39:19 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1476887955.4cf05fe4fe0741874905961f5ff6a4da5b4d77b1.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mixxx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mixxx/mixxx-2.0.0-r1.ebuild X-VCS-Directories: media-sound/mixxx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 4cf05fe4fe0741874905961f5ff6a4da5b4d77b1 X-VCS-Branch: master Date: Wed, 19 Oct 2016 14:39:19 +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: 79fac5c3-5ce9-426a-9dd6-f0e0ac8bb8a5 X-Archives-Hash: f45b6fb5015936589238146d21dea548 commit: 4cf05fe4fe0741874905961f5ff6a4da5b4d77b1 Author: Lars Wendler gentoo org> AuthorDate: Wed Oct 19 14:38:59 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Oct 19 14:39:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf05fe4 media-sound/mixxx: Fixed compilation with >=qt-5.7.0 (bug #590690). Package-Manager: portage-2.3.2 Signed-off-by: Lars Wendler gentoo.org> media-sound/mixxx/mixxx-2.0.0-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/media-sound/mixxx/mixxx-2.0.0-r1.ebuild b/media-sound/mixxx/mixxx-2.0.0-r1.ebuild index c44d0f7..f60d07b 100644 --- a/media-sound/mixxx/mixxx-2.0.0-r1.ebuild +++ b/media-sound/mixxx/mixxx-2.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 -inherit eutils multilib scons-utils toolchain-funcs +inherit eutils flag-o-matic multilib scons-utils toolchain-funcs DESCRIPTION="A advanced Digital DJ tool based on Qt" HOMEPAGE="http://www.mixxx.org/" @@ -97,6 +97,11 @@ src_configure() { myqtdir="qt4" fi + if use qt5 ; then + # Required for >=qt-5.7.0 (bug #590690) + append-cxxflags -std=c++11 + fi + myesconsargs=( prefix="${EPREFIX}/usr" qtdir="${EPREFIX}/usr/$(get_libdir)/${myqtdir}"