Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/mathomatic: mathomatic-15.6.0.ebuild ChangeLog
Date: Tue, 03 May 2011 16:29:42
Message-Id: 20110503162931.5A06C20054@flycatcher.gentoo.org
1 bicatali 11/05/03 16:29:31
2
3 Modified: ChangeLog
4 Added: mathomatic-15.6.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.57 sci-mathematics/mathomatic/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.57&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.57&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.56&r2=1.57
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
20 retrieving revision 1.56
21 retrieving revision 1.57
22 diff -u -r1.56 -r1.57
23 --- ChangeLog 11 Apr 2011 04:57:25 -0000 1.56
24 +++ ChangeLog 3 May 2011 16:29:31 -0000 1.57
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-mathematics/mathomatic
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.56 2011/04/11 04:57:25 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.57 2011/05/03 16:29:31 bicatali Exp $
30 +
31 +*mathomatic-15.6.0 (03 May 2011)
32 +
33 + 03 May 2011; Sébastien Fabbro <bicatali@g.o>
34 + +mathomatic-15.6.0.ebuild:
35 + Version bump
36
37 11 Apr 2011; Sébastien Fabbro <bicatali@g.o>
38 mathomatic-15.5.2.ebuild:
39
40
41
42 1.1 sci-mathematics/mathomatic/mathomatic-15.6.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.6.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.6.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mathomatic-15.6.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.6.0.ebuild,v 1.1 2011/05/03 16:29:31 bicatali Exp $
52
53 EAPI=4
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Automatic algebraic manipulator"
57 HOMEPAGE="http://www.mathomatic.org/"
58 SRC_URI="${HOMEPAGE}/archive/${P}.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="doc gnuplot"
64
65 DEPEND="sys-libs/readline
66 sys-libs/ncurses"
67 RDEPEND="${DEPEND}
68 gnuplot? ( sci-visualization/gnuplot )"
69
70 src_prepare() {
71 sed -i -e 's/time -p//g' makefile primes/makefile || die
72 }
73
74 src_compile() {
75 emake READLINE=1 CC=$(tc-getCC)
76 emake CC=$(tc-getCC) -C primes
77 }
78
79 src_test() {
80 emake test
81 emake -C primes test
82 }
83
84 src_install() {
85 dobin mathomatic
86 dobin primes/matho-{mult,primes,pascal,sumsq} primes/primorial
87 dodoc changes.txt README.txt AUTHORS
88 doman mathomatic.1 primes/*.1
89 doicon icons/mathomatic.png
90 domenu icons/mathomatic.desktop
91 newdoc primes/README.txt README-primes.txt
92 if use doc; then
93 dohtml doc/*
94 insinto /usr/share/doc/${PF}
95 doins -r tests examples m4
96 fi
97 }