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 B63B21395E2 for ; Sat, 10 Dec 2016 17:35:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 116F3E0B2C; Sat, 10 Dec 2016 17:35:01 +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 DF5B1E0B2C for ; Sat, 10 Dec 2016 17:35:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3F37341375 for ; Sat, 10 Dec 2016 17:34:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B6274A6 for ; Sat, 10 Dec 2016 17:34:57 +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: <1481391288.4069d08937d971ffc25446db46c326192937ebe0.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/util-linux/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/util-linux/util-linux-2.29.ebuild X-VCS-Directories: sys-apps/util-linux/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 4069d08937d971ffc25446db46c326192937ebe0 X-VCS-Branch: master Date: Sat, 10 Dec 2016 17:34:57 +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: 94881b19-6ad5-460c-bf0b-8efa831ff3a6 X-Archives-Hash: 040f9be50d4a4aa7160bf2570040789b commit: 4069d08937d971ffc25446db46c326192937ebe0 Author: Mike Frysinger gentoo org> AuthorDate: Sat Dec 10 17:34:17 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Dec 10 17:34:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4069d089 sys-apps/util-linux: fix ncurses detection to use pkg-config #601530 sys-apps/util-linux/util-linux-2.29.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sys-apps/util-linux/util-linux-2.29.ebuild b/sys-apps/util-linux/util-linux-2.29.ebuild index d168cff..c531a56 100644 --- a/sys-apps/util-linux/util-linux-2.29.ebuild +++ b/sys-apps/util-linux/util-linux-2.29.ebuild @@ -69,6 +69,11 @@ src_prepare() { po/update-potfiles eautoreconf fi + # Undo bad ncurses handling by upstream. #601530 + sed -i -E \ + -e '/NCURSES_/s:(ncursesw?)[56]-config:$PKG_CONFIG \1:' \ + -e 's:(ncursesw?)[56]-config --version:$PKG_CONFIG --exists --print-errors \1:' \ + configure || die elibtoolize }