diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-01 16:18:07 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-02-01 16:18:07 +0000 |
commit | 373bbb0312a37f219b6980b18b4b10becd6870d8 (patch) | |
tree | 196898d684be19ce4bfe9cfe54d6151abba4da27 /math/ruby-gnuplot/Makefile | |
parent | 4c9b8c2d215a8bdf45f44b8a192c17440716e978 (diff) | |
download | ports-373bbb0312a37f219b6980b18b4b10becd6870d8.tar.gz ports-373bbb0312a37f219b6980b18b4b10becd6870d8.zip |
Notes
Diffstat (limited to 'math/ruby-gnuplot/Makefile')
-rw-r--r-- | math/ruby-gnuplot/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/math/ruby-gnuplot/Makefile b/math/ruby-gnuplot/Makefile new file mode 100644 index 000000000000..fc886dcbbf21 --- /dev/null +++ b/math/ruby-gnuplot/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: Ruby/Gnuplot +# Date created: 1 Feb 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= gnuplot +PORTVERSION= 0 +CATEGORIES= math ruby +MASTER_SITES= http://physci.gmu.edu/~gmiller/gnuplot/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= ${PORTNAME} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +RUN_DEPENDS= ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot \ + ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray + +USE_RUBY= yes + +NO_BUILD= yes + +WRKSRC= ${WRKDIR}/gplot + +post-patch: + ${RUBY} -i.orig -p \ + -e 'gsub %r:/bin/env:, "/usr/bin/env"' \ + -e 'gsub %r:/usr/bin/gnuplot:, "${LOCALBASE}/bin/gnuplot"' \ + ${WRKSRC}/*.rb + +do-install: + ${MKDIR} ${RUBY_SITELIBDIR}/gplot + ${INSTALL_DATA} ${WRKSRC}/*.rb ${RUBY_SITELIBDIR}/gplot/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_DOCDIR}/gnuplot + ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/gnuplot/ +.endif + +.include <bsd.port.mk> |