From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B5BF61384B4 for ; Sat, 14 Nov 2015 16:03:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DAF821C00B; Sat, 14 Nov 2015 16:03:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CBB0A21C00B for ; Sat, 14 Nov 2015 16:03:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C0C33406C0 for ; Sat, 14 Nov 2015 16:03:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A115B6D for ; Sat, 14 Nov 2015 16:03:29 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1447516993.5618a8fb90a55bfe72a31ad267444bc35a900fc8.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/spectacle/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/spectacle/spectacle-9999.ebuild X-VCS-Directories: kde-apps/spectacle/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5618a8fb90a55bfe72a31ad267444bc35a900fc8 X-VCS-Branch: master Date: Sat, 14 Nov 2015 16:03:29 +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: be230700-2f89-4faa-a5f7-d8e0fc6caa00 X-Archives-Hash: d399d56fc21b2717130505f1c2a0c02d commit: 5618a8fb90a55bfe72a31ad267444bc35a900fc8 Author: Andreas Sturmlechner gmail com> AuthorDate: Sat Nov 14 15:48:25 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Nov 14 16:03:13 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5618a8fb Revert "kde-apps/spectacle: Upstream dropped libkipi support" This reverts commit 1995d980f0a477f87e9851f2459e3963bede2bf2. ...and back again. kde-apps/spectacle/spectacle-9999.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/kde-apps/spectacle/spectacle-9999.ebuild b/kde-apps/spectacle/spectacle-9999.ebuild index 547c119..12a4f97 100644 --- a/kde-apps/spectacle/spectacle-9999.ebuild +++ b/kde-apps/spectacle/spectacle-9999.ebuild @@ -10,7 +10,7 @@ inherit kde5 DESCRIPTION="Screenshot capture utility" KEYWORDS="" -IUSE="" +IUSE="kipi" DEPEND=" $(add_frameworks_dep kconfig) @@ -30,7 +30,15 @@ DEPEND=" dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 x11-libs/libxcb + kipi? ( $(add_kdeapps_dep libkipi) ) " RDEPEND="${DEPEND} !kde-apps/ksnapshot " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package kipi KF5Kipi) + ) + kde5_src_configure +}