summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Rostovtsev <tetromino@gentoo.org>2011-11-06 21:33:10 +0000
committerAlexandre Rostovtsev <tetromino@gentoo.org>2011-11-06 21:33:10 +0000
commitf0d7416a92e75edeb414f17fbe8a5bc1079cca23 (patch)
tree4482eed3ccd8fa2557dda56a2307779efa38ba83 /gnome-extra
parentversion bump (diff)
downloadgentoo-2-f0d7416a92e75edeb414f17fbe8a5bc1079cca23.tar.gz
gentoo-2-f0d7416a92e75edeb414f17fbe8a5bc1079cca23.tar.bz2
gentoo-2-f0d7416a92e75edeb414f17fbe8a5bc1079cca23.zip
Do not check for valac when building from pre-generated C sources; thanks to Gilles Dartiguelongue for noticing.
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r--gnome-extra/gnome-contacts/ChangeLog7
-rw-r--r--gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild9
2 files changed, 13 insertions, 3 deletions
diff --git a/gnome-extra/gnome-contacts/ChangeLog b/gnome-extra/gnome-contacts/ChangeLog
index 3c110bca8c59..67c2b667f6b9 100644
--- a/gnome-extra/gnome-contacts/ChangeLog
+++ b/gnome-extra/gnome-contacts/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for gnome-extra/gnome-contacts
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/ChangeLog,v 1.1 2011/11/04 05:25:18 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/ChangeLog,v 1.2 2011/11/06 21:33:10 tetromino Exp $
+
+ 06 Nov 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+ gnome-contacts-3.2.2.ebuild:
+ Do not check for valac when building from pre-generated C sources; thanks to
+ Gilles Dartiguelongue for noticing.
*gnome-contacts-3.2.2 (04 Nov 2011)
diff --git a/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild b/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild
index 72585bfe1431..f1cbfec6bff6 100644
--- a/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild
+++ b/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild,v 1.1 2011/11/04 05:25:18 tetromino Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-contacts/gnome-contacts-3.2.2.ebuild,v 1.2 2011/11/06 21:33:10 tetromino Exp $
EAPI="4"
GCONF_DEBUG="no"
@@ -35,4 +35,9 @@ DEPEND="${RDEPEND}
# >=dev-lang/vala-0.14.0:0.14
# net-libs/telepathy-glib[vala]
-DOCS="AUTHORS ChangeLog NEWS" # README is empty
+pkg_setup() {
+ DOCS="AUTHORS ChangeLog NEWS" # README is empty
+ # We do not need valac when building from pre-generated C sources,
+ # but configure checks for it anyway
+ G2CONF="${G2CONF} VALAC=$(type -P true)"
+}