diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-10-07 13:10:27 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-10-07 13:10:27 +0000 |
commit | cbce5fc95343f8e363a8e9d8a009296540644743 (patch) | |
tree | 11b1b94d622770474b87af03f891c78020db4a3d /eclass | |
parent | EAPI4 - ~amd64 (diff) | |
download | gentoo-2-cbce5fc95343f8e363a8e9d8a009296540644743.tar.gz gentoo-2-cbce5fc95343f8e363a8e9d8a009296540644743.tar.bz2 gentoo-2-cbce5fc95343f8e363a8e9d8a009296540644743.zip |
Depend on virtual/fortran eclass wise, #435250
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 8 | ||||
-rw-r--r-- | eclass/fortran-2.eclass | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 434bd49d76c4..e024d838eb74 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,10 +1,16 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.429 2012/10/07 08:29:49 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.430 2012/10/07 13:10:27 jlec Exp $ 07 Oct 2012; Michał Górny <mgorny@gentoo.org> boost-utils.eclass: Fix stupid mistake in boost-utils_get_best_slot(). + 07 Oct 2012; Justin Lecher <jlec@gentoo.org> fortran-2.eclass: + Depend on virtual/fortran eclass wise, #435250 + + 07 Oct 2012; Justin Lecher <jlec@gentoo.org> fortran-2.eclass: + Give some information on selected fortran compilers + 03 Oct 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> virtualx.eclass: Unbreak EAPI=2 and 3 users of virtualx.eclass, bug #406353 diff --git a/eclass/fortran-2.eclass b/eclass/fortran-2.eclass index c9ac1b359f86..3c54445f65a5 100644 --- a/eclass/fortran-2.eclass +++ b/eclass/fortran-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.7 2012/10/07 12:06:54 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v 1.8 2012/10/07 13:10:27 jlec Exp $ # @ECLASS: fortran-2.eclass # @MAINTAINER: @@ -11,8 +11,7 @@ # Test functions provided by Sebastien Fabbro and Kacper Kowalik # @BLURB: Simplify fortran compiler management # @DESCRIPTION: -# If you need a fortran compiler, then you should be inheriting this eclass and -# adding virtual/fortran to your dependencies. +# If you need a fortran compiler, then you should be inheriting this eclass # The eclass tests for working fortran compilers # and exports the variables FC and F77. # Optionally, it checks for extended capabilities based on @@ -155,3 +154,6 @@ case ${EAPI:-0} in 0|1|2|3|4|5) EXPORT_FUNCTIONS pkg_setup ;; *) die "EAPI=${EAPI} is not supported" ;; esac + +DEPEND="virtual/fortran" +RDEPEND="${DEPEND}" |