mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
dev-cpp/workflow: fix DEPEND and RDEPEND
Closes: https://bugs.gentoo.org/861062 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
42
dev-cpp/workflow/workflow-0.10.2-r1.ebuild
Normal file
42
dev-cpp/workflow/workflow-0.10.2-r1.ebuild
Normal file
@@ -0,0 +1,42 @@
|
||||
# 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/.
|
||||
}
|
||||
Reference in New Issue
Block a user