diff options
author | Akinori Hattori <hattya@gentoo.org> | 2024-02-14 22:31:15 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2024-02-14 22:31:15 +0900 |
commit | fb1289d0806ca83f2376f365ed2c51e643c6a3cd (patch) | |
tree | 90c971e085b5176878151ae9f8a7a9e2ace0bd9b /dev-scheme | |
parent | games-emulation/dosbox-staging: add 0.81.0 (diff) | |
download | gentoo-fb1289d0806ca83f2376f365ed2c51e643c6a3cd.tar.gz gentoo-fb1289d0806ca83f2376f365ed2c51e643c6a3cd.tar.bz2 gentoo-fb1289d0806ca83f2376f365ed2c51e643c6a3cd.zip |
dev-scheme/gauche: fix build
Closes: https://bugs.gentoo.org/924298
Signed-off-by: Akinori Hattori <hattya@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/gauche/gauche-0.9.14-r1.ebuild (renamed from dev-scheme/gauche/gauche-0.9.14.ebuild) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-scheme/gauche/gauche-0.9.14.ebuild b/dev-scheme/gauche/gauche-0.9.14-r1.ebuild index bd990924944f..c037bef1bc58 100644 --- a/dev-scheme/gauche/gauche-0.9.14.ebuild +++ b/dev-scheme/gauche/gauche-0.9.14-r1.ebuild @@ -15,12 +15,12 @@ SRC_URI="https://github.com/shirok/${PN^g}/releases/download/release${PV//./_}/$ LICENSE="BSD" SLOT="0/$(ver_cut 1-2)8" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="ipv6 +mbedtls test" +IUSE="ipv6 test" RESTRICT="!test? ( test )" -RDEPEND="sys-libs/gdbm - virtual/libcrypt:= - mbedtls? ( net-libs/mbedtls:= )" +RDEPEND="net-libs/mbedtls:= + sys-libs/gdbm + virtual/libcrypt:=" DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}" @@ -43,7 +43,7 @@ src_configure() { $(use_enable ipv6) \ --with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt \ --with-slib="${EPREFIX}"/usr/share/slib \ - --with-tls=$(usex mbedtls mbedtls axtls) + --with-tls=mbedtls } src_test() { |