From: Michał Górny Date: Wed, 23 Oct 2019 15:53:28 +0000 (+0200) Subject: app-crypt/argon2: Use optimized code on x86 only X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d3d6642569924ce301dd278e02ce2ac7d434f02;p=gentoo.git app-crypt/argon2: Use optimized code on x86 only Closes: https://bugs.gentoo.org/698396 Signed-off-by: Michał Górny --- diff --git a/app-crypt/argon2/argon2-20190702.ebuild b/app-crypt/argon2/argon2-20190702.ebuild index 4f7b30a2b839..b3827b006351 100644 --- a/app-crypt/argon2/argon2-20190702.ebuild +++ b/app-crypt/argon2/argon2-20190702.ebuild @@ -30,18 +30,24 @@ src_prepare() { Makefile || die tc-export CC + + if use amd64 || use x86; then + OPTTEST=0 + else + OPTTEST=1 + fi } src_compile() { - emake OPTTEST=0 LIBRARY_REL="$(get_libdir)" + emake OPTTEST="${OPTTEST}" LIBRARY_REL="$(get_libdir)" } src_test() { - emake OPTTEST=0 test + emake OPTTEST="${OPTTEST}" test } src_install() { - emake OPTTEST=0 DESTDIR="${ED}" LIBRARY_REL="$(get_libdir)" install + emake OPTTEST="${OPTTEST}" DESTDIR="${ED}" LIBRARY_REL="$(get_libdir)" install einstalldocs doman man/argon2.1 }