View | Details | Raw Unified | Return to bug 127438
Collapse All | Expand All

(-)ruby-narray/Makefile (-3 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	narray
8
PORTNAME=	narray
9
PORTVERSION=	0.5.9
9
PORTVERSION=	0.5.9p5
10
CATEGORIES=	math ruby
10
CATEGORIES=	math ruby
11
MASTER_SITES=	${MASTER_SITE_RUBYFORGE}
11
MASTER_SITES=	${MASTER_SITE_RUBYFORGE}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 35-42 Link Here
35
.for f in ${DOC_JA}
35
.for f in ${DOC_JA}
36
	${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
36
	${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
37
.endfor
37
.endfor
38
	${MKDIR} ${RUBY_MODEXAMPLESDIR}
39
	${INSTALL_DATA} ${WRKSRC}/speed/*.rb ${RUBY_MODEXAMPLESDIR}/
40
.endif
38
.endif
41
39
42
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)ruby-narray/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (ruby/narray-0.5.9.tar.gz) = 04962b591dac5a0f1c3384545b0cfa83
1
MD5 (ruby/narray-0.5.9p5.tar.gz) = d6f47cfeb89d1d379c4a9d1ec0ded305
2
SHA256 (ruby/narray-0.5.9.tar.gz) = 300fbc023a97bfbe1e3b6745ed9e822288e1947cfc76c5c4dc27d41256d88a8d
2
SHA256 (ruby/narray-0.5.9p5.tar.gz) = 527a136ae643c435c876d67a5d6b6ec0e0d7d98a3d6028dfdb5622ca416c56c4
3
SIZE (ruby/narray-0.5.9.tar.gz) = 67954
3
SIZE (ruby/narray-0.5.9p5.tar.gz) = 65763
(-)ruby-narray/pkg-descr (-9 / +3 lines)
Lines 1-10 Link Here
1
NArray is a class of Numerical N-dimensional Array, providing fast and
1
NArray is an Numerical N-dimensional Array class. Supported element types are 1/2/4-byte Integer, single/double-precision Real/Complex, and Ruby Object. This extension library incorporates fast calculation and easy manipulation of large numerical arrays into the Ruby language. NArray has features similar to NumPy, but NArray has vector and matrix subclasses.
2
efficient computing of the large data arrays.
3
2
4
Element types: Integer, Float, Complex and Ruby Object.
3
Author:	Masahiro TANAKA <masa16.tanaka @nospam@ gmail.com>
5
4
WWW:	http://narray.rubyforge.org/
6
Methods: array manipulation, arithmetic operators and mathematical
7
functions (including FFTW and LU factorization).
8
9
Author:	Masahiro TANAKA <masa@ir.isas.ac.jp>
10
WWW:	http://www.ir.isas.ac.jp/~masa/ruby/index-e.html
(-)ruby-narray/pkg-plist (-11 lines)
Lines 10-23 Link Here
10
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/SPEC.en
10
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/SPEC.en
11
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%/ja
11
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%/ja
12
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%
12
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%
13
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/add.rb
14
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/add_int.rb
15
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/lu.rb
16
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mat.rb
17
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mul.rb
18
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mul2.rb
19
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mul_comp.rb
20
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mul_int.rb
21
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/mybench.rb
22
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/solve.rb
23
%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%

Return to bug 127438