diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2010-06-30 15:37:09 +0000 |
commit | aa66be86a5a6d313a757a8082822195e32ec6d44 (patch) | |
tree | 216e32b289318ecc6cc5c758e202354a9ced5982 /kde-base/cantor | |
parent | Use --with-optim to respect CFLAGS (bug #261214). (diff) | |
download | historical-aa66be86a5a6d313a757a8082822195e32ec6d44.tar.gz historical-aa66be86a5a6d313a757a8082822195e32ec6d44.tar.bz2 historical-aa66be86a5a6d313a757a8082822195e32ec6d44.zip |
[kde-base] Bump KDE SC 4.4.5 =)
Package-Manager: portage-2.2_rc67_p182/cvs/Linux x86_64
Diffstat (limited to 'kde-base/cantor')
-rw-r--r-- | kde-base/cantor/ChangeLog | 7 | ||||
-rw-r--r-- | kde-base/cantor/cantor-4.4.5.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/kde-base/cantor/ChangeLog b/kde-base/cantor/ChangeLog index f6f4dc4c5efe..e62e242dabd3 100644 --- a/kde-base/cantor/ChangeLog +++ b/kde-base/cantor/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for kde-base/cantor # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/ChangeLog,v 1.11 2010/06/27 09:21:27 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/ChangeLog,v 1.12 2010/06/30 15:36:55 alexxy Exp $ + +*cantor-4.4.5 (30 Jun 2010) + + 30 Jun 2010; Alexey Shvetsov <alexxy@gentoo.org> +cantor-4.4.5.ebuild: + Version bump 27 Jun 2010; Christian Faulhammer <fauli@gentoo.org> cantor-4.4.4.ebuild: x86 stable, bug 322791 diff --git a/kde-base/cantor/cantor-4.4.5.ebuild b/kde-base/cantor/cantor-4.4.5.ebuild new file mode 100644 index 000000000000..da17b3c04302 --- /dev/null +++ b/kde-base/cantor/cantor-4.4.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/cantor-4.4.5.ebuild,v 1.1 2010/06/30 15:36:55 alexxy Exp $ + +EAPI="3" + +KMNAME="kdeedu" +inherit kde4-meta + +DESCRIPTION="KDE4 interface for doing mathematics and scientific computing" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug +handbook ps +R" + +# TODO Add Sage Mathematics Software backend (http://www.sagemath.org) +RDEPEND=" + ps? ( app-text/libspectre ) + R? ( dev-lang/R ) +" +DEPEND="${RDEPEND} + >=dev-cpp/eigen-2.0.3:2 +" + +src_configure() { + mycmakeargs+=" + $(cmake-utils_use_with ps LibSpectre) + $(cmake-utils_use_with R) + " + + kde4-meta_src_configure +} + +pkg_postinst() { + kde4-meta_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 +} |