Diff radvd-2.19-r2 with a radvd-2.19-r4

/usr/portage/net-misc/radvd/radvd-2.19-r4.ebuild 2023-10-09 14:52:34.676368481 +0300
1 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 readme.gentoo-r1 systemd toolchain-funcs
7 7

  
......
16 16
RESTRICT="!test? ( test )"
17 17

  
18 18
BDEPEND="virtual/pkgconfig"
19
CDEPEND="dev-libs/libdaemon"
20 19
DEPEND="
21
	${CDEPEND}
22 20
	sys-devel/bison
23 21
	sys-devel/flex
24 22
	test? ( dev-libs/check )
25 23
"
26 24
RDEPEND="
27
	${CDEPEND}
28 25
	acct-group/radvd
29 26
	acct-user/radvd
30 27
	selinux? ( sec-policy/selinux-radvd )
......
32 29

  
33 30
DOCS=( CHANGES README TODO radvd.conf.example )
34 31

  
32
PATCHES=(
33
	"${FILESDIR}"/${P}-musl-include.patch
34
)
35

  
35 36
src_configure() {
36 37
	econf --with-pidfile=/run/radvd/radvd.pid \
37 38
		--with-systemdsystemunitdir=no \
Thank you!