diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2021-10-06 10:15:43 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2021-10-06 10:31:40 +0200 |
commit | 3431a557b857bfd5d3634ce2b709c7afd46a2b8f (patch) | |
tree | f711270762da90bc1d8d64068253a65985b28cec /sci-libs/ginkgo | |
parent | sci-libs/ginkgo: Port to EAPI-8 and cmake.eclass (diff) | |
download | gentoo-3431a557b857bfd5d3634ce2b709c7afd46a2b8f.tar.gz gentoo-3431a557b857bfd5d3634ce2b709c7afd46a2b8f.tar.bz2 gentoo-3431a557b857bfd5d3634ce2b709c7afd46a2b8f.zip |
sci-libs/ginkgo: Remove broken live ebuild
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'sci-libs/ginkgo')
-rw-r--r-- | sci-libs/ginkgo/ginkgo-9999.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/sci-libs/ginkgo/ginkgo-9999.ebuild b/sci-libs/ginkgo/ginkgo-9999.ebuild deleted file mode 100644 index 6d9b7f42768c..000000000000 --- a/sci-libs/ginkgo/ginkgo-9999.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="Numerical linear algebra software package" -HOMEPAGE="https://ginkgo-project.github.io/" - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="https://github.com/ginkgo-project/ginkgo" - SRC_URI="" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}-project/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="BSD-with-attribution" -SLOT="0" -IUSE="+openmp cuda" - -RDEPEND=" - cuda? ( dev-util/nvidia-cuda-sdk )" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.1.1-set_soname.patch -) - -pkg_setup() { - if [[ ${MERGE_TYPE} != binary ]] && \ - use openmp && ! tc-has-openmp ; then - die "Need an OpenMP capable compiler" - fi -} - -src_prepare() { - sed -i \ - -e "s#\"lib\"#\"$(get_libdir)\"#g" \ - -e "s#\"lib/#\"$(get_libdir)/#g" \ - cmake/install_helpers.cmake || die "sed failed" - - cmake-utils_src_prepare -} - -src_configure() { - - local mycmakeargs=( - -DGINKGO_DEVEL_TOOLS=OFF - -DGINKGO_BUILD_TESTS=OFF - -DGINKGO_BUILD_BENCHMARKS=OFF - -DGINKGO_BUILD_REFERENCE=ON - -DGINKGO_BUILD_OMP="$(usex openmp)" - -DGINKGO_BUILD_CUDA="$(usex cuda)" - ) - cmake-utils_src_configure -} |