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.1.6.ebuild mathomatic-14.0.5.ebuild
Date: Tue, 23 Sep 2008 13:21:18
Message-Id: E1Ki7pK-0007Mk-CJ@stork.gentoo.org
1 bicatali 08/09/23 13:21:14
2
3 Modified: ChangeLog
4 Added: mathomatic-14.1.6.ebuild
5 Removed: mathomatic-14.0.5.ebuild
6 Log:
7 Version bump
8 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 x86_64)
9
10 Revision Changes Path
11 1.34 sci-mathematics/mathomatic/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 21 Aug 2008 14:56:29 -0000 1.33
24 +++ ChangeLog 23 Sep 2008 13:21:13 -0000 1.34
25 @@ -1,6 +1,12 @@
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.33 2008/08/21 14:56:29 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.34 2008/09/23 13:21:13 bicatali Exp $
30 +
31 +*mathomatic-14.1.6 (23 Sep 2008)
32 +
33 + 23 Sep 2008; Sébastien Fabbro <bicatali@g.o>
34 + -mathomatic-14.0.5.ebuild, +mathomatic-14.1.6.ebuild:
35 + Version bump
36
37 *mathomatic-14.1.4 (21 Aug 2008)
38
39
40
41
42 1.1 sci-mathematics/mathomatic/mathomatic-14.1.6.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.1.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.1.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: mathomatic-14.1.6.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.1.6.ebuild,v 1.1 2008/09/23 13:21:13 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"
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 # respect user flags
69 sed -i \
70 -e '/^CFLAGS/ s/-O.//' \
71 -e '/^LDFLAGS/s/+= -lm/:= -lm $(LDFLAGS)/' \
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 mathomatic.png || die
88 domenu 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 }