You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
878 B
42 lines
878 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit epatch fortran-2 flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Conjugate gradient Codes for large sparse linear systems"
|
|
HOMEPAGE="http://fetk.org/codes/cgcode/index.html"
|
|
SRC_URI="http://www.fetk.org/codes/download/${P}.tar.gz"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
|
|
LICENSE="GPL-2"
|
|
IUSE=""
|
|
|
|
RDEPEND="virtual/blas"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
S="${WORKDIR}"/${PN}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PV}-gentoo.patch
|
|
|
|
# GCC 10 workaround
|
|
# bug #722000
|
|
append-fflags $(test-flags-FC -fallow-argument-mismatch)
|
|
|
|
cat >> make.inc <<- EOF
|
|
F77 = $(tc-getFC)
|
|
FFLAGS = ${FFLAGS}
|
|
BLASLIBS = $($(tc-getPKG_CONFIG) --libs blas)
|
|
EOF
|
|
}
|
|
|
|
src_install() {
|
|
dobin goos good
|
|
dolib.so src/lib${PN}.so*
|
|
dodoc INTRODUCTION NOTE README
|
|
}
|