From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Sun, 8 Aug 2021 21:55:04 +0300 From: Michael Shigorin To: devel-distro@lists.altlinux.org Message-ID: <20210808185504.GI30481@imap.altlinux.org> References: <20210808182049.GH30481@imap.altlinux.org> <20210808184845.dgdncxfu35v3guey@titan.localdomain> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="gj572EiMnwbLXET9" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20210808184845.dgdncxfu35v3guey@titan.localdomain> User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [devel-distro] [PATCH] use/x11/xscreensaver X-BeenThere: devel-distro@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Distributions development List-Id: Distributions development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Aug 2021 18:55:05 -0000 Archived-At: List-Archive: --gj572EiMnwbLXET9 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit On Sun, Aug 08, 2021 at 10:48:45PM +0400, Ivan A. Melnikov wrote: > > pkg.in/lists/slinux/xfce-base:xfce4-screensaver@X86 > Это потому что xfce4-screensaver сломан для некоторых видеокарт > (https://bugzilla.altlinux.org/38418 и далее по ссылкам). > На x86_64 это совсем экзотика, поэтому можно его и взять, > а вот на RPi он получается сломанным довольно часто, > а на Таволге так вообще всегда. Спасибо за контекст :-) Как-то так и предположил, делая вот этот пробничек. --  ---- WBR, Michael Shigorin / http://altlinux.org   ------ http://opennet.ru / http://anna-news.info --gj572EiMnwbLXET9 Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="0001-REVIEW-slinux-add-xscreensaver-on-non-X86-cf.-slinux.patch" >>From f1d491570e5383c764c10a354a8df54f3550a61a Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Sun, 8 Aug 2021 21:25:40 +0300 Subject: [PATCH] REVIEW: slinux: add xscreensaver on non-X86 (cf. slinux/xfce-base) --- features.in/slinux/config.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features.in/slinux/config.mk b/features.in/slinux/config.mk index 5b0230ce6..59a16a921 100644 --- a/features.in/slinux/config.mk +++ b/features.in/slinux/config.mk @@ -77,10 +77,14 @@ use/slinux/mixin-base: use/slinux use/x11/xorg use/x11/lightdm/gtk +pulse \ @$(call add,THE_LISTS,$(call tags,base l10n)) @$(call add,THE_KMODULES,staging) ifeq (,$(filter-out armh aarch64 mipsel e2k%,$(ARCH))) + @$(call add,THE_LISTS,$(call tags,base xscreensaver)) @$(call add,THE_LISTS,slinux/browser-firefox) else @$(call add,THE_LISTS,slinux/browser-chromium) endif +ifeq (,$(filter-out e2k%,$(ARCH))) + @$(call add,THE_LISTS,$(call tags,desktop xscreensaver)) +endif ifeq (,$(filter-out armh aarch64 i586 x86_64,$(ARCH))) @$(call set,KFLAVOURS,un-def) endif -- 2.25.4 --gj572EiMnwbLXET9--