diff --git a/dev-libs/libcthreads/Manifest b/dev-libs/libcthreads/Manifest index 0d8e8beca..d3b26f604 100644 --- a/dev-libs/libcthreads/Manifest +++ b/dev-libs/libcthreads/Manifest @@ -1,2 +1,3 @@ DIST libcthreads-alpha-20180724.tar.gz 531227 BLAKE2B be3c4b1690239ca0a4ad5a4f289e216d11543621fee26f728df97709a2cf197209dc64008e49848d7f8c0313e8b860d52a04f5f6a8a8ebbcb082951af6e7a229 SHA512 153a1bc895b0d31c8711bf1849889080ed5509d1d7ee797eb4e7d7bb16963d8a09000dee52520ba26e7dea5e0e408e697211052efee84c7ec5a26de04427c1d9 DIST libcthreads-alpha-20200508.tar.gz 548083 BLAKE2B be47b90e1379225d5e063462d4939072c525770b040a1a10d52fe06dab052501df1ce5471beaea475958962780a10c313831dd10a1d5b834d8b82e5f7d518b91 SHA512 0952cee6299701fc8aa2418fd3a3a99ab1634e4b19fe193aad8779740715fb2b7a7b4f7aec5fb1a5ab12cdf4235acff06bb59cb97911f4a3536031dcc7f1f86b +DIST libcthreads-alpha-20220102.tar.gz 548820 BLAKE2B 4e5766997595d4a998e1b2c3d33a1ad96c405b6d6399eda7f373a578c95dad29b32be6d08da744e0a3cd2477bdfaaf211fd997bd0525d5f08bec393cc2896a32 SHA512 82c13a4511aab4827c3c89c77324f7cc010702f431e9ff5a2f41511467653df3ff0f363926ea62a4760ff6ab7d2168271ec8a8264de67133332ba77a0b3bf6a0 diff --git a/dev-libs/libcthreads/libcthreads-20220102.ebuild b/dev-libs/libcthreads/libcthreads-20220102.ebuild new file mode 100644 index 000000000..68e1460c2 --- /dev/null +++ b/dev-libs/libcthreads/libcthreads-20220102.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Library for cross-platform C threads functions" +HOMEPAGE="https://github.com/libyal/${PN}" +SRC_URI="https://github.com/libyal/${PN}/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="amd64 ~arm64 x86" +IUSE="nls" + +DEPEND="dev-libs/libcerror + nls? ( virtual/libiconv + virtual/libintl )" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable nls) \ + $(use_with nls libiconv-prefix) \ + $(use_with nls libintl-prefix) + # \ + #--with-libcerror +}