summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-im/ktp-contact-list/ChangeLog5
-rw-r--r--net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild16
2 files changed, 16 insertions, 5 deletions
diff --git a/net-im/ktp-contact-list/ChangeLog b/net-im/ktp-contact-list/ChangeLog
index 1456933168f0..93e4f8375961 100644
--- a/net-im/ktp-contact-list/ChangeLog
+++ b/net-im/ktp-contact-list/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-im/ktp-contact-list
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ktp-contact-list/ChangeLog,v 1.24 2014/03/12 11:21:06 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/ktp-contact-list/ChangeLog,v 1.25 2014/04/12 13:20:50 johu Exp $
+
+ 12 Apr 2014; Johannes Huber <johu@gentoo.org> ktp-contact-list-0.8.0.ebuild:
+ Add semantic-desktop use flag by Uwe L. Korn <uwelk@xhochy.com>.
12 Mar 2014; Johannes Huber <johu@gentoo.org> -ktp-contact-list-0.6.3.ebuild:
Remove KDE Telepathy 0.6.3.
diff --git a/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild b/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild
index a87dcf3728a8..dd116428d5a6 100644
--- a/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild
+++ b/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild,v 1.1 2014/03/12 10:49:15 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/ktp-contact-list/ktp-contact-list-0.8.0.ebuild,v 1.2 2014/04/12 13:20:50 johu Exp $
EAPI=5
@@ -20,12 +20,20 @@ fi
LICENSE="GPL-2"
SLOT="4"
-IUSE="debug"
+IUSE="debug semantic-desktop"
DEPEND="
>=net-im/ktp-accounts-kcm-${PV}
- >=net-im/ktp-common-internals-${PV}
- >=net-libs/libkpeople-0.2.1
+ >=net-im/ktp-common-internals-${PV}[semantic-desktop?]
>=net-libs/telepathy-qt-0.9.3
+ semantic-desktop? ( >=net-libs/libkpeople-0.2.1 )
"
RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ $(cmake-utils_use_find_package semantic-desktop KPeople)
+ )
+
+ kde4-base_src_configure
+}