Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
DEPEND="
>=dev-libs/gmp-4.1.2:0=
RDEPEND="${DEPEND}"
my_src_configure() {
- ECONF_SOURCE="${S}" econf \
- $(use_enable static-libs static)
+ econf --disable-static
}
my_src_install() {
default
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}