diff options
author | 2005-09-23 00:43:20 +0000 | |
---|---|---|
committer | 2005-09-23 00:43:20 +0000 | |
commit | b1d70f9b51906dddef3273cad2f5c56a86996167 (patch) | |
tree | 19f6dd8d917a12f57c95443e44b23f741f02650c /sci-mathematics | |
parent | Adding ~amd64 (diff) | |
download | historical-b1d70f9b51906dddef3273cad2f5c56a86996167.tar.gz historical-b1d70f9b51906dddef3273cad2f5c56a86996167.tar.bz2 historical-b1d70f9b51906dddef3273cad2f5c56a86996167.zip |
Version bump, now installing files in ebuild due to broken makefile.
Package-Manager: portage-2.0.52-r1
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/mathomatic/ChangeLog | 8 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/Manifest | 10 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/files/digest-mathomatic-12.4.11 | 1 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-12.4.11.ebuild | 39 |
4 files changed, 53 insertions, 5 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog index 45522cac09ee..b7b2b00e0b9f 100644 --- a/sci-mathematics/mathomatic/ChangeLog +++ b/sci-mathematics/mathomatic/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-mathematics/mathomatic # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.7 2005/08/28 00:58:11 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.8 2005/09/23 00:43:20 cryos Exp $ + +*mathomatic-12.4.11 (23 Sep 2005) + + 23 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org> + +mathomatic-12.4.11.ebuild: + Version bump, now installing files in ebuild due to broken makefile. 28 Aug 2005; Marcus D. Hanwell <cryos@gentoo.org> -mathomatic-12.3.1.ebuild, mathomatic-12.4.5.ebuild: diff --git a/sci-mathematics/mathomatic/Manifest b/sci-mathematics/mathomatic/Manifest index 268cec3fe9e2..2641498f9d93 100644 --- a/sci-mathematics/mathomatic/Manifest +++ b/sci-mathematics/mathomatic/Manifest @@ -2,13 +2,15 @@ Hash: SHA1 MD5 f38bccf593e0f1fb97f5b13047bdd99e mathomatic-12.4.5.ebuild 942 -MD5 743f0cc2ef39e607456da279e1f097a7 ChangeLog 1995 +MD5 3bcddd67111a9ae99e5f5e2bd8533332 mathomatic-12.4.11.ebuild 940 +MD5 17680c528466a8822429ef8bb61fdde3 ChangeLog 2184 MD5 ee7955cc2715e3bac994bb045163c8b1 metadata.xml 479 MD5 32a964754f69321292b8d2b29b2d89c0 files/digest-mathomatic-12.4.5 66 +MD5 bf6afb923996c68d8e305c5a2124a6e5 files/digest-mathomatic-12.4.11 67 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFDEQwwntT9W3vfTuoRAhP9AKCNOwCWguZSZHqoGHzCnI8l7tUnJQCeKiVZ -ibDeCIp6iIR7IkKb/X+iSdc= -=1lF5 +iD8DBQFDM0+1ntT9W3vfTuoRAoPMAJ0biHSWkrIdZcst8wsM8YrxTE5w9wCfZIEw +h6eBowo2r4GfXjJ9nvqh5vw= +=GTZh -----END PGP SIGNATURE----- diff --git a/sci-mathematics/mathomatic/files/digest-mathomatic-12.4.11 b/sci-mathematics/mathomatic/files/digest-mathomatic-12.4.11 new file mode 100644 index 000000000000..8ca71befb3f3 --- /dev/null +++ b/sci-mathematics/mathomatic/files/digest-mathomatic-12.4.11 @@ -0,0 +1 @@ +MD5 ee54e976e1a99f8e08fa6c4a4e7924ad mathomatic-12.4.11.tgz 128156 diff --git a/sci-mathematics/mathomatic/mathomatic-12.4.11.ebuild b/sci-mathematics/mathomatic/mathomatic-12.4.11.ebuild new file mode 100644 index 000000000000..efe2f1b91210 --- /dev/null +++ b/sci-mathematics/mathomatic/mathomatic-12.4.11.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.4.11.ebuild,v 1.1 2005/09/23 00:43:20 cryos Exp $ + +inherit eutils + +DESCRIPTION="Automatic algebraic manipulator" +HOMEPAGE="http://www.mathomatic.com/" +SRC_URI="http://www.panix.com/~gesslein/${P}.tgz" + +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 || die "emake failed" + else + emake || die "emake failed" + fi +} + +src_install() { + # It was easier just to install the files manually + dobin mathomatic + dodoc changes.txt README.txt + doman doc/mathomatic.1 + + if use doc; then + dohtml doc/* + insinto /usr/share/doc/${PF}/examples + doins tests/*.in + fi +} |