Diff pidgin-otr-4.0.2-r2 with a pidgin-otr-4.0.2-r3

/usr/portage/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r3.ebuild 2023-10-09 14:52:35.968368513 +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
......
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86"
15
IUSE=""
14
KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
16 15

  
17
RDEPEND="dev-libs/libgcrypt:0
16
RDEPEND="
17
	dev-libs/libgcrypt:0
18 18
	net-im/pidgin[gtk]
19 19
	>=net-libs/libotr-4.0.0
20
	x11-libs/gtk+:2"
20
	x11-libs/gtk+:2
21
"
21 22
DEPEND="${RDEPEND}"
23
# autoconf-archive for F_S patch
22 24
BDEPEND="
23 25
	dev-util/intltool
26
	sys-devel/autoconf-archive
24 27
	virtual/pkgconfig
25 28
"
26 29

  
27 30
DOCS=( AUTHORS ChangeLog NEWS README )
28 31

  
32
PATCHES=(
33
	"${FILESDIR}"/${PN}-4.0.2-dont-clobber-fortify-source.patch
34
)
35

  
29 36
src_prepare() {
30 37
	default
31 38
	eautoreconf
Thank you!