Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/telepathy-farsight: ChangeLog telepathy-farsight-0.0.16.ebuild
Date: Sun, 27 Feb 2011 17:29:51
Message-Id: 20110227172941.A0D6320054@flycatcher.gentoo.org
1 eva 11/02/27 17:29:41
2
3 Modified: ChangeLog
4 Added: telepathy-farsight-0.0.16.ebuild
5 Log:
6 Version bump. Disable static library and remove useless files from python module installation.
7
8 (Portage version: 2.2.0_alpha25/cvs/Linux x86_64, RepoMan options: --force)
9
10 Revision Changes Path
11 1.19 net-libs/telepathy-farsight/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farsight/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farsight/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farsight/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 24 Feb 2011 20:58:48 -0000 1.18
24 +++ ChangeLog 27 Feb 2011 17:29:41 -0000 1.19
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-libs/telepathy-farsight
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/ChangeLog,v 1.18 2011/02/24 20:58:48 tomka Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/ChangeLog,v 1.19 2011/02/27 17:29:41 eva Exp $
30 +
31 +*telepathy-farsight-0.0.16 (27 Feb 2011)
32 +
33 + 27 Feb 2011; Gilles Dartiguelongue <eva@g.o>
34 + +telepathy-farsight-0.0.16.ebuild:
35 + Version bump. Disable static library and remove useless files from python
36 + module installation.
37
38 24 Feb 2011; Thomas Kahle <tomka@g.o>
39 telepathy-farsight-0.0.15.ebuild:
40
41
42
43 1.1 net-libs/telepathy-farsight/telepathy-farsight-0.0.16.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.16.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.16.ebuild?rev=1.1&content-type=text/plain
47
48 Index: telepathy-farsight-0.0.16.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-farsight/telepathy-farsight-0.0.16.ebuild,v 1.1 2011/02/27 17:29:41 eva Exp $
53
54 EAPI="3"
55 PYTHON_DEPEND="python? 2:2.6"
56
57 inherit python
58
59 DESCRIPTION="Farsight connection manager for the Telepathy framework"
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 ~ia64 ~ppc ~sparc ~x86"
66 IUSE="python"
67
68 RDEPEND=">=dev-libs/glib-2.16:2
69 >=sys-apps/dbus-0.60
70 >=dev-libs/dbus-glib-0.60
71 >=net-libs/telepathy-glib-0.13.4
72 >=net-libs/farsight2-0.0.17
73 python? (
74 >=dev-python/pygobject-2.12.0
75 >=dev-python/gst-python-0.10.10 )"
76
77 DEPEND="${RDEPEND}"
78
79 pkg_setup() {
80 if use python; then
81 python_set_active_version 2
82 python_pkg_setup
83 fi
84 }
85
86 src_prepare() {
87 if use python; then
88 python_convert_shebangs -r 2 .
89 fi
90 }
91
92 src_configure() {
93 econf $(use_enable python) --disable-static
94 }
95
96 src_install() {
97 emake install DESTDIR="${D}" || die "emake install failed"
98 python_clean_installation_image
99 dodoc NEWS ChangeLog || die
100 }