diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-06-19 22:17:54 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-06-19 22:17:54 +0000 |
commit | 79b60dfde14f14313c0d8727fbb285e4ffb1d845 (patch) | |
tree | e68b14e5c6cce3f7bf806c0eacadafc849096443 /dev-python/gnuplot-py | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-79b60dfde14f14313c0d8727fbb285e4ffb1d845.tar.gz gentoo-2-79b60dfde14f14313c0d8727fbb285e4ffb1d845.tar.bz2 gentoo-2-79b60dfde14f14313c0d8727fbb285e4ffb1d845.zip |
new gnuplot package
Diffstat (limited to 'dev-python/gnuplot-py')
-rw-r--r-- | dev-python/gnuplot-py/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/gnuplot-py/Manifest | 3 | ||||
-rw-r--r-- | dev-python/gnuplot-py/files/digest-gnuplot-py-1.6 | 1 | ||||
-rw-r--r-- | dev-python/gnuplot-py/gnuplot-py-1.6.ebuild | 24 |
4 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/gnuplot-py/ChangeLog b/dev-python/gnuplot-py/ChangeLog new file mode 100644 index 000000000000..58791a366df0 --- /dev/null +++ b/dev-python/gnuplot-py/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-python/gnuplot-py +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnuplot-py/ChangeLog,v 1.1 2003/06/19 22:17:44 liquidx Exp $ + +*gnuplot-py-1.6 (19 Jun 2003) + + 19 Jun 2003; Alastair Tse <liquidx@gentoo.org> gnuplot-py-1.6.ebuild: + new ebuild submitted by Chris Bainbridge <chrb@dcs.ed.ac.uk> (#21113) + diff --git a/dev-python/gnuplot-py/Manifest b/dev-python/gnuplot-py/Manifest new file mode 100644 index 000000000000..ae10b51379da --- /dev/null +++ b/dev-python/gnuplot-py/Manifest @@ -0,0 +1,3 @@ +MD5 41e54634aa530274705a844f698336e1 gnuplot-py-1.6.ebuild 618 +MD5 d4868fc74bd39743db75ab6daf8412f8 ChangeLog 401 +MD5 e78f98cfb3a978120690eb8cc84e5dda files/digest-gnuplot-py-1.6 65 diff --git a/dev-python/gnuplot-py/files/digest-gnuplot-py-1.6 b/dev-python/gnuplot-py/files/digest-gnuplot-py-1.6 new file mode 100644 index 000000000000..2a5dfc56742a --- /dev/null +++ b/dev-python/gnuplot-py/files/digest-gnuplot-py-1.6 @@ -0,0 +1 @@ +MD5 3c2007e81217999358aceaf32f3721bd gnuplot-py-1.6.tar.gz 83811 diff --git a/dev-python/gnuplot-py/gnuplot-py-1.6.ebuild b/dev-python/gnuplot-py/gnuplot-py-1.6.ebuild new file mode 100644 index 000000000000..b38a3a99fb48 --- /dev/null +++ b/dev-python/gnuplot-py/gnuplot-py-1.6.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/gnuplot-py/gnuplot-py-1.6.ebuild,v 1.1 2003/06/19 22:17:44 liquidx Exp $ + +inherit distutils + +IUSE="" +DESCRIPTION="A python wrapper for Gnuplot" +HOMEPAGE="http://gnuplot-py.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~x86" +SLOT="0" +DEPEND="virtual/python + media-gfx/gnuplot + dev-python/Numeric" + +src_install() { + distutils_src_install + dohtml doc/Gnuplot/* + insinto /usr/share/doc/${PF} + doins demo.py +} |