commit: f71faa99a9c06babb9def382a9fa2d4a08149f15 Author: Peter Levine <plevine457 <AT> gmail <DOT> com> AuthorDate: Wed Feb 8 02:10:56 2023 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Thu Feb 9 15:13:34 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71faa99
dev-libs/crc32c: fix building against dev-cpp/gtest-1.13.0 Closes: https://bugs.gentoo.org/893346 Closes: https://github.com/gentoo/gentoo/pull/29475 Signed-off-by: Peter Levine <plevine457 <AT> gmail.com> Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> dev-libs/crc32c/crc32c-1.1.2-r2.ebuild | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/dev-libs/crc32c/crc32c-1.1.2-r2.ebuild b/dev-libs/crc32c/crc32c-1.1.2-r2.ebuild new file mode 100644 index 000000000000..3eddf42a6270 --- /dev/null +++ b/dev-libs/crc32c/crc32c-1.1.2-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="CRC32C implementation with support for CPU-specific acceleration instructions" +HOMEPAGE="https://github.com/google/crc32c" +SRC_URI="https://github.com/google/crc32c/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-cpp/gtest )" + +PATCHES=( + "${FILESDIR}/${PN}-1.1.1-system-testdeps.patch" +) + +DOCS=( README.md ) + +src_prepare() { + sed -e '/-Werror/d' \ + -e '/-march=armv8/d' \ + -i CMakeLists.txt || die + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DCMAKE_CXX_STANDARD=14 # C++14 or later required for >=gtest-1.13.0 + -DCRC32C_BUILD_TESTS=$(usex test) + -DCRC32C_BUILD_BENCHMARKS=OFF + -DCRC32C_USE_GLOG=OFF + ) + + cmake_src_configure +}
