diff options
author | 2010-03-02 15:30:57 +0000 | |
---|---|---|
committer | 2010-03-02 15:30:57 +0000 | |
commit | cb90fce425c55077d7a0224347e93a8d674cd66c (patch) | |
tree | 9fd57ec877f9f8b2dfe1c51ed924ce1103ad1498 | |
parent | Version bump KDE 4.4.1 (diff) | |
download | gentoo-2-cb90fce425c55077d7a0224347e93a8d674cd66c.tar.gz gentoo-2-cb90fce425c55077d7a0224347e93a8d674cd66c.tar.bz2 gentoo-2-cb90fce425c55077d7a0224347e93a8d674cd66c.zip |
Version bump KDE 4.4.1
(Portage version: 2.2_rc63/cvs/Linux x86_64, RepoMan options: --force)
-rw-r--r-- | kde-base/cantor/ChangeLog | 8 | ||||
-rw-r--r-- | kde-base/cantor/cantor-4.4.1.ebuild | 43 |
2 files changed, 50 insertions, 1 deletions
diff --git a/kde-base/cantor/ChangeLog b/kde-base/cantor/ChangeLog index 0f381cf424e8..e44bf7654240 100644 --- a/kde-base/cantor/ChangeLog +++ b/kde-base/cantor/ChangeLog @@ -1,6 +1,12 @@ # 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.3 2010/02/23 10:28:00 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/cantor/ChangeLog,v 1.4 2010/03/02 15:30:57 tampakrap Exp $ + +*cantor-4.4.1 (02 Mar 2010) + + 02 Mar 2010; Theo Chatzimichos <tampakrap@gentoo.org> + +cantor-4.4.1.ebuild: + Version bump 23 Feb 2010; Joseph Jezak <josejx@gentoo.org> ChangeLog: Marked ~ppc/~ppc64 for bug #304365. diff --git a/kde-base/cantor/cantor-4.4.1.ebuild b/kde-base/cantor/cantor-4.4.1.ebuild new file mode 100644 index 000000000000..a3fad979c8dc --- /dev/null +++ b/kde-base/cantor/cantor-4.4.1.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.1.ebuild,v 1.1 2010/03/02 15:30:57 tampakrap 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 +} |