Gentoo Archives: gentoo-commits

From: "Davide Pesavento (pesa)" <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt4: telepathy-qt4-0.8.0.ebuild ChangeLog
Date: Sat, 03 Dec 2011 19:26:59
Message-Id: 20111203192649.135672004B@flycatcher.gentoo.org
1 pesa 11/12/03 19:26:49
2
3 Modified: ChangeLog
4 Added: telepathy-qt4-0.8.0.ebuild
5 Log:
6 Version bump (bug #392003)
7
8 (Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.8 net-libs/telepathy-qt4/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 20 Apr 2011 12:31:17 -0000 1.7
24 +++ ChangeLog 3 Dec 2011 19:26:48 -0000 1.8
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-libs/telepathy-qt4
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v 1.7 2011/04/20 12:31:17 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v 1.8 2011/12/03 19:26:48 pesa Exp $
30 +
31 +*telepathy-qt4-0.8.0 (03 Dec 2011)
32 +
33 + 03 Dec 2011; Davide Pesavento <pesa@g.o>
34 + +files/0.8.0_automagicness.patch, +telepathy-qt4-0.8.0.ebuild:
35 + Version bump (bug #392003)
36
37 *telepathy-qt4-0.5.15 (20 Apr 2011)
38
39
40
41
42 1.1 net-libs/telepathy-qt4/telepathy-qt4-0.8.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.8.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.8.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: telepathy-qt4-0.8.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.8.0.ebuild,v 1.1 2011/12/03 19:26:48 pesa Exp $
52
53 EAPI=4
54
55 PYTHON_DEPEND="2:2.5"
56
57 inherit python base cmake-utils
58
59 DESCRIPTION="Qt4 bindings for the Telepathy D-Bus protocol"
60 HOMEPAGE="http://telepathy.freedesktop.org/"
61 SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="debug farsight glib"
67
68 RDEPEND="
69 dev-python/dbus-python
70 >=x11-libs/qt-core-4.6.0:4[glib?]
71 >=x11-libs/qt-dbus-4.6.0:4
72 farsight? (
73 dev-libs/dbus-glib
74 dev-libs/libxml2
75 media-libs/gstreamer
76 net-libs/telepathy-farsight
77 >=net-libs/telepathy-glib-0.15.1
78 )
79 glib? ( dev-libs/glib:2 )
80 "
81 DEPEND="${RDEPEND}
82 dev-libs/libxslt
83 dev-util/pkgconfig
84 "
85
86 PATCHES=( "${FILESDIR}/${PV}_automagicness.patch" )
87
88 DOCS=( AUTHORS ChangeLog HACKING NEWS README )
89
90 pkg_setup() {
91 python_set_active_version 2
92 python_pkg_setup
93 }
94
95 src_prepare() {
96 base_src_prepare
97
98 sed -i -e '/^add_subdirectory(examples)$/d' CMakeLists.txt || die
99 }
100
101 src_configure() {
102 local mycmakeargs=(
103 $(cmake-utils_use_enable debug DEBUG_OUTPUT)
104 $(cmake-utils_use_with glib)
105 $(cmake-utils_use_with farsight)
106 )
107 cmake-utils_src_configure
108 }