diff options
author | 2022-09-01 01:57:51 +0100 | |
---|---|---|
committer | 2022-09-01 01:57:51 +0100 | |
commit | 67b7e18a754d3a945808d79093f6bd85d7f0023f (patch) | |
tree | 41f6737dddef4983ea6953ecaa3d360caaf7179d /sys-cluster/libquo/libquo-1.3.1-r2.ebuild | |
parent | sci-geosciences/xtide: fix MissingUseDepDefault (diff) | |
download | gentoo-67b7e18a754d3a945808d79093f6bd85d7f0023f.tar.gz gentoo-67b7e18a754d3a945808d79093f6bd85d7f0023f.tar.bz2 gentoo-67b7e18a754d3a945808d79093f6bd85d7f0023f.zip |
sys-cluster/libquo: fix MissingUseDepDefault
Upstream ported to newer hwloc in
https://github.com/lanl/libquo/commit/3e150fa2e66ed8674e17e2d7860b23e71dd3866b.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-cluster/libquo/libquo-1.3.1-r2.ebuild')
-rw-r--r-- | sys-cluster/libquo/libquo-1.3.1-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sys-cluster/libquo/libquo-1.3.1-r2.ebuild b/sys-cluster/libquo/libquo-1.3.1-r2.ebuild new file mode 100644 index 000000000000..e50bb9edbd6b --- /dev/null +++ b/sys-cluster/libquo/libquo-1.3.1-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +FORTRAN_NEEDED=fortran +FORTRAN_STANDARD=90 + +inherit fortran-2 + +if [ "${PV}" = "9999" ]; then + EGIT_REPO_URI="https://github.com/lanl/${PN}.git" + inherit autotools git-r3 +else + SRC_URI="https://lanl.github.io/${PN}/dists/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="Run-time tuning of process binding policies made easy" +HOMEPAGE="https://lanl.github.io/libquo/" + +LICENSE="BSD" +SLOT="0" +IUSE="fortran static-libs test" +RESTRICT="!test? ( test )" + +DEPEND=" + virtual/mpi[fortran?] + sys-process/numactl + sys-apps/hwloc:=[numa(+),xml] + " +RDEPEND="${DEPEND}" + +src_prepare() { + default + [[ ${PV} = 9999 ]] && eautoreconf +} + +src_configure() { + econf CC=mpicc FC=$(usex fortran mpif90 false) +} |