summaryrefslogtreecommitdiff
path: root/kde-base/cantor/cantor-4.8.80.ebuild
diff options
context:
space:
mode:
authorAlexey Shvetsov <alexxy@gentoo.org>2012-05-25 17:32:39 +0400
committerAlexey Shvetsov <alexxy@gentoo.org>2012-05-25 17:32:39 +0400
commit98514fbedcec008dba469bce3509f234329e62d5 (patch)
tree7b9cb543af2f22bbbd74768ea6d82cbfbb96d896 /kde-base/cantor/cantor-4.8.80.ebuild
parentc7e1b92a16ef00285a87083fdfaacdaae809591f (diff)
downloadkde-98514fbedcec008dba469bce3509f234329e62d5.tar.gz
kde-98514fbedcec008dba469bce3509f234329e62d5.tar.bz2
kde-98514fbedcec008dba469bce3509f234329e62d5.zip
[kde-base] Add KDE SC 4.9 betta1
(Portage version: 2.2.0_alpha108/git/Linux x86_64, unsigned Manifest commit) Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
Diffstat (limited to 'kde-base/cantor/cantor-4.8.80.ebuild')
-rw-r--r--kde-base/cantor/cantor-4.8.80.ebuild45
1 files changed, 45 insertions, 0 deletions
diff --git a/kde-base/cantor/cantor-4.8.80.ebuild b/kde-base/cantor/cantor-4.8.80.ebuild
new file mode 100644
index 00000000000..0c1180e3a28
--- /dev/null
+++ b/kde-base/cantor/cantor-4.8.80.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+KDE_HANDBOOK="optional"
+KDE_SCM="git"
+inherit kde4-base
+
+DESCRIPTION="KDE4 interface for doing mathematics and scientific computing"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="analitza debug ps +R"
+
+# TODO Add Sage Mathematics Software backend (http://www.sagemath.org)
+RDEPEND="
+ analitza? ( $(add_kdebase_dep analitza) )
+ ps? ( app-text/libspectre )
+ R? ( dev-lang/R )
+"
+DEPEND="${RDEPEND}
+ >=dev-cpp/eigen-2.0.3:2
+"
+
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_with analitza)
+ $(cmake-utils_use_with ps LibSpectre)
+ $(cmake-utils_use_with R)
+ )
+ kde4-base_src_configure
+}
+
+pkg_postinst() {
+ kde4-base_pkg_postinst
+
+ if ! 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 'R' USE flag enabled"
+ ewarn " # emerge -vaDu sci-mathematics/maxima"
+ echo
+ fi
+}