Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/amd: ChangeLog amd-2.2.1.ebuild
Date: Sun, 31 Oct 2010 12:01:08
Message-Id: 20101031120101.0F97920051@flycatcher.gentoo.org
1 jlec 10/10/31 12:01:01
2
3 Modified: ChangeLog
4 Added: amd-2.2.1.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.20 sci-libs/amd/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/amd/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/amd/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/amd/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/amd/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 9 Jul 2010 10:13:00 -0000 1.19
24 +++ ChangeLog 31 Oct 2010 12:01:00 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-libs/amd
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/ChangeLog,v 1.19 2010/07/09 10:13:00 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/ChangeLog,v 1.20 2010/10/31 12:01:00 jlec Exp $
30 +
31 +*amd-2.2.1 (31 Oct 2010)
32 +
33 + 31 Oct 2010; Justin Lecher <jlec@g.o> +amd-2.2.1.ebuild:
34 + Version Bump
35
36 09 Jul 2010; Samuli Suominen <ssuominen@g.o> amd-2.2.0.ebuild:
37 ppc64 stable wrt #318649
38
39
40
41 1.1 sci-libs/amd/amd-2.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/amd/amd-2.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/amd/amd-2.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: amd-2.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/amd-2.2.1.ebuild,v 1.1 2010/10/31 12:01:00 jlec Exp $
51
52 EAPI="3"
53
54 inherit autotools eutils fortran
55
56 FORTRAN="gfortran ifc"
57
58 MY_PN=AMD
59
60 DESCRIPTION="Library to order a sparse matrix prior to Cholesky factorization"
61 HOMEPAGE="http://www.cise.ufl.edu/research/sparse/amd"
62 SRC_URI="http://www.cise.ufl.edu/research/sparse/${PN}/${MY_PN}-${PV}.tar.gz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
67 IUSE="doc"
68
69 RDEPEND="sci-libs/ufconfig"
70 DEPEND="${RDEPEND}"
71
72 S="${WORKDIR}/${MY_PN}"
73
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-2.2.0-autotools.patch
77 eautoreconf
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install || die "emake install failed"
82 dodoc README.txt Doc/ChangeLog || die "dodoc failed"
83 if use doc; then
84 insinto /usr/share/doc/${PF}
85 doins Doc/AMD_UserGuide.pdf || die "doc install failed"
86 fi
87 }