blob: 711975eed2f5c26fd75ceae0721ad948aad23616 (
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
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit alternatives-2 cmake-utils eutils fortran-2
DESCRIPTION="Subset of LAPACK routines redesigned for heterogenous computing"
HOMEPAGE="http://www.netlib.org/scalapack/"
SRC_URI="${HOMEPAGE}/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="static-libs test"
RDEPEND="
virtual/lapack
virtual/mpi
!sci-libs/mpiblacs"
DEPEND="${RDEPEND}
virtual/pkgconfig"
src_prepare() {
# gentoo fix to avoid collision with other scalapack
sed -i \
-e 's:BINARY_DIR}/scalapack.pc:BINARY_DIR}/refscalapack.pc:g' \
CMakeLists.txt || die
use static-libs && mkdir "${WORKDIR}/${PN}_static"
# mpi does not have a pc file
sed -i -e 's/mpi//' scalapack.pc.in || die
}
src_configure() {
scalapack_configure() {
local mycmakeargs=(
-DUSE_OPTIMIZED_LAPACK_BLAS=ON
-DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
-DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
$(cmake-utils_use_build test TESTING)
$@
)
cmake-utils_src_configure
}
scalapack_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
use static-libs && \
CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" scalapack_configure \
-DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
}
src_compile() {
cmake-utils_src_compile
use static-libs && \
CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
use static-libs && \
CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" cmake-utils_src_install
insinto /usr/include/blacs
doins BLACS/SRC/*.h
insinto /usr/include/scalapack
doins PBLAS/SRC/*.h
alternatives_for scalapack reference 0 \
/usr/$(get_libdir)/pkgconfig/scalapack.pc refscalapack.pc
}
|