49 lines
1.1 KiB
Bash
49 lines
1.1 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Library routines related to building,parsing and iterating BSON documents"
|
|
HOMEPAGE="https://github.com/mongodb/mongo-c-driver/tree/master/src/libbson"
|
|
SRC_URI="https://github.com/mongodb/mongo-c-driver/archive/refs/tags/${PV}.tar.gz -> mongo-c-driver-${PV}.tar.gz"
|
|
S="${WORKDIR}/mongo-c-driver-${PV}"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~hppa ~loong ~ppc ~riscv ~sparc ~x86"
|
|
IUSE="examples static-libs"
|
|
|
|
BDEPEND="dev-python/sphinx"
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
# remove doc files
|
|
sed -i '/^\s*install\s*(FILES COPYING NEWS/,/^\s*)/ {d}' CMakeLists.txt || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DENABLE_BSON=ON
|
|
-DENABLE_EXAMPLES=OFF
|
|
-DENABLE_MAN_PAGES=ON
|
|
-DENABLE_MONGOC=OFF
|
|
-DENABLE_TESTS=OFF
|
|
-DENABLE_STATIC="$(usex static-libs ON OFF)"
|
|
-DENABLE_UNINSTALL=OFF
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
if use examples; then
|
|
docinto examples
|
|
dodoc src/libbson/examples/*.c
|
|
fi
|
|
|
|
cmake_src_install
|
|
}
|