Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: net-libs/telepathy-qt/
Date: Mon, 28 Mar 2016 12:24:55
Message-Id: 1459165985.e3b05ca78e9cf2315652a2b8a95a96dd8331a5eb.johu@gentoo
1 commit: e3b05ca78e9cf2315652a2b8a95a96dd8331a5eb
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 11:53:05 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 11:53:05 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=e3b05ca7
7
8 net-libs/telepathy-qt: EAPI 6
9
10 Package-Manager: portage-2.2.28
11
12 net-libs/telepathy-qt/telepathy-qt-9999.ebuild | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/net-libs/telepathy-qt/telepathy-qt-9999.ebuild b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
16 index 4e81a47..9b88086 100644
17 --- a/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
18 +++ b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
19 @@ -2,13 +2,13 @@
20 # Distributed under the terms of the GNU General Public License v2
21 # $Id$
22
23 -EAPI=5
24 +EAPI=6
25
26 PYTHON_COMPAT=( python2_7 )
27 EGIT_REPO_URI=( "git://anongit.freedesktop.org/telepathy/${PN}" )
28 inherit python-any-r1 cmake-utils virtualx git-r3 multibuild
29
30 -DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
31 +DESCRIPTION="Qt bindings for the Telepathy D-Bus protocol"
32 HOMEPAGE="http://telepathy.freedesktop.org/"
33
34 LICENSE="LGPL-2.1"
35 @@ -56,9 +56,9 @@ pkg_setup() {
36 src_configure() {
37 myconfigure() {
38 local mycmakeargs=(
39 - $(cmake-utils_use_enable debug DEBUG_OUTPUT)
40 - $(cmake-utils_use_enable farstream)
41 - $(cmake-utils_use_enable test TESTS)
42 + -DENABLE_DEBUG_OUTPUT=$(usex debug)
43 + -DENABLE_FARSTREAM=$(usex farstream)
44 + -DENABLE_TESTS=$(usex test)
45 -DENABLE_EXAMPLES=OFF
46 -ENABLE_SERVICE_SUPPORT=ON
47 )