diff options
author | Jakov Smolic <jakov.smolic@sartura.hr> | 2020-11-14 21:17:35 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-11-14 21:17:35 +0100 |
commit | b0f7c53c0adbe7043f5c6b0a14d5bf10ba39b1dc (patch) | |
tree | ef5d31f1174430897fd0ce9abe704e3babb7709d | |
parent | app-crypt/ima-evm-utils: disable static libs (diff) | |
download | gentoo-b0f7c53c0adbe7043f5c6b0a14d5bf10ba39b1dc.tar.gz gentoo-b0f7c53c0adbe7043f5c6b0a14d5bf10ba39b1dc.tar.bz2 gentoo-b0f7c53c0adbe7043f5c6b0a14d5bf10ba39b1dc.zip |
app-crypt/libu2f-host: disable static libs
Closes: https://bugs.gentoo.org/725688
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr>
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r-- | app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild b/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild index 143846becc38..dc653e48ba0b 100644 --- a/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild +++ b/app-crypt/libu2f-host/libu2f-host-1.1.10.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://developers.yubico.com/${PN}/Releases/${P}.tar.xz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 x86" -IUSE="kernel_linux static-libs systemd" +IUSE="kernel_linux systemd" DEPEND="dev-libs/hidapi dev-libs/json-c:=" @@ -27,13 +27,17 @@ CONFIG_CHECK="~HIDRAW" PATCHES=( "${FILESDIR}/${P}-json-boolean.patch" ) +src_configure() { + econf --disable-static +} + src_install() { default if use kernel_linux; then udev_dorules 70-u2f.rules fi - find "${D}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die } pkg_postinst() { |