Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 582016 - x11-misc/sddm should have LINGUAS options
Summary: x11-misc/sddm should have LINGUAS options
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: LxQt maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-05-03 20:20 UTC by Tobias Leupold
Modified: 2017-11-12 15:12 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Tobias Leupold 2016-05-03 20:20:15 UTC
When installing the current sddm, only the US keyboard layout is provided. To get another one, one has to (after finding out _what_ to do ;-) edit /usr/share/sddm/scripts/Xsetup and add a line like "setxkbmap de" (to get e. g. a German keyboard layout) manually.

I think this should be done automatically using the LINGUAS set in make.conf when the package is being emerged (or in some other way – at least, one should find the keyboard layout the current locale has out of the box).

Would be fine if this could be implemented!
Comment 1 Andreas Sturmlechner gentoo-dev 2016-05-03 20:47:34 UTC
Isn't it picking up what you have configured for X?
Comment 2 Tobias Leupold 2016-05-03 20:55:23 UTC
No, I think this is applied afterwards (or: do we even configure anything for X? At some point quite some time ago, an xorg.conf wasn't necessary anymore where I put the keyboard layout stuff back then).

Apparently, other distros have the same problem. At least, I found the solution with editing /usr/share/sddm/scripts/Xsetup on some Arch site.
Comment 3 Lars Wendler (Polynomial-C) (RETIRED) gentoo-dev 2016-05-04 07:26:55 UTC
This is quite likely the following sddm bug:

https://github.com/sddm/sddm/issues/202

And I don't think that using LINGUAS here does make any sense. What about users having multiple languages set in LINGUAS?
Comment 4 Tobias Leupold 2016-05-04 12:04:21 UTC
Afaik, one can add multipler setxkbmap calls to get multiple layouts.
Comment 5 Tobias Leupold 2016-07-22 07:10:42 UTC
I think Bug #571358 is exactly the same feature request, it's just another approach to get the same result. Protecting /usr/share/sddm/scripts/Xsetup when updating/recompiling would be quite as fine for me.

However, I think simply adding "setxkbmap $L10N", where $L10N is the respective setting from make.conf, would do the trick automagically and work just fine.

Or is there any (X11 config) file where one could set the setxkbmap parameters system-wide that could be sourced by /usr/share/sddm/scripts/Xsetup?
Comment 6 Tobias Leupold 2016-07-22 07:14:05 UTC
... or better:

for languageCode in $L10N; do setxkbmap $languageCode; done

to also handle multiple entries there correctly.
Comment 7 Tobias Leupold 2017-09-14 08:15:02 UTC
Another way to fix this is (like with the fix for the cross distcc setup):

Add

    case ${CATEGORY}/${PN} in
        x11-misc/sddm)
            if [ "${EBUILD_PHASE}" == "postinst" ]; then
                /usr/local/sbin/sddm-fix &
            fi
        ;;
    esac

to /etc/portage/bashrc and create /usr/local/sbin/sddm-fix with

    #!/bin/bash
    grep "setxkbmap de" /usr/share/sddm/scripts/Xsetup || \
        echo "setxkbmap de" >> /usr/share/sddm/scripts/Xsetup

But still, it would be nicer to have this done automatically, respecting the global language settings.
Comment 8 Larry the Git Cow gentoo-dev 2017-11-12 15:12:28 UTC
The bug has been referenced in the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1102f3773398797d55a888129351e46c2ce2cb46

commit 1102f3773398797d55a888129351e46c2ce2cb46
Author:     Andreas Sturmlechner <asturm@gentoo.org>
AuthorDate: 2017-11-12 13:24:38 +0000
Commit:     Andreas Sturmlechner <asturm@gentoo.org>
CommitDate: 2017-11-12 15:12:04 +0000

    x11-misc/sddm: Use l10n.eclass to filter translations
    
    Bug: https://bugs.gentoo.org/582016
    Package-Manager: Portage-2.3.13, Repoman-2.3.4

 x11-misc/sddm/sddm-0.16.0-r3.ebuild | 73 +++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)}