From: Fabian Groffen Date: Thu, 6 Jun 2019 16:26:51 +0000 (+0200) Subject: app-crypt/libb2: USE=static -> USE=static-libs X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f2ef4de57eec87cee0eef3b7289b341a84bcf29d;p=gentoo.git app-crypt/libb2: USE=static -> USE=static-libs Signed-off-by: Fabian Groffen Package-Manager: Portage-2.3.66, Repoman-2.3.11 --- diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1-r1.ebuild similarity index 91% rename from app-crypt/libb2/libb2-0.98.1.ebuild rename to app-crypt/libb2/libb2-0.98.1-r1.ebuild index 29d440d64d0a..2925f4c30b4a 100644 --- a/app-crypt/libb2/libb2-0.98.1.ebuild +++ b/app-crypt/libb2/libb2-0.98.1-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/BLAKE2/libb2/archive/${GITHASH}.tar.gz -> ${P}.tar.g LICENSE="CC0-1.0" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc64 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x64-solaris" -IUSE="static native-cflags openmp" +IUSE="static-libs native-cflags openmp" DEPEND=" openmp? ( @@ -42,7 +42,7 @@ src_prepare() { src_configure() { econf \ - $(use_enable static) \ + $(use_enable static-libs static) \ $(use_enable native-cflags native) \ $(use_enable openmp) } @@ -63,5 +63,5 @@ src_test() { src_install() { default - use static || find "${ED}" -name '*.la' -type f -delete || die + use static-libs || find "${ED}" -name '*.la' -type f -delete || die }