summaryrefslogtreecommitdiff
path: root/kde-apps/cantor
diff options
context:
space:
mode:
Diffstat (limited to 'kde-apps/cantor')
-rw-r--r--kde-apps/cantor/Manifest1
-rw-r--r--kde-apps/cantor/cantor-15.04.0.ebuild91
2 files changed, 0 insertions, 92 deletions
diff --git a/kde-apps/cantor/Manifest b/kde-apps/cantor/Manifest
index b16764fd8a8..0f7cf017a97 100644
--- a/kde-apps/cantor/Manifest
+++ b/kde-apps/cantor/Manifest
@@ -1,3 +1,2 @@
DIST cantor-14.12.3.tar.xz 343700 SHA256 3efd168d0855bcbdf75d5a9fd9599c1cb2830a5e155d6ba00f44884cee4bd380 SHA512 c538958b04519c8ccf7540be038d87fe733b310c54ed396004c483a915153078d65945173233477b0d2d725bee7aee4c82c83b4a5a348da5f4057e128143a35c WHIRLPOOL 1403fefe6541ac6f5af47decf1372da69c02ef0008d4dc195409081427770fd7c446c65a616c547f6a4c591f5c3408e91152634013ee0d4d1ee5141247a1e7bc
-DIST cantor-15.04.0.tar.xz 356044 SHA256 77749aa0348d5c3d09c4731bc2050cd5388504c529ae9d73a28e3afec60df45a SHA512 722af5bfe650977ee9ff2c678169acb2cd962123dff5b8580f550ba904b23a5259deb3e7221e87dd9d647c969f9ed0c23a458ccb5e0f8d2c4895fd75c333f805 WHIRLPOOL 255af7f4ecb981d348112be0866b7e613fdd9b86ce2729d89cd9eb44ba54f828bf5f3eab28f9e30e0153e4f778c21fc1b246394e61338126fa1686d92aa3dd4b
DIST cantor-15.04.1.tar.xz 355628 SHA256 cb7fd9df2fe17eb91a1189780663279034b67c5182fa81f5eef067c2b96b9466 SHA512 5bd5158405f2b9ea723396eff6b69151e50d878aba575a8c99f62a42357f33a69173b252c4611299cfbbf14ea006d2c192c993591eca9141d20ebd844a568777 WHIRLPOOL 909a2515d11f4f7ead72140ef5def188b9ac4eb4ad6e23a8e745c8a6ce6a67199cdce5ad8ae3eeab66b3ee61feafd661a2a47836748255bf0157735eb5d0cbfe
diff --git a/kde-apps/cantor/cantor-15.04.0.ebuild b/kde-apps/cantor/cantor-15.04.0.ebuild
deleted file mode 100644
index 4555cd43219..00000000000
--- a/kde-apps/cantor/cantor-15.04.0.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-KDE_HANDBOOK="true"
-KDE_TEST="true"
-PYTHON_COMPAT=( python2_7 )
-# FIXME: PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
-inherit kde5 python-r1
-
-DESCRIPTION="Interface for doing mathematics and scientific computing"
-HOMEPAGE="http://www.kde.org/applications/education/cantor http://edu.kde.org/cantor"
-KEYWORDS=" ~amd64"
-IUSE="analitza lua postscript python qalculate +R"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-# TODO Add Sage Mathematics Software backend (http://www.sagemath.org)
-# FIXME: $(python_gen_cond_dep 'dev-qt/qtdbus:5' 'python3*')
-RDEPEND="
- $(add_frameworks_dep karchive)
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kdelibs4support)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep knewstuff)
- $(add_frameworks_dep kparts)
- $(add_frameworks_dep kpty)
- $(add_frameworks_dep ktexteditor)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kxmlgui)
- dev-qt/qtgui:5
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- dev-qt/qtxmlpatterns:5
- analitza? ( $(add_kdeapps_dep analitza) )
- lua? ( dev-lang/luajit:2 )
- qalculate? (
- sci-libs/cln
- sci-libs/libqalculate
- )
- postscript? ( app-text/libspectre )
- python? ( ${PYTHON_DEPS} )
- R? ( dev-lang/R )
-"
-DEPEND="${RDEPEND}
- >=dev-cpp/eigen-2.0.3:2
-"
-
-RESTRICT="test"
-
-pkg_setup() {
- use python && python_setup
- kde5_pkg_setup
-}
-
-src_prepare() {
- # FIXME: shipped FindPythonLibs3.cmake does not work for Gentoo
- sed -e '/^find_package(PythonLibs3)/ s/^/#/' \
- -i src/backends/CMakeLists.txt || die
-}
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_find_package analitza Analitza5)
- $(cmake-utils_use_find_package lua LuaJIT)
- $(cmake-utils_use_find_package postscript LibSpectre)
- $(cmake-utils_use_find_package python PythonLibs)
- $(cmake-utils_use_find_package qalculate)
- $(cmake-utils_use_find_package R)
- )
- kde5_src_configure
-}
-
-pkg_postinst() {
- kde5_pkg_postinst
-
- if ! use analitza && ! use lua && ! use python && ! use qalculate && ! use R; then
- echo
- ewarn "You have decided to build ${PN} with no backend."
- ewarn "To have this application functional, please do one of below:"
- ewarn " # emerge -va1 '='${CATEGORY}/${P} with 'analitza', 'lua', 'python', 'qalculate' or 'R' USE flag enabled"
- ewarn " # emerge -vaDu sci-mathematics/maxima"
- echo
- fi
-}