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 9C9931393DD for ; Tue, 16 Sep 2014 17:06:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E42B1E0AE2; Tue, 16 Sep 2014 17:06:04 +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 11B4EE0AE2 for ; Tue, 16 Sep 2014 17:06:03 +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 44E2B3402A1 for ; Tue, 16 Sep 2014 17:05:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 014F05B97 for ; Tue, 16 Sep 2014 17:05:58 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1410884826.c9e98482f1036854826c2a7fdaf0b3ba747e74b9.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: net-im/ktp-text-ui/ X-VCS-Repository: proj/kde X-VCS-Files: net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild X-VCS-Directories: net-im/ktp-text-ui/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: c9e98482f1036854826c2a7fdaf0b3ba747e74b9 X-VCS-Branch: master Date: Tue, 16 Sep 2014 17:05:58 +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: 7a8a1b90-cef4-42b0-b3f9-62839d188f0c X-Archives-Hash: 5b610957451265ad147b440b8efee279 commit: c9e98482f1036854826c2a7fdaf0b3ba747e74b9 Author: Johannes Huber gentoo org> AuthorDate: Tue Sep 16 15:53:18 2014 +0000 Commit: Johannes Huber gentoo org> CommitDate: Tue Sep 16 16:27:06 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c9e98482 [net-im/ktp-text-ui] Add semantic-desktop USE flag Package-Manager: portage-2.2.12 --- net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild b/net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild index 024ce13..cbe3442 100644 --- a/net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild +++ b/net-im/ktp-text-ui/ktp-text-ui-4.9999.ebuild @@ -20,12 +20,24 @@ fi LICENSE="GPL-2" SLOT="4" -IUSE="debug" +IUSE="debug semantic-desktop" DEPEND=" >=net-libs/telepathy-qt-0.9.5[qt4] >=net-libs/telepathy-logger-qt-0.8 + semantic-desktop? ( + $(add_kdebase_dep kdepimlibs) + >=net-libs/libkpeople-0.3.0:= + ) " RDEPEND="${DEPEND} >=net-im/ktp-contact-list-${PV} " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package semantic-desktop KPeople) + ) + + kde4-base_src_configure +}