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 583BE138334 for ; Sat, 13 Jul 2019 15:03:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99727E041F; Sat, 13 Jul 2019 15:03:28 +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 8026AE041F for ; Sat, 13 Jul 2019 15:03:28 +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 6656D347971 for ; Sat, 13 Jul 2019 15:03:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BCB76E3 for ; Sat, 13 Jul 2019 15:03:25 +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: <1563027360.e78edc1782d153796503dd4e96f48e3537484aac.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/ktouch/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/ktouch/ktouch-9999.ebuild X-VCS-Directories: kde-apps/ktouch/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e78edc1782d153796503dd4e96f48e3537484aac X-VCS-Branch: master Date: Sat, 13 Jul 2019 15:03:25 +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: 471a10b3-8807-4bef-a437-3de6073279b8 X-Archives-Hash: 4e02955d52389be9836d649ac68570a7 commit: e78edc1782d153796503dd4e96f48e3537484aac Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jul 11 00:02:02 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jul 13 14:16:00 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e78edc17 kde-apps/ktouch: Add USE X Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/ktouch/ktouch-9999.ebuild | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/kde-apps/ktouch/ktouch-9999.ebuild b/kde-apps/ktouch/ktouch-9999.ebuild index 9c6acdb8b9..0096cef511 100644 --- a/kde-apps/ktouch/ktouch-9999.ebuild +++ b/kde-apps/ktouch/ktouch-9999.ebuild @@ -9,8 +9,7 @@ inherit kde5 DESCRIPTION="Program that helps to learn and practice touch typing" HOMEPAGE="https://kde.org/applications/education/ktouch/" KEYWORDS="" -IUSE="" -# USE !X is broken, https://bugs.kde.org/show_bug.cgi?id=402902 +IUSE="X" COMMON_DEPEND=" $(add_frameworks_dep kcmutils) @@ -31,14 +30,16 @@ COMMON_DEPEND=" $(add_qt_dep qtquickcontrols2) $(add_qt_dep qtsql) $(add_qt_dep qtwidgets) - $(add_qt_dep qtx11extras) $(add_qt_dep qtxml) $(add_qt_dep qtxmlpatterns) - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libxcb[xkb] - x11-libs/libxkbfile + X? ( + $(add_qt_dep qtx11extras) + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libxcb[xkb] + x11-libs/libxkbfile + ) " DEPEND="${COMMON_DEPEND} $(add_frameworks_dep kwindowsystem) @@ -51,6 +52,8 @@ RDEPEND="${COMMON_DEPEND} src_configure() { local mycmakeargs=( -DCOMPILE_QML=OFF + $(cmake-utils_use_find_package X X11) + $(cmake-utils_use_find_package X Qt5X11Extras) ) kde5_src_configure }