Diff remind-04.00.03 with a remind-04.02.02

/usr/portage/app-misc/remind/remind-04.02.02.ebuild 2023-10-09 14:52:28.816368333 +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=8
......
9 9

  
10 10
LICENSE="GPL-2"
11 11
SLOT="0"
12
KEYWORDS="amd64 ppc x86"
12
KEYWORDS="~amd64 ~ppc ~x86"
13 13
IUSE="tk"
14 14

  
15 15
RDEPEND="
......
23 23
"
24 24
DOCS="docs/* examples/defs.rem "
25 25

  
26
src_prepare() {
27
	default
28
	sed -i 's:@CC@ @LDFLAGS@:@CC@ @CFLAGS@ @LDFLAGS@:' "${S}"/src/Makefile.in || die
29
	sed -i 's:$(MAKE) -C src install:&-nostripped:' "${S}"/Makefile || die
30
}
26
PATCHES=( "${FILESDIR}"/${PN}-include-fix.patch )
31 27

  
32 28
src_test() {
33 29
	if [[ ${EUID} -eq 0 ]] ; then
Thank you!