Gentoo Archives: gentoo-user

From: Peter Humphrey <peter@××××××××××××.uk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Layout problem in latest KDE apps
Date: Thu, 02 Aug 2018 22:51:45
Message-Id: 4136716.GTC1SYXvvr@peak
In Reply to: Re: [gentoo-user] Layout problem in latest KDE apps by Mick
1 On Thursday, 2 August 2018 13:27:45 BST Mick wrote:
2 > On Thursday, 2 August 2018 07:10:00 BST Peter Humphrey wrote:
3 > > On Monday, 30 July 2018 11:18:22 BST Peter Humphrey wrote:
4 > > > My daily update yesterday included 100 kde-apps/* . Now dolphin and
5 > > > konqueror-as-a-file-manager have their panels laid out with extremely
6 > > > wide spacing (example attached). Is this my fault or theirs?
7 > >
8 > > I tried creating a new user for myself, and got the same results,
9 > > including the missing icons.
10
11 I also spent several hours today rebuilding the entire system from
12 scratch[1], and then creating a new user. I didn't even copy my .mozilla
13 directory. Still no improvement.
14
15 > Are you running a full Plasma DE?
16
17 Yes, the full works, with just the tweaks that the control panel allows.
18 Nothing non-standard.
19
20 Here's my entire package.use:
21
22 app-emulation/virtualbox additions extensions java python
23 net-libs/webkit-gtk -webgl
24 x11-libs/wxGTK webkit
25 www-client/chromium -hangouts jumbo-build
26 dev-lang/python sqlite
27 sys-firmware/intel-microcode initramfs
28 sys-kernel/linux-firmware savedconfig
29 media-fonts/terminus-font center-tilde distinct-l
30 app-admin/gkrellm hddtemp
31 sys-kernel/gentoo-sources symlink
32 app-office/kmymoney calendar hbci ofx quotes
33 sys-libs/gwenhywfar qt4
34 app-office/libreoffice googledrive pdfimport
35 dev-libs/xmlsec nss
36 www-client/links -X -jpeg -png -tiff -directfb -fbcon -sdl
37 media-libs/mesa opencl
38 dev-qt/qtwebengine -system-icu
39 net-misc/tigervnc server
40 media-libs/mesa -vaapi
41 sys-devel/llvm clang video_cards_radeon
42 x11-libs/libdrm video_cards_radeon
43
44 > I have missing icons here for more than a year on KDE applications (or
45 > whatever they are called this semester), on non-Plasma desktop.
46
47 1. This is my standard procedure for rebuilding the entire system:
48
49 $ cat /usr/local/bin/ejsys
50 #!/bin/bash
51 emerge --jobs -1 gcc && emerge --jobs -1 binutils && emerge --jobs -1 glibc
52 emerge --jobs --load-average=36 --keep-going --nospinner \
53 --exclude="gcc binutils glibc" @system linux-firmware intel-microcode
54
55 Then make mrproper; cp /boot/<current config> .config; kmake
56
57 $ cat /usr/local bin/kmake:
58 #!/bin/bash
59 mount /boot
60 cd /usr/src/linux
61 make -j12 && make modules_install && make install &&\
62 cp -v ./arch/x86/boot/bzImage /boot/EFI/Boot/bootX64.efi &&\
63 echo && echo "Rebuilding modules" && echo &&\
64 emerge --jobs --load-average=48 @module-rebuild @x11-module-rebuild && echo &&\
65 echo "Remaking microcode images" &&\
66 /usr/sbin/iucode_tool -S --write-earlyfw=/boot/early_ucode.cpio /lib/firmware/intel-ucode/* && echo &&\
67 echo "Remounting /sys/firmware/efi/efivars read-write" &&\
68 mount -oremount,rw /sys/firmware/efi/efivars && echo &&\
69 echo "Don't forget to bootctl-install the new kernel!" && echo
70
71 $ cat /usr/local/bin/ejeworld
72 #!/bin/bash
73 emerge --jobs --load-average=48 --keep-going --nospinner \
74 --exclude="$(cat system.pkgs) linux-firmware intel-microcode" -e @world
75
76 system.pkgs contains the names of the 43 packages that are emerged by @system.
77
78 I don't know what else I can try. Help, anyone?
79
80 --
81 Regards,
82 Peter.