commit: 7d648ad70a40bea4789f3d6bbda485078ebffd09
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 27 04:50:35 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 27 04:51:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d648ad7
dev-cpp/libmcpp: drop static-libs from 2.7.2_p5
May as well take the opportunity.
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-cpp/libmcpp/libmcpp-2.7.2_p5.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/dev-cpp/libmcpp/libmcpp-2.7.2_p5.ebuild
b/dev-cpp/libmcpp/libmcpp-2.7.2_p5.ebuild
index bc6a9a1d233..ca5877298ab 100644
--- a/dev-cpp/libmcpp/libmcpp-2.7.2_p5.ebuild
+++ b/dev-cpp/libmcpp/libmcpp-2.7.2_p5.ebuild
@@ -17,7 +17,6 @@ S="${WORKDIR}"/${MY_P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ia64 ~x86 ~x86-linux ~x64-macos"
-IUSE="static-libs"
PATCHES=(
"${FILESDIR}"/${PN}-2.7.2-fix-build-system.patch
@@ -38,13 +37,11 @@ src_prepare() {
src_configure() {
econf \
--enable-mcpplib \
- $(use_enable static-libs static)
+ --disable-static
}
src_install() {
default
- if ! use static-libs; then
- find "${D}" -name '*.la' -delete || die
- fi
+ find "${ED}" -name '*.la' -delete || die
}