Diff netifrc-0.7.6 with a netifrc-0.7.6-r1

/usr/portage/net-misc/netifrc/netifrc-0.7.6-r1.ebuild 2023-10-09 14:52:34.664368481 +0300
26 26
RDEPEND="
27 27
	sys-apps/gentoo-functions
28 28
	>=sys-apps/openrc-0.15
29
	dhcp? ( || ( net-misc/dhcpcd net-misc/dhcp[client] ) )
29
	dhcp? (
30
		|| (
31
			net-misc/dhcpcd
32
			net-misc/dhcp[client]
33
			sys-apps/busybox
34
		)
35
	)
36
"
37
BDEPEND="
38
	kernel_linux? ( virtual/pkgconfig )
30 39
"
31
BDEPEND="kernel_linux? ( virtual/pkgconfig )"
32 40

  
33 41
src_prepare() {
34 42
	if [[ ${PV} == 9999 ]] ; then
......
69 77

  
70 78
pkg_postinst() {
71 79
	udev_reload
80

  
72 81
	if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; then
73 82
		elog "The network configuration scripts will use dhcp by"
74 83
		elog "default to set up your interfaces."
......
76 85
		elog "${EROOT}/usr/share/doc/${P}/README"
77 86
	fi
78 87
}
88

  
89
pkg_postrm() {
90
	udev_reload
91
}
Thank you!