Diff x2goserver-4.1.0.3-r2 with a x2goserver-4.1.0.5

/usr/portage/net-misc/x2goserver/x2goserver-4.1.0.5.ebuild 2023-10-09 14:52:34.716368482 +0300
1 1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit systemd tmpfiles toolchain-funcs xdg
7 7

  
......
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 x86"
14
KEYWORDS="~amd64 ~x86"
15 15
IUSE="+fuse postgres +sqlite"
16 16

  
17 17
REQUIRED_USE="|| ( postgres sqlite )"
......
39 39
	postgres? ( dev-perl/DBD-Pg )
40 40
	sqlite? ( dev-perl/DBD-SQLite )"
41 41

  
42
PATCHES=(
43
	"${FILESDIR}"/${PN}-4.1.0.0-Xresources.patch
44
	"${FILESDIR}"/${PN}-4.1.0.0-skip_man2html.patch
45
)
46

  
47 42
src_prepare() {
48 43
	default
49
	# Multilib clean
50
	sed -e "s#/lib/#/$(get_libdir)/#" -i x2goserver/bin/x2gopath || die
51

  
52 44
	# Do not compress man pages by default
53 45
	sed '/^[[:space:]]*gzip.*man/d' -i */Makefile || die
54 46
}
Thank you!