# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit lomiri

if [[ ${PV} == 9999 ]]; then
    KEYWORDS=""
    EGIT_REPO_URI="https://gitlab.com/ubports/development/core/lib-cpp/${PN}.git"
    inherit git-r3
else
    KEYWORDS="~amd64"
    SRC_URI="https://gitlab.com/ubports/development/core/lib-cpp/${PN}/-/archive/${PV}/${P}.tar.gz"
fi

DESCRIPTION="C++11 library for handling processes"
HOMEPAGE="https://gitlab.com/ubports/development/core/lib-cpp/${PN}"
LICENSE="GPL-3"
SLOT="0"
RESTRICT="test mirror"

DEPEND="
    dev-libs/properties-cpp
"

RDEPEND="${DEPEND}"

BDEPEND="
    dev-build/cmake
    dev-build/cmake-extras
    dev-libs/boost
"

src_prepare() {
    # remove hard coded enabling of tests
    sed -i "/include(CTest)/d" CMakeLists.txt  || die
    sed -i "/add_subdirectory(tests)/d" CMakeLists.txt  || die

    #remove hard coded generation of docs
    sed -i "/add_subdirectory(doc)/d" CMakeLists.txt  || die

    lomiri_src_prepare
}