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 BBBB01382C5 for ; Sat, 24 Feb 2018 13:44:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B455DE07F2; Sat, 24 Feb 2018 13:44:29 +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 8F25BE07F2 for ; Sat, 24 Feb 2018 13:44:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2717C335C31 for ; Sat, 24 Feb 2018 13:44:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F3CB21C for ; Sat, 24 Feb 2018 13:44:26 +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: <1519478480.7f0ebc2a23f1017e4ce920c0a6c58b1ec3cf44cc.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/prison/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/prison/metadata.xml kde-frameworks/prison/prison-9999.ebuild X-VCS-Directories: kde-frameworks/prison/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7f0ebc2a23f1017e4ce920c0a6c58b1ec3cf44cc X-VCS-Branch: master Date: Sat, 24 Feb 2018 13:44:26 +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: baef079d-7563-43e1-865c-c70911f77490 X-Archives-Hash: ca584c00963ae3f9509a2d7c0f3153e2 commit: 7f0ebc2a23f1017e4ce920c0a6c58b1ec3cf44cc Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Feb 24 13:21:20 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 24 13:21:20 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=7f0ebc2a kde-frameworks/prison: Add USE=qml Upstream commit 6fb9f3f5b21ff647cb83437c6fe8d4217ad32e34 Package-Manager: Portage-2.3.24, Repoman-2.3.6 kde-frameworks/prison/metadata.xml | 3 +++ kde-frameworks/prison/prison-9999.ebuild | 11 ++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/prison/metadata.xml b/kde-frameworks/prison/metadata.xml index 2fdbf33d96..d39a5d2d23 100644 --- a/kde-frameworks/prison/metadata.xml +++ b/kde-frameworks/prison/metadata.xml @@ -5,4 +5,7 @@ kde@gentoo.org Gentoo KDE Project + + Enable QML/QtQuick support via dev-qt/qtdeclarative + diff --git a/kde-frameworks/prison/prison-9999.ebuild b/kde-frameworks/prison/prison-9999.ebuild index 80c6f6c2a7..88be4d225a 100644 --- a/kde-frameworks/prison/prison-9999.ebuild +++ b/kde-frameworks/prison/prison-9999.ebuild @@ -10,11 +10,20 @@ HOMEPAGE="https://cgit.kde.org/prison.git" LICENSE="GPL-2" KEYWORDS="" -IUSE="" +IUSE="qml" DEPEND=" $(add_qt_dep qtgui) media-gfx/qrencode:= media-libs/libdmtx + qml? ( $(add_qt_dep qtdeclarative) ) " RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package qml Qt5Quick) + ) + + kde5_src_configure +}