Gentoo Archives: gentoo-commits

From: Christoph Junghans <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
Date: Fri, 25 Sep 2015 22:47:25
Message-Id: 1443221225.735bc70f773e67f83453ee712048d863f938f095.ottxor@gentoo
1 commit: 735bc70f773e67f83453ee712048d863f938f095
2 Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 22:46:31 2015 +0000
4 Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 22:47:05 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=735bc70f
7
8 dev-util/f90cache: version bump (fixes #497 gh)
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-util/f90cache/ChangeLog | 5 +++++
13 dev-util/f90cache/f90cache-0.96.ebuild | 37 ++++++++++++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
17 index 533cb6e..dc24cf7 100644
18 --- a/dev-util/f90cache/ChangeLog
19 +++ b/dev-util/f90cache/ChangeLog
20 @@ -2,6 +2,11 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 +*f90cache-0.96 (25 Sep 2015)
25 +
26 + 25 Sep 2015; Christoph Junghans <ottxor@g.o> +f90cache-0.96.ebuild:
27 + dev-util/f90cache: version bump (fixes #497 gh)
28 +
29 *f90cache-0.95 (19 May 2015)
30
31 19 May 2015; Marius Brehler <marbre@××××××××××××××.de> +f90cache-0.95.ebuild:
32
33 diff --git a/dev-util/f90cache/f90cache-0.96.ebuild b/dev-util/f90cache/f90cache-0.96.ebuild
34 new file mode 100644
35 index 0000000..f7c5ab4
36 --- /dev/null
37 +++ b/dev-util/f90cache/f90cache-0.96.ebuild
38 @@ -0,0 +1,37 @@
39 +# Copyright 1999-2015 Gentoo Foundation
40 +# Distributed under the terms of the GNU General Public License v2
41 +# $Id$
42 +
43 +EAPI=5
44 +
45 +inherit fortran-2 multilib toolchain-funcs
46 +
47 +DESCRIPTION="a compiler cache for fortran"
48 +HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
49 +SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
50 +
51 +LICENSE="GPL-3"
52 +SLOT="0"
53 +KEYWORDS="~x86 ~amd64"
54 +IUSE=""
55 +
56 +DEPEND=""
57 +RDEPEND="dev-util/ccache"
58 +
59 +src_prepare() {
60 + sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
61 +}
62 +
63 +src_install() {
64 + default
65 +
66 + #we depend on ccache, put links in there so that portage find it
67 + #TODO improve this
68 + dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
69 +}
70 +
71 +pkg_postinst() {
72 + elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
73 + elog "to your make.conf otherwise f90cache files end up in"
74 + elog "home of the user executing portage"
75 +}