summaryrefslogtreecommitdiff
path: root/dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2023-02-03 09:10:12 +0000
committerMarek Szuba <marecki@gentoo.org>2023-02-03 09:21:26 +0000
commit69b1ec7f02ae08730ff49463f2a5336ff501a29c (patch)
tree54c2af1dad836c83863b6af2266de3b988a6d9de /dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild
parent94516bdc5a420a61f62f17fa86b25011eb07bcbf (diff)
downloadgentoo-69b1ec7f02ae08730ff49463f2a5336ff501a29c.tar.gz
gentoo-69b1ec7f02ae08730ff49463f2a5336ff501a29c.tar.bz2
gentoo-69b1ec7f02ae08730ff49463f2a5336ff501a29c.zip
dev-cpp/msgpack-cxx: not-really-new package, add 5.0.0
This used to be part of dev-libs/msgpack until upstream release 4.0.0. Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild')
-rw-r--r--dev-cpp/msgpack-cxx/msgpack-cxx-5.0.0.ebuild58
1 files changed, 58 insertions, 0 deletions
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
+}