commit: 8dfdd1d61be81b8f378acf4d0fda14ce0e181123 Author: Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com> AuthorDate: Sat Mar 11 16:44:17 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Mar 13 18:02:49 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dfdd1d6
media-libs/codec2: disable tests in configure phase for now Tries to look for octave during configure phase if unit tests are turned on and bails out during configure if it cannot find it. Since we have test dependency disabled for now, don't flip this configure flag. Bug: https://bugs.gentoo.org/896112 Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com> Closes: https://github.com/gentoo/gentoo/pull/30055 Signed-off-by: Sam James <sam <AT> gentoo.org> media-libs/codec2/codec2-1.0.5.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/codec2/codec2-1.0.5.ebuild b/media-libs/codec2/codec2-1.0.5.ebuild index 6bb8b64fb122..b5913162c667 100644 --- a/media-libs/codec2/codec2-1.0.5.ebuild +++ b/media-libs/codec2/codec2-1.0.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -23,7 +23,12 @@ RESTRICT="test" multilib_src_configure() { local mycmakeargs=( - -DUNITTEST=$(usex test) + # tries to look for octave during configure phase if unit + # tests are turned on and bails out during configure if it + # cannot find it. since we have test dependency disabled + # for now, don't flip this configure flag + # -DUNITTEST=$(usex test) # reenable once tests wired up + -DUNITTEST=no -DINSTALL_EXAMPLES=$(usex examples) )
