commit: fd1ca93047532ca046f0772c64e33974e3181e39 Author: Jordan Yelloz <jordan <AT> yelloz <DOT> me> AuthorDate: Sun Sep 25 03:37:11 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Sep 25 03:47:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd1ca930
app-text/qpdf: Fixed DEFAULT_CRYPTO value. The DEFAULT_CRYPTO argument expects the values to be in lowercase. Closes: https://bugs.gentoo.org/872716 Signed-off-by: Jordan Yelloz <jordan <AT> yelloz.me> Closes: https://github.com/gentoo/gentoo/pull/27434 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/qpdf/{qpdf-11.1.0-r1.ebuild => qpdf-11.1.0-r2.ebuild} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-text/qpdf/qpdf-11.1.0-r1.ebuild b/app-text/qpdf/qpdf-11.1.0-r2.ebuild similarity index 94% rename from app-text/qpdf/qpdf-11.1.0-r1.ebuild rename to app-text/qpdf/qpdf-11.1.0-r2.ebuild index f0a13b28829a..774c671b8246 100644 --- a/app-text/qpdf/qpdf-11.1.0-r1.ebuild +++ b/app-text/qpdf/qpdf-11.1.0-r2.ebuild @@ -52,8 +52,9 @@ src_configure() { if use ssl ; then local crypto_provider=$(usex gnutls GNUTLS OPENSSL) + local crypto_provider_lowercase=${crypto_provider,,} mycmakeargs+=( - -DDEFAULT_CRYPTO=${crypto_provider} + -DDEFAULT_CRYPTO=${crypto_provider_lowercase} -DREQUIRE_CRYPTO_${crypto_provider}=ON ) fi
