Diff blackbox-0.77 with a blackbox-0.77-r1

/usr/portage/x11-wm/blackbox/blackbox-0.77-r1.ebuild 2023-10-09 14:52:35.996368514 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
......
11 11

  
12 12
LICENSE="MIT"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~m68k ppc ppc64 ~riscv sparc x86"
14
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~sparc ~x86"
15 15
IUSE="debug nls static-libs truetype"
16 16

  
17 17
RDEPEND="x11-libs/libXft
......
45 45
}
46 46

  
47 47
src_install() {
48
	dodir /etc/X11/Sessions
49
	echo "/usr/bin/blackbox" > "${D}/etc/X11/Sessions/${PN}"
50
	fperms a+x /etc/X11/Sessions/${PN}
48
	exeinto /etc/X11/Sessions
49
	newexe - ${PN} <<-EOF
50
	#!/bin/sh
51
	${PN}
52
	EOF
51 53

  
52 54
	insinto /usr/share/xsessions
53 55
	doins "${FILESDIR}/${PN}.desktop"
Thank you!