summaryrefslogtreecommitdiff
blob: 6ed3d0fbd20d70155d65d9d77bca2a6b5730cf35 (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit autotools toolchain-funcs

DESCRIPTION="Portable Implementation of the Linpack Benchmark for Distributed-Memory Clusters"
HOMEPAGE="http://www.netlib.org/benchmark/hpl/"
SRC_URI="http://www.netlib.org/benchmark/hpl/hpl-${PV}.tar.gz"

SLOT="0"
LICENSE="HPL"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

BDEPEND="virtual/pkgconfig"
RDEPEND="
	virtual/blas
	virtual/lapack
	virtual/mpi"
DEPEND="${RDEPEND}"

PATCHES=(
	"${FILESDIR}/${PN}-2.3-respect-AR.patch"
)

src_prepare() {
	default

	# Needed for the AR patch
	eautoreconf
}

src_install() {
	default

	doman man/man3/*.3
	dodoc testing/ptest/HPL.dat

	if use doc; then
		docinto html
		dodoc -r www/*
	fi
}

pkg_postinst() {
	einfo "Remember to copy (+ extract) ${EROOT}/usr/share/${PF}/HPL.dat.bzip2 to your working directory"
	einfo "before running xhpl. Typically one may run hpl by executing:"
	einfo "\"mpiexec -np 4 ${EROOT}/usr/bin/xhpl\""
	einfo "where -np specifies the number of processes."
}