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 77BB81388C1 for ; Wed, 11 Nov 2015 13:04:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1159BE087F; Wed, 11 Nov 2015 13:04:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E6C4E087F for ; Wed, 11 Nov 2015 13:04:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A188340545 for ; Wed, 11 Nov 2015 13:04:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBED01063 for ; Wed, 11 Nov 2015 13:04:42 +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: <1447247076.b0e1fc0a605c969d76932b020e21a39a6ea14f8b.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/gnucash/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/gnucash/gnucash-2.6.9.ebuild X-VCS-Directories: app-office/gnucash/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: b0e1fc0a605c969d76932b020e21a39a6ea14f8b X-VCS-Branch: master Date: Wed, 11 Nov 2015 13:04:42 +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: 9e1274c3-0193-418b-91c7-04d05e2f7fd4 X-Archives-Hash: 0ed1a4e033c9da6efb2d397f5e215faf commit: b0e1fc0a605c969d76932b020e21a39a6ea14f8b Author: Gilles Dartiguelongue gentoo org> AuthorDate: Wed Nov 11 13:01:43 2015 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Wed Nov 11 13:04:36 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e1fc0a app-office/gnucash: drop obsolete workaround for guile-config The version of guile providing the fixed guile-config is long stabilized and it is not used in gnucash configure anymore anyway. app-office/gnucash/gnucash-2.6.9.ebuild | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/app-office/gnucash/gnucash-2.6.9.ebuild b/app-office/gnucash/gnucash-2.6.9.ebuild index 5ef42fe..4daf665 100644 --- a/app-office/gnucash/gnucash-2.6.9.ebuild +++ b/app-office/gnucash/gnucash-2.6.9.ebuild @@ -79,16 +79,6 @@ src_configure() { myconf+=" --disable-dbi" fi - # guile wrongly exports LDFLAGS as LIBS which breaks modules - # Filter until a better ebuild is available, bug #202205 - local GUILE_LIBS="" - local lib - for lib in $(guile-config link); do - if [ "${lib#-Wl}" = "$lib" ]; then - GUILE_LIBS="$GUILE_LIBS $lib" - fi - done - # gtkmm is experimental and shouldn't be enabled, upstream bug #684166 gnome2_src_configure \ $(use_enable debug) \ @@ -100,7 +90,7 @@ src_configure() { --disable-gtkmm \ --enable-locale-specific-tax \ --disable-error-on-warning \ - GUILE_LIBS="${GUILE_LIBS}" ${myconf} + ${myconf} } src_test() {