From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1067978-garchives=archives.gentoo.org@lists.gentoo.org>
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 61137138334
	for <garchives@archives.gentoo.org>; Sun, 20 Jan 2019 19:03:40 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 7099CE0922;
	Sun, 20 Jan 2019 19:03:39 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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 4906DE0922
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 19:03:38 +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 B784A335D20
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 19:03:36 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1333251D
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Jan 2019 19:03:35 +0000 (UTC)
From: "Andreas Sturmlechner" <asturm@gentoo.org>
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" <asturm@gentoo.org>
Message-ID: <1548010456.d0e554ed37eeda6fb0dd394c07524c21239cf733.asturm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kconfig/
X-VCS-Repository: repo/gentoo
X-VCS-Files: kde-frameworks/kconfig/kconfig-5.54.0-r1.ebuild
X-VCS-Directories: kde-frameworks/kconfig/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: d0e554ed37eeda6fb0dd394c07524c21239cf733
X-VCS-Branch: master
Date: Sun, 20 Jan 2019 19:03:35 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 30a3a411-f04e-4967-b5d2-7015da8477b1
X-Archives-Hash: 117cb17d2eccde10a9ef1b7d9f8c5389

commit:     d0e554ed37eeda6fb0dd394c07524c21239cf733
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 20 16:19:50 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 20 18:54:16 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0e554ed

kde-frameworks/kconfig: Add missing dependency

Upstream commit 8579ec54838b7188ed016f7adb4a69bbf2e39712

Reported-by: Jochen Schlick <josch09 <AT> gmail.com>
Closes: https://bugs.gentoo.org/675880
Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-frameworks/kconfig/kconfig-5.54.0-r1.ebuild | 34 +++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/kde-frameworks/kconfig/kconfig-5.54.0-r1.ebuild b/kde-frameworks/kconfig/kconfig-5.54.0-r1.ebuild
new file mode 100644
index 00000000000..d78a7023f20
--- /dev/null
+++ b/kde-frameworks/kconfig/kconfig-5.54.0-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Framework for reading and writing configuration"
+LICENSE="LGPL-2+"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="dbus nls"
+
+RDEPEND="
+	$(add_qt_dep qtgui)
+	$(add_qt_dep qtxml)
+	dbus? ( $(add_qt_dep qtdbus) )
+"
+DEPEND="${RDEPEND}
+	nls? ( $(add_qt_dep linguist-tools) )
+	test? ( $(add_qt_dep qtconcurrent) )
+"
+
+# bug 560086
+RESTRICT+=" test"
+
+DOCS=( DESIGN docs/DESIGN.kconfig docs/options.md )
+
+src_configure() {
+	local mycmakeargs=(
+		-DKCONFIG_USE_DBUS=$(usex dbus)
+	)
+	kde5_src_configure
+}