diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-11-23 05:09:46 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-11-23 05:09:46 +0000 |
commit | 4539aa7d876f0d33f8a956a8d9a67eb0d25508db (patch) | |
tree | c7133d045581ba2116e3c34df8d847c78cbf115f /sci-mathematics/mathomatic | |
parent | adding myself as maintainer to help triage bugs (diff) | |
download | gentoo-2-4539aa7d876f0d33f8a956a8d9a67eb0d25508db.tar.gz gentoo-2-4539aa7d876f0d33f8a956a8d9a67eb0d25508db.tar.bz2 gentoo-2-4539aa7d876f0d33f8a956a8d9a67eb0d25508db.zip |
Version bump
(Portage version: 2.2.01.21313-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-mathematics/mathomatic')
-rw-r--r-- | sci-mathematics/mathomatic/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog index ab9410e185a8..54c91cfad028 100644 --- a/sci-mathematics/mathomatic/ChangeLog +++ b/sci-mathematics/mathomatic/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/mathomatic # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.69 2012/07/22 15:32:05 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.70 2012/11/23 05:09:46 bicatali Exp $ + +*mathomatic-16.0.5 (23 Nov 2012) + + 23 Nov 2012; Sébastien Fabbro <bicatali@gentoo.org> +mathomatic-16.0.5.ebuild: + Version bump *mathomatic-16.0.1 (22 Jul 2012) diff --git a/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild b/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild new file mode 100644 index 000000000000..6dfb610d1db8 --- /dev/null +++ b/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-16.0.5.ebuild,v 1.1 2012/11/23 05:09:46 bicatali Exp $ + +EAPI=4 +inherit toolchain-funcs flag-o-matic + +DESCRIPTION="Automatic algebraic manipulator" +HOMEPAGE="http://www.mathomatic.org/" +SRC_URI="${HOMEPAGE}/archive/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc gnuplot" + +DEPEND="sys-libs/readline + sys-libs/ncurses" +RDEPEND="${DEPEND} + gnuplot? ( sci-visualization/gnuplot )" + +src_compile() { + append-cflags -DBOLD_COLOR=1 + emake READLINE=1 CC=$(tc-getCC) + emake CC=$(tc-getCC) -C primes +} + +src_test() { + default + emake -C primes check +} + +src_install() { + emake prefix="${EPREFIX}/usr" DESTDIR="${D}" bininstall m4install + emake prefix="${EPREFIX}/usr" DESTDIR="${D}" -C primes install + dodoc changes.txt README.txt AUTHORS + newdoc primes/README.txt README-primes.txt + use doc && emake \ + prefix="${EPREFIX}/usr" \ + mathdocdir="${EPREFIX}/usr/share/doc/${PF}" \ + DESTDIR="${D}" docinstall +} |