diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-02-03 13:01:52 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-02-03 13:01:52 +0000 |
commit | 465117b9d19a22918b2810fd4782df3111065118 (patch) | |
tree | 8949e31f75be12f89c528793aeef63a4c53683b2 /sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild | |
parent | Block lighttpd until spawn-fcgi collision is fixed. See bug #224781. (diff) | |
download | historical-465117b9d19a22918b2810fd4782df3111065118.tar.gz historical-465117b9d19a22918b2810fd4782df3111065118.tar.bz2 historical-465117b9d19a22918b2810fd4782df3111065118.zip |
Version bump
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild')
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild b/sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild new file mode 100644 index 000000000000..5330882036c6 --- /dev/null +++ b/sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.3.1.ebuild,v 1.1 2009/02/03 13:01:52 bicatali 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.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc" + +DEPEND="sys-libs/readline + sys-libs/ncurses" + +src_compile() { + sed -i \ + -e '/^CFLAGS/ s/-O.//' \ + makefile primes/makefile || die "sed failed" + emake READLINE=1 || die "emake failed" + emake -C primes || die "emake in primes failed" +} + +src_test() { + emake test || die "emake test failed" + emake -C primes test || die "emake test in primes failed" +} + +src_install() { + # It was easier just to install the files manually + dobin mathomatic primes/matho-{primes,pascal,sumsq} || die + dodoc changes.txt README.txt AUTHORS || die + doman mathomatic.1 primes/*.1 || die + doicon icons/mathomatic.png || die + domenu icons/mathomatic.desktop || die + newdoc primes/README.txt README-primes.txt || die + if use doc; then + dohtml doc/* || die + insinto /usr/share/doc/${PF} + doins -r tests factorial m4 || die + fi +} |