aboutsummaryrefslogtreecommitdiff
blob: 252ad3e42b3cafa3ce53549463adf125d382ab68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# Author Justin Lecher <jlec@gentoo.org>

# @ECLASS: fortran-2.eclass
# @MAINTAINER:
# sci@gentoo.org
# jlec@gentoo.org
# @BLURB: Packages, which need a frortran compiler should inherit this eclass.
# @DESCRIPTION:
# If you need a fortran compiler, inherit this eclass. This eclass tests for
# working fortran compilers. Optional, check for openmp capability of the
# current fortran compiler through FCOPENMP=1. Only function exported
# is pkg_setup.

# @ECLASS-VARIABLE: FCOPENMP
# @DESCRIPTION:
# If FCOPNMP=1, FC is tested for openmp capabilities
#
# Default is 0

inherit toolchain-funcs

DEPEND="virtual/fortran"
RDEPEND="${DEPEND}"

_tc-has-fortran() {
	local base="${T}/test-tc-fortran"
	cat <<- EOF > "${base}.f"
	      end
	EOF
	$(tc-getFC "$@") "${base}.f" -o "${base}" >&/dev/null
	local ret=$?
	rm -f "${base}"*
	return ${ret}
}

# See if the toolchain gfortran only supports OpenMP.
_gfortran-has-openmp() {
	[[ $(tc-getFC) != *gfortran* ]] && return 0
	local base="${T}/test-fc-openmp"
	# leave extra leading space to make sure it works on fortran 77 as well
	cat <<- EOF > "${base}.f"
       call omp_get_num_threads
       end
	EOF
	$(tc-getFC "$@") -fopenmp "${base}.f" -o "${base}" >&/dev/null
	local ret=$?
	rm -f "${base}"*
	return ${ret}
}

fortran-2_pkg_setup() {
	_tc-has-fortran || \
		 die "Please emerge the current gcc with USE=fortran or export FC defining a working fortran compiler"
	if [[ ${FCOPENMP} == 1 ]]; then
		_gfortran-has-openmp || die "Please emerge current gcc with USE=openmp"
	fi
}

EXPORT_FUNCTIONS pkg_setup