From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 557CE138CD5 for ; Sat, 23 May 2015 15:53:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C911E0A9F; Sat, 23 May 2015 15:53:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1959CE0A9F for ; Sat, 23 May 2015 15:53:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68B2A340D46 for ; Sat, 23 May 2015 15:53:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBF629F9 for ; Sat, 23 May 2015 15:53:01 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1432020720.fd3a64680d8762571179527265cc4c0422c9492a.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/ X-VCS-Repository: proj/sci X-VCS-Files: dev-util/f90cache/ChangeLog dev-util/f90cache/f90cache-0.95.ebuild X-VCS-Directories: dev-util/f90cache/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: fd3a64680d8762571179527265cc4c0422c9492a X-VCS-Branch: master Date: Sat, 23 May 2015 15:53:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a73a6162-0b29-4ee1-8448-9e53f46cdfe4 X-Archives-Hash: 2cb8d7eb943b1ada97a32430fca2b027 commit: fd3a64680d8762571179527265cc4c0422c9492a Author: Marius Brehler linux sungazer de> AuthorDate: Tue May 19 07:32:00 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue May 19 07:32:00 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fd3a6468 dev-util/f90cache: Version bump Package-Manager: portage-2.2.18 dev-util/f90cache/ChangeLog | 7 ++++++- dev-util/f90cache/f90cache-0.95.ebuild | 38 ++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog index 4b14c0a..6994547 100644 --- a/dev-util/f90cache/ChangeLog +++ b/dev-util/f90cache/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-util/f90cache -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*f90cache-0.95 (19 May 2015) + + 19 May 2015; Marius Brehler +f90cache-0.95.ebuild: + Version bump + *f90cache-0.94 (24 Dec 2012) 24 Dec 2012; Christoph Junghans +f90cache-0.94.ebuild, diff --git a/dev-util/f90cache/f90cache-0.95.ebuild b/dev-util/f90cache/f90cache-0.95.ebuild new file mode 100644 index 0000000..43e04c2 --- /dev/null +++ b/dev-util/f90cache/f90cache-0.95.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit fortran-2 multilib toolchain-funcs + +DESCRIPTION="a compiler cache for fortran" +HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/" +SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="dev-util/ccache" + +src_prepare() { + sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die +} + +src_install() { + default + dohtml web/* + + #we depend on ccache, put links in there so that portage fined it + #TODO improve this + dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran" +} + +pkg_postinst() { + elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\"" + elog "to your make.conf otherwise f90cache files end up in" + elog "home of the user executing portage" +}