Diff kasumi-2.5-r1 with a kasumi-2.7

/usr/portage/app-dicts/kasumi/kasumi-2.7.ebuild 2026-06-23 19:41:04.134897309 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6
DESCRIPTION="Anthy dictionary maintenance tool"
7
HOMEPAGE="http://kasumi.osdn.jp/"
8
SRC_URI="mirror://sourceforge.jp/${PN}/41436/${P}.tar.gz"
6
inherit meson
9 7

  
10
LICENSE="GPL-2"
8
MY_PN="kasumi-unicode"
9
MY_P="${MY_PN}-${PV}"
10
DESCRIPTION="Anthy-unicode dictionary maintenance tool"
11
HOMEPAGE="https://github.com/fujiwarat/kasumi-unicode/"
12
SRC_URI="https://github.com/fujiwarat/kasumi-unicode/releases/download/${PV}/${MY_P}.tar.xz"
13
S="${WORKDIR}/${MY_P}"
14

  
15
LICENSE="GPL-2+"
11 16
SLOT="0"
12 17
KEYWORDS="~alpha amd64 ppc ~riscv ~sparc x86"
13
IUSE="nls"
14 18

  
15
RDEPEND="app-i18n/anthy
19
RDEPEND="
20
	app-i18n/anthy-unicode
21
	dev-libs/glib:2
16 22
	virtual/libiconv
17
	x11-libs/gtk+:2
18
	nls? ( virtual/libintl )"
23
	virtual/libintl
24
	x11-libs/gtk+:3
25
"
19 26
DEPEND="${RDEPEND}"
20
BDEPEND="virtual/pkgconfig
21
	nls? ( sys-devel/gettext )"
22

  
23
PATCHES=(
24
	"${FILESDIR}"/${PN}-desktop.patch
25
	"${FILESDIR}"/${PN}-2.5-fix-build-gcc-11.patch
26
)
27

  
28
src_configure() {
29
	econf $(use_enable nls)
30
}
27
BDEPEND="
28
	sys-devel/gettext
29
	virtual/pkgconfig
30
"
Thank you!