commit: f2ef4de57eec87cee0eef3b7289b341a84bcf29d
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 6 16:26:51 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Jun 6 16:34:28 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ef4de5
app-crypt/libb2: USE=static -> USE=static-libs
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
app-crypt/libb2/{libb2-0.98.1.ebuild => libb2-0.98.1-r1.ebuild} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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 29d440d64d0..2925f4c30b4 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
}