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.4.3.ebuild ginac-1.4.1.ebuild
Date: Mon, 29 Sep 2008 14:10:09
Message-Id: E1KkJRu-0008RE-KW@stork.gentoo.org
1 bicatali 08/09/29 14:10:06
2
3 Modified: ChangeLog ginac-1.4.3.ebuild
4 Removed: ginac-1.4.1.ebuild
5 Log:
6 Better doc installation, removed older 1.4.1 version
7 (Portage version: 2.2_rc9/cvs/Linux 2.6.25-gentoo-r7 x86_64)
8
9 Revision Changes Path
10 1.21 sci-mathematics/ginac/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 21 Jul 2008 09:35:14 -0000 1.20
23 +++ ChangeLog 29 Sep 2008 14:10:06 -0000 1.21
24 @@ -1,6 +1,10 @@
25 # ChangeLog for sci-mathematics/ginac
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.20 2008/07/21 09:35:14 bicatali Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ChangeLog,v 1.21 2008/09/29 14:10:06 bicatali Exp $
29 +
30 + 29 Sep 2008; Sébastien Fabbro <bicatali@g.o> -ginac-1.4.1.ebuild,
31 + ginac-1.4.3.ebuild:
32 + Better doc installation, removed older 1.4.1 version
33
34 21 Jul 2008; Sébastien Fabbro <bicatali@g.o> ginac-1.4.3.ebuild:
35 Added dev-texlive/fontsrecommended as a dependency when doc flag is
36
37
38
39 1.4 sci-mathematics/ginac/ginac-1.4.3.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild?rev=1.4&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild?rev=1.4&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild?r1=1.3&r2=1.4
44
45 Index: ginac-1.4.3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild,v
48 retrieving revision 1.3
49 retrieving revision 1.4
50 diff -u -r1.3 -r1.4
51 --- ginac-1.4.3.ebuild 21 Jul 2008 09:35:14 -0000 1.3
52 +++ ginac-1.4.3.ebuild 29 Sep 2008 14:10:06 -0000 1.4
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2008 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild,v 1.3 2008/07/21 09:35:14 bicatali Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/ginac/ginac-1.4.3.ebuild,v 1.4 2008/09/29 14:10:06 bicatali Exp $
58
59 inherit eutils
60
61 @@ -17,8 +17,10 @@
62 DEPEND="${RDEPEND}
63 dev-util/pkgconfig
64 doc? ( app-doc/doxygen
65 - media-gfx/transfig
66 - || ( dev-texlive/texlive-fontsrecommended app-text/tetex app-text/ptex ) )"
67 + media-gfx/transfig
68 + || ( dev-texlive/texlive-fontsrecommended
69 + app-text/tetex
70 + app-text/ptex ) )"
71
72 src_compile() {
73 econf || die "econf failed"
74 @@ -38,8 +40,15 @@
75 dodoc README NEWS AUTHORS || die
76
77 if use doc; then
78 + cd doc
79 insinto /usr/share/doc/${PF}
80 - doins doc/reference/reference.pdf
81 - dohtml -r doc/reference/html_files/*
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 + insinto /usr/share/doc/${PF}/examples
89 + doins examples/*.cpp examples/ginac-examples.txt
90 fi
91 }