Diff labplot-2.9.0-r1 with a labplot-2.10.1

/usr/portage/sci-visualization/labplot/labplot-2.10.1.ebuild 2023-10-09 14:52:35.268368496 +0300
13 13
DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks"
14 14
HOMEPAGE="https://labplot.kde.org/ https://apps.kde.org/labplot2/"
15 15
if [[ ${KDE_BUILD_TYPE} = release ]]; then
16
	SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
16
	SRC_URI="mirror://kde/stable/${PN}/${P}.tar.xz"
17 17
	KEYWORDS="~amd64 ~x86"
18 18
fi
19 19

  
20 20
LICENSE="GPL-2"
21 21
SLOT="5"
22
IUSE="cantor fftw fits hdf5 libcerf markdown matio netcdf origin root serial telemetry"
22
IUSE="cantor excel fftw fits hdf5 libcerf markdown matio netcdf origin root serial telemetry"
23 23

  
24 24
DEPEND="
25 25
	app-text/poppler
......
50 50
		>=kde-frameworks/kparts-${KFMIN}:5
51 51
		>=kde-frameworks/kservice-${KFMIN}:5
52 52
	)
53
	excel? ( dev-libs/qxlsx:= )
53 54
	fftw? ( sci-libs/fftw:3.0= )
54 55
	fits? ( sci-libs/cfitsio:= )
55 56
	hdf5? ( sci-libs/hdf5:= )
......
72 73
	sys-devel/gettext
73 74
"
74 75

  
75
PATCHES=( "${FILESDIR}/${P}-discount-3.patch" )
76

  
77 76
src_configure() {
78 77
	local mycmakeargs=(
79 78
		-DENABLE_MQTT=OFF # not packaged
80 79
		-DENABLE_READSTAT=OFF # not packaged
80
		-DENABLE_VECTOR_BLF=OFF # not packaged
81 81
		-DENABLE_CANTOR=$(usex cantor)
82
		-DENABLE_EXCEL=$(usex excel)
82 83
		-DENABLE_FFTW=$(usex fftw)
83 84
		-DENABLE_FITS=$(usex fits)
84 85
		-DENABLE_HDF5=$(usex hdf5)
Thank you!