diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-07-15 22:09:53 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-07-15 22:09:53 +0000 |
commit | 8b47563d6d4208323fc627a987d234ecf4d5db3c (patch) | |
tree | c9c0c51347687318ee0c7d3a58ed3204208edeca /sci-mathematics/mathomatic | |
parent | Version bump. (diff) | |
download | gentoo-2-8b47563d6d4208323fc627a987d234ecf4d5db3c.tar.gz gentoo-2-8b47563d6d4208323fc627a987d234ecf4d5db3c.tar.bz2 gentoo-2-8b47563d6d4208323fc627a987d234ecf4d5db3c.zip |
Version bump, marked newer version stable and pruned old version.
(Portage version: 2.1.1_pre2-r8)
Diffstat (limited to 'sci-mathematics/mathomatic')
4 files changed, 52 insertions, 3 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog index 9e7165253e12..f35e7a5388b9 100644 --- a/sci-mathematics/mathomatic/ChangeLog +++ b/sci-mathematics/mathomatic/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-mathematics/mathomatic # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.13 2006/04/09 23:49:47 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.14 2006/07/15 22:09:53 cryos Exp $ + +*mathomatic-12.5.20 (15 Jul 2006) + + 15 Jul 2006; Marcus D. Hanwell <cryos@gentoo.org> + -mathomatic-12.5.6.ebuild, mathomatic-12.5.13.ebuild, + +mathomatic-12.5.20.ebuild: + Version bump, marked newer version stable and pruned old version. *mathomatic-12.5.13 (09 Apr 2006) diff --git a/sci-mathematics/mathomatic/files/digest-mathomatic-12.5.20 b/sci-mathematics/mathomatic/files/digest-mathomatic-12.5.20 new file mode 100644 index 000000000000..010e6f6fe32d --- /dev/null +++ b/sci-mathematics/mathomatic/files/digest-mathomatic-12.5.20 @@ -0,0 +1,3 @@ +MD5 31e3b078fd5eea82e58e3f2999d5c694 mathomatic-12.5.20.tar.bz2 119448 +RMD160 ee65dcef2fa8f6b613c460433efe56b7e5c8388f mathomatic-12.5.20.tar.bz2 119448 +SHA256 b753f6690b80abbe1ac5fe78534c4f22459875371f674eaebe5cebb2878dc666 mathomatic-12.5.20.tar.bz2 119448 diff --git a/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild b/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild index 1bfc8b33abe6..9e3f7b02d3ed 100644 --- a/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild +++ b/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild,v 1.1 2006/04/09 23:49:47 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.5.13.ebuild,v 1.2 2006/07/15 22:09:53 cryos Exp $ inherit eutils @@ -10,7 +10,7 @@ SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="doc icc" DEPEND="sys-libs/readline diff --git a/sci-mathematics/mathomatic/mathomatic-12.5.20.ebuild b/sci-mathematics/mathomatic/mathomatic-12.5.20.ebuild new file mode 100644 index 000000000000..d9ca2d7b44d8 --- /dev/null +++ b/sci-mathematics/mathomatic/mathomatic-12.5.20.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.5.20.ebuild,v 1.1 2006/07/15 22:09:53 cryos Exp $ + +inherit eutils + +DESCRIPTION="Automatic algebraic manipulator" +HOMEPAGE="http://www.mathomatic.com/" +SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc icc" + +DEPEND="sys-libs/readline + sys-libs/ncurses + icc? ( dev-lang/icc )" + +src_compile() { + if use icc; then + CC="icc" CFLAGS="-O3 -axKWNBP -ipo" LDFLAGS="-O3 -axKWNBP -ipo -limf" emake READLINE=1 || die "emake failed" + else + emake READLINE=1 || die "emake failed" + fi +} + +src_install() { + # It was easier just to install the files manually + dobin mathomatic + dodoc changes.txt README.txt + doman mathomatic.1 + + if use doc; then + dohtml doc/* + insinto /usr/share/doc/${PF}/examples + doins tests/*.in + fi +} |