diff options
author | 2021-06-23 05:46:27 +0100 | |
---|---|---|
committer | 2021-06-23 05:46:27 +0100 | |
commit | ad88687fbf4b228c9f129dd200e32dc8ddf14040 (patch) | |
tree | 1e44accb67428e6e4a962f630589389931debf7e /dev-libs/libverto/libverto-0.3.2.ebuild | |
parent | dev-libs/libverto: add || die on find (diff) | |
download | gentoo-ad88687fbf4b228c9f129dd200e32dc8ddf14040.tar.gz gentoo-ad88687fbf4b228c9f129dd200e32dc8ddf14040.tar.bz2 gentoo-ad88687fbf4b228c9f129dd200e32dc8ddf14040.zip |
dev-libs/libverto: drop static-libs in 0.3.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libverto/libverto-0.3.2.ebuild')
-rw-r--r-- | dev-libs/libverto/libverto-0.3.2.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/dev-libs/libverto/libverto-0.3.2.ebuild b/dev-libs/libverto/libverto-0.3.2.ebuild index 8e7b931f6636..d6bf244ff04c 100644 --- a/dev-libs/libverto/libverto-0.3.2.ebuild +++ b/dev-libs/libverto/libverto-0.3.2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/latchset/libverto/releases/download/${PV}/${P}.tar.g LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" -IUSE="glib +libev libevent +threads static-libs" +IUSE="glib +libev libevent +threads" REQUIRED_USE="|| ( glib libev libevent )" DEPEND="glib? ( >=dev-libs/glib-2.34.3[${MULTILIB_USEDEP}] ) @@ -39,13 +39,11 @@ multilib_src_configure() { $(use_with libev) \ $(use_with libevent) \ $(use_with threads pthread) \ - $(use_enable static-libs static) + --disable-static } multilib_src_install_all() { default - if ! use static-libs ; then - find "${ED}" -name '*.la' -delete - fi + find "${ED}" -name '*.la' -delete } |