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/ginac: ChangeLog ginac-1.5.1.ebuild
Date: Mon, 06 Apr 2009 12:21:35
Message-Id: E1LqnpU-0000pR-Tk@stork.gentoo.org
1 bicatali 09/04/06 12:21:32
2
3 Modified: ChangeLog ginac-1.5.1.ebuild
4 Log:
5 Removed reference pdf doxygen generation, see bug #264774
6 (Portage version: 2.2_rc28/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.26 sci-mathematics/ginac/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?rev=1.26&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?rev=1.26&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?r1=1.25&r2=1.26
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v
18 retrieving revision 1.25
19 retrieving revision 1.26
20 diff -u -r1.25 -r1.26
21 --- ChangeLog 3 Apr 2009 09:44:58 -0000 1.25
22 +++ ChangeLog 6 Apr 2009 12:21:32 -0000 1.26
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-mathematics/ginac
25 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.25 2009/04/03 09:44:58 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.26 2009/04/06 12:21:32 bicatali Exp $
28 +
29 + 06 Apr 2009; Sébastien Fabbro <bicatali@g.o> ginac-1.5.1.ebuild:
30 + Removed reference pdf doxygen generation, see bug #264774
31
32 *ginac-1.5.1 (03 Apr 2009)
33
34
35
36
37 1.2 sci-mathematics/ginac/ginac-1.5.1.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild?rev=1.2&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild?rev=1.2&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild?r1=1.1&r2=1.2
42
43 Index: ginac-1.5.1.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild,v
46 retrieving revision 1.1
47 retrieving revision 1.2
48 diff -u -r1.1 -r1.2
49 --- ginac-1.5.1.ebuild 3 Apr 2009 09:44:58 -0000 1.1
50 +++ ginac-1.5.1.ebuild 6 Apr 2009 12:21:32 -0000 1.2
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild,v 1.1 2009/04/03 09:44:58 bicatali Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.5.1.ebuild,v 1.2 2009/04/06 12:21:32 bicatali Exp $
56
57 EAPI=2
58 inherit eutils
59 @@ -32,12 +32,12 @@
60 src_compile() {
61 emake || die "emake failed"
62 if use doc; then
63 - # need to run twice to get the references right (you know, latex)
64 - # do not add die function at the first one
65 - make pdf
66 - emake pdf || die "emake pdf failed"
67 - cd doc/reference
68 - emake html || die "emake html failed"
69 + cd "${S}/doc/reference"
70 + #pdf generation for reference failed (1.5.1), bug #264774
71 + #emake html pdf || die "emake doc reference failed"
72 + emake html || die "emake ref failed"
73 + cd "${S}/doc/tutorial"
74 + emake ginac.pdf ginac.html || die "emake doc tutorial failed"
75 fi
76 }
77
78 @@ -48,12 +48,12 @@
79 if use doc; then
80 cd doc
81 insinto /usr/share/doc/${PF}
82 - doins \
83 - examples/ginac-examples.pdf \
84 - reference/reference.pdf \
85 - tutorial/ginac.pdf \
86 - || die "pdf doc install failed"
87 - dohtml -r reference/html_files/*
88 + newins tutorial/ginac.pdf tutorial.pdf || die "tutorial install failed"
89 + #newins reference/ginac.pdf reference.pdf || die "ref install failed"
90 + insinto /usr/share/doc/${PF}/html/reference
91 + doins -r reference/html_files/* || die
92 + insinto /usr/share/doc/${PF}/html
93 + newins tutorial/ginac.html tutorial.html
94 insinto /usr/share/doc/${PF}/examples
95 doins examples/*.cpp examples/ginac-examples.txt
96 fi