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 4C130138334 for ; Sat, 29 Dec 2018 17:32:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E0DCE0AC5; Sat, 29 Dec 2018 17:32:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 08B00E0AC5 for ; Sat, 29 Dec 2018 17:32:32 +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 57AFF335C07 for ; Sat, 29 Dec 2018 17:32:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 161F04D3 for ; Sat, 29 Dec 2018 17:32:29 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1546104605.c9749cd7acbcc6731016ccf8f311c96cb91e6ba3.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/aspell/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/aspell/aspell-0.60.7_rc1.ebuild X-VCS-Directories: app-text/aspell/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: c9749cd7acbcc6731016ccf8f311c96cb91e6ba3 X-VCS-Branch: master Date: Sat, 29 Dec 2018 17:32:29 +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: 14ade786-b81d-4809-b3a3-015ac1b5cd3a X-Archives-Hash: fca6fdbcea99bed071ba36f305c81862 commit: c9749cd7acbcc6731016ccf8f311c96cb91e6ba3 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 29 17:30:05 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 29 17:30:05 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9749cd7 app-text/aspell: add support for musl Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-text/aspell/aspell-0.60.7_rc1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-text/aspell/aspell-0.60.7_rc1.ebuild b/app-text/aspell/aspell-0.60.7_rc1.ebuild index eecfee4dcba..078e7eb71a3 100644 --- a/app-text/aspell/aspell-0.60.7_rc1.ebuild +++ b/app-text/aspell/aspell-0.60.7_rc1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -72,7 +72,7 @@ src_prepare() { # unicode patch breaks on Darwin, NCURSES_WIDECHAR won't get set # any more. Fix this. - [[ ${CHOST} == *-darwin* ]] && use unicode && \ + [[ ${CHOST} == *-darwin* ]] || [[ ${CHOST} == *-musl* ]] && use unicode && \ append-cppflags -DNCURSES_WIDECHAR=1 }