blob: 334bab6275d6c49431ab1022f5ef59466203d890 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
MULTILIB_COMPAT=( abi_x86_{32,64} )
inherit multilib-build
DESCRIPTION="Virtual for Linear Algebra Package FORTRAN 77 implementation"
HOMEPAGE=""
SRC_URI=""
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc int64"
RDEPEND="
!app-eselect/eselect-lapack
|| (
>=sci-libs/lapack-reference-${PV}-r100[int64?,${MULTILIB_USEDEP}]
sci-libs/mkl[int64?,${MULTILIB_USEDEP}]
abi_x86_64? ( !abi_x86_32? ( >=sci-libs/atlas-3.9.34[lapack] ) )
)
int64? (
|| (
>=sci-libs/lapack-reference-${PV}[int64,${MULTILIB_USEDEP}]
sci-libs/mkl[int64,${MULTILIB_USEDEP}]
)
)
doc? ( >=app-doc/lapack-docs-3.3 )"
DEPEND=""
pkg_pretend() {
if [[ -e "${EROOT%/}"/usr/$(get_libdir)/lib${PN}.so ]]; then
ewarn "You have still the old ${PN} library symlink present"
ewarn "Please delete"
ewarn "${EROOT%/}/usr/$(get_libdir)/lib${PN}.so"
ewarn "to avoid problems with new ${PN} structure"
fi
}
|