Diff xfce4-terminal-1.0.4 with a xfce4-terminal-1.1.0-r1

/usr/portage/x11-terms/xfce4-terminal/xfce4-terminal-1.1.0-r1.ebuild 2023-10-09 14:52:35.984368514 +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
......
6 6
inherit xdg-utils
7 7

  
8 8
DESCRIPTION="A terminal emulator for the Xfce desktop environment"
9
HOMEPAGE="https://docs.xfce.org/apps/terminal/start"
9
HOMEPAGE="
10
	https://docs.xfce.org/apps/terminal/start
11
	https://gitlab.xfce.org/apps/xfce4-terminal/
12
"
10 13
SRC_URI="https://archive.xfce.org/src/apps/${PN}/$(ver_cut 1-2)/${P}.tar.bz2"
11 14

  
12 15
LICENSE="GPL-2+"
13 16
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
17
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris"
15 18
IUSE="utempter"
16 19

  
17 20
RDEPEND="
18
	>=dev-libs/glib-2.42:2=
19
	>=x11-libs/gtk+-3.22:3=
20
	x11-libs/libX11:=
21
	>=x11-libs/vte-0.51.3:2.91=
22
	>=xfce-base/libxfce4ui-4.16:=[gtk3(+)]
23
	>=xfce-base/xfconf-4.16:=
21
	>=dev-libs/glib-2.44.0:2
22
	>=dev-libs/libpcre2-10.00:=
23
	>=x11-libs/gtk+-3.22.0:3
24
	x11-libs/libX11
25
	>=x11-libs/vte-0.51.3:2.91
26
	>=xfce-base/libxfce4ui-4.17.5:=[gtk3(+)]
27
	>=xfce-base/xfconf-4.16.0:=
24 28
	utempter? ( sys-libs/libutempter:= )
25 29
"
26 30
DEPEND="
......
33 37
	virtual/pkgconfig
34 38
"
35 39

  
40
PATCHES=(
41
	"${FILESDIR}/${P}-menu-accel.patch"
42
)
43

  
36 44
src_configure() {
37 45
	local myconf=(
38 46
		$(use_with utempter)
Thank you!