Diff octave-9.2.0-r2 with a octave-11.1.0

/usr/portage/sci-mathematics/octave/octave-11.1.0.ebuild 2026-07-15 20:03:04.607985631 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools flag-o-matic fortran-2 java-pkg-opt-2 pax-utils qmake-utils toolchain-funcs xdg
6
inherit flag-o-matic fortran-2 java-pkg-opt-2 pax-utils qt-utils toolchain-funcs xdg
7 7

  
8 8
DESCRIPTION="High-level interactive language for numerical computations"
9
HOMEPAGE="https://www.gnu.org/software/octave/"
9
HOMEPAGE="https://octave.org"
10 10
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
11 11

  
12
LICENSE="GPL-3"
12
LICENSE="GPL-3+ CC0-1.0 public-domain || ( GPL-3 GPL-2 LGPL-3 )"
13 13
SLOT="0/${PV}"
14
KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
14
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
15 15

  
16 16
IUSE="curl doc fftw +glpk gnuplot gui hdf5 imagemagick java json klu portaudio postscript +qhull +qrupdate readline sndfile +sparse spqr ssl sundials zlib"
17 17

  
......
113 113
	# occasional fail on install, force regeneration (bug #401189)
114 114
	rm doc/interpreter/contributors.texi || die
115 115

  
116
	eautoreconf
117

  
118 116
	# bug 956766
119 117
	rm build-aux/texinfo.tex || die
120 118
}
......
182 180

  
183 181
	# Tell autoconf where to find qt binaries, fix bug #837752
184 182
	if use gui ; then
185
		export MOC="$(qt6_get_libexecdir)/moc" \
186
			UIC="$(qt6_get_libexecdir)/uic" \
187
			RCC="$(qt6_get_libexecdir)/rcc" \
188
			LRELEASE="$(qt6_get_bindir)/lrelease" \
189
			QHELPGENERATOR="$(qt6_get_libexecdir)/qhelpgenerator"
183
		export MOC="$(qt_get_broot_binary 6 moc)" \
184
			UIC="$(qt_get_broot_binary 6 uic)" \
185
			RCC="$(qt_get_broot_binary 6 rcc)" \
186
			LRELEASE="$(qt_get_broot_binary 6 lrelease)" \
187
			QHELPGENERATOR="$(qt_get_broot_binary 6 qhelpgenerator)"
190 188
	fi
191 189

  
192 190
	econf "${myeconfargs[@]}"
Thank you!