diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-06-19 15:16:24 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-06-19 15:16:24 +0000 |
commit | 65c4bb6c8de96980f8ac09910507f45ecca22c25 (patch) | |
tree | 830476393e4bbf58043467436c58a532db8a0d9e /sci-mathematics | |
parent | cleaned out old ebuild(s). (diff) | |
download | gentoo-2-65c4bb6c8de96980f8ac09910507f45ecca22c25.tar.gz gentoo-2-65c4bb6c8de96980f8ac09910507f45ecca22c25.tar.bz2 gentoo-2-65c4bb6c8de96980f8ac09910507f45ecca22c25.zip |
Added gnuplot for run-time dependency for plotting and a warning if not built with wxwindows flag, see bug #225507
(Portage version: 2.1.4.4)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/wxmaxima/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild | 11 |
2 files changed, 16 insertions, 2 deletions
diff --git a/sci-mathematics/wxmaxima/ChangeLog b/sci-mathematics/wxmaxima/ChangeLog index db840e797868..dffa7d02ad90 100644 --- a/sci-mathematics/wxmaxima/ChangeLog +++ b/sci-mathematics/wxmaxima/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/wxmaxima # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/ChangeLog,v 1.17 2008/04/29 09:01:39 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/ChangeLog,v 1.18 2008/06/19 15:16:24 bicatali Exp $ + + 19 Jun 2008; Sébastien Fabbro <bicatali@gentoo.org> + wxmaxima-0.7.5.ebuild: + Added gnuplot for run-time dependency for plotting and a warning if not + built with wxwindows flag, see bug #225507 *wxmaxima-0.7.5 (29 Apr 2008) diff --git a/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild b/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild index a7939a29dd30..987068737eaf 100644 --- a/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild +++ b/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild,v 1.1 2008/04/29 09:01:39 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/wxmaxima-0.7.5.ebuild,v 1.2 2008/06/19 15:16:24 bicatali Exp $ WX_GTK_VER="2.8" EAPI="1" @@ -20,10 +20,19 @@ IUSE="unicode" DEPEND=">=dev-libs/libxml2-2.5.0 x11-libs/wxGTK:2.8" RDEPEND="${DEPEND} + sci-visualization/gnuplot >=sci-mathematics/maxima-5.15.0" S="${WORKDIR}/${MYP}" +pkg_setup() { + if ! built_with_use sci-visualization/gnuplot wxwindows; then + elog "To benefit full plotting capability of wxmaxima," + elog "enable the wxwindows USE flag for sci-visualization/gnuplot" + epause 5 + fi +} + src_compile () { # consistent package names |