diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-04-26 17:22:31 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-04-26 17:22:31 +0000 |
commit | e494e2b359eda5b638692d9c7050090f4ae7ce0a (patch) | |
tree | 8ca94f4bc80756a97a7c7447be07aa46166148f1 /sci-mathematics/mathomatic | |
parent | Added a patch to fix ejecting by using HAL (if the necessary tools are instal... (diff) | |
download | gentoo-2-e494e2b359eda5b638692d9c7050090f4ae7ce0a.tar.gz gentoo-2-e494e2b359eda5b638692d9c7050090f4ae7ce0a.tar.bz2 gentoo-2-e494e2b359eda5b638692d9c7050090f4ae7ce0a.zip |
Removed old version
(Portage version: 2.1.5_rc6)
Diffstat (limited to 'sci-mathematics/mathomatic')
-rw-r--r-- | sci-mathematics/mathomatic/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-12.6.5.ebuild | 39 |
2 files changed, 5 insertions, 40 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog index 6a9204bcaa3e..121a0520d6be 100644 --- a/sci-mathematics/mathomatic/ChangeLog +++ b/sci-mathematics/mathomatic/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/mathomatic # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.29 2008/04/23 23:19:36 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.30 2008/04/26 17:22:31 bicatali Exp $ + + 26 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org> + -mathomatic-12.6.5.ebuild: + Removed older version *mathomatic-14.0.0 (23 Apr 2008) diff --git a/sci-mathematics/mathomatic/mathomatic-12.6.5.ebuild b/sci-mathematics/mathomatic/mathomatic-12.6.5.ebuild deleted file mode 100644 index 057bf949595f..000000000000 --- a/sci-mathematics/mathomatic/mathomatic-12.6.5.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.6.5.ebuild,v 1.3 2007/07/18 02:13:19 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 -} |