From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AE765138247 for ; Sun, 29 Dec 2013 10:11:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63406E0A4A; Sun, 29 Dec 2013 10:11:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E4E6DE0A4A for ; Sun, 29 Dec 2013 10:11:19 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1992533F7C5 for ; Sun, 29 Dec 2013 10:11:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 88C14E54D1 for ; Sun, 29 Dec 2013 10:11:17 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1388278958.d6083b505183e3be523f0ce2f52c72556a8a34df.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/open-axiom/ X-VCS-Repository: proj/sci X-VCS-Files: sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild X-VCS-Directories: sci-mathematics/open-axiom/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: d6083b505183e3be523f0ce2f52c72556a8a34df X-VCS-Branch: master Date: Sun, 29 Dec 2013 10:11:17 +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: 05fd8840-9ee6-4f16-a455-bc753d84e5b6 X-Archives-Hash: 2aa04fe975870bf3021cd2e42646325b commit: d6083b505183e3be523f0ce2f52c72556a8a34df Author: zcj 163 com> AuthorDate: Sun Dec 29 00:26:58 2013 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Dec 29 01:02:38 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=d6083b50 sci-mathematics/open-axiom: version bump to 1.4.2 --- sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild new file mode 100644 index 0000000..ebcb994 --- /dev/null +++ b/sci-mathematics/open-axiom/open-axiom-1.4.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +DESCRIPTION="Symbolic and algebraic computations system" +HOMEPAGE="http://www.open-axiom.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="X" + +RDEPEND="X? ( x11-libs/libXpm )" +DEPEND="${RDEPEND} + app-text/noweb + >=dev-lisp/sbcl-1.0.22" + +src_configure() { + # There is an option to compile with other lisps. However: + # - gcl is getting obsolete and unmaintained and is hard masked + # - could not make it work with ecls + econf \ + --with-lisp=sbcl \ + $(use_with X x) +} + +src_compile() { + # unfortunately could not track down the broken parallel build + # -j5 ok but -j30 sbcl stalled + emake -j1 +} + +src_install() { + emake DESTDIR="${D}" install + dodoc ChangeLog* NEWS README AUTHORS MAINTAINERS TODO STYLES +}