Diff monitorix-3.14.0-r1 with a monitorix-3.15.0

/usr/portage/www-misc/monitorix/monitorix-3.15.0.ebuild 2023-10-09 14:52:35.896368512 +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
EAPI="8"
4
EAPI=8
5 5

  
6 6
inherit systemd optfeature
7 7

  
......
14 14
KEYWORDS="amd64 x86"
15 15

  
16 16
RDEPEND="
17
	acct-user/monitorix
18 17
	acct-group/monitorix
18
	acct-user/monitorix
19
	dev-perl/CGI
19 20
	dev-perl/Config-General
20 21
	dev-perl/DBI
21 22
	dev-perl/HTTP-Server-Simple
22 23
	dev-perl/IO-Socket-SSL
23
	dev-perl/libwww-perl
24 24
	dev-perl/MIME-Lite
25 25
	dev-perl/XML-Simple
26
	net-analyzer/rrdtool[graph,perl]
27
	dev-perl/CGI"
26
	dev-perl/libwww-perl
27
	net-analyzer/rrdtool[graph,perl]"
28 28

  
29 29
src_prepare() {
30 30
	# Put better Gentoo defaults in the configuration file.
31
	sed -e "s|\(base_dir.*\)/usr/share/${PN}|\1/usr/share/${PN}/htdocs|" \
32
		-e "s|\(secure_log.*\)/var/log/secure|\1/var/log/auth.log|" \
31
	sed -e "s|\(secure_log.*\)/var/log/secure|\1/var/log/auth.log|" \
33 32
		-e "s|nobody|${PN}|g" -i ${PN}.conf || die
34 33
	# Update systemd binary location
35 34
	sed -e "s|/usr/bin|/usr/sbin|g" -i docs/${PN}.service || die
Thank you!