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