Gentoo Archives: gentoo-commits

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