diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-10-20 17:34:52 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-10-21 02:48:38 +0200 |
commit | 1c1c3c6f36091848191c9383a624fafcfd7e2df0 (patch) | |
tree | cca0ebd57e71b04c02052e68fb91b959c22027f5 /dev-lang/neko | |
parent | dev-util/jfrog-cli: drop 2.25.2 (diff) | |
download | gentoo-1c1c3c6f36091848191c9383a624fafcfd7e2df0.tar.gz gentoo-1c1c3c6f36091848191c9383a624fafcfd7e2df0.tar.bz2 gentoo-1c1c3c6f36091848191c9383a624fafcfd7e2df0.zip |
dev-lang/neko: depend on boehm-gc with USE=threads
Closes: https://bugs.gentoo.org/877199
Closes: https://bugs.gentoo.org/830097
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-lang/neko')
-rw-r--r-- | dev-lang/neko/neko-2.3.0-r2.ebuild (renamed from dev-lang/neko/neko-2.3.0-r1.ebuild) | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dev-lang/neko/neko-2.3.0-r1.ebuild b/dev-lang/neko/neko-2.3.0-r2.ebuild index 701f48537ec9..f51030b4e47b 100644 --- a/dev-lang/neko/neko-2.3.0-r1.ebuild +++ b/dev-lang/neko/neko-2.3.0-r2.ebuild @@ -6,9 +6,10 @@ EAPI=8 inherit flag-o-matic cmake DESCRIPTION="Neko is a high-level dynamically typed programming language" -HOMEPAGE="https://nekovm.org/" +HOMEPAGE="https://nekovm.org/ + https://github.com/HaxeFoundation/neko/" -if [[ "${PV}" == *9999* ]]; then +if [[ "${PV}" == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/HaxeFoundation/${PN}.git" else @@ -23,8 +24,8 @@ LICENSE="MIT" SLOT="0/${PV}" IUSE="apache mysql sqlite ssl" -DEPEND=" - dev-libs/boehm-gc:= +RDEPEND=" + dev-libs/boehm-gc:=[threads] dev-libs/libpcre:= sys-libs/zlib:= apache? ( www-servers/apache:2= ) @@ -35,7 +36,7 @@ DEPEND=" net-libs/mbedtls:= ) " -RDEPEND="${DEPEND}" +DEPEND="${RDEPEND}" src_configure() { # -Werror=strict-aliasing warnings, bug #855641 |