The LXDM ebuild has gettext in DEPEND, which causes it to be cross-compiled. I don't see where it would need the cross-compiled package, but it does need to call at least gmsgfmt natively, so it should moved to BDEPEND. --- lxde-base/lxdm/lxdm-0.5.3-r2.ebuild +++ lxde-base/lxdm/lxdm-0.5.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -20,15 +20,17 @@ x11-libs/libxcb gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( x11-libs/gtk+:2 ) - nls? ( sys-devel/gettext ) pam? ( sys-libs/pam )" # We only use the pam modules and not actually link to the code RDEPEND="${DEPEND} elogind? ( sys-auth/elogind[pam] ) systemd? ( sys-apps/systemd[pam] ) " -BDEPEND=">=dev-util/intltool-0.40 - virtual/pkgconfig" +BDEPEND=" + >=dev-util/intltool-0.40 + virtual/pkgconfig + nls? ( sys-devel/gettext ) +" DOCS=( AUTHORS README TODO ) REQUIRED_USE="?? ( elogind systemd ) elogind? ( pam ) systemd? ( pam )"
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133185247ecebbea59813a5ca4711137ee522a98 commit 133185247ecebbea59813a5ca4711137ee522a98 Author: Brian Evans <grknight@gentoo.org> AuthorDate: 2021-02-07 15:07:28 +0000 Commit: Brian Evans <grknight@gentoo.org> CommitDate: 2021-02-07 15:09:38 +0000 lxde-base/lxdm: Move gettext from DEPEND to BDEPEND Only affects cross-compilation Closes: https://bugs.gentoo.org/764374 Signed-off-by: Brian Evans <grknight@gentoo.org> lxde-base/lxdm/lxdm-0.5.3-r2.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)