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 16C0E1396D0 for ; Tue, 3 Oct 2017 09:27:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DAB3E0B73; Tue, 3 Oct 2017 09:27:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 57C92E0B73 for ; Tue, 3 Oct 2017 09:27:01 +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 563743416F7 for ; Tue, 3 Oct 2017 09:27:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF9F89085 for ; Tue, 3 Oct 2017 09:26:58 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1507022810.010f572f0a89fa87d41227313b2069afae0fa4d6.grobian@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: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 010f572f0a89fa87d41227313b2069afae0fa4d6 X-VCS-Branch: master Date: Tue, 3 Oct 2017 09:26:58 +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: fafaf7d9-fc07-4de2-8d72-e37b7afbdccd X-Archives-Hash: 94789c955a4d4a2015c29f688d54cc78 commit: 010f572f0a89fa87d41227313b2069afae0fa4d6 Author: Fabian Groffen gentoo org> AuthorDate: Tue Oct 3 09:26:50 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Oct 3 09:26:50 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010f572f app-text/aspell: unbreak compilation on Darwin Package-Manager: Portage-2.3.8, Repoman-2.3.1 app-text/aspell/aspell-0.60.7_rc1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-text/aspell/aspell-0.60.7_rc1.ebuild b/app-text/aspell/aspell-0.60.7_rc1.ebuild index 5bbd533caac..574323a3d2d 100644 --- a/app-text/aspell/aspell-0.60.7_rc1.ebuild +++ b/app-text/aspell/aspell-0.60.7_rc1.ebuild @@ -71,6 +71,11 @@ src_prepare() { # This has to be after automake has run so that we don't clobber # the default target that automake creates for us. echo 'install-filterLTLIBRARIES: install-libLTLIBRARIES' >> Makefile.in || die + + # unicode patch breaks on Darwin, NCURSES_WIDECHAR won't get set + # any more. Fix this. + [[ ${CHOST} == *-darwin* ]] && use unicode && \ + append-cppflags -DNCURSES_WIDECHAR=1 } src_configure() {