gentoo/dev-cpp/highway/highway-1.3.0.ebuild
Daniel Novomeský cde825bb94
dev-cpp/highway: add 1.3.0
[sam: Mention bug #960548 as this release has a workaround for it.]

Bug: https://bugs.gentoo.org/960548
Closes: https://bugs.gentoo.org/963744
Signed-off-by: Daniel Novomeský <dnovomesky@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44334
Closes: https://github.com/gentoo/gentoo/pull/44334
Signed-off-by: Sam James <sam@gentoo.org>
2025-10-25 22:11:37 +01:00

39 lines
965 B
Bash

# Copyright 2021-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake-multilib
DESCRIPTION="Performance-portable, length-agnostic SIMD with runtime dispatch"
HOMEPAGE="https://github.com/google/highway"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/google/highway.git"
else
SRC_URI="https://github.com/google/highway/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
fi
LICENSE="Apache-2.0"
SLOT="0"
IUSE="cpu_flags_arm_neon test"
DEPEND="test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )"
RESTRICT="!test? ( test )"
multilib_src_configure() {
local mycmakeargs=(
-DHWY_CMAKE_ARM7=$(usex cpu_flags_arm_neon)
-DBUILD_TESTING=$(usex test)
-DHWY_ENABLE_TESTS=$(usex test)
-DHWY_WARNINGS_ARE_ERRORS=OFF
)
use test && mycmakeargs+=( "-DHWY_SYSTEM_GTEST=ON" )
cmake_src_configure
}