Diff valentina-0.6.1-r1 with a valentina-9999

/usr/portage/media-gfx/valentina/valentina-9999.ebuild 2023-10-09 14:52:31.652368405 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6
inherit qmake-utils xdg
6
inherit qmake-utils xdg git-r3
7 7

  
8 8
DESCRIPTION="Cloth patternmaking software"
9
HOMEPAGE="https://valentinaproject.bitbucket.io/"
10
SRC_URI="https://gitlab.com/smart-pattern/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2
11
	https://dev.gentoo.org/~fordfrog/distfiles/valentina-5858.patch.bz2"
9
HOMEPAGE="https://gitlab.com/smart-pattern/valentina"
10
EGIT_REPO_URI="https://gitlab.com/smart-pattern/valentina.git"
11
EGIT_BRANCH="develop"
12 12

  
13 13
LICENSE="GPL-3"
14 14
SLOT="0"
15
KEYWORDS="amd64 x86"
15
KEYWORDS=""
16 16
IUSE=""
17 17

  
18 18
LANGS="cs de el en en es fi fr he id it nl pt-BR ro ru uk zh-CN"
......
41 41
	dev-qt/linguist-tools:5
42 42
"
43 43

  
44
S=${WORKDIR}/${PN}-v${PV}
45

  
46
PATCHES=(
47
	"${FILESDIR}/5823.patch"
48
	"${FILESDIR}/${P}-disable-vcs-version.patch"
49
	"${WORKDIR}/valentina-5858.patch"
50
)
51

  
52 44
src_configure() {
53 45
	local locales=""
54
	local locale
55 46

  
56 47
	for LANG in ${LANGS}; do
57 48
		if use l10n_${LANG}; then
......
110 101
		fi
111 102
	done
112 103

  
113
	eqmake5 LOCALES="${locales}" "CONFIG+=noDebugSymbols no_ccache noRunPath noTests noWindowsInstaller" Valentina.pro -r
104
	eqmake5 LOCALES="${locales}" "CONFIG+=noStripDebugSymbols no_ccache noRunPath noTests" Valentina.pro -r
114 105
}
115 106

  
116 107
src_install() {
Thank you!