guru/sys-libs/iceoryx/iceoryx-2.0.3.ebuild
Takuya Wakazono ec4d1b0c2f
*/*: move {app-doc → app-text}/doxygen
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
2024-01-13 12:18:38 +09:00

56 lines
1.1 KiB
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/eclipse-iceoryx/iceoryx"
inherit git-r3
else
SRC_URI="https://github.com/eclipse-iceoryx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Eclipse Iceoryx zero copy IPC"
HOMEPAGE="https://iceoryx.io"
LICENSE="Apache-2.0"
SLOT="0/$(ver_cut 1-2)"
IUSE="test doc examples ccache"
# restricted because itt violates network sandbox
# In next version wee can use GTest_DIR to skip downloading gtest from github
RESTRICT="test"
RDEPEND=(
"doc? ( app-text/doxygen )"
"dev-cpp/cpptoml"
"ccache? ( dev-util/ccache )"
)
DEPEND="${RDEPEND[@]}"
src_prepare() {
CMAKE_USE_DIR=${S}/${PN}_meta
BUILD_DIR="${S}_build"
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DBUILD_DOC= $(usex doc)
-DBUILD_ALL=OFF
-DBINDING_C=ON
-DEXAMPLES=$(usex examples)
-DBUILD_TEST=OFF
-DCLANG_TIDY=OFF
-DDOWNLOAD_TOML_LIB=OFF
-DCMAKE_MODULE_PATH="/usr/lib/cmake/cpptoml"
-DCCACHE=$(usex ccache)
)
cmake_src_configure
}