Diff mlterm-3.9.2 with a mlterm-3.9.3-r1

/usr/portage/x11-terms/mlterm/mlterm-3.9.3-r1.ebuild 2023-10-09 14:52:35.980368514 +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"
......
53 53
		x11-libs/libxkbcommon
54 54
	)
55 55
	xft? ( x11-libs/libXft )"
56
DEPEND="${RDEPEND}
57
	virtual/pkgconfig
56
DEPEND="${RDEPEND}"
57
BDEPEND="virtual/pkgconfig
58 58
	nls? ( sys-devel/gettext )"
59 59

  
60
PATCHES=( "${FILESDIR}"/${PN}-font.patch )
61 60
DOCS=( doc/{en,ja} )
62 61

  
62
PATCHES=(
63
	"${FILESDIR}"/${PN}-font.patch
64
	"${FILESDIR}"/${PN}-configure-clang16.patch
65
)
66

  
63 67
src_prepare() {
64 68
	# default config
65 69
	sed -i \
66 70
		-e "/ icon_path =/aicon_path = ${EPREFIX}/usr/share/pixmaps/${PN}-icon.svg" \
67 71
		-e "/ scrollbar_view_name =/ascrollbar_view_name = sample" \
68
		etc/main
72
		etc/main || die
69 73

  
70 74
	default
71 75
}
Thank you!