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 3A1B713888F for ; Sun, 11 Oct 2015 06:54:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2B4BE07F9; Sun, 11 Oct 2015 06:54:38 +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 184A3E07F7 for ; Sun, 11 Oct 2015 06:54:33 +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 0B7E7340662 for ; Sun, 11 Oct 2015 06:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 220D1922 for ; Sun, 11 Oct 2015 06:54: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: <1444546439.59f1230649ed1f49cee3013277ffea7965e08bfe.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/libkface/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/libkface/libkface-5.9999.ebuild X-VCS-Directories: kde-apps/libkface/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 59f1230649ed1f49cee3013277ffea7965e08bfe X-VCS-Branch: master Date: Sun, 11 Oct 2015 06:54: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: ce4311b6-98e2-414d-9cfa-8fb1cf09a2be X-Archives-Hash: 1e902f30a0f330d65c19c3837fe9b120 commit: 59f1230649ed1f49cee3013277ffea7965e08bfe Author: Andreas Sturmlechner gmail com> AuthorDate: Fri Oct 9 19:44:46 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Oct 11 06:53:59 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=59f12306 kde-apps/libkface: Remove last kf5 DEPEND, enable opencv3 Package-Manager: portage-2.2.23 kde-apps/libkface/libkface-5.9999.ebuild | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/kde-apps/libkface/libkface-5.9999.ebuild b/kde-apps/libkface/libkface-5.9999.ebuild index 6b4846a..ad62929 100644 --- a/kde-apps/libkface/libkface-5.9999.ebuild +++ b/kde-apps/libkface/libkface-5.9999.ebuild @@ -15,15 +15,21 @@ IUSE="" KEYWORDS="" -CDEPEND=" - $(add_frameworks_dep ki18n) +DEPEND=" dev-qt/qtgui:5 dev-qt/qtsql:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 - >=media-libs/opencv-2.4.9 + >=media-libs/opencv-3[contrib] " -DEPEND="${CDEPEND} - sys-devel/gettext" -RDEPEND="${CDEPEND} - !media-libs/libkface" +RDEPEND="${DEPEND} + !media-libs/libkface +" + +src_configure() { + local mycmakeargs=( + -DENABLE_OPENCV3=ON + ) + + kde5_src_configure +}