Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/libb2/
Date: Thu, 06 Jun 2019 16:34:41
Message-Id: 1559838868.f2ef4de57eec87cee0eef3b7289b341a84bcf29d.grobian@gentoo
1 commit: f2ef4de57eec87cee0eef3b7289b341a84bcf29d
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 6 16:26:51 2019 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 6 16:34:28 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ef4de5
7
8 app-crypt/libb2: USE=static -> USE=static-libs
9
10 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 app-crypt/libb2/{libb2-0.98.1.ebuild => libb2-0.98.1-r1.ebuild} | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/app-crypt/libb2/libb2-0.98.1.ebuild b/app-crypt/libb2/libb2-0.98.1-r1.ebuild
17 similarity index 91%
18 rename from app-crypt/libb2/libb2-0.98.1.ebuild
19 rename to app-crypt/libb2/libb2-0.98.1-r1.ebuild
20 index 29d440d64d0..2925f4c30b4 100644
21 --- a/app-crypt/libb2/libb2-0.98.1.ebuild
22 +++ b/app-crypt/libb2/libb2-0.98.1-r1.ebuild
23 @@ -13,7 +13,7 @@ SRC_URI="https://github.com/BLAKE2/libb2/archive/${GITHASH}.tar.gz -> ${P}.tar.g
24 LICENSE="CC0-1.0"
25 SLOT="0"
26 KEYWORDS="~amd64 ~hppa ~ppc64 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x64-solaris"
27 -IUSE="static native-cflags openmp"
28 +IUSE="static-libs native-cflags openmp"
29
30 DEPEND="
31 openmp? (
32 @@ -42,7 +42,7 @@ src_prepare() {
33
34 src_configure() {
35 econf \
36 - $(use_enable static) \
37 + $(use_enable static-libs static) \
38 $(use_enable native-cflags native) \
39 $(use_enable openmp)
40 }
41 @@ -63,5 +63,5 @@ src_test() {
42
43 src_install() {
44 default
45 - use static || find "${ED}" -name '*.la' -type f -delete || die
46 + use static-libs || find "${ED}" -name '*.la' -type f -delete || die
47 }