summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild')
-rw-r--r--sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild b/sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild
deleted file mode 100644
index 22127f707534..000000000000
--- a/sci-mathematics/mathomatic/mathomatic-12.4.5.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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.5.ebuild,v 1.2 2005/08/28 00:58:11 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="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() {
- einstall || die "einstall failed."
- dodoc changes.txt README.txt
-
- dodir /usr/share/doc/${PF}/examples
- insinto /usr/share/doc/${PF}/examples
- doins tests/*in
- dohtml ${D}/usr/doc/mathomatic/*.htm
- rm -rf ${D}/usr/doc/mathomatic
-}