Gentoo Archives: gentoo-commits

From: Marc van der Sluys <linux@×××××××××××.nl>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/libsufr/
Date: Sun, 04 Mar 2012 01:35:07
Message-Id: 1330824736.a562a349579b85d0b26c237e42433d49e54c2ebb.marc_van_der_sluys@gentoo
1 commit: a562a349579b85d0b26c237e42433d49e54c2ebb
2 Author: AstroFloyd <AstroFloyd <AT> gmail <DOT> com>
3 AuthorDate: Sun Mar 4 01:26:29 2012 +0000
4 Commit: Marc van der Sluys <linux <AT> vandersluys <DOT> nl>
5 CommitDate: Sun Mar 4 01:32:16 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a562a349
7
8 Added sci-libs/libsufr-0.3.2
9
10 ---
11 sci-libs/libsufr/ChangeLog | 5 +++++
12 sci-libs/libsufr/libsufr-0.3.2.ebuild | 29 +++++++++++++++++++++++++++++
13 2 files changed, 34 insertions(+), 0 deletions(-)
14
15 diff --git a/sci-libs/libsufr/ChangeLog b/sci-libs/libsufr/ChangeLog
16 index 345e21d..3f3c9df 100644
17 --- a/sci-libs/libsufr/ChangeLog
18 +++ b/sci-libs/libsufr/ChangeLog
19 @@ -2,6 +2,11 @@
20 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
21 # $Header: $
22
23 +*libsufr-0.3.2 (04 Mar 2012)
24 +
25 + 04 Mar 2012; AstroFloyd <AstroFloyd@×××××.com> +libsufr-0.3.2.ebuild:
26 + Added sci-libs/libsufr-0.3.2
27 +
28 *libsufr-0.3.1 (13 Feb 2012)
29
30 13 Feb 2012; AstroFloyd <AstroFloyd@×××××.com> +libsufr-0.3.1.ebuild,
31
32 diff --git a/sci-libs/libsufr/libsufr-0.3.2.ebuild b/sci-libs/libsufr/libsufr-0.3.2.ebuild
33 new file mode 100644
34 index 0000000..8128aa2
35 --- /dev/null
36 +++ b/sci-libs/libsufr/libsufr-0.3.2.ebuild
37 @@ -0,0 +1,29 @@
38 +# Copyright 1999-2012 Gentoo Foundation
39 +# Distributed under the terms of the GNU General Public License v2
40 +# $Header: $
41 +
42 +EAPI=4
43 +CMAKE_VERBOSE=1
44 +
45 +inherit cmake-utils fortran-2
46 +
47 +DESCRIPTION="LIBrary of Some Useful Fortran Routines"
48 +HOMEPAGE="http://libsufr.sourceforge.net/"
49 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
50 +
51 +LICENSE="GPL-3"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="static-libs"
55 +
56 +DEPEND="virtual/fortran"
57 +RDEPEND="${DEPEND}"
58 +
59 +src_configure() {
60 + mycmakeargs=(
61 + $(cmake-utils_use static-libs CREATE_STATICLIB)
62 + )
63 + cmake-utils_src_configure
64 +}
65 +
66 +DOCS="CHANGELOG INSTALL README VERSION"