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

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

  
4
EAPI=7
4
EAPI=8
5 5
inherit qmake-utils virtualx xdg
6 6

  
7 7
DESCRIPTION="Program for displaying classified advertisement items"
......
37 37
	virtual/libintl"
38 38

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

  
45
BDEPEND="sys-devel/gettext"
46

  
47
PATCHES=(
48
	"${FILESDIR}/${P}-examples-install-dir.patch"
49
)
50

  
46 51
src_prepare() {
47 52
	# preprocessed graphics are unpacked into wrong directory
48 53
	# so lets move them into correct location:
49 54
	mv ../ui/* ui/ || die
50
	# possible patches
51
	eapply_user
55
	default
52 56
}
53 57

  
54 58
src_configure() {
55
	eqmake5
59
	eqmake5 examplefiles.path=/usr/share/doc/${PF}/examples
56 60
	if use test; then
57 61
		cd testca || die
58 62
		eqmake5
Thank you!