diff options
author | 2006-07-16 13:39:08 +0000 | |
---|---|---|
committer | 2006-07-16 13:39:08 +0000 | |
commit | 4043ecc24e150f00bb25dae2aa6589251507dca4 (patch) | |
tree | bd715903c401b1bcf129280ae09a1bd575b0d8d3 /dev-python | |
parent | ppc stable, bug #140617 (diff) | |
download | gentoo-2-4043ecc24e150f00bb25dae2aa6589251507dca4.tar.gz gentoo-2-4043ecc24e150f00bb25dae2aa6589251507dca4.tar.bz2 gentoo-2-4043ecc24e150f00bb25dae2aa6589251507dca4.zip |
version bump. (#136429)
(Portage version: 2.1-r1)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/matplotlib/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/matplotlib/files/digest-matplotlib-0.80-r1 | 2 | ||||
-rw-r--r-- | dev-python/matplotlib/files/digest-matplotlib-0.87.3 | 3 | ||||
-rw-r--r-- | dev-python/matplotlib/matplotlib-0.87.3.ebuild | 58 |
4 files changed, 71 insertions, 1 deletions
diff --git a/dev-python/matplotlib/ChangeLog b/dev-python/matplotlib/ChangeLog index 850fc4c19d88..0b291c668117 100644 --- a/dev-python/matplotlib/ChangeLog +++ b/dev-python/matplotlib/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-python/matplotlib # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.21 2006/04/04 23:26:52 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/ChangeLog,v 1.22 2006/07/16 13:39:08 liquidx Exp $ + +*matplotlib-0.87.3 (16 Jul 2006) + + 16 Jul 2006; Alastair Tse <liquidx@gentoo.org> -matplotlib-0.73.1.ebuild, + -matplotlib-0.81.ebuild, -matplotlib-0.82.ebuild, -matplotlib-0.85.ebuild, + -matplotlib-0.86.2-r1.ebuild, +matplotlib-0.87.3.ebuild: + version bump. (#136429) *matplotlib-0.87.2 (04 Apr 2006) *matplotlib-0.86.2-r1 (04 Apr 2006) diff --git a/dev-python/matplotlib/files/digest-matplotlib-0.80-r1 b/dev-python/matplotlib/files/digest-matplotlib-0.80-r1 index 7a9c9bca874e..5dc5f43cb0ca 100644 --- a/dev-python/matplotlib/files/digest-matplotlib-0.80-r1 +++ b/dev-python/matplotlib/files/digest-matplotlib-0.80-r1 @@ -1 +1,3 @@ MD5 0374c439d3fcbca193c1333b84713674 matplotlib-0.80.tar.gz 2332845 +RMD160 503924ec1567605f53b3f01656129035b688362e matplotlib-0.80.tar.gz 2332845 +SHA256 9420b5eb388378310da24a00c9c8b9c0e233e37019f46ff105edd58a07ffb8f0 matplotlib-0.80.tar.gz 2332845 diff --git a/dev-python/matplotlib/files/digest-matplotlib-0.87.3 b/dev-python/matplotlib/files/digest-matplotlib-0.87.3 new file mode 100644 index 000000000000..889f54033345 --- /dev/null +++ b/dev-python/matplotlib/files/digest-matplotlib-0.87.3 @@ -0,0 +1,3 @@ +MD5 9e961e90be07701ab6a99aa8cdc6b831 matplotlib-0.87.3.tar.gz 2693700 +RMD160 f658b43c5b2b3ab01fef2bcf4323dd11253794ae matplotlib-0.87.3.tar.gz 2693700 +SHA256 ff0e7f507622c7ccd46649c83126f3a81c1dc63b928dcce7fff6eb65b1f7cece matplotlib-0.87.3.tar.gz 2693700 diff --git a/dev-python/matplotlib/matplotlib-0.87.3.ebuild b/dev-python/matplotlib/matplotlib-0.87.3.ebuild new file mode 100644 index 000000000000..8b9568a0823b --- /dev/null +++ b/dev-python/matplotlib/matplotlib-0.87.3.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/matplotlib/matplotlib-0.87.3.ebuild,v 1.1 2006/07/16 13:39:08 liquidx Exp $ + +inherit distutils python + +DESCRIPTION="matplotlib is a pure python plotting library designed to bring publication quality plotting to python with a syntax familiar to matlab users." +HOMEPAGE="http://matplotlib.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +IUSE="doc gtk tcltk" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +LICENSE="PYTHON" + +DEPEND="virtual/python + || ( + >=dev-python/numeric-22 + dev-python/numarray + dev-python/numpy + ) + >=media-libs/freetype-2.1.7 + media-libs/libpng + sys-libs/zlib + gtk? ( >=dev-python/pygtk-2.2 ) + dev-python/pytz + dev-python/python-dateutil" + + +pkg_setup() { + if use tcltk; then + python_tkinter_exists + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + + # disable autodetection, rely on USE instead + epatch "${FILESDIR}/${PN}-0.86.2-no-autodetect.patch" + sed -i \ + -e "/^BUILD_GTK/s/'auto'/$(use gtk && echo 1 || echo 0)/" \ + -e "/^BUILD_WX/s/'auto'/0/" \ + -e "/^BUILD_TK/s/'auto'/$(use tcltk && echo 1 || echo 0)/" \ + setup.py +} + +src_install() { + distutils_src_install + + if use doc ; then + insinto /usr/share/doc/${PF}/examples + doins examples/*.py examples/README + insinto /usr/share/doc/${PF}/examples/data + doins examples/data/*.dat + fi +} |