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-14.3.3.ebuild mathomatic-14.2.7.ebuild
Date: Thu, 26 Feb 2009 18:12:21
Message-Id: E1LckiZ-0007Id-6I@stork.gentoo.org
1 bicatali 09/02/26 18:12:19
2
3 Modified: ChangeLog
4 Added: mathomatic-14.3.3.ebuild
5 Removed: mathomatic-14.2.7.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.40 sci-mathematics/mathomatic/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 3 Feb 2009 13:01:52 -0000 1.39
24 +++ ChangeLog 26 Feb 2009 18:12:19 -0000 1.40
25 @@ -1,6 +1,12 @@
26 # ChangeLog for sci-mathematics/mathomatic
27 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.39 2009/02/03 13:01:52 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.40 2009/02/26 18:12:19 bicatali Exp $
30 +
31 +*mathomatic-14.3.3 (26 Feb 2009)
32 +
33 + 26 Feb 2009; Sébastien Fabbro <bicatali@g.o>
34 + -mathomatic-14.2.7.ebuild, +mathomatic-14.3.3.ebuild:
35 + Version bump
36
37 *mathomatic-14.3.1 (03 Feb 2009)
38
39
40
41
42 1.1 sci-mathematics/mathomatic/mathomatic-14.3.3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.3.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.3.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mathomatic-14.3.3.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.3.3.ebuild,v 1.1 2009/02/26 18:12:19 bicatali Exp $
52
53 inherit eutils
54
55 DESCRIPTION="Automatic algebraic manipulator"
56 HOMEPAGE="http://www.mathomatic.com/"
57 SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2"
58
59 LICENSE="LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE="doc"
63
64 DEPEND="sys-libs/readline
65 sys-libs/ncurses"
66
67 src_compile() {
68 sed -i \
69 -e '/^CFLAGS/ s/-O.//' \
70 makefile primes/makefile || die "sed failed"
71 emake READLINE=1 || die "emake failed"
72 emake -C primes || die "emake in primes failed"
73 }
74
75 src_test() {
76 emake test || die "emake test failed"
77 emake -C primes test || die "emake test in primes failed"
78 }
79
80 src_install() {
81 # It was easier just to install the files manually
82 dobin mathomatic primes/matho-{primes,pascal,sumsq} || die
83 dodoc changes.txt README.txt AUTHORS || die
84 doman mathomatic.1 primes/*.1 || die
85 doicon icons/mathomatic.png || die
86 domenu icons/mathomatic.desktop || die
87 newdoc primes/README.txt README-primes.txt || die
88 if use doc; then
89 dohtml doc/* || die
90 insinto /usr/share/doc/${PF}
91 doins -r tests factorial m4 || die
92 fi
93 }