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 A8D871388C0 for ; Tue, 23 Feb 2016 14:15:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DEBC6E07EB; Tue, 23 Feb 2016 14:15:34 +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 0ECCFE07ED for ; Tue, 23 Feb 2016 14:15:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38F7D340A5D for ; Tue, 23 Feb 2016 14:15:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27EDD1B9F for ; Tue, 23 Feb 2016 14:15: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: <1456236918.5929921bb130cdcb0e48b14981c7dded23cae9fc.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-editors/kile/ X-VCS-Repository: proj/kde X-VCS-Files: app-editors/kile/kile-9999.ebuild X-VCS-Directories: app-editors/kile/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5929921bb130cdcb0e48b14981c7dded23cae9fc X-VCS-Branch: master Date: Tue, 23 Feb 2016 14:15: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: 51260ec3-e114-4fe6-965b-a6fd4264c6b3 X-Archives-Hash: a8d14278d9113c607f602e745a3abe88 commit: 5929921bb130cdcb0e48b14981c7dded23cae9fc Author: Andreas Sturmlechner gmail com> AuthorDate: Sun Feb 21 09:37:34 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Feb 23 14:15:18 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5929921b app-editors/kile: Add DEPEND, force handbook optional, KF5 minimal Package-Manager: portage-2.2.27 app-editors/kile/kile-9999.ebuild | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/app-editors/kile/kile-9999.ebuild b/app-editors/kile/kile-9999.ebuild index ba59e47..7e5db05 100644 --- a/app-editors/kile/kile-9999.ebuild +++ b/app-editors/kile/kile-9999.ebuild @@ -2,10 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 CMAKE_MIN_VERSION="3.0.2" -KDE_HANDBOOK=true +FRAMEWORKS_MINIMAL="5.19.0" +KDE_HANDBOOK="forceoptional" MY_P=${P/_beta/b} inherit kde5 @@ -37,6 +38,7 @@ DEPEND=" $(add_qt_dep qtscript) $(add_qt_dep qttest) $(add_qt_dep qtwidgets) + pdf? ( app-text/poppler[qt5] ) " RDEPEND="${DEPEND} @@ -72,3 +74,11 @@ src_prepare() { sed -e '/INSTALL( FILES AUTHORS/s/^/#DISABLED /' \ -i CMakeLists.txt || die } + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package pdf Poppler) + ) + + kde5_src_configure +}