Diff gpicview-0.2.5-r2 with a gpicview-0.2.5-r3

/usr/portage/media-gfx/gpicview/gpicview-0.2.5-r3.ebuild 2023-10-09 14:52:31.628368404 +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 6
inherit xdg
7 7

  
......
13 13
SLOT="0"
14 14
KEYWORDS="~alpha amd64 arm arm64 ppc ~riscv x86"
15 15

  
16
RDEPEND="virtual/jpeg:0
17
	x11-libs/gtk+:3"
16
RDEPEND="media-libs/libjpeg-turbo
17
	x11-libs/gtk+:3[X]"
18 18
DEPEND="${RDEPEND}
19 19
	>=dev-util/intltool-0.40
20 20
	sys-devel/gettext
21 21
	virtual/pkgconfig"
22 22

  
23
PATCHES=( "${FILESDIR}/Fix-displaying-images-with-GTK3.patch" )
23
PATCHES=(
24
	"${FILESDIR}/Fix-displaying-images-with-GTK3.patch"
25
	"${FILESDIR}/${PN}-main_win_open-dummy-return.patch"
26
	"${FILESDIR}/${PN}-fix-animated-gifs.patch"
27
)
24 28

  
25 29
src_configure() {
26 30
	econf --enable-gtk3
Thank you!