Diff goaccess-1.6.3 with a goaccess-1.7.2

/usr/portage/net-analyzer/goaccess/goaccess-1.7.2.ebuild 2023-10-09 14:52:33.312368446 +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
# shellcheck disable=SC2207
5

  
4 6
EAPI=8
5 7

  
6 8
inherit autotools optfeature systemd tmpfiles
......
41 43
}
42 44

  
43 45
src_configure() {
44
	local myeconfargs=()
45
	readarray -t myeconfargs < <(
46
		use_enable debug
47
		use_enable geoip geoip "$(usex geoipv2 mmdb legacy)"
48
		use_enable unicode utf8
49
		use_with getline
50
		use_with ssl openssl
46
	local myeconfargs=(
47
		$(use_enable debug)
48
		$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")
49
		$(use_enable unicode utf8)
50
		$(use_with getline)
51
		$(use_with ssl openssl)
51 52
	)
52 53
	econf "${myeconfargs[@]}"
53 54
}
Thank you!