Diff clementine-1.4.0_rc2-r2 with a clementine-9999

/usr/portage/media-sound/clementine/clementine-9999.ebuild 2023-10-09 14:52:31.772368408 +0300
16 16
else
17 17
	SRC_URI="https://github.com/clementine-player/Clementine/archive/refs/tags/${PV/_}.tar.gz -> ${P}.tar.gz"
18 18
	S="${WORKDIR}/Clementine-${PV/_}"
19
	KEYWORDS="amd64 ~arm64 ~ppc64 x86"
19
	KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
20 20
fi
21 21

  
22 22
LICENSE="GPL-3"
......
92 92
	)
93 93
"
94 94

  
95
PATCHES=(
96
	"${FILESDIR}/clementine-1.4.0_rc2-lz.patch"
97
)
98

  
99 95
DOCS=( Changelog README.md )
100 96

  
101 97
src_prepare() {
......
116 112
}
117 113

  
118 114
src_configure() {
119
	# spotify is not in portage
120 115
	local mycmakeargs=(
121 116
		-DBUILD_WERROR=OFF
122 117
		# avoid automagically enabling of ccache (bug #611010)
123 118
		-DCCACHE_EXECUTABLE=OFF
124 119
		-DENABLE_BREAKPAD=OFF  #< disable crash reporting
125 120
		-DENABLE_GIO=ON
126
		-DENABLE_SPOTIFY=OFF
127
		-DENABLE_SPOTIFY_BLOB=OFF
128 121
		-DUSE_SYSTEM_GMOCK=ON
129 122
		-DUSE_SYSTEM_PROJECTM=ON
130 123
		-DBUNDLE_PROJECTM_PRESETS=OFF
Thank you!