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 941A01386F3 for ; Wed, 12 Aug 2015 10:09:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5698FE0845; Wed, 12 Aug 2015 10:09:29 +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 00902E0845 for ; Wed, 12 Aug 2015 10:09:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DAD1C3408CF for ; Wed, 12 Aug 2015 10:09:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A720EE for ; Wed, 12 Aug 2015 10:09:24 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1439374156.912dfbf3095a5087982364d5813b3ebdc03c4cf7.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/ncurses/ncurses-5.9-r3.ebuild sys-libs/ncurses/ncurses-5.9-r4.ebuild X-VCS-Directories: sys-libs/ncurses/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 912dfbf3095a5087982364d5813b3ebdc03c4cf7 X-VCS-Branch: master Date: Wed, 12 Aug 2015 10:09:24 +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: 6484a43a-e38c-486e-93b6-1ce481f6c5b4 X-Archives-Hash: 46da6b497588e547e71b132c83ee7f3d commit: 912dfbf3095a5087982364d5813b3ebdc03c4cf7 Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 12 08:48:41 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Aug 12 10:09:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=912dfbf3 sys-libs/ncurses: use libgpm.so.1 all the time #544828 Since the gpm code relies on running ldd on the linked file in order to calculate the SONAME, and we're passing this in as a configure flag some of the time, just change the code to always pass it in. This stabilizes behavior across cross-compiling/multilib/ldd output/etc... Relying on ldd output in general is bad juju. sys-libs/ncurses/ncurses-5.9-r3.ebuild | 5 +++-- sys-libs/ncurses/ncurses-5.9-r4.ebuild | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/sys-libs/ncurses/ncurses-5.9-r3.ebuild b/sys-libs/ncurses/ncurses-5.9-r3.ebuild index 1803834..59540d4 100644 --- a/sys-libs/ncurses/ncurses-5.9-r3.ebuild +++ b/sys-libs/ncurses/ncurses-5.9-r3.ebuild @@ -98,8 +98,9 @@ do_configure() { $(use_with cxx cxx-binding) $(use_with debug) $(use_with profile) - $(use_with gpm) - $(multilib_is_native_abi || use_with gpm gpm libgpm.so.1) + # The configure script uses ldd to parse the linked output which + # is flaky for cross-compiling/multilib/ldd versions/etc... + $(use_with gpm gpm libgpm.so.1) --disable-termcap --enable-symlinks --with-rcs-ids diff --git a/sys-libs/ncurses/ncurses-5.9-r4.ebuild b/sys-libs/ncurses/ncurses-5.9-r4.ebuild index e4553aa..2d241b1 100644 --- a/sys-libs/ncurses/ncurses-5.9-r4.ebuild +++ b/sys-libs/ncurses/ncurses-5.9-r4.ebuild @@ -100,8 +100,9 @@ do_configure() { $(use_with cxx cxx-binding) $(use_with debug) $(use_with profile) - $(use_with gpm) - $(multilib_is_native_abi || use_with gpm gpm libgpm.so.1) + # The configure script uses ldd to parse the linked output which + # is flaky for cross-compiling/multilib/ldd versions/etc... + $(use_with gpm gpm libgpm.so.1) --disable-termcap --enable-symlinks --with-rcs-ids