commit:     8f0f8e145c8d9f2cf52725ecc1d7b7a4f3977239
Author:     Anssi Jaatinen <hofnarr <AT> hofnarr <DOT> fi>
AuthorDate: Fri May  8 06:58:30 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue May 12 13:57:13 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f0f8e14

dev-libs/json-c: add live ebuild

Signed-off-by: Anssi Jaatinen <hofnarr <AT> hofnarr.fi>
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Luka Perkov <luka.perkov <AT> sartura.hr>
Closes: https://github.com/gentoo/gentoo/pull/15586
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-libs/json-c/json-c-9999.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/dev-libs/json-c/json-c-9999.ebuild 
b/dev-libs/json-c/json-c-9999.ebuild
new file mode 100644
index 00000000000..eac441be4e7
--- /dev/null
+++ b/dev-libs/json-c/json-c-9999.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+CMAKE_ECLASS=cmake
+inherit cmake-multilib git-r3
+
+DESCRIPTION="A JSON implementation in C"
+HOMEPAGE="https://github.com/json-c/json-c/wiki";
+EGIT_REPO_URI="https://github.com/json-c/json-c.git";
+
+LICENSE="MIT"
+SLOT="0/5"
+IUSE="doc static-libs threads"
+
+MULTILIB_WRAPPED_HEADERS=(
+       /usr/include/json-c/config.h
+)
+
+src_prepare() {
+       cmake_src_prepare
+}
+
+multilib_src_configure() {
+       local mycmakeargs=(
+               -DBUILD_DOCUMENTATION=$(multilib_native_usex doc)
+               -DDISABLE_WERROR=ON
+               -DENABLE_THREADING=$(usex threads)
+               -DBUILD_STATIC_LIBS=$(usex static-libs)
+       )
+
+       cmake_src_configure
+}
+
+multilib_src_compile() {
+       cmake_src_compile
+}
+
+multilib_src_test() {
+       multilib_is_native_abi && cmake_src_test
+}
+
+multilib_src_install_all() {
+       use doc && HTML_DOCS=( "${S}"/doc/html/. )
+       einstalldocs
+}

Reply via email to