Diff ppp-2.5.0-r3 with a ppp-2.5.0-r4

/usr/portage/net-dialup/ppp/ppp-2.5.0-r4.ebuild 2023-10-09 14:52:33.352368447 +0300
5 5

  
6 6
inherit linux-info pam tmpfiles
7 7

  
8
PATCH_TARBALL_NAME="${PN}-2.4.9-patches-03"
9 8
DESCRIPTION="Point-to-Point Protocol (PPP)"
10 9
HOMEPAGE="https://ppp.samba.org/"
11
SRC_URI="https://download.samba.org/pub/ppp/${P}.tar.gz
12
	https://raw.githubusercontent.com/ppp-project/ppp/${P}/contrib/pppgetpass/pppgetpass.8"
10
SRC_URI="
11
	https://download.samba.org/pub/ppp/${P}.tar.gz
12
	https://raw.githubusercontent.com/ppp-project/ppp/${P}/contrib/pppgetpass/pppgetpass.8
13
"
13 14

  
14 15
LICENSE="BSD GPL-2"
15 16
SLOT="0/${PV}"
16
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
17
IUSE="activefilter atm gtk pam systemd"
17
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
18
IUSE="activefilter atm gtk pam selinux systemd"
18 19

  
19 20
DEPEND="
20 21
	dev-libs/openssl:0=
......
25 26
	pam? ( sys-libs/pam )
26 27
	systemd? ( sys-apps/systemd )
27 28
"
28
RDEPEND="${DEPEND}
29
	!<net-misc/netifrc-0.7.1-r2"
29
RDEPEND="
30
	${DEPEND}
31
	!<net-misc/netifrc-0.7.1-r2
32
	selinux? ( sec-policy/selinux-ppp )
33
"
30 34
BDEPEND="virtual/pkgconfig"
31 35
PDEPEND="net-dialup/ppp-scripts"
32 36

  
33 37
PATCHES=(
34 38
	"${FILESDIR}"/ppp-2.5.0-passwordfd-read-early.patch
35 39
	"${FILESDIR}"/ppp-2.5.0-pidfile.patch
40
	"${FILESDIR}"/${P}-radiusclient.conf-parsing.patch
36 41
)
37 42

  
38 43
pkg_setup() {
Thank you!