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: ChangeLog mathomatic-15.8.5.ebuild mathomatic-15.8.0.ebuild
Date: Tue, 29 May 2012 18:42:54
Message-Id: 20120529184244.64D1F20047@flycatcher.gentoo.org
1 bicatali 12/05/29 18:42:44
2
3 Modified: ChangeLog
4 Added: mathomatic-15.8.5.ebuild
5 Removed: mathomatic-15.8.0.ebuild
6 Log:
7 Version bump
8
9 (Portage version: 2.1.10.63/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.64 sci-mathematics/mathomatic/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.64&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.64&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.63&r2=1.64
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
21 retrieving revision 1.63
22 retrieving revision 1.64
23 diff -u -r1.63 -r1.64
24 --- ChangeLog 16 Apr 2012 16:33:49 -0000 1.63
25 +++ ChangeLog 29 May 2012 18:42:44 -0000 1.64
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-mathematics/mathomatic
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.63 2012/04/16 16:33:49 bicatali Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.64 2012/05/29 18:42:44 bicatali Exp $
31 +
32 +*mathomatic-15.8.5 (29 May 2012)
33 +
34 + 29 May 2012; Sébastien Fabbro <bicatali@g.o>
35 + -mathomatic-15.8.0.ebuild, +mathomatic-15.8.5.ebuild:
36 + Version bump
37
38 *mathomatic-15.8.2 (16 Apr 2012)
39
40
41
42
43 1.1 sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: mathomatic-15.8.5.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-15.8.5.ebuild,v 1.1 2012/05/29 18:42:44 bicatali Exp $
53
54 EAPI=4
55 inherit toolchain-funcs flag-o-matic
56
57 DESCRIPTION="Automatic algebraic manipulator"
58 HOMEPAGE="http://www.mathomatic.org/"
59 SRC_URI="${HOMEPAGE}/archive/${P}.tar.bz2"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="doc gnuplot"
65
66 DEPEND="sys-libs/readline
67 sys-libs/ncurses"
68 RDEPEND="${DEPEND}
69 gnuplot? ( sci-visualization/gnuplot )"
70
71 src_compile() {
72 append-cflags -DBOLD_COLOR=1
73 emake READLINE=1 CC=$(tc-getCC)
74 emake CC=$(tc-getCC) -C primes
75 }
76
77 src_test() {
78 default
79 emake -C primes check
80 }
81
82 src_install() {
83 emake prefix="${EPREFIX}usr" DESTDIR="${D}" bininstall
84 emake prefix="${EPREFIX}usr" DESTDIR="${D}" -C primes install
85 dodoc changes.txt README.txt AUTHORS
86 newdoc primes/README.txt README-primes.txt
87 use doc && emake \
88 prefix="${EPREFIX}usr" \
89 mathdocdir="${EPREFIX}usr/share/doc/${PF}" \
90 DESTDIR="${D}" docinstall
91 }