Diff bacula-11.0.6-r4 with a bacula-11.0.6-r5

/usr/portage/app-backup/bacula/bacula-11.0.6-r5.ebuild 2023-10-09 14:52:28.196368317 +0300
14 14

  
15 15
LICENSE="AGPL-3"
16 16
SLOT="0"
17
KEYWORDS="amd64 ~ppc ~sparc x86"
17
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
18 18
IUSE="acl bacula-clientonly bacula-nodir bacula-nosd +batch-insert examples ipv6 logwatch mysql postgres qt5 readline +sqlite ssl static tcpd vim-syntax X"
19 19

  
20 20
DEPEND="
......
72 72
	static? ( bacula-clientonly )
73 73
"
74 74

  
75
# suppress warning wrt 'implicit function declaration' in config logs
76
# bug 900663
77
QA_CONFIG_IMPL_DECL_SKIP=(
78
	makedev		# designed to check availability in
79
				# used header file
80
)
81

  
75 82
S=${WORKDIR}/${MY_P}
76 83

  
77 84
pkg_setup() {
......
130 137
	sed -i -e "s/strip /# strip /" src/filed/Makefile.in || die
131 138
	sed -i -e "s/strip /# strip /" src/console/Makefile.in || die
132 139

  
140
	# fix 'implicit function declaration' bug 900663
141
	eapply -p0 "${FILESDIR}/${PN}-11.0.2-fix-config.patch"
142

  
133 143
	eapply_user
134 144

  
135 145
	# Fix systemd unit files:
Thank you!