diff options
author | 2024-01-08 20:59:31 +0000 | |
---|---|---|
committer | 2024-01-09 08:15:24 +0100 | |
commit | 1cab2e8ceb3b3d63c9beef7e1970bd55c57d7efe (patch) | |
tree | 703d8d0c2acd0f8931935fe63654f7294815ae94 /dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild | |
parent | dev-python/alabaster: Bump to 0.7.15 (diff) | |
download | gentoo-1cab2e8ceb3b3d63c9beef7e1970bd55c57d7efe.tar.gz gentoo-1cab2e8ceb3b3d63c9beef7e1970bd55c57d7efe.tar.bz2 gentoo-1cab2e8ceb3b3d63c9beef7e1970bd55c57d7efe.zip |
dev-libs/pthreadpool: add 2023.08.29
Signed-off-by: Sv. Lockal <lockalsash@gmail.com>
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild')
-rw-r--r-- | dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild b/dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild new file mode 100644 index 000000000000..ba614beea387 --- /dev/null +++ b/dev-libs/pthreadpool/pthreadpool-2023.08.29.ebuild @@ -0,0 +1,43 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit cmake + +CommitId=4fe0e1e183925bf8cfa6aae24237e724a96479b8 +DESCRIPTION="Portable and efficient thread pool implementation" +HOMEPAGE="https://github.com/Maratyszcza/pthreadpool" +SRC_URI="https://github.com/Maratyszcza/${PN}/archive/${CommitId}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +DEPEND="dev-libs/FXdiv" +RDEPEND="${DEPEND}" +BDEPEND="test? ( dev-cpp/gtest )" +RESTRICT="!test? ( test )" + +S="${WORKDIR}"/${PN}-${CommitId} + +PATCHES=( + "${FILESDIR}"/${PN}-2022.05.09-gentoo.patch +) + +src_prepare() { + cmake_src_prepare + + # >=dev-cpp/gtest-1.13.0 requires C++14 standard or later + sed -i -e 's/CXX_STANDARD 11/CXX_STANDARD 14/g' \ + CMakeLists.txt || die "sed failed" +} + +src_configure() { + local mycmakeargs=( + -DPTHREADPOOL_BUILD_BENCHMARKS=OFF + -DPTHREADPOOL_BUILD_TESTS=$(usex test ON OFF) + ) + cmake_src_configure +} |