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.
gentoo-overlay/dev-cpp/xsimd/xsimd-11.1.0-r1.ebuild

59 lines
1015 B

# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ wrappers for SIMD intrinsics"
HOMEPAGE="https://github.com/xtensor-stack/xsimd"
SRC_URI="https://github.com/xtensor-stack/${PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~sparc ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
BDEPEND="
doc? (
app-doc/doxygen
dev-python/breathe
dev-python/sphinx
dev-python/sphinx-rtd-theme
)
test? ( dev-cpp/doctest )"
PATCHES=(
"${FILESDIR}"/${P}-c++17.patch
"${FILESDIR}"/${PN}-11.1.0-no-march.patch
)
src_prepare() {
sed -i \
-e '/fPIC/d' \
test/CMakeLists.txt \
|| die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DBUILD_TESTS=$(usex test)
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
use doc && emake -C docs html
}
src_install() {
cmake_src_install
if use doc; then
dodoc -r docs/build/html
fi
}