Gentoo Archives: gentoo-commits

From: "Andrey Grozin (grozin)" <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/nestedsums: nestedsums-1.4.12-r1.ebuild ChangeLog nestedsums-1.4.12.ebuild
Date: Fri, 25 Feb 2011 14:51:40
Message-Id: 20110225145130.28F8620054@flycatcher.gentoo.org
1 grozin 11/02/25 14:51:30
2
3 Modified: ChangeLog
4 Added: nestedsums-1.4.12-r1.ebuild
5 Removed: nestedsums-1.4.12.ebuild
6 Log:
7 Added doc USE flag
8
9 (Portage version: 2.2.0_alpha25/cvs/Linux i686)
10
11 Revision Changes Path
12 1.3 sci-mathematics/nestedsums/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/nestedsums/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/nestedsums/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/nestedsums/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/nestedsums/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 17 Jan 2011 14:57:48 -0000 1.2
25 +++ ChangeLog 25 Feb 2011 14:51:29 -0000 1.3
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-mathematics/nestedsums
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nestedsums/ChangeLog,v 1.2 2011/01/17 14:57:48 grozin Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nestedsums/ChangeLog,v 1.3 2011/02/25 14:51:29 grozin Exp $
31 +
32 +*nestedsums-1.4.12-r1 (25 Feb 2011)
33 +
34 + 25 Feb 2011; Andrey Grozin <grozin@g.o> -nestedsums-1.4.12.ebuild,
35 + +nestedsums-1.4.12-r1.ebuild:
36 + Added doc USE flag
37
38 17 Jan 2011; Andrey Grozin <grozin@g.o> nestedsums-1.4.12.ebuild:
39 Downgrade to EAPI 3
40
41
42
43 1.1 sci-mathematics/nestedsums/nestedsums-1.4.12-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/nestedsums/nestedsums-1.4.12-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/nestedsums/nestedsums-1.4.12-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: nestedsums-1.4.12-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/nestedsums/nestedsums-1.4.12-r1.ebuild,v 1.1 2011/02/25 14:51:29 grozin Exp $
53 EAPI="3"
54 DESCRIPTION="A GiNaC-based library for symbolic expansion of certain transcendental functions"
55 HOMEPAGE="http://wwwthep.physik.uni-mainz.de/~stefanw/nestedsums/"
56 IUSE="doc"
57 SRC_URI="http://wwwthep.physik.uni-mainz.de/~stefanw/download/${P}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~x86"
61 RDEPEND=">=sci-mathematics/ginac-1.5"
62 DEPEND="${RDEPEND}
63 doc? ( app-doc/doxygen )"
64
65 src_compile() {
66 emake || die "emake failed"
67
68 if use doc; then
69 doxygen Doxyfile || die "generating documentation failed"
70 fi
71 }
72
73 src_install() {
74 emake DESTDIR="${D}" install
75 rm -f "${D}"usr/lib/*.la
76 dodoc AUTHORS ChangeLog
77
78 if use doc; then
79 dohtml reference/html/* || die "installing documentation failed"
80 fi
81 }