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