From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EA116139694 for ; Sun, 2 Jul 2017 22:05:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3BD522340BC; Sun, 2 Jul 2017 22:05:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 198FE2340BC for ; Sun, 2 Jul 2017 22:05:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09FEC3416AD for ; Sun, 2 Jul 2017 22:05:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D124749A for ; Sun, 2 Jul 2017 22:05:17 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1499033110.f93cb2a47a290eaf247c6ae7b04959262e5f314e.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgdata/libgdata-0.17.8.ebuild X-VCS-Directories: dev-libs/libgdata/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: f93cb2a47a290eaf247c6ae7b04959262e5f314e X-VCS-Branch: master Date: Sun, 2 Jul 2017 22:05:17 +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: a01ff7ee-0b8c-4698-bdd4-e4e61677d33c X-Archives-Hash: 992c9c185921990a8eb4232453d41b7e commit: f93cb2a47a290eaf247c6ae7b04959262e5f314e Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Jul 2 21:55:37 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Jul 2 22:05:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f93cb2a4 dev-libs/libgdata: fix automagic gtk+ detection Triggers build failures on systems without latest gtk+. Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-libs/libgdata/libgdata-0.17.8.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-libs/libgdata/libgdata-0.17.8.ebuild b/dev-libs/libgdata/libgdata-0.17.8.ebuild index adc0bd60684..c62a6786bc4 100644 --- a/dev-libs/libgdata/libgdata-0.17.8.ebuild +++ b/dev-libs/libgdata/libgdata-0.17.8.ebuild @@ -20,7 +20,6 @@ REQUIRED_USE=" KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~ppc ~ppc64 ~sparc x86" -# configure checks for gtk:3, but only uses it for demos which are not installed RDEPEND=" >=dev-libs/glib-2.38.0:2 >=dev-libs/json-glib-0.15 @@ -46,13 +45,16 @@ src_prepare() { } src_configure() { + # configure checks for gtk:3, but only uses it for demos which are not installed gnome2_src_configure \ $(use_enable crypt gnome) \ $(use_enable gnome-online-accounts goa) \ $(use_enable introspection) \ $(use_enable vala) \ $(use_enable static-libs static) \ - $(use_enable test always-build-tests) + $(use_enable test always-build-tests) \ + GTK_CFLAGS= \ + GTK_LIBS= } src_test() {