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-libs/jama: metadata.xml ChangeLog jama-1.2.5.ebuild
Date: Thu, 25 Feb 2010 06:03:47
Message-Id: E1NkWp6-0002v5-9V@stork.gentoo.org
1 bicatali 10/02/25 06:03:44
2
3 Added: metadata.xml ChangeLog jama-1.2.5.ebuild
4 Log:
5 Import to the main tree
6 (Portage version: 2.2_rc63/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sci-libs/jama/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <longdescription lang="en">
21 JAMA/C++: a translation of the Java Matrix Library, developed by the
22 Mathworks and NIST, into C++ . It includes the following routines:
23 * classical matrix linear algebra
24 * QR
25 * SVD
26 * Cholesky
27 * Eigenvalue solver
28 It is based on NIST's Template Numerical Toolkit.
29 </longdescription>
30 </pkgmetadata>
31
32
33
34 1.1 sci-libs/jama/ChangeLog
35
36 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/ChangeLog?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/ChangeLog?rev=1.1&content-type=text/plain
38
39 Index: ChangeLog
40 ===================================================================
41 # ChangeLog for sci-libs/jama
42 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
43 # $Header: /var/cvsroot/gentoo-x86/sci-libs/jama/ChangeLog,v 1.1 2010/02/25 06:03:43 bicatali Exp $
44
45 *jama-1.2.5 (25 Feb 2010)
46
47 25 Feb 2010; Sébastien Fabbro <bicatali@g.o> +jama-1.2.5.ebuild,
48 +metadata.xml:
49 Import to the main tree
50
51 02 Sep 2008; Sébastien Fabbro <bicatali@g.o> metadata.xml,
52 jama-1.2.5.ebuild:
53 Fixed for versionator and cleaning
54
55 17 Dec 2007; Sébastien Fabbro <bicatali@g.o> +metadata.xml,
56 +jama-1.2.5.ebuild:
57 Initial import
58
59
60
61
62 1.1 sci-libs/jama/jama-1.2.5.ebuild
63
64 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/jama-1.2.5.ebuild?rev=1.1&view=markup
65 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/jama/jama-1.2.5.ebuild?rev=1.1&content-type=text/plain
66
67 Index: jama-1.2.5.ebuild
68 ===================================================================
69 # Copyright 1999-2010 Gentoo Foundation
70 # Distributed under the terms of the GNU General Public License v2
71 # $Header: /var/cvsroot/gentoo-x86/sci-libs/jama/jama-1.2.5.ebuild,v 1.1 2010/02/25 06:03:43 bicatali Exp $
72
73 inherit versionator
74
75 MYP="${PN}$(replace_all_version_separators '')"
76 DOCPV=102
77
78 DESCRIPTION="Java-like matrix C++ templates"
79 HOMEPAGE="http://math.nist.gov/tnt/"
80 SRC_URI="http://math.nist.gov/tnt/${MYP}.zip
81 doc? ( http://math.nist.gov/tnt/${PN}${DOCPV}doc.zip )"
82
83 LICENSE="public-domain"
84 SLOT="0"
85 KEYWORDS="~amd64 ~x86"
86
87 IUSE="doc"
88
89 DEPEND="app-arch/unzip"
90 RDEPEND="sci-libs/tnt"
91
92 S="${WORKDIR}"
93
94 src_install() {
95 insinto /usr/include
96 doins *.h || die
97 use doc && dohtml doxygen/html/*
98 }