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 67A3E138334 for ; Sat, 29 Dec 2018 08:43:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EE0CE0956; Sat, 29 Dec 2018 08:43:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 734EAE0956 for ; Sat, 29 Dec 2018 08:43:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2C1E0335C03 for ; Sat, 29 Dec 2018 08:43:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 10DAA4E3 for ; Sat, 29 Dec 2018 08:43:39 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1546070055.e0e114d6e1d690ea44c32802eb50cbf749dcfa94.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/fish/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/fish/fish-3.0.0.ebuild X-VCS-Directories: app-shells/fish/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: e0e114d6e1d690ea44c32802eb50cbf749dcfa94 X-VCS-Branch: master Date: Sat, 29 Dec 2018 08:43:39 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7e57179f-4f1e-495e-afc1-a8401932dd6e X-Archives-Hash: 55979a77ab69397eccd86db288b10cde commit: e0e114d6e1d690ea44c32802eb50cbf749dcfa94 Author: Georgy Yakovlev gentoo org> AuthorDate: Sat Dec 29 06:35:45 2018 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sat Dec 29 07:54:15 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0e114d6 app-shells/fish: fix build with ncurses[tinfo] Bug: https://bugs.gentoo.org/673942 Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> app-shells/fish/fish-3.0.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-shells/fish/fish-3.0.0.ebuild b/app-shells/fish/fish-3.0.0.ebuild index cc6e0bba617..9e9fc097f98 100644 --- a/app-shells/fish/fish-3.0.0.ebuild +++ b/app-shells/fish/fish-3.0.0.ebuild @@ -54,6 +54,10 @@ src_configure() { -DBUILD_DOCS="$(usex doc)" -DWITH_GETTEXT="$(usex nls)" ) + # HACK: https://bugs.gentoo.org/673942 + if has_version -d 'sys-libs/ncurses:0[tinfo]'; then + mycmakeargs+=( -DCURSES_EXTRA_LIBRARY=tinfo ) + fi cmake-utils_src_configure }