Diff recode-3.7.13 with a recode-3.7.14

/usr/portage/app-text/recode/recode-3.7.14.ebuild 2023-10-09 14:52:28.892368335 +0300
33 33
	)
34 34
"
35 35

  
36
PATCHES=(
37
	"${FILESDIR}"/${P}-no-help2man.patch
38
)
39

  
40 36
python_check_deps() {
41 37
	python_has_version "dev-python/cython[${PYTHON_USEDEP}]"
42 38
}
......
53 49
src_configure() {
54 50
	tc-export CC LD
55 51

  
56
	# on solaris -lintl is needed to compile
52
	# On Solaris, -lintl is needed to compile
57 53
	[[ ${CHOST} == *-solaris* ]] && append-libs "-lintl"
58 54

  
59 55
	# -fanalyzer substantially slows down the build and isn't useful for
......
61 57
	# useful when just getting something built.
62 58
	export gl_cv_warn_c__fanalyzer=no
63 59

  
64
	econf \
65
		$(use_enable nls) \
66
		--disable-static
60
	econf $(use_enable nls)
67 61
}
68 62

  
69 63
src_install() {
Thank you!