mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-18 15:09:04 -07:00
kde-apps/cantor: 24.12.2 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST cantor-24.12.1.tar.xz 10872328 BLAKE2B eba68eff91057aa7b56a176192c79bed099bf25b66222ee0984f700cb60a7832378ab139fe4b6c535afc53cab86664fef17642fa18e46cb27dc9e401cd2c39d2 SHA512 6df646331c6e67e421fb95ddd6c52587c5c2ce3df1030409c0263b6648fbc792321b48b2048879d7b546ed2bd5b0511b487a4724e142f44caf7bce9cfbf6ef1a
|
||||
DIST cantor-24.12.2.tar.xz 10875764 BLAKE2B da8edb9c39b985bcc91718c1f785df6217c6cfd6d9a0b7f55386d9fa3da28a56051ca5fd24ea5929d04f6ceca9e014aa277163c47e30e9be7e0c49bb58e13a1b SHA512 5fa044590af71cc25d9e07baddc67964a374efe945c7b3908feb991e4bf32d305969a6633b9c063077e9b8b2aa70442e535e4f2c7219f7323e647fb3689c532c
|
||||
|
||||
117
kde-apps/cantor/cantor-24.12.2.ebuild
Normal file
117
kde-apps/cantor/cantor-24.12.2.ebuild
Normal file
@@ -0,0 +1,117 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
CMAKE_MAKEFILE_GENERATOR="emake"
|
||||
ECM_HANDBOOK="forceoptional"
|
||||
ECM_TEST="forceoptional"
|
||||
LUA_COMPAT=( luajit )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PVCUT=$(ver_cut 1-3)
|
||||
KFMIN=6.7.0
|
||||
QTMIN=6.7.2
|
||||
inherit ecm gear.kde.org lua-single optfeature python-single-r1
|
||||
|
||||
DESCRIPTION="Interface for doing mathematics and scientific computing"
|
||||
HOMEPAGE="https://apps.kde.org/cantor/"
|
||||
|
||||
LICENSE="GPL-2" # TODO: CHECK
|
||||
SLOT="6"
|
||||
KEYWORDS="~amd64 ~arm64"
|
||||
IUSE="+analitza julia lua postscript python qalculate R webengine"
|
||||
|
||||
REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) python? ( ${PYTHON_REQUIRED_USE} )"
|
||||
RESTRICT="test"
|
||||
|
||||
# TODO Add Sage Mathematics Software backend (https://www.sagemath.org)
|
||||
DEPEND="
|
||||
>=app-text/poppler-23.12.0[qt6]
|
||||
dev-libs/libxml2:2
|
||||
dev-libs/libxslt
|
||||
>=dev-qt/qtbase-${QTMIN}:6[gui,widgets,xml]
|
||||
>=dev-qt/qtsvg-${QTMIN}:6
|
||||
>=kde-frameworks/karchive-${KFMIN}:6
|
||||
>=kde-frameworks/kcompletion-${KFMIN}:6
|
||||
>=kde-frameworks/kconfig-${KFMIN}:6
|
||||
>=kde-frameworks/kconfigwidgets-${KFMIN}:6
|
||||
>=kde-frameworks/kcoreaddons-${KFMIN}:6
|
||||
>=kde-frameworks/kcrash-${KFMIN}:6
|
||||
>=kde-frameworks/ki18n-${KFMIN}:6
|
||||
>=kde-frameworks/kiconthemes-${KFMIN}:6
|
||||
>=kde-frameworks/kio-${KFMIN}:6
|
||||
>=kde-frameworks/knewstuff-${KFMIN}:6
|
||||
>=kde-frameworks/kparts-${KFMIN}:6
|
||||
>=kde-frameworks/ktexteditor-${KFMIN}:6
|
||||
>=kde-frameworks/ktextwidgets-${KFMIN}:6
|
||||
>=kde-frameworks/kwidgetsaddons-${KFMIN}:6
|
||||
>=kde-frameworks/kxmlgui-${KFMIN}:6
|
||||
>=kde-frameworks/syntax-highlighting-${KFMIN}:6
|
||||
analitza? ( >=kde-apps/analitza-${PVCUT}:6 )
|
||||
julia? ( dev-lang/julia )
|
||||
lua? ( ${LUA_DEPS} )
|
||||
qalculate? (
|
||||
sci-libs/cln
|
||||
sci-libs/libqalculate:=
|
||||
)
|
||||
postscript? ( app-text/libspectre )
|
||||
python? (
|
||||
${PYTHON_DEPS}
|
||||
>=dev-qt/qtbase-${QTMIN}:6[dbus]
|
||||
)
|
||||
R? ( dev-lang/R )
|
||||
webengine? (
|
||||
>=dev-qt/qttools-${QTMIN}:6[assistant]
|
||||
>=dev-qt/qtwebengine-${QTMIN}:6[widgets]
|
||||
)
|
||||
"
|
||||
# !analitza?
|
||||
RDEPEND="${DEPEND}
|
||||
!analitza? ( !julia? ( !lua? ( !python? ( !qalculate? ( !R? (
|
||||
|| (
|
||||
sci-mathematics/maxima
|
||||
sci-mathematics/octave
|
||||
)
|
||||
) ) ) ) ) )
|
||||
"
|
||||
BDEPEND="x11-misc/shared-mime-info"
|
||||
|
||||
pkg_setup() {
|
||||
use lua && lua-single_pkg_setup
|
||||
use python && python-single-r1_pkg_setup
|
||||
ecm_pkg_setup
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
use julia && addpredict /proc/self/mem # bug 602894
|
||||
|
||||
local mycmakeargs=(
|
||||
$(cmake_use_find_package analitza Analitza6)
|
||||
$(cmake_use_find_package julia Julia)
|
||||
$(cmake_use_find_package lua LuaJIT)
|
||||
-DUSE_LIBSPECTRE=$(usex postscript)
|
||||
$(cmake_use_find_package python Python3)
|
||||
$(cmake_use_find_package qalculate Qalculate)
|
||||
$(cmake_use_find_package R R)
|
||||
-DENABLE_EMBEDDED_DOCUMENTATION=$(usex webengine)
|
||||
)
|
||||
use lua && mycmakeargs+=(
|
||||
-DLUAJIT_INCLUDEDIR="${EPREFIX}/$(lua_get_include_dir)"
|
||||
-DLUAJIT_LIBDIR="${EPREFIX}/$(lua_get_cmod_dir)"
|
||||
)
|
||||
ecm_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# -j1 for bug #919576
|
||||
MAKEOPTS="-j1" ecm_src_compile
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z "${REPLACING_VERSIONS}" ]]; then
|
||||
optfeature "Maxima backend" sci-mathematics/maxima
|
||||
optfeature "Octave backend" sci-mathematics/octave
|
||||
optfeature "LaTeX support" virtual/latex-base
|
||||
fi
|
||||
ecm_pkg_postinst
|
||||
}
|
||||
Reference in New Issue
Block a user