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 09492138334 for ; Sun, 20 Jan 2019 19:23:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09388E094F; Sun, 20 Jan 2019 19:23:54 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D0344E094F for ; Sun, 20 Jan 2019 19:23:53 +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 4E9FF335D06 for ; Sun, 20 Jan 2019 19:23:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 093164F5 for ; Sun, 20 Jan 2019 19:23:50 +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: <1548011756.f49368297e01d6a9ebc92d81a7713259b3f25c69.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/kconfig/ X-VCS-Repository: proj/kde X-VCS-Files: kde-frameworks/kconfig/kconfig-9999.ebuild X-VCS-Directories: kde-frameworks/kconfig/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f49368297e01d6a9ebc92d81a7713259b3f25c69 X-VCS-Branch: master Date: Sun, 20 Jan 2019 19:23:50 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b64114da-f363-4e35-8388-d8026450d01e X-Archives-Hash: 04ac496442b8922913085f9c8db1e5d4 commit: f49368297e01d6a9ebc92d81a7713259b3f25c69 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 20 16:19:50 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 20 19:15:56 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f4936829 kde-frameworks/kconfig: Add missing dependency Upstream commit 8579ec54838b7188ed016f7adb4a69bbf2e39712 Reported-by: Jochen Schlick gmail.com> Closes: https://bugs.gentoo.org/675880 Package-Manager: Portage-2.3.56, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-frameworks/kconfig/kconfig-9999.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/kde-frameworks/kconfig/kconfig-9999.ebuild b/kde-frameworks/kconfig/kconfig-9999.ebuild index dd3cd601e0..9805bef308 100644 --- a/kde-frameworks/kconfig/kconfig-9999.ebuild +++ b/kde-frameworks/kconfig/kconfig-9999.ebuild @@ -9,11 +9,12 @@ inherit kde5 DESCRIPTION="Framework for reading and writing configuration" LICENSE="LGPL-2+" KEYWORDS="" -IUSE="nls" +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) ) @@ -24,3 +25,10 @@ DEPEND="${RDEPEND} RESTRICT+=" test" DOCS=( DESIGN docs/DESIGN.kconfig docs/options.md ) + +src_configure() { + local mycmakeargs=( + -DKCONFIG_USE_DBUS=$(usex dbus) + ) + kde5_src_configure +}