diff options
Diffstat (limited to 'math/py-gnuplot')
-rw-r--r-- | math/py-gnuplot/Makefile | 36 | ||||
-rw-r--r-- | math/py-gnuplot/distinfo | 2 | ||||
-rw-r--r-- | math/py-gnuplot/pkg-descr | 20 |
3 files changed, 0 insertions, 58 deletions
diff --git a/math/py-gnuplot/Makefile b/math/py-gnuplot/Makefile deleted file mode 100644 index c0b0d3cfe1cf..000000000000 --- a/math/py-gnuplot/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# Created by: Maxim Sobolev <sobomax@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= gnuplot -PORTVERSION= 1.8 -PORTREVISION= 10 -CATEGORIES= math python -MASTER_SITES= SF/${PORTNAME}-py/Gnuplot-py/${PORTVERSION} -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= gnuplot-py-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Python interface to gnuplot plotting program - -DEPRECATED= Unmaintained, uses EOLed python27 -EXPIRATION_DATE= 2020-01-27 - -LICENSE= LGPL21 - -BUILD_DEPENDS= ${PYNUMPY} -RUN_DEPENDS= gnuplot:math/gnuplot \ - ${PYNUMPY} - -USES= python:2.7 -USE_PYTHON= distutils autoplist -NO_ARCH= yes - -PORTDOCS= * - -OPTIONS_DEFINE= DOCS - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}) - -.include <bsd.port.mk> diff --git a/math/py-gnuplot/distinfo b/math/py-gnuplot/distinfo deleted file mode 100644 index 380a044a8ffc..000000000000 --- a/math/py-gnuplot/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gnuplot-py-1.8.tar.gz) = ab339be7847d30a8acfd616f27b5021bfde0999b7bf2d68400fbe62c53106e21 -SIZE (gnuplot-py-1.8.tar.gz) = 118828 diff --git a/math/py-gnuplot/pkg-descr b/math/py-gnuplot/pkg-descr deleted file mode 100644 index ace147211281..000000000000 --- a/math/py-gnuplot/pkg-descr +++ /dev/null @@ -1,20 +0,0 @@ -Gnuplot.py is a Python package that interfaces to gnuplot, the popular plotting -program. It allows you to use gnuplot from within Python to plot arrays of data -from memory, data files, or mathematical functions. If you use Python to -perform computations or as `glue' for numerical programs, you can use this -package to plot data on the fly as they are computed. And the combination with -Python makes it is easy to automate things, including to create crude -`animations' by plotting different datasets one after another. - -Commands are communicated to gnuplot through a pipe and data either through -the same pipe (as "inline" data) or through temporary files. It has been -written and tested on a Unix computer. - -This package has an object-oriented design that allows the user flexibility to -set plot options and to run multiple gnuplot sessions simultaneously. If you -are more ambitious, it is not difficult to add entirely new types of plottable -items by deriving from the `PlotItem' class. - -For a demonstration, run the python file by typing `python demo.py'. - -WWW: http://gnuplot-py.sourceforge.net/ |