diff options
author | 2024-07-03 12:47:49 +0700 | |
---|---|---|
committer | 2024-07-03 12:48:40 +0700 | |
commit | 94b4114fe9fd8130eb75fe82122eec1a67027c33 (patch) | |
tree | 5400f79f7ba75a77d12129e273470c07e7d0f54c | |
parent | app-shells/ksh: Stabilize 1.0.8 x86, #935380 (diff) | |
download | gentoo-94b4114fe9fd8130eb75fe82122eec1a67027c33.tar.gz gentoo-94b4114fe9fd8130eb75fe82122eec1a67027c33.tar.bz2 gentoo-94b4114fe9fd8130eb75fe82122eec1a67027c33.zip |
sci-mathematics/wxmaxima: call setup-wxwidgets from src_configure
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
-rw-r--r-- | sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild b/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild index 3fbeb1a253b0..18b5ffff5949 100644 --- a/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild +++ b/sci-mathematics/wxmaxima/wxmaxima-24.05.0.ebuild @@ -27,7 +27,6 @@ RDEPEND="${DEPEND} sci-mathematics/maxima" src_prepare() { - setup-wxwidgets cmake_src_prepare sed -e "s|GPL.txt ||g" -e "s|share/doc/${PN}|share/doc/${PF}|g" -i CMakeLists.txt \ @@ -48,6 +47,8 @@ src_prepare() { } src_configure() { + setup-wxwidgets + local mycmakeargs=( -DWXM_UNIT_TESTS=$(usex test) -DWXM_DISABLE_WEBVIEW=$(usex webkit OFF ON) |