Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qt:master commit in: net-libs/telepathy-qt/
Date: Wed, 28 May 2014 21:40:19
Message-Id: 1401313186.904a9c02390318916211a6dbefb9aebeab4d52f7.johu@gentoo
1 commit: 904a9c02390318916211a6dbefb9aebeab4d52f7
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 28 21:39:46 2014 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Wed May 28 21:39:46 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=904a9c02
7
8 [net-libs/telepathy-qt] Sync with kde overlay
9
10 https://github.com/gentoo/kde/pull/34
11
12 Package-Manager: portage-2.2.10
13
14 ---
15 net-libs/telepathy-qt/metadata.xml | 1 +
16 net-libs/telepathy-qt/telepathy-qt-9999.ebuild | 5 +++--
17 2 files changed, 4 insertions(+), 2 deletions(-)
18
19 diff --git a/net-libs/telepathy-qt/metadata.xml b/net-libs/telepathy-qt/metadata.xml
20 index 5309391..4b181c1 100644
21 --- a/net-libs/telepathy-qt/metadata.xml
22 +++ b/net-libs/telepathy-qt/metadata.xml
23 @@ -4,5 +4,6 @@
24 <herd>qt</herd>
25 <use>
26 <flag name='farstream'>Enable support for audio/video calls via farstream</flag>
27 + <flag name='experimental'>Enable compilation of experimental and unstable service side bindings</flag>
28 </use>
29 </pkgmetadata>
30
31 diff --git a/net-libs/telepathy-qt/telepathy-qt-9999.ebuild b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
32 index 113c765..08a17f7 100644
33 --- a/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
34 +++ b/net-libs/telepathy-qt/telepathy-qt-9999.ebuild
35 @@ -14,7 +14,7 @@ HOMEPAGE="http://telepathy.freedesktop.org/"
36 LICENSE="LGPL-2.1"
37 SLOT="0"
38 KEYWORDS=""
39 -IUSE="debug farstream +qt4 qt5 test"
40 +IUSE="debug experimental farstream +qt4 qt5 test"
41
42 RDEPEND="
43 farstream? (
44 @@ -63,8 +63,9 @@ pkg_setup() {
45 src_configure() {
46 myconfigure() {
47 local mycmakeargs=(
48 - $(cmake-utils_use_enable farstream)
49 $(cmake-utils_use_enable debug DEBUG_OUTPUT)
50 + $(cmake-utils_use_enable experimental EXPERIMENTAL_SERVICE_SUPPORT)
51 + $(cmake-utils_use_enable farstream)
52 $(cmake-utils_use_enable test TESTS)
53 -DENABLE_EXAMPLES=OFF
54 )