diff options
| author | Matthias Maier <tamiko@gentoo.org> | 2022-05-17 22:05:20 -0500 |
|---|---|---|
| committer | Matthias Maier <tamiko@gentoo.org> | 2022-05-17 22:25:37 -0500 |
| commit | ebd5cbef870caf4412a7209ab8f82aebbbb26a07 (patch) | |
| tree | 8c369edfab45b6183e042124c2bdc64d3370637b /dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild | |
| parent | 868a874d9e6cb7f604cf6400f75da559a971a339 (diff) | |
| download | gentoo-ebd5cbef870caf4412a7209ab8f82aebbbb26a07.tar.gz gentoo-ebd5cbef870caf4412a7209ab8f82aebbbb26a07.tar.bz2 gentoo-ebd5cbef870caf4412a7209ab8f82aebbbb26a07.zip | |
dev-cpp/cpp-taskflow: add 3.3.0
* fix doctest dependency
Closes: https://bugs.gentoo.org/827046
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild')
| -rw-r--r-- | dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild b/dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild new file mode 100644 index 000000000000..649d2fa20cc2 --- /dev/null +++ b/dev-cpp/cpp-taskflow/cpp-taskflow-3.3.0.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Modern C++ Parallel Task Programming" +HOMEPAGE="https://cpp-taskflow.github.io" +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="https://github.com/cpp-taskflow/${PN}.git" + inherit git-r3 + S="${WORKDIR}/cpp-taskflow-${PV}" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/taskflow-${PV}" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="examples test" +RESTRICT="!test? ( test )" + +DEPEND="test? ( dev-cpp/doctest )" + +HTML_DOCS=( docs/. ) + +PATCHES=( + "${FILESDIR}"/cpp-taskflow-3.3.0-fix_doctest.patch +) + +src_prepare() { + rm -r "${S}/3rd-party" || die "rm failed" + cmake_src_prepare +} + +src_configure() { + # TODO: enable CUDA via USE flag + local mycmakeargs=( + -DTF_BUILD_CUDA=OFF + -DTF_BUILD_EXAMPLES=$(usex examples) + -DTF_BUILD_TESTS=$(usex test) + ) + + cmake_src_configure +} |
