mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add math/ruby-netcdf 0.3.5, a Ruby interface to the NetCDF scientific IO
library.
This commit is contained in:
parent
102aa0c44d
commit
5b29610d80
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=61127
11 changed files with 133 additions and 0 deletions
|
@ -128,6 +128,7 @@
|
|||
SUBDIR += ruby-gsl
|
||||
SUBDIR += ruby-math3d
|
||||
SUBDIR += ruby-narray
|
||||
SUBDIR += ruby-netcdf
|
||||
SUBDIR += sc
|
||||
SUBDIR += scigraphica
|
||||
SUBDIR += scilab
|
||||
|
|
36
math/ruby-netcdf/Makefile
Normal file
36
math/ruby-netcdf/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: RubyNetCDF
|
||||
# Date created: 11 June 2002
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= netcdf
|
||||
PORTVERSION= 0.3.5
|
||||
CATEGORIES= math ruby
|
||||
MASTER_SITES= http://ruby.gfd-dennou.org/products/ruby-netcdf/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= netcdf.1:${PORTSDIR}/math/netcdf
|
||||
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBY_EXTCONF= yes
|
||||
|
||||
DOCS= ChangeLog ToDo doc/*
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||||
${INSTALL_DATA} ${WRKSRC}/demo/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
||||
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
||||
.for f in ${DOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
math/ruby-netcdf/distinfo
Normal file
1
math/ruby-netcdf/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ruby/ruby-netcdf-0.3.5.tar.gz) = b518f1ca753fdee304c2fc289637168c
|
1
math/ruby-netcdf/pkg-comment
Normal file
1
math/ruby-netcdf/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A Ruby interface to the NetCDF scientific IO library
|
5
math/ruby-netcdf/pkg-descr
Normal file
5
math/ruby-netcdf/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This is a Ruby interface to the NetCDF scientific IO library.
|
||||
|
||||
Author: Takeshi Horinouchi <horinout@kurasc.kyoto-u.ac.jp>
|
||||
& Dennou Ruby Project
|
||||
WWW: http://ruby.gfd-dennou.org/products/ruby-netcdf
|
23
math/ruby-netcdf/pkg-plist
Normal file
23
math/ruby-netcdf/pkg-plist
Normal file
|
@ -0,0 +1,23 @@
|
|||
%%RUBY_SITEARCHLIBDIR%%/numru/netcdfraw.so
|
||||
@unexec rmdir %B 2>/dev/null || true
|
||||
%%RUBY_SITELIBDIR%%/numru/netcdf.rb
|
||||
@unexec rmdir %B 2>/dev/null || true
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/README
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo1-create-alt.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo1-create.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo2-graphic.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo2-graphic_withAdvancedDCL.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo3-ncepclim.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo3-ncepclim_withAdvancedDCL.rb
|
||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/netcdf
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/ChangeLog
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/ToDo
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/README_JP.txt
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man.html
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man.rd
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp.html
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp.rd
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp_obsolete.doc
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp_obsolete.pdf
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/to_html
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/netcdf
|
36
science/ruby-netcdf/Makefile
Normal file
36
science/ruby-netcdf/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# New ports collection makefile for: RubyNetCDF
|
||||
# Date created: 11 June 2002
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= netcdf
|
||||
PORTVERSION= 0.3.5
|
||||
CATEGORIES= math ruby
|
||||
MASTER_SITES= http://ruby.gfd-dennou.org/products/ruby-netcdf/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
LIB_DEPENDS= netcdf.1:${PORTSDIR}/math/netcdf
|
||||
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBY_EXTCONF= yes
|
||||
|
||||
DOCS= ChangeLog ToDo doc/*
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||||
${INSTALL_DATA} ${WRKSRC}/demo/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
||||
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
||||
.for f in ${DOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
science/ruby-netcdf/distinfo
Normal file
1
science/ruby-netcdf/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ruby/ruby-netcdf-0.3.5.tar.gz) = b518f1ca753fdee304c2fc289637168c
|
1
science/ruby-netcdf/pkg-comment
Normal file
1
science/ruby-netcdf/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A Ruby interface to the NetCDF scientific IO library
|
5
science/ruby-netcdf/pkg-descr
Normal file
5
science/ruby-netcdf/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This is a Ruby interface to the NetCDF scientific IO library.
|
||||
|
||||
Author: Takeshi Horinouchi <horinout@kurasc.kyoto-u.ac.jp>
|
||||
& Dennou Ruby Project
|
||||
WWW: http://ruby.gfd-dennou.org/products/ruby-netcdf
|
23
science/ruby-netcdf/pkg-plist
Normal file
23
science/ruby-netcdf/pkg-plist
Normal file
|
@ -0,0 +1,23 @@
|
|||
%%RUBY_SITEARCHLIBDIR%%/numru/netcdfraw.so
|
||||
@unexec rmdir %B 2>/dev/null || true
|
||||
%%RUBY_SITELIBDIR%%/numru/netcdf.rb
|
||||
@unexec rmdir %B 2>/dev/null || true
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/README
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo1-create-alt.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo1-create.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo2-graphic.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo2-graphic_withAdvancedDCL.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo3-ncepclim.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/netcdf/demo3-ncepclim_withAdvancedDCL.rb
|
||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/netcdf
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/ChangeLog
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/ToDo
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/README_JP.txt
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man.html
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man.rd
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp.html
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp.rd
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp_obsolete.doc
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/Ref_man_jp_obsolete.pdf
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/netcdf/to_html
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/netcdf
|
Loading…
Add table
Reference in a new issue