Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-qt4: ChangeLog telepathy-qt4-0.3.4-r1.ebuild telepathy-qt4-0.3.4.ebuild
Date: Wed, 02 Jun 2010 19:50:50
Message-Id: 20100602195045.5B8262CE14@corvid.gentoo.org
1 hwoarang 10/06/02 19:50:45
2
3 Modified: ChangeLog
4 Added: telepathy-qt4-0.3.4-r1.ebuild
5 Removed: telepathy-qt4-0.3.4.ebuild
6 Log:
7 Use static-libs use flag instead of static. Fixes bug #322493 thanks to Kacper Kowalik (Xarthisius)
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 net-libs/telepathy-qt4/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 30 May 2010 10:05:10 -0000 1.1
24 +++ ChangeLog 2 Jun 2010 19:50:45 -0000 1.2
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-libs/telepathy-qt4
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v 1.1 2010/05/30 10:05:10 hwoarang Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/ChangeLog,v 1.2 2010/06/02 19:50:45 hwoarang Exp $
30 +
31 +*telepathy-qt4-0.3.4-r1 (02 Jun 2010)
32 +
33 + 02 Jun 2010; Markos Chandras <hwoarang@g.o>
34 + -telepathy-qt4-0.3.4.ebuild, +telepathy-qt4-0.3.4-r1.ebuild:
35 + Use static-libs use flag instead of static. Fixes bug #322493 thanks to
36 + Kacper Kowalik (Xarthisius)
37
38 *telepathy-qt4-0.3.4 (30 May 2010)
39
40
41
42
43 1.1 net-libs/telepathy-qt4/telepathy-qt4-0.3.4-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.3.4-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.3.4-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: telepathy-qt4-0.3.4-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-qt4/telepathy-qt4-0.3.4-r1.ebuild,v 1.1 2010/06/02 19:50:45 hwoarang Exp $
53
54 PYTHON_DEPEND="2"
55
56 EAPI="2"
57 inherit base multilib python versionator
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 static-libs"
67
68 RDEPEND="x11-libs/qt-core:4
69 x11-libs/qt-dbus:4
70 x11-libs/qt-test:4"
71 DEPEND="${RDEPEND}
72 dev-libs/libxslt
73 dev-util/pkgconfig
74 net-libs/telepathy-farsight"
75
76 pkg_setup() {
77 python_set_active_version 2
78 python_pkg_setup
79 }
80
81 src_configure() {
82 econf $(use_enable debug) $(use_enable static-libs static)
83 }
84
85 src_test() {
86 dbus-launch emake -j1 check || die "emake check failed"
87 }
88
89 src_install() {
90 base_src_install
91 ! use static-libs && rm "${D}"/usr/$(get_libdir)/lib${PN}.la
92 }