mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
by applying the upstream patch to expand the glob. Affter the minimum required CMake version was raised from 2.8 to 3.5 in the last commit, Ninja reports: > ninja: error: 'doc/Doxyfile*', needed by 'doc/html', missing and no known rule to make it Closes: https://bugs.gentoo.org/956433 Signed-off-by: Z. Liu <zhixu.liu@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/42735 Closes: https://github.com/gentoo/gentoo/pull/42735 Signed-off-by: Sam James <sam@gentoo.org>
62 lines
1.6 KiB
Bash
62 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="A fast JSON parser/generator for C++ with both SAX/DOM style API"
|
|
HOMEPAGE="https://rapidjson.org/"
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
EGIT_REPO_URI="https://github.com/miloyip/rapidjson.git"
|
|
EGIT_SUBMODULES=()
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/miloyip/rapidjson/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
S="${WORKDIR}/rapidjson-${PV}"
|
|
fi
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
IUSE="doc examples test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="
|
|
doc? ( app-text/doxygen )
|
|
test? ( dev-cpp/gtest )
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-gcc-7.patch"
|
|
"${FILESDIR}/${P}-system_gtest.patch"
|
|
"${FILESDIR}/${P}-valgrind_optional.patch"
|
|
"${FILESDIR}/${P}-gcc14-const.patch"
|
|
"${FILESDIR}/${P}-cmake4.patch"
|
|
"${FILESDIR}/${P}-doc-build.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
sed -i -e 's| -march=native||g' CMakeLists.txt || die
|
|
sed -i -e 's| -Werror||g' CMakeLists.txt example/CMakeLists.txt test/unittest/CMakeLists.txt || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DDOC_INSTALL_DIR="${EPREFIX}/usr/share/doc/${PF}"
|
|
-DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)"
|
|
-DRAPIDJSON_BUILD_CXX11=OFF # latest gtest requires C++14 or later
|
|
-DRAPIDJSON_BUILD_DOC=$(usex doc)
|
|
-DRAPIDJSON_BUILD_EXAMPLES=$(usex examples)
|
|
-DRAPIDJSON_BUILD_TESTS=$(usex test)
|
|
-DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF
|
|
)
|
|
use test && mycmakeargs+=(
|
|
-DVALGRIND_EXECUTABLE=
|
|
)
|
|
cmake_src_configure
|
|
}
|