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: metadata.xml ChangeLog mathomatic-14.4.5.ebuild mathomatic-14.3.1.ebuild
Date: Mon, 22 Jun 2009 18:47:06
Message-Id: E1MIoXn-00066d-NB@stork.gentoo.org
1 bicatali 09/06/22 18:47:03
2
3 Modified: metadata.xml ChangeLog
4 Added: mathomatic-14.4.5.ebuild
5 Removed: mathomatic-14.3.1.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-mathematics/mathomatic/metadata.xml
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/metadata.xml?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/metadata.xml?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/metadata.xml?r1=1.3&r2=1.4
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/metadata.xml,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- metadata.xml 31 Jul 2006 16:37:23 -0000 1.3
24 +++ metadata.xml 22 Jun 2009 18:47:03 -0000 1.4
25 @@ -6,8 +6,12 @@
26 <email>cryos@g.o</email>
27 </maintainer>
28 <longdescription>
29 - Mathomatic is a small, portable symbolic math program that can automatically
30 - solve, simplify, differentiate, combine, and compare algebraic equations,
31 - perform polynomial and complex arithmetic, etc.
32 + Mathomatic is a small, portable symbolic math program that can
33 + automatically solve, simplify, differentiate, combine, and compare
34 + algebraic equations, perform polynomial and complex arithmetic,
35 + etc.
36 </longdescription>
37 + <use>
38 + <flag name='secure'>Create an extra secure version, with no I/O.</flag>
39 + </use>
40 </pkgmetadata>
41
42
43
44 1.41 sci-mathematics/mathomatic/ChangeLog
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.41&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.41&content-type=text/plain
48 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.40&r2=1.41
49
50 Index: ChangeLog
51 ===================================================================
52 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
53 retrieving revision 1.40
54 retrieving revision 1.41
55 diff -u -r1.40 -r1.41
56 --- ChangeLog 26 Feb 2009 18:12:19 -0000 1.40
57 +++ ChangeLog 22 Jun 2009 18:47:03 -0000 1.41
58 @@ -1,6 +1,12 @@
59 # ChangeLog for sci-mathematics/mathomatic
60 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
61 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.40 2009/02/26 18:12:19 bicatali Exp $
62 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
63 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.41 2009/06/22 18:47:03 bicatali Exp $
64 +
65 +*mathomatic-14.4.5 (22 Jun 2009)
66 +
67 + 22 Jun 2009; Sébastien Fabbro <bicatali@g.o>
68 + -mathomatic-14.3.1.ebuild, +mathomatic-14.4.5.ebuild, metadata.xml:
69 + Version bump
70
71 *mathomatic-14.3.3 (26 Feb 2009)
72
73
74
75
76 1.1 sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild
77
78 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild?rev=1.1&view=markup
79 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild?rev=1.1&content-type=text/plain
80
81 Index: mathomatic-14.4.5.ebuild
82 ===================================================================
83 # Copyright 1999-2009 Gentoo Foundation
84 # Distributed under the terms of the GNU General Public License v2
85 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild,v 1.1 2009/06/22 18:47:03 bicatali Exp $
86
87 inherit eutils
88
89 DESCRIPTION="Automatic algebraic manipulator"
90 HOMEPAGE="http://www.mathomatic.com/"
91 SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2"
92
93 LICENSE="LGPL-2.1"
94 SLOT="0"
95 KEYWORDS="~amd64 ~ppc ~x86"
96 IUSE="doc secure"
97
98 DEPEND="sys-libs/readline
99 sys-libs/ncurses"
100 RDEPEND="${DEPEND}"
101
102 src_compile() {
103 sed -i \
104 -e '/^CFLAGS/ s/-O.//' \
105 makefile primes/makefile || die "sed failed"
106 emake READLINE=1 || die "emake failed"
107 emake -C primes || die "emake in primes failed"
108 if use secure; then
109 ./compile.secure || die "compiling secure version failed"
110 fi
111 }
112
113 src_test() {
114 emake test || die "emake test failed"
115 emake -C primes test || die "emake test in primes failed"
116 }
117
118 src_install() {
119 # It was easier just to install the files manually
120 dobin mathomatic primes/matho-{primes,pascal,sumsq} || die
121 dodoc changes.txt README.txt AUTHORS || die
122 doman mathomatic.1 primes/*.1 || die
123 doicon icons/mathomatic.png || die
124 domenu icons/mathomatic.desktop || die
125 newdoc primes/README.txt README-primes.txt || die
126 if use doc; then
127 dohtml doc/* || die
128 insinto /usr/share/doc/${PF}
129 doins -r tests factorial m4 || die
130 fi
131 if use doc; then
132 dobin mathomatic_secure || die
133 fi
134 }