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 49DE51382C5 for ; Mon, 26 Mar 2018 06:28:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31F1CE0882; Mon, 26 Mar 2018 06:28:52 +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 09C5FE0882 for ; Mon, 26 Mar 2018 06:28:51 +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 F13E1335C09 for ; Mon, 26 Mar 2018 06:28:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C79F259 for ; Mon, 26 Mar 2018 06:28:49 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1522045701.62e21bf1fb7b68552dbfa277d32e124bb4f7a23e.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/fricas/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/fricas/fricas-1.3.3.ebuild X-VCS-Directories: sci-mathematics/fricas/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: 62e21bf1fb7b68552dbfa277d32e124bb4f7a23e X-VCS-Branch: master Date: Mon, 26 Mar 2018 06:28:49 +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: 959b3ce1-2540-40f2-9d8d-bd3aefe305b1 X-Archives-Hash: caaa0fd4346c7e7bea752ae051033b11 commit: 62e21bf1fb7b68552dbfa277d32e124bb4f7a23e Author: Andrey Grozin gentoo org> AuthorDate: Mon Mar 26 06:28:21 2018 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Mon Mar 26 06:28:21 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e21bf1 sci-mathematics/fricas: fix configure for lisps other than sbcl and ccl Closes: https://bugs.gentoo.org/650788 Package-Manager: Portage-2.3.19, Repoman-2.3.6 sci-mathematics/fricas/fricas-1.3.3.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/fricas/fricas-1.3.3.ebuild b/sci-mathematics/fricas/fricas-1.3.3.ebuild index 1be321f3f7b..b844cb78f7b 100644 --- a/sci-mathematics/fricas/fricas-1.3.3.ebuild +++ b/sci-mathematics/fricas/fricas-1.3.3.ebuild @@ -51,7 +51,7 @@ DEPEND="${RDEPEND}" RESTRICT="strip" src_configure() { - local LISP n + local LISP n GMP LISP=sbcl n=${#LISPS[*]} for ((n--; n > 0; n--)); do @@ -64,8 +64,14 @@ src_configure() { done einfo "Using lisp: ${LISP}" + # bug #650788 + if [[ ${LISP} = sbcl || ${LISP} = ccl ]] + then GMP=$(use_with gmp) + else GMP='' + fi + # aldor is not yet in portage - econf --disable-aldor --with-lisp=${LISP} $(use_with X x) $(use_with gmp) + econf --disable-aldor --with-lisp=${LISP} $(use_with X x) ${GMP} } src_compile() {