From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PpUaK-0003aA-BR for garchives@archives.gentoo.org; Tue, 15 Feb 2011 23:45:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90C17E09B7; Tue, 15 Feb 2011 23:45:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 5CD78E09B7 for ; Tue, 15 Feb 2011 23:45:24 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E99491B412C for ; Tue, 15 Feb 2011 23:45:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 615428006A for ; Tue, 15 Feb 2011 23:45:23 +0000 (UTC) From: "Nirbheek Chauhan" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nirbheek Chauhan" Message-ID: <1c49f862cf5a5a1fdce0305895ddf6e5504e651e.nirbheek@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/telepathy-glib/ X-VCS-Repository: proj/gnome X-VCS-Files: net-libs/telepathy-glib/telepathy-glib-0.13.12.ebuild X-VCS-Directories: net-libs/telepathy-glib/ X-VCS-Committer: nirbheek X-VCS-Committer-Name: Nirbheek Chauhan X-VCS-Revision: 1c49f862cf5a5a1fdce0305895ddf6e5504e651e Date: Tue, 15 Feb 2011 23:45:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 86d2898bb3abaf188b49b851e5fc95c3 commit: 1c49f862cf5a5a1fdce0305895ddf6e5504e651e Author: Nirbheek Chauhan gentoo org> AuthorDate: Tue Feb 15 21:54:55 2011 +0000 Commit: Nirbheek Chauhan gentoo org> CommitDate: Tue Feb 15 21:54:55 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3D1c49f862 Add net-libs/telepathy-glib-0.13.12 * Actually needs vala-0.12 because of fdo bug 32673 --- .../telepathy-glib/telepathy-glib-0.13.12.ebuild | 61 ++++++++++++++= ++++++ 1 files changed, 61 insertions(+), 0 deletions(-) diff --git a/net-libs/telepathy-glib/telepathy-glib-0.13.12.ebuild b/net-= libs/telepathy-glib/telepathy-glib-0.13.12.ebuild new file mode 100644 index 0000000..bf6a182 --- /dev/null +++ b/net-libs/telepathy-glib/telepathy-glib-0.13.12.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-glib/telepathy-gli= b-0.12.7.ebuild,v 1.1 2011/02/07 18:18:51 pacho Exp $ + +EAPI=3D"3" +PYTHON_DEPEND=3D"2:2.5" + +inherit python + +DESCRIPTION=3D"GLib bindings for the Telepathy D-Bus protocol." +HOMEPAGE=3D"http://telepathy.freedesktop.org" +SRC_URI=3D"http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE=3D"LGPL-2.1" +SLOT=3D"0" +KEYWORDS=3D"~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE=3D"debug +introspection +vala" + +RDEPEND=3D">=3Ddev-libs/glib-2.25.16 + >=3Ddev-libs/dbus-glib-0.82 + introspection? ( >=3Ddev-libs/gobject-introspection-0.9.6 ) + vala? ( + dev-lang/vala:0.12[vapigen] + >=3Ddev-libs/gobject-introspection-0.9.6 ) +" +DEPEND=3D"${RDEPEND} + dev-libs/libxslt + >=3Ddev-util/pkgconfig-0.21" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_configure() { + local myconf + + if use vala; then + myconf=3D"--enable-introspection + VALAC=3D$(type -p valac-0.12) + VAPIGEN=3D$(type -p vapigen-0.12)" + fi + + econf \ + $(use_enable debug backtrace) \ + $(use_enable debug handle-leak-debug) \ + $(use_enable introspection) \ + $(use_enable vala vala-bindings) \ + ${myconf} +} + +src_test() { + if ! dbus-launch emake -j1 check; then + die "Make check failed. See above for details." + fi +} + +src_install() { + emake install DESTDIR=3D"${D}" || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed" +}