From e27ece5392de8d02a45f19e55cbf8feeba3a19d3 Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Tue, 7 Jul 2026 23:28:06 +0200 Subject: [PATCH] sci-mathematics/octave: Switch to qt-utils.eclass Paths to Qt6 binaries should probably be broot'd, use new qt_get_broot_binary function. Signed-off-by: Andreas Sturmlechner --- sci-mathematics/octave/octave-11.1.0.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sci-mathematics/octave/octave-11.1.0.ebuild b/sci-mathematics/octave/octave-11.1.0.ebuild index 5db16a09b533a..17ecbe63356d0 100644 --- a/sci-mathematics/octave/octave-11.1.0.ebuild +++ b/sci-mathematics/octave/octave-11.1.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit flag-o-matic fortran-2 java-pkg-opt-2 pax-utils qmake-utils toolchain-funcs xdg +inherit flag-o-matic fortran-2 java-pkg-opt-2 pax-utils qt-utils toolchain-funcs xdg DESCRIPTION="High-level interactive language for numerical computations" HOMEPAGE="https://octave.org" @@ -180,11 +180,11 @@ src_configure() { # Tell autoconf where to find qt binaries, fix bug #837752 if use gui ; then - export MOC="$(qt6_get_libexecdir)/moc" \ - UIC="$(qt6_get_libexecdir)/uic" \ - RCC="$(qt6_get_libexecdir)/rcc" \ - LRELEASE="$(qt6_get_bindir)/lrelease" \ - QHELPGENERATOR="$(qt6_get_libexecdir)/qhelpgenerator" + export MOC="$(qt_get_broot_binary 6 moc)" \ + UIC="$(qt_get_broot_binary 6 uic)" \ + RCC="$(qt_get_broot_binary 6 rcc)" \ + LRELEASE="$(qt_get_broot_binary 6 lrelease)" \ + QHELPGENERATOR="$(qt_get_broot_binary 6 qhelpgenerator)" fi econf "${myeconfargs[@]}"