Diff uim-1.8.9 with a uim-1.8.9-r1

/usr/portage/app-i18n/uim/uim-1.8.9-r1.ebuild 2023-10-09 14:52:28.768368332 +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"
......
13 13

  
14 14
LICENSE="BSD GPL-2 LGPL-2.1"
15 15
SLOT="0"
16
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~riscv ~x86"
16
KEYWORDS="amd64 ~arm ~hppa ppc ppc64 ~riscv x86"
17 17
IUSE="X +anthy curl eb emacs expat libffi gtk gtk2 kde l10n_ja l10n_ko l10n_zh-CN l10n_zh-TW libedit libnotify m17n-lib ncurses nls qt5 skk sqlite ssl static-libs xft"
18 18
RESTRICT="test"
19 19
REQUIRED_USE="gtk? ( X )
......
91 91
	"${FILESDIR}"/${PN}-Wconversion.patch
92 92
	"${FILESDIR}"/${PN}-xkb.patch
93 93
	"${FILESDIR}"/${PN}-zh-TW.patch
94
	"${FILESDIR}"/${PN}-clang-16-configure.patch
94 95
)
96

  
95 97
DOCS=( AUTHORS NEWS README RELNOTE doc )
96 98

  
97 99
SITEFILE="50${PN}-gentoo.el"
......
103 105
	# fix build with "-march=pentium4 -O2", bug #661806
104 106
	use x86 && append-cflags $(test-flags-CC -fno-inline-small-functions)
105 107

  
108
	# Fix build w/ Clang 16+ and >= openssl 1.1.x, tries to use
109
	# SSLv2_method otherwise.
110
	append-cppflags -DOPENSSL_NO_SSL2
111

  
106 112
	eautoreconf
107 113
}
108 114

  
Thank you!