guru/dev-cpp/workflow/workflow-9999.ebuild
Aisha Tammy 0158112212
dev-cpp/workflow: fix DEPEND and RDEPEND
Closes: https://bugs.gentoo.org/861062

Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
2022-08-14 14:08:57 +00:00

43 lines
769 B
Bash

# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ Parallel Computing and Asynchronous Networking Engine"
HOMEPAGE="https://github.com/sogou/workflow"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sogou/workflow"
else
SRC_URI="https://github.com/sogou/workflow/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="Apache-2.0"
SLOT="0"
RDEPEND="
dev-libs/openssl:0=
"
DEPEND="${RDEPEND}
dev-cpp/gtest
"
PATCHES=(
"${FILESDIR}/workflow-0.10.2-enable-tests.patch"
)
src_prepare() {
cmake_src_prepare
mkdir docs/cn || die
mv docs/*.md docs/cn || die
}
src_install() {
cmake_src_install
dodoc -r docs/.
}