Diff zile-2.4.15 with a zile-2.6.2-r2

/usr/portage/app-editors/zile/zile-2.6.2-r2.ebuild 2023-10-09 14:52:28.668368329 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 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
inherit toolchain-funcs
6
inherit toolchain-funcs vala
7 7

  
8 8
DESCRIPTION="Zile is a small Emacs clone"
9 9
HOMEPAGE="https://www.gnu.org/software/zile/"
......
11 11

  
12 12
LICENSE="GPL-3+"
13 13
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
15
IUSE="acl"
14
KEYWORDS="~alpha amd64 arm arm64 ppc ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
16 15

  
17
RDEPEND=">=dev-libs/boehm-gc-7.2:=
18
	sys-libs/ncurses:0=
19
	acl? ( virtual/acl )"
16
RDEPEND="dev-libs/glib:2
17
	dev-libs/libgee:0.8=
18
	sys-libs/ncurses:0="
20 19

  
21 20
DEPEND="${RDEPEND}"
22 21

  
23 22
BDEPEND="dev-lang/perl
24 23
	sys-apps/help2man
25
	virtual/pkgconfig"
24
	virtual/pkgconfig
25
	$(vala_depend)"
26 26

  
27 27
# AUTHORS, FAQ, and NEWS are installed by the build system
28 28
DOCS="README THANKS"
29 29

  
30 30
QA_AM_MAINTAINER_MODE=".*help2man.*" #450278
31 31

  
32
src_prepare() {
33
	default
34
	vala_setup
35
	rm *_vala.stamp || die
36
}
37

  
32 38
src_configure() {
33
	econf \
34
		$(use_enable acl) \
35
		CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
39
	econf CURSES_LIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
36 40
}
37 41

  
38 42
src_test() {
Thank you!