diff options
author | 2023-08-27 05:37:33 +0300 | |
---|---|---|
committer | 2023-08-27 12:18:51 +0200 | |
commit | c0260aab9b0c75a9e1cc12beb6e99825fc779333 (patch) | |
tree | 3a5ffaf28a501b5cc601955753d5c6ea105518bf /dev-libs/json-c/json-c-0.17.ebuild | |
parent | dev-ruby/oauth: Keyword 0.6.2-r1 riscv, #913034 (diff) | |
download | gentoo-c0260aab9b0c75a9e1cc12beb6e99825fc779333.tar.gz gentoo-c0260aab9b0c75a9e1cc12beb6e99825fc779333.tar.bz2 gentoo-c0260aab9b0c75a9e1cc12beb6e99825fc779333.zip |
dev-libs/json-c: add 0.17
* Documentation is prebuilt in tarball, so doc use flag and doxygen bdep
are redundant.
Closes: https://bugs.gentoo.org/912232
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-libs/json-c/json-c-0.17.ebuild')
-rw-r--r-- | dev-libs/json-c/json-c-0.17.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-libs/json-c/json-c-0.17.ebuild b/dev-libs/json-c/json-c-0.17.ebuild new file mode 100644 index 000000000000..9d4e9b6e31a6 --- /dev/null +++ b/dev-libs/json-c/json-c-0.17.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake-multilib + +DESCRIPTION="A JSON implementation in C" +HOMEPAGE="https://github.com/json-c/json-c/wiki" +SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/5" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="cpu_flags_x86_rdrand static-libs threads" + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/json-c/config.h +) + +multilib_src_configure() { + local mycmakeargs=( + # apps are not installed, so disable unconditionally. + # https://github.com/json-c/json-c/blob/json-c-0.17-20230812/apps/CMakeLists.txt#L119...L121 + -DBUILD_APPS=OFF + -DBUILD_STATIC_LIBS=$(usex static-libs) + -DDISABLE_EXTRA_LIBS=ON + -DDISABLE_WERROR=ON + -DENABLE_RDRAND=$(usex cpu_flags_x86_rdrand) + -DENABLE_THREADING=$(usex threads) + ) + + cmake_src_configure +} + +multilib_src_test() { + multilib_is_native_abi && cmake_src_test +} + +multilib_src_install_all() { + HTML_DOCS=( "${S}"/doc/html/. ) + einstalldocs +} |