diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-05-08 11:13:59 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-05-08 11:13:59 +0000 |
commit | beba453510c5b43a9c1631aa6a5a6569f35932bd (patch) | |
tree | 9ab82b48e5b82755f4eda54fa4e32cc442b70c05 /math/ruby-algebra/Makefile | |
parent | f51309e30fc4e16a38387c365ad1d10ddb272e04 (diff) |
Add ruby-algebra, a Ruby library for mathematical (algebraic)
computations.
Notes
Notes:
svn path=/head/; revision=42397
Diffstat (limited to 'math/ruby-algebra/Makefile')
-rw-r--r-- | math/ruby-algebra/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/math/ruby-algebra/Makefile b/math/ruby-algebra/Makefile new file mode 100644 index 000000000000..529b5caf98da --- /dev/null +++ b/math/ruby-algebra/Makefile @@ -0,0 +1,38 @@ +# New ports collection makefile for: Ruby/Algebra +# Date created: 8 May 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= algebra +PORTVERSION= 0.47 +CATEGORIES= math ruby +MASTER_SITES= http://blade.nagaokaut.ac.jp/~sinara/ruby/math/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +USE_RUBY= yes + +NO_BUILD= yes + +DOCS_EN= doc/*.txt doc/*.rd doc/*.html +DOCS_JA= doc-jp/*.txt doc-jp/*.rd doc-jp/*.html + +do-install: + ${CP} -R ${WRKSRC}/*.rb ${RUBY_SITELIBDIR}/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} + ${CP} -R ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/ + ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja +.for f in ${DOCS_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ +.endfor +.for f in ${DOCS_JA} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ja/ +.endfor +.endif + +.include <bsd.port.mk> |