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 5AD281382C5 for ; Fri, 16 Mar 2018 01:00:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18F17E07EF; Fri, 16 Mar 2018 01:00:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E709BE07EF for ; Fri, 16 Mar 2018 01:00:00 +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 7C77F335C75 for ; Fri, 16 Mar 2018 00:59:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DA5178 for ; Fri, 16 Mar 2018 00:59:56 +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: <1521161844.b80d3fd9b7a5bda3db3207f0c6263dcd51dca6cb.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kget/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kget/kget-9999.ebuild X-VCS-Directories: kde-apps/kget/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b80d3fd9b7a5bda3db3207f0c6263dcd51dca6cb X-VCS-Branch: master Date: Fri, 16 Mar 2018 00:59:56 +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: 78f79396-a235-4631-b624-bef86970d2d3 X-Archives-Hash: 8784b339f1a9053fa640eaa0183c028a commit: b80d3fd9b7a5bda3db3207f0c6263dcd51dca6cb Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Mar 16 00:57:24 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Mar 16 00:57:24 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=b80d3fd9 kde-apps/kget: Add USE=kde for Plasma-5 shutdown actions Upstream commit: bd31daab5163f2c161efa382865ea84a69787395 Thanks-to: Arfrever Package-Manager: Portage-2.3.24, Repoman-2.3.6 kde-apps/kget/kget-9999.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-apps/kget/kget-9999.ebuild b/kde-apps/kget/kget-9999.ebuild index 4946246add..18d94e1181 100644 --- a/kde-apps/kget/kget-9999.ebuild +++ b/kde-apps/kget/kget-9999.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Advanced download manager by KDE" HOMEPAGE="https://www.kde.org/applications/internet/kget/" KEYWORDS="" -IUSE="bittorrent gpg mms sqlite" +IUSE="bittorrent gpg kde mms sqlite" COMMON_DEPEND=" $(add_frameworks_dep kcmutils) @@ -43,6 +43,7 @@ COMMON_DEPEND=" app-crypt/qca:2[qt5(+)] bittorrent? ( net-libs/libktorrent:5 ) gpg? ( app-crypt/gpgme[qt5] ) + kde? ( $(add_plasma_dep plasma-workspace) ) mms? ( media-libs/libmms ) sqlite? ( dev-db/sqlite:3 ) " @@ -57,6 +58,7 @@ src_configure() { local mycmakeargs=( $(cmake-utils_use_find_package bittorrent KF5Torrent) $(cmake-utils_use_find_package gpg Gpgmepp) + $(cmake-utils_use_find_package kde LibKWorkspace) $(cmake-utils_use_find_package mms LibMms) $(cmake-utils_use_find_package sqlite Sqlite) )