Diff nDPI-4.2 with a nDPI-4.4

/usr/portage/net-libs/nDPI/nDPI-4.4.ebuild 2023-10-09 14:52:34.596368479 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools
6
inherit autotools edo
7 7

  
8 8
DESCRIPTION="Open Source Deep Packet Inspection Software Toolkit"
9 9
HOMEPAGE="https://www.ntop.org/"
......
34 34
	eautoreconf
35 35
}
36 36

  
37
src_configure() {
38
	# "local" here means "local to the system", and hence means
39
	# system copy, not the bundled one.
40
	econf --with-local-libgcrypt
41
}
42

  
37 43
src_test() {
38 44
	pushd tests || die
39 45

  
40
	./do.sh || die "Failed tests"
41
	./do-unit.sh || die "Failed unit tests"
46
	edo ./do.sh
47
	edo ./do-unit.sh
42 48

  
43 49
	popd || die
44 50
}
Thank you!