diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-04-15 16:35:23 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-04-15 16:35:23 +0000 |
commit | 83c31c1196dd7a9d0f86e3790e3e1012de01e75c (patch) | |
tree | bb752d78999776dd3fdcb93ddc57d8ed4687f08d /net-libs/telepathy-farsight | |
parent | Version bump with bugfixes. (diff) | |
download | gentoo-2-83c31c1196dd7a9d0f86e3790e3e1012de01e75c.tar.gz gentoo-2-83c31c1196dd7a9d0f86e3790e3e1012de01e75c.tar.bz2 gentoo-2-83c31c1196dd7a9d0f86e3790e3e1012de01e75c.zip |
Version bump, remove old.
(Portage version: 2.1.9.46/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/telepathy-farsight')
-rw-r--r-- | net-libs/telepathy-farsight/ChangeLog | 8 | ||||
-rw-r--r-- | net-libs/telepathy-farsight/telepathy-farsight-0.0.17.ebuild (renamed from net-libs/telepathy-farsight/telepathy-farsight-0.0.11.ebuild) | 35 |
2 files changed, 33 insertions, 10 deletions
diff --git a/net-libs/telepathy-farsight/ChangeLog b/net-libs/telepathy-farsight/ChangeLog index bfc62f86ce47..bd97dbac7a58 100644 --- a/net-libs/telepathy-farsight/ChangeLog +++ b/net-libs/telepathy-farsight/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/telepathy-farsight # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/ChangeLog,v 1.21 2011/03/22 20:09:00 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/ChangeLog,v 1.22 2011/04/15 16:35:23 pacho Exp $ + +*telepathy-farsight-0.0.17 (15 Apr 2011) + + 15 Apr 2011; Pacho Ramos <pacho@gentoo.org> + -telepathy-farsight-0.0.11.ebuild, +telepathy-farsight-0.0.17.ebuild: + Version bump, remove old. 22 Mar 2011; Brent Baude <ranger@gentoo.org> telepathy-farsight-0.0.15.ebuild: diff --git a/net-libs/telepathy-farsight/telepathy-farsight-0.0.11.ebuild b/net-libs/telepathy-farsight/telepathy-farsight-0.0.17.ebuild index d15b83518882..129588819a67 100644 --- a/net-libs/telepathy-farsight/telepathy-farsight-0.0.11.ebuild +++ b/net-libs/telepathy-farsight/telepathy-farsight-0.0.17.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.11.ebuild,v 1.8 2010/08/07 16:49:44 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-farsight/telepathy-farsight-0.0.17.ebuild,v 1.1 2011/04/15 16:35:23 pacho Exp $ -EAPI="2" +EAPI="3" +PYTHON_DEPEND="python? 2:2.6" + +inherit python DESCRIPTION="Farsight connection manager for the Telepathy framework" HOMEPAGE="http://telepathy.freedesktop.org" @@ -10,25 +13,39 @@ SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc sparc x86" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" IUSE="python" -RDEPEND=">=dev-libs/glib-2.16 +RDEPEND=">=dev-libs/glib-2.16:2 >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.60 - >=net-libs/telepathy-glib-0.7.34 - >=net-libs/farsight2-0.0.14 + >=net-libs/telepathy-glib-0.13.4 + >=net-libs/farsight2-0.0.17 python? ( >=dev-python/pygobject-2.12.0 >=dev-python/gst-python-0.10.10 )" DEPEND="${RDEPEND}" +pkg_setup() { + if use python; then + python_set_active_version 2 + python_pkg_setup + fi +} + +src_prepare() { + if use python; then + python_convert_shebangs -r 2 . + fi +} + src_configure() { - econf $(use_enable python) + econf $(use_enable python) --disable-static } src_install() { emake install DESTDIR="${D}" || die "emake install failed" - dodoc NEWS ChangeLog + python_clean_installation_image + dodoc NEWS ChangeLog || die } |