Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-glib: telepathy-glib-0.16.4.ebuild ChangeLog telepathy-glib-0.16.2.ebuild
Date: Fri, 30 Dec 2011 11:27:28
Message-Id: 20111230112718.0A4A62004B@flycatcher.gentoo.org
1 pacho 11/12/30 11:27:18
2
3 Modified: ChangeLog
4 Added: telepathy-glib-0.16.4.ebuild
5 Removed: telepathy-glib-0.16.2.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.1.10.44/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.97 net-libs/telepathy-glib/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.97&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?rev=1.97&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/ChangeLog?r1=1.96&r2=1.97
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v
21 retrieving revision 1.96
22 retrieving revision 1.97
23 diff -u -r1.96 -r1.97
24 --- ChangeLog 29 Dec 2011 18:05:50 -0000 1.96
25 +++ ChangeLog 30 Dec 2011 11:27:17 -0000 1.97
26 @@ -1,6 +1,12 @@
27 # ChangeLog for net-libs/telepathy-glib
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.96 2011/12/29 18:05:50 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/ChangeLog,v 1.97 2011/12/30 11:27:17 pacho Exp $
31 +
32 +*telepathy-glib-0.16.4 (30 Dec 2011)
33 +
34 + 30 Dec 2011; Pacho Ramos <pacho@g.o> +telepathy-glib-0.16.4.ebuild,
35 + -telepathy-glib-0.16.2.ebuild:
36 + Version bump, remove old.
37
38 29 Dec 2011; Pacho Ramos <pacho@g.o> telepathy-glib-0.16.3.ebuild:
39 amd64 stable, bug 393007
40
41
42
43 1.1 net-libs/telepathy-glib/telepathy-glib-0.16.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.16.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.16.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: telepathy-glib-0.16.4.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-glib-0.16.4.ebuild,v 1.1 2011/12/30 11:27:17 pacho Exp $
53
54 EAPI="4"
55 PYTHON_DEPEND="2:2.5"
56
57 inherit python virtualx
58
59 DESCRIPTION="GLib 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="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-linux"
66 IUSE="debug +introspection +vala"
67
68 RDEPEND=">=dev-libs/glib-2.28.0:2
69 >=dev-libs/dbus-glib-0.82
70 introspection? ( >=dev-libs/gobject-introspection-1.30 )
71 vala? (
72 >=dev-lang/vala-0.14.0:0.14[vapigen]
73 >=dev-libs/gobject-introspection-1.30 )"
74 DEPEND="${RDEPEND}
75 dev-libs/libxslt
76 >=dev-util/pkgconfig-0.21"
77
78 src_prepare() {
79 python_convert_shebangs -r 2 examples tests tools
80 default_src_prepare
81 }
82
83 src_configure() {
84 local myconf
85
86 if use vala; then
87 myconf="--enable-introspection
88 VALAC=$(type -p valac-0.14)
89 VAPIGEN=$(type -p vapigen-0.14)"
90 fi
91
92 econf --disable-static \
93 PYTHON=$(PYTHON -2 -a) \
94 $(use_enable debug backtrace) \
95 $(use_enable debug handle-leak-debug) \
96 $(use_enable debug debug-cache) \
97 $(use_enable introspection) \
98 $(use_enable vala vala-bindings) \
99 ${myconf}
100 }
101
102 src_test() {
103 unset DBUS_SESSION_BUS_ADDRESS
104 # Needs dbus for tests (auto-launched)
105 Xemake -j1 check
106 }
107
108 src_install() {
109 emake install DESTDIR="${D}"
110 dodoc AUTHORS ChangeLog NEWS README
111
112 find "${D}" -name '*.la' -exec rm -f '{}' +
113 }