# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 PYTHON_COMPAT=( python3_{13,14} ) inherit cmake git-r3 python-any-r1 DESCRIPTION="Client library written in C for MongoDB" HOMEPAGE="https://github.com/mongodb/mongo-c-driver" EGIT_REPO_URI="https://github.com/mongodb/${PN}.git" LICENSE="Apache-2.0" SLOT="0" IUSE="aws debug sasl snappy +ssl static-libs test zlib zstd" REQUIRED_USE="aws? ( ssl ) test? ( static-libs )" RESTRICT="!test? ( test )" RDEPEND=">=dev-libs/libbson-${PV}[static-libs?] >=dev-libs/libmongocrypt-1.15.1 dev-libs/libutf8proc[static-libs?] sasl? ( dev-libs/cyrus-sasl:2 ) snappy? ( app-arch/snappy:0= ) ssl? ( dev-libs/openssl:= ) zlib? ( sys-libs/zlib:0= ) zstd? ( app-arch/zstd:0= )" BDEPEND="virtual/pkgconfig test? ( $(python_gen_any_dep 'dev-python/jinja2[${PYTHON_USEDEP}] dev-python/legacy-cgi[${PYTHON_USEDEP}]') )" pkg_setup() { use test && python-any-r1_pkg_setup } src_prepare() { # remove doc files, build test and not fail on system wide libbson sed -i -e '/^\s*install\s*(FILES COPYING NEWS/,/^\s*)/ {d}' \ -e '/SET (ENABLE_TESTS OFF)/d' \ -e '/System libbson built without static/s|FATAL_ERROR|STATUS|' \ CMakeLists.txt || die "sed failed for CMakeLists.txt" cmake_src_prepare } src_configure() { local mycmakeargs=( -DENABLE_CLIENT_SIDE_ENCRYPTION=ON -DENABLE_EXAMPLES=OFF -DENABLE_MONGODB_AWS_AUTH="$(usex aws ON OFF)" -DENABLE_SASL="$(usex sasl CYRUS OFF)" -DENABLE_SNAPPY="$(usex snappy ON OFF)" -DENABLE_SSL="$(usex ssl OPENSSL OFF)" -DENABLE_STATIC="$(usex static-libs ON OFF)" -DENABLE_TESTS="$(usex test ON OFF)" -DENABLE_TRACING="$(usex debug ON OFF)" -DENABLE_UNINSTALL=OFF -DENABLE_ZLIB="$(usex zlib SYSTEM OFF)" -DENABLE_ZSTD="$(usex zstd ON OFF)" -DUSE_BUNDLED_UTF8PROC=OFF -DUSE_SYSTEM_LIBBSON=ON ) cmake_src_configure } src_test() { cat > "${S}"/skip-test.txt <