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.4.5.ebuild
Date: Wed, 24 Jun 2009 04:34:04
Message-Id: E1MJKBO-0004qX-9U@stork.gentoo.org
1 bicatali 09/06/24 04:34:02
2
3 Modified: ChangeLog mathomatic-14.4.5.ebuild
4 Log:
5 Fixed syntax error (bug #275195) and some CFLAGS propagation
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.42 sci-mathematics/mathomatic/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.42&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?rev=1.42&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/ChangeLog?r1=1.41&r2=1.42
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v
18 retrieving revision 1.41
19 retrieving revision 1.42
20 diff -u -r1.41 -r1.42
21 --- ChangeLog 22 Jun 2009 18:47:03 -0000 1.41
22 +++ ChangeLog 24 Jun 2009 04:34:02 -0000 1.42
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-mathematics/mathomatic
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.41 2009/06/22 18:47:03 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.42 2009/06/24 04:34:02 bicatali Exp $
28 +
29 + 24 Jun 2009; Sébastien Fabbro <bicatali@g.o>
30 + mathomatic-14.4.5.ebuild:
31 + Fixed syntax error (bug #275195) and some CFLAGS propagation
32
33 *mathomatic-14.4.5 (22 Jun 2009)
34
35
36
37
38 1.2 sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild?r1=1.1&r2=1.2
43
44 Index: mathomatic-14.4.5.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- mathomatic-14.4.5.ebuild 22 Jun 2009 18:47:03 -0000 1.1
51 +++ mathomatic-14.4.5.ebuild 24 Jun 2009 04:34:02 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild,v 1.1 2009/06/22 18:47:03 bicatali Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-14.4.5.ebuild,v 1.2 2009/06/24 04:34:02 bicatali Exp $
57
58 inherit eutils
59
60 @@ -21,6 +21,7 @@
61 sed -i \
62 -e '/^CFLAGS/ s/-O.//' \
63 makefile primes/makefile || die "sed failed"
64 + sed -i -e "s/-s.*-O/${CFLAGS}/" compile.secure || die
65 emake READLINE=1 || die "emake failed"
66 emake -C primes || die "emake in primes failed"
67 if use secure; then
68 @@ -46,7 +47,7 @@
69 insinto /usr/share/doc/${PF}
70 doins -r tests factorial m4 || die
71 fi
72 - if use doc; then
73 + if use secure; then
74 dobin mathomatic_secure || die
75 fi
76 }