diff options
author | Fabian Groffen <grobian@gentoo.org> | 2019-06-06 18:26:51 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2019-06-06 18:34:28 +0200 |
commit | f2ef4de57eec87cee0eef3b7289b341a84bcf29d (patch) | |
tree | d95d2347cf0095994570533d23c22831fefb335a /app-crypt | |
parent | dev-texlive/texlive-latexextra: Add more blockers (diff) | |
download | gentoo-f2ef4de57eec87cee0eef3b7289b341a84bcf29d.tar.gz gentoo-f2ef4de57eec87cee0eef3b7289b341a84bcf29d.tar.bz2 gentoo-f2ef4de57eec87cee0eef3b7289b341a84bcf29d.zip |
app-crypt/libb2: USE=static -> USE=static-libs
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/libb2/libb2-0.98.1-r1.ebuild (renamed from app-crypt/libb2/libb2-0.98.1.ebuild) | 6 |
1 files 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 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 } |