dev-libs/libbson - 9999 (nest)

Search

Install

Install this version:

emerge -a =dev-libs/libbson-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-libs/libbson-9999

Or alternatively:

emerge --autounmask-write -a =dev-libs/libbson-9999

Package Information

Description:
Library routines related to building,parsing and iterating BSON documents
Homepage:
https://github.com/mongodb/mongo-c-driver/tree/master/src/libbson
License:
Apache-2.0

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 1999-2026 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="Library routines related to building,parsing and iterating BSON documents"
HOMEPAGE="https://github.com/mongodb/mongo-c-driver/tree/master/src/libbson"
EGIT_REPO_URI="https://github.com/mongodb/mongo-c-driver.git"

LICENSE="Apache-2.0"
SLOT="0"
IUSE="static-libs test"
RESTRICT="test" # tests need exact version of libbson

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() {
	cmake_src_prepare

	# remove doc files
	sed -i '/^\s*install\s*(FILES COPYING NEWS/,/^\s*)/ {d}' CMakeLists.txt \
		|| die "sed failed"
}

src_configure() {
	local mycmakeargs=(
		-DENABLE_EXAMPLES=OFF
		-DENABLE_MONGOC=OFF
		-DENABLE_STATIC="$(usex static-libs ON OFF)"
		-DENABLE_TESTS=OFF
		-DENABLE_UNINSTALL=OFF
	)
	cmake_src_configure
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-libs/libbson | euse -E <flag> -p dev-libs/libbson | euse -D <flag> -p dev-libs/libbson

Global/Standard Flags

Inherited Eclasses

Dependencies

BDEPEND

virtual/pkgconfig
	test? ( $(python_gen_any_dep 'dev-python/jinja2[]
			dev-python/legacy-cgi[]') )