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 CF7BE138350 for ; Fri, 27 Mar 2020 03:44:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 915D6E0E0D; Fri, 27 Mar 2020 03:44:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1C8E3E0E0D for ; Fri, 27 Mar 2020 03:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D25EB34F9BE for ; Fri, 27 Mar 2020 03:44:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 863AD13A for ; Fri, 27 Mar 2020 03:44:32 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1585280527.9cac2697e91de4b2484524f4f5618d809a8b03ca.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/maxima/maxima-5.43.2.ebuild X-VCS-Directories: sci-mathematics/maxima/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 9cac2697e91de4b2484524f4f5618d809a8b03ca X-VCS-Branch: master Date: Fri, 27 Mar 2020 03:44:32 +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: b0851c8d-09a5-400b-a971-a4df15d288ed X-Archives-Hash: 02d23d85bf90fe324764121e35e75362 commit: 9cac2697e91de4b2484524f4f5618d809a8b03ca Author: Michael Orlitzky gentoo org> AuthorDate: Fri Mar 27 03:33:22 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Mar 27 03:42:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cac2697 sci-mathematics/maxima: fix amd64 build with USE=clozurecl. The maxima build needs some special-case hacking on amd64 with clozurecl. Thanks to slyfox for the patch. Closes: https://bugs.gentoo.org/665364 Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Michael Orlitzky gentoo.org> sci-mathematics/maxima/maxima-5.43.2.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sci-mathematics/maxima/maxima-5.43.2.ebuild b/sci-mathematics/maxima/maxima-5.43.2.ebuild index 7c68f0a0e32..88f7e81d580 100644 --- a/sci-mathematics/maxima/maxima-5.43.2.ebuild +++ b/sci-mathematics/maxima/maxima-5.43.2.ebuild @@ -129,9 +129,19 @@ src_configure() { if [ ${CONF} = . ]; then CONF=${LISPS[${n}]} fi + if [[ ${CONF} == ccl ]]; then + # 64-bit version of clozurecl is enabled + # by --enable-ccl64, not by --enable-ccl. + # bug #665364 + use amd64 && CONF=ccl64 + fi CONFS="${CONFS} --enable-${CONF}" done + # Gentoo calls 'ccl' both 32-bit and 64-bit version of clozurecl. + # bug #665364 + CONFS="${CONFS} --with-ccl64=ccl" + # enable existing translated doc if use nls; then for lang in ${LANGS}; do