From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 99205138010 for ; Sun, 16 Sep 2012 00:22:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB323E0529; Sun, 16 Sep 2012 00:22:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 92BDCE0529 for ; Sun, 16 Sep 2012 00:22:35 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E658C33D28F for ; Sun, 16 Sep 2012 00:22:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A70FCE5446 for ; Sun, 16 Sep 2012 00:22:33 +0000 (UTC) From: "Alexandre Rostovtsev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Rostovtsev" Message-ID: <1347754885.ea98b77e39074d09c59ffeff1f053be58691c92c.tetromino@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.19.8.ebuild X-VCS-Directories: net-libs/telepathy-glib/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Rostovtsev X-VCS-Revision: ea98b77e39074d09c59ffeff1f053be58691c92c X-VCS-Branch: master Date: Sun, 16 Sep 2012 00:22:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 46a1bc13-dcdc-4e01-ae1a-450ab42068f0 X-Archives-Hash: 171d9c2843bd4237c93fb5d38d5c283f commit: ea98b77e39074d09c59ffeff1f053be58691c92c Author: Alexandre Rostovtsev gentoo org> AuthorDate: Sun Sep 16 00:21:25 2012 +0000 Commit: Alexandre Rostovtsev gentoo org> CommitDate: Sun Sep 16 00:21:25 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ea98b77e net-libs/telepathy-glib: use vala.eclass --- .../telepathy-glib/telepathy-glib-0.19.8.ebuild | 13 +++++++------ 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/net-libs/telepathy-glib/telepathy-glib-0.19.8.ebuild b/net-libs/telepathy-glib/telepathy-glib-0.19.8.ebuild index 3932fd0..8c50ca3 100644 --- a/net-libs/telepathy-glib/telepathy-glib-0.19.8.ebuild +++ b/net-libs/telepathy-glib/telepathy-glib-0.19.8.ebuild @@ -4,8 +4,10 @@ EAPI="4" PYTHON_DEPEND="2:2.5" +VALA_MIN_API_VERSION="0.18" +VALA_USE_DEPEND="vapigen" -inherit eutils python virtualx +inherit eutils python vala virtualx DESCRIPTION="GLib bindings for the Telepathy D-Bus protocol." HOMEPAGE="http://telepathy.freedesktop.org" @@ -19,14 +21,15 @@ REQUIRED_USE="vala? ( introspection )" RDEPEND=">=dev-libs/glib-2.32.0:2 >=dev-libs/dbus-glib-0.90 - introspection? ( >=dev-libs/gobject-introspection-1.30 ) - vala? ( dev-lang/vala:0.18[vapigen] )" + introspection? ( >=dev-libs/gobject-introspection-1.30 )" DEPEND="${RDEPEND} dev-libs/libxslt - virtual/pkgconfig" + virtual/pkgconfig + vala? ( $(vala_depend) )" src_prepare() { python_convert_shebangs -r 2 examples tests tools + use vala && vala_src_prepare default_src_prepare } @@ -40,8 +43,6 @@ src_configure() { $(use_enable debug debug-cache) \ $(use_enable introspection) \ $(use_enable vala vala-bindings) \ - VALAC=$(type -p valac-0.18) \ - VAPIGEN=$(type -p vapigen-0.18) \ ${myconf} }