guru/dev-libs/zfp/zfp-1.0.1.ebuild
Lucio Sauer 89e81076ba
dev-libs/*: fix variable order
Manually went through some entries for `pkgcheck scan -c
VariableOrderCheck`.

Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Julien Roy <julien@jroy.ca>
2024-05-13 18:18:19 -04:00

83 lines
2.0 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
#DOCS_BUILDER="sphinx"
#DOCS_DIR="docs/source"
PYTHON_COMPAT=( python3_{10..12} )
inherit cmake fortran-2 python-single-r1 #docs
DESCRIPTION="Compressed numerical arrays that support high-speed random access"
HOMEPAGE="
https://computing.llnl.gov/projects/zfp
https://zfp.io
https://github.com/LLNL/ZFP
"
SRC_URI="https://github.com/LLNL/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="aligned cfp fasthash examples fortran openmp profile python strided test twoway +utilities" #doc cuda
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
RESTRICT="!test? ( test )"
RDEPEND="python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}"
BDEPEND="utilities? ( app-admin/chrpath )"
pkg_setup() {
FORTRAN_NEED_OPENMP=0
use openmp && FORTRAN_NEED_OPENMP=1
use fortran && fortran-2_pkg_setup
python-single-r1_pkg_setup
}
src_configure() {
#I can't test for cuda stuff
#-DZFP_WITH_CUDA=$(usex cuda)
local mycmakeargs=(
-DBUILD_CFP=$(usex cfp)
-DBUILD_EXAMPLES=$(usex examples)
-DBUILD_TESTING=$(usex test)
-DBUILD_UTILITIES=$(usex utilities)
-DBUILD_ZFORP=$(usex fortran)
-DBUILD_ZFPY=$(usex python)
-DZFP_WITH_ALIGNED_ALLOC=$(usex aligned)
-DZFP_WITH_BIT_STREAM_STRIDED=$(usex strided)
-DZFP_WITH_CACHE_FAST_HASH=$(usex fasthash)
-DZFP_WITH_CACHE_PROFILE=$(usex profile)
-DZFP_WITH_CACHE_TWOWAY=$(usex twoway)
-DZFP_WITH_OPENMP=$(usex openmp)
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
#docs only available starting from the next release
#docs_compile
}
src_install() {
cmake_src_install
use python && python_optimize "${D}/$(python_get_sitedir)"
use test && rm "${BUILD_DIR}/bin/testzfp"
if use utilities; then
pushd "${BUILD_DIR}/bin" || die
dobin zfp
rm zfp
popd || die
chrpath -d "${ED}/usr/bin/zfp" || die
fi
if use examples; then
pushd "${BUILD_DIR}/bin" || die
exeinto "/usr/libexec/zfp"
doexe *
chrpath -d "${ED}"/usr/libexec/zfp/* || die
fi
}