diff options
Diffstat (limited to 'math/ruby-gnuplot')
-rw-r--r-- | math/ruby-gnuplot/Makefile | 55 | ||||
-rw-r--r-- | math/ruby-gnuplot/distinfo | 2 | ||||
-rw-r--r-- | math/ruby-gnuplot/pkg-descr | 23 | ||||
-rw-r--r-- | math/ruby-gnuplot/pkg-plist | 2 |
4 files changed, 0 insertions, 82 deletions
diff --git a/math/ruby-gnuplot/Makefile b/math/ruby-gnuplot/Makefile deleted file mode 100644 index 697b73895fff..000000000000 --- a/math/ruby-gnuplot/Makefile +++ /dev/null @@ -1,55 +0,0 @@ -# Created by: Akinori MUSHA aka knu <knu@idaemons.org> -# $FreeBSD$ - -PORTNAME= gnuplot -PORTVERSION= 0.5 -PORTREVISION= 7 -CATEGORIES= math ruby -MASTER_SITES= SF/r${PORTNAME}/OldFiles -PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} -DISTNAME= r${PORTNAME}-${PORTVERSION} -DIST_SUBDIR= ruby - -MAINTAINER= ruby@FreeBSD.org -COMMENT= Pipe-based interface to the gnuplot package for Ruby - -RUN_DEPENDS= ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot \ - ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray - -OPTIONS_DEFINE= DOCS EXAMPLES - -USE_RUBY= yes - -RUBY_SHEBANG_FILES= ${WRKSRC}/*.rb - -NO_BUILD= yes - -WRKSRC= ${WRKDIR}/gplot - -DOCSDIR= ${RUBY_MODDOCDIR} -EXAMPLESDIR= ${RUBY_MODEXAMPLESDIR} -PORTDOCS= * -PORTEXAMPLES= * - -DEPRECATED= Depends on deprecated math/ruby-narray -EXPIRATION_DATE= 2014-09-20 - -MAKE_ARGS= INSTALL_PROG="${INSTALL_PROGRAM}" \ - INSTALL_DATA="${INSTALL_DATA}" - -post-patch: - ${RUBY} -i.orig -p \ - -e 'gsub %r:#!/bin/env:, "#!/usr/bin/env"' \ - ${WRKSRC}/Gnuplot.rb - -do-install: - @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/gplot - ${INSTALL_DATA} ${WRKSRC}/Gnuplot.rb ${STAGEDIR}${RUBY_SITELIBDIR}/gplot/ - @${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/*_demo.rb ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ - @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} -.for f in ChangeLog.txt README - ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ -.endfor - -.include <bsd.port.mk> diff --git a/math/ruby-gnuplot/distinfo b/math/ruby-gnuplot/distinfo deleted file mode 100644 index e9a98947fd45..000000000000 --- a/math/ruby-gnuplot/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (ruby/rgnuplot-0.5.tar.gz) = d09d008fe1d19ac2dd5ac62fcc83a5b9e569ced35de65aa9ea945764555c6dd8 -SIZE (ruby/rgnuplot-0.5.tar.gz) = 14359 diff --git a/math/ruby-gnuplot/pkg-descr b/math/ruby-gnuplot/pkg-descr deleted file mode 100644 index 93c2db26df8c..000000000000 --- a/math/ruby-gnuplot/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -Ruby/Gnuplot is a pipe-based interface to the gnuplot package. -Provides the full capabilities of the gnuplot package to Ruby -programs. Inspired by the Python Gnuplot package that works on the -same principle. Here's an example usage of Ruby/Gnuplot: - - require 'narray' - require 'gplot/Gnuplot' - - x = NArray.sfloat(100).indgen! - y = x.collect { |i| i*i } - - plot = Plot.new () - - plot.setTitle ("Demo 1"); - plot.setXlabel ("X"); - plot.setYlabel ("X^2"); - - ds = DataSet.new (y, {"with"=> "lines", "title"=>"Data"}) - ds.setGrid (x) - - plot.draw ( ds ) - -WWW: http://physci.gmu.edu/~gmiller/gnuplot/ diff --git a/math/ruby-gnuplot/pkg-plist b/math/ruby-gnuplot/pkg-plist deleted file mode 100644 index 61255f987546..000000000000 --- a/math/ruby-gnuplot/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -%%RUBY_SITELIBDIR%%/gplot/Gnuplot.rb -@dirrm %%RUBY_SITELIBDIR%%/gplot |