commit: af1eaf61fff1f03f94bfee0589ae12b8c82df3ac Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> AuthorDate: Wed Jul 22 13:23:31 2020 +0000 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org> CommitDate: Wed Jul 22 13:23:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1eaf61
dev-libs/libzia: Drop installing .a (and .la) files Closes: https://bugs.gentoo.org/733270 Package-Manager: Portage-3.0.0, Repoman-2.3.23 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org> dev-libs/libzia/libzia-4.21.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-libs/libzia/libzia-4.21.ebuild b/dev-libs/libzia/libzia-4.21.ebuild index de56605304a..9feeb18eddf 100644 --- a/dev-libs/libzia/libzia-4.21.ebuild +++ b/dev-libs/libzia/libzia-4.21.ebuild @@ -34,5 +34,11 @@ src_prepare() { src_configure() { econf \ $(use_with ftdi) --with-sdl \ - --with-png --without-bfd + --with-png --without-bfd \ + --disable-static +} + +src_install() { + emake DESTDIR="${D}" install + find "${D}" -name '*.la' -type f -delete || die }
