diff options
Diffstat (limited to 'sci-mathematics/mathomatic/mathomatic-11.1c.ebuild')
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-11.1c.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/sci-mathematics/mathomatic/mathomatic-11.1c.ebuild b/sci-mathematics/mathomatic/mathomatic-11.1c.ebuild deleted file mode 100644 index 498bf7692de1..000000000000 --- a/sci-mathematics/mathomatic/mathomatic-11.1c.ebuild +++ /dev/null @@ -1,43 +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-11.1c.ebuild,v 1.2 2005/01/28 09:26:50 phosphan Exp $ - -inherit eutils - -DESCRIPTION="Mathomatic - Algebraic Manipulator" -HOMEPAGE="http://www.mathomatic.com/" -SRC_URI="http://www.panix.com/~gesslein/${P}.tgz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64 ~ppc" -IUSE="icc" - -DEPEND="sys-libs/readline \ - sys-libs/ncurses \ - icc? ( dev-lang/icc )" - -S=${WORKDIR}/am - -src_compile() { - epatch ${FILESDIR}/gentoo-${P}.diff || die "patching failed" - if use icc; then - CC="icc" CFLAGS="-O3 -axKWNBP -ipo" LDFLAGS="-O3 -axKWNBP -ipo -limf" emake || die "emake failed" - else - LDFLAGS="-lm" emake || die "emake failed" - fi - - make test -} - -src_install() { - PREFIX=${D} MANDIR=${D}/usr/share/man einstall || die "einstall failed" - dohtml am.htm manual.htm notes.htm - newdoc changes.txt CHANGES - newdoc lgpl.txt LGPL - newdoc readme.txt README - - dodir /usr/share/doc/${PF}/examples - insinto /usr/share/doc/${PF}/examples - doins tests/*in -} |