Diff classified-ads-0.13-r2 with a classified-ads-0.14

/usr/portage/net-p2p/classified-ads/classified-ads-0.14.ebuild 2023-10-09 14:52:34.736368482 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2022 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5

  
5 6
inherit qmake-utils virtualx xdg
6 7

  
7 8
DESCRIPTION="Program for displaying classified advertisement items"
......
31 32
	dev-qt/qtwidgets:5
32 33
	media-libs/opus
33 34
	net-libs/libnatpmp
34
	net-libs/miniupnpc
35
	net-libs/miniupnpc:=
35 36
	sys-apps/file
36 37
	sys-libs/zlib
37 38
	virtual/libintl"
38 39

  
39 40
DEPEND="${RDEPEND}
40
	doc? ( app-doc/doxygen[dot] )
41 41
	test? ( dev-libs/libgcrypt:0
42 42
		dev-qt/qttest:5
43 43
		sys-devel/gdb:0 )"
44 44

  
45
BDEPEND="sys-devel/gettext"
46

  
47
PATCHES=(
48
	"${FILESDIR}/${P}-examples-install-dir.patch"
49
)
45
BDEPEND="sys-devel/gettext
46
	doc? ( app-doc/doxygen )"
50 47

  
51 48
src_prepare() {
52 49
	# preprocessed graphics are unpacked into wrong directory
......
77 74

  
78 75
src_test() {
79 76
	# testca will return 0 if all unit tests pass
80
	virtx ./testca/testca
77
	virtx ./testca/testca || die
81 78
}
82 79

  
83 80
src_install() {
Thank you!