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 1RNAR8-000316-3y for garchives@archives.gentoo.org; Sun, 06 Nov 2011 21:39:30 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0C9621C02B; Sun, 6 Nov 2011 21:39:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 98F6C21C02B for ; Sun, 6 Nov 2011 21:39:21 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6F841B4015 for ; Sun, 6 Nov 2011 21:39:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 5E45B80042 for ; Sun, 6 Nov 2011 21:39:20 +0000 (UTC) From: "Alexandre Restovtsev" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Restovtsev" Message-ID: <20f04adfb1bb10732ec037c0136f75c49cb93f2e.tetromino@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-contacts/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild X-VCS-Directories: gnome-extra/gnome-contacts/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Restovtsev X-VCS-Revision: 20f04adfb1bb10732ec037c0136f75c49cb93f2e Date: Sun, 6 Nov 2011 21:39:20 +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: 6ac2e6d8-93ad-4c15-80db-63f197ac38bb X-Archives-Hash: b99a55d883c43b843d455f1e9dd5345d commit: 20f04adfb1bb10732ec037c0136f75c49cb93f2e Author: Alexandre Rostovtsev gentoo org> AuthorDate: Sun Nov 6 21:35:44 2011 +0000 Commit: Alexandre Restovtsev gmail com> CommitDate: Sun Nov 6 21:35:44 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3D20f04adf gnome-extra/gnome-contacts: do not check for valac for tarball releases Do not check for valac when building from pre-generated C sources; thanks to Gilles Dartiguelongue for noticing. --- .../gnome-contacts/gnome-contacts-9999.ebuild | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild b/gnom= e-extra/gnome-contacts/gnome-contacts-9999.ebuild index 6a81d3d..0c28a95 100644 --- a/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild +++ b/gnome-extra/gnome-contacts/gnome-contacts-9999.ebuild @@ -49,6 +49,8 @@ pkg_setup() { DOCS=3D"AUTHORS ChangeLog NEWS" # README is empty # configure checks for valac, but will not use it when building from ta= rball if [[ ${PV} =3D 9999 ]]; then - G2CONF=3D"${G2CONF} VALAC=3D$(type -p valac-0.14)" + G2CONF=3D"${G2CONF} VALAC=3D$(type -P valac-0.14)" + else + G2CONF=3D"${G2CONF} VALAC=3D$(type -P true)" fi }