From dc50ce612ba7a32ca77479875798989da2885437 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 3 Feb 2023 15:10:30 +0000 Subject: gentoo auto-resync : 03:02:2023 - 15:10:30 --- dev-cpp/msgpack-cxx/Manifest | 3 ++ dev-cpp/msgpack-cxx/metadata.xml | 14 +++++++ dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild | 58 ++++++++++++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 dev-cpp/msgpack-cxx/Manifest create mode 100644 dev-cpp/msgpack-cxx/metadata.xml create mode 100644 dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild (limited to 'dev-cpp/msgpack-cxx') diff --git a/dev-cpp/msgpack-cxx/Manifest b/dev-cpp/msgpack-cxx/Manifest new file mode 100644 index 000000000000..e210b49bf280 --- /dev/null +++ b/dev-cpp/msgpack-cxx/Manifest @@ -0,0 +1,3 @@ +DIST msgpack-cxx-5.0.0.tar.gz 476103 BLAKE2B e631a47e8d39b6ad9c2dd5e782fbbd5044c177e18c619fb52d1293e2c5f2ea7e766e7b26ce6cac36a2ff98217143e12456e0541992afb4f78597ffd3852f2acf SHA512 5ee0237eb1bf05bd4becad32ab145a8f0654f8f0e2e3452331ed3df088cda03ee4cdf1557ba867447e3e18baed924c105c76934f7009dac98b6dc69282c39d0c +EBUILD msgpack-cxx-5.0.0.ebuild 1196 BLAKE2B 0a9f11c8135a62b94febcd6028e94742a64eb6a3afbe8ce41cb8e4385e5f4e5b26b154442ae0c0d70610ebba011cd35467c018b989fdea3d8765ee0eb27b70f2 SHA512 f04bd145f1862731a59ad47d9fddcef6bf8fad33839cf5f3312ceef6e49982b663f24dca5e0f4930904046ee139b802e06601e3a495a9ddced4a8285b1ba89ad +MISC metadata.xml 410 BLAKE2B 2d8ac30a8aa745f32a388a0d66860d2af8de8bdc0e558b713738def49ec87e96b5ee201c4b2cd01f43f213ffd9f107cfcf9679725637f43ec7eed707ada87c69 SHA512 2009980f9bd56a3932a9f0ce56745439c0d29241bc11f3b8c0b2e26fc5a3f74ef9c7784165ed25e6280de4d1ee27e57ff225a5986522e51f50cc03e793625b4a diff --git a/dev-cpp/msgpack-cxx/metadata.xml b/dev-cpp/msgpack-cxx/metadata.xml new file mode 100644 index 000000000000..7d2a4745c20f --- /dev/null +++ b/dev-cpp/msgpack-cxx/metadata.xml @@ -0,0 +1,14 @@ + + + + + vim@gentoo.org + Gentoo Vim Project + + + Enable boost support + + + msgpack/msgpack-c + + diff --git a/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild b/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild new file mode 100644 index 000000000000..0cc922cfef81 --- /dev/null +++ b/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="MessagePack for C++" +HOMEPAGE="https://msgpack.org/ https://github.com/msgpack/msgpack-c/" +SRC_URI="https://github.com/msgpack/msgpack-c/releases/download/cpp-${PV}/${P}.tar.gz" + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="+boost doc examples test" + +REQUIRED_USE="test? ( boost )" + +RESTRICT="!test? ( test )" + +RDEPEND="boost? ( dev-libs/boost[context] )" +DEPEND="${RDEPEND}" +BDEPEND="doc? ( app-doc/doxygen[dot] ) + test? ( sys-libs/zlib )" + +src_configure() { + local mycmakeargs=( + -DMSGPACK_BUILD_EXAMPLES=OFF + -DMSGPACK_CXX17=ON + -DMSGPACK_BUILD_TESTS="$(usex test)" + -DMSGPACK_USE_BOOST="$(usex boost)" + -DMSGPACK_USE_X3_PARSE="$(usex boost)" + ) + + cmake_src_configure +} + +src_compile() { + cmake_src_compile + + if use doc; then + cmake_build doxygen + fi +} + +src_install() { + if use doc; then + local HTML_DOCS=( "${BUILD_DIR}"/doc_cpp/html/. ) + fi + + if use examples; then + docinto examples + dodoc -r example/. + docompress -x /usr/share/doc/${PF}/examples + fi + + cmake_src_install +} -- cgit v1.2.3