diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-09-22 04:03:51 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-09-22 04:10:19 -0400 |
commit | c733a1e06f720c46e0d80c0e51ed5a12697c4b32 (patch) | |
tree | cd131e38e0881098415427f75b953cdea1cc2849 /games-util | |
parent | dev-lang/spidermonkey: update known test failure list on 102 (diff) | |
download | gentoo-c733a1e06f720c46e0d80c0e51ed5a12697c4b32.tar.gz gentoo-c733a1e06f720c46e0d80c0e51ed5a12697c4b32.tar.bz2 gentoo-c733a1e06f720c46e0d80c0e51ed5a12697c4b32.zip |
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 <ionen@gentoo.org>
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/libstrangle/libstrangle-0.1.1_p20220222-r1.ebuild | 8 |
1 files 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 edb24350dc18..c39f31b01542 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)" -} |