From c733a1e06f720c46e0d80c0e51ed5a12697c4b32 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Thu, 22 Sep 2022 04:03:51 -0400 Subject: [PATCH] games-util/libstrangle: enable abi_x86_32 by default Similarly to what's done for wine and friends, unsure why haven't done this in the first place considering this has no further multilib deps (this doesn't link with any libraries in DEPEND, what this uses will depend on what applicates/games are linked with themselves). Remove warning too, assume anyone manually turning it off would know what they're getting into. Signed-off-by: Ionen Wolkens --- .../libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild b/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild index edb24350dc18b..c39f31b015429 100644 --- a/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild +++ b/games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit multilib multilib-minimal toolchain-funcs +inherit multilib-minimal toolchain-funcs STRANGLE_COMMIT="0273e318e3b0cc759155db8729ad74266b74cb9b" @@ -15,6 +15,7 @@ S="${WORKDIR}/${PN}-${STRANGLE_COMMIT}" LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="+abi_x86_32" RDEPEND=" sys-apps/grep[pcre] @@ -58,8 +59,3 @@ multilib_src_install_all() { emake DESTDIR="${D}" prefix="${EPREFIX}"/usr install-common einstalldocs } - -pkg_postinst() { - has_multilib_profile && use amd64 && use !abi_x86_32 && - ewarn "Note that USE=abi_x86_32 is needed for 32bit games (common with steam / wine)" -}