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 BBF3E138206 for ; Mon, 1 Jan 2018 03:49:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7AB5E087B; Mon, 1 Jan 2018 03:49:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9DB0CE087B for ; Mon, 1 Jan 2018 03:49: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D8531335C0B for ; Mon, 1 Jan 2018 03:49:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E542145 for ; Mon, 1 Jan 2018 03:49:18 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1514778550.e216d4340820b2144eaa9047d34391e9898a5ce4.kensington@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qtdeclarative/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild X-VCS-Directories: dev-qt/qtdeclarative/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: e216d4340820b2144eaa9047d34391e9898a5ce4 X-VCS-Branch: master Date: Mon, 1 Jan 2018 03:49:18 +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: 78609c1b-850a-402a-af98-94187ce70900 X-Archives-Hash: 888fb3420479a03dd12a6309d879376c commit: e216d4340820b2144eaa9047d34391e9898a5ce4 Author: Michael Palimaka gentoo org> AuthorDate: Mon Jan 1 03:43:44 2018 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Jan 1 03:49:10 2018 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=e216d434 dev-qt/qtdeclarative: configure with -qml-debug Since 6fc5fc1a9455d495abb11cfdf72257b8d8b22c6f, -qml-debug is no longer handled via qtbase and is exposed via qtdeclarative instead. Although this is enabled by default, list it explicitly here to follow the old approach Upstream-commit: 4e6d5951ed853b236b03ad46ac14649449830d96 Package-Manager: Portage-2.3.14, Repoman-2.3.6 dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild b/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild index 985b6923..0c80aec3 100644 --- a/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild +++ b/dev-qt/qtdeclarative/qtdeclarative-5.9999.ebuild @@ -54,3 +54,11 @@ src_prepare() { qt5-build_src_prepare } + +src_configure() { + local myqmakeargs=( + -- + -qml-debug + ) + qt5-build_src_configure +}