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 67C7D13838B for ; Tue, 14 Oct 2014 11:30:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9541E089C; Tue, 14 Oct 2014 11:30:56 +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 9DD94E089C for ; Tue, 14 Oct 2014 11:30:56 +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 BBFF8340149 for ; Tue, 14 Oct 2014 11:30:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 787237CF3 for ; Tue, 14 Oct 2014 11:30:54 +0000 (UTC) From: "Mark Wright" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mark Wright" Message-ID: <1413286234.0777313ce8b22151a2878c5aa5cc542978df8bd3.gienah@gentoo> Subject: [gentoo-commits] proj/sci:int64-build-eclass commit in: eclass/ X-VCS-Repository: proj/sci X-VCS-Files: eclass/fortran-int64.eclass X-VCS-Directories: eclass/ X-VCS-Committer: gienah X-VCS-Committer-Name: Mark Wright X-VCS-Revision: 0777313ce8b22151a2878c5aa5cc542978df8bd3 X-VCS-Branch: int64-build-eclass Date: Tue, 14 Oct 2014 11:30:54 +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: f78c8dee-cfa6-4430-8507-68cc48e0600a X-Archives-Hash: c7d248dd78ab5f9778c2848f78e9c5d8 commit: 0777313ce8b22151a2878c5aa5cc542978df8bd3 Author: gienah gentoo org> AuthorDate: Tue Oct 14 11:30:34 2014 +0000 Commit: Mark Wright gentoo org> CommitDate: Tue Oct 14 11:30:34 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0777313c Thanks to jlec for reviewing, add missing documentation for EBASE_PROFNAME in fortran-int64.eclass. --- eclass/fortran-int64.eclass | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/eclass/fortran-int64.eclass b/eclass/fortran-int64.eclass index ea46d0c..9ec510c 100644 --- a/eclass/fortran-int64.eclass +++ b/eclass/fortran-int64.eclass @@ -25,13 +25,25 @@ esac inherit multilib-build toolchain-funcs # @ECLASS-VARIABLE: EBASE_PROFNAME -# @DESCRIPTION: +# @DESCRIPTION: The base pkg-config module name of the package being built. +# EBASE_PROFNAME is used by the fortran-int64_get_profname function to +# determine the pkg-config module name based on whether the package +# has dynamic, threads or openmp USE flags and if so, if the user has +# turned them or, and if the current multibuild is a int64 build or not. +# @CODE +# EBASE_PROFNAME="openblas" +# inherit ... fortran-int64 +# @CODE : ${EBASE_PROFNAME:=blas} # @ECLASS-VARIABLE: ESTATIC_MULTIBUILD # @DEFAULT_UNSET # @DESCRIPTION: # If this is set, then do separate static multibuilds. +# @CODE +# ESTATIC_MULTIBUILD=1 +# inherit ... fortran-int64 +# @CODE INT64_SUFFIX="int64" STATIC_SUFFIX="static"