diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-09 16:58:35 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-04-09 16:58:35 +0000 |
commit | 357bb4629827a90d939f4a72ecf1683aff9452cc (patch) | |
tree | 66d3831ab0c33b814f71ff413639c8af3bb831e9 | |
parent | 44307c34c4811a5df2d4051143541c7d719240b3 (diff) | |
download | ports-357bb4629827a90d939f4a72ecf1683aff9452cc.tar.gz ports-357bb4629827a90d939f4a72ecf1683aff9452cc.zip |
Notes
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/rascal/Makefile | 33 | ||||
-rw-r--r-- | math/rascal/distinfo | 1 | ||||
-rw-r--r-- | math/rascal/pkg-comment | 1 | ||||
-rw-r--r-- | math/rascal/pkg-descr | 6 | ||||
-rw-r--r-- | math/rascal/pkg-plist | 6 |
6 files changed, 48 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 18f1fb82ab9a..dd56d3b4e447 100644 --- a/math/Makefile +++ b/math/Makefile @@ -81,6 +81,7 @@ SUBDIR += py-gnuplot SUBDIR += py-scientific SUBDIR += pygist + SUBDIR += rascal SUBDIR += rcalc SUBDIR += rpc SUBDIR += ruby-bigfloat diff --git a/math/rascal/Makefile b/math/rascal/Makefile new file mode 100644 index 000000000000..9d37ad24abd7 --- /dev/null +++ b/math/rascal/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# New ports collection makefile for: rascal +# Date created: Apr 9, 2001 +# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= rascal +PORTVERSION= 0.1.2 +CATEGORIES= math +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ijliao@FreeBSD.org + +USE_BISON= yes + +USE_GMAKE= yes +ALL_TARGET= + +DOCS= modules.pdf modules.ps rascal.pdf rascal.ps + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/rascal ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/rascal +.for file in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/rascal +.endfor +.endif + +.include <bsd.port.mk> diff --git a/math/rascal/distinfo b/math/rascal/distinfo new file mode 100644 index 000000000000..a87ffdc54557 --- /dev/null +++ b/math/rascal/distinfo @@ -0,0 +1 @@ +MD5 (rascal-0.1.2.tar.gz) = b0509d1fc792c075e358f4f3093ad962 diff --git a/math/rascal/pkg-comment b/math/rascal/pkg-comment new file mode 100644 index 000000000000..2de64ab4f571 --- /dev/null +++ b/math/rascal/pkg-comment @@ -0,0 +1 @@ +Rascal, the Advanced Scientific CALculator diff --git a/math/rascal/pkg-descr b/math/rascal/pkg-descr new file mode 100644 index 000000000000..b0b21bd6f67c --- /dev/null +++ b/math/rascal/pkg-descr @@ -0,0 +1,6 @@ +Rascal, the Advanced Scientific CALculator, is a platform independent +modular calculator. Based on modules for integer, doubles, strings, +vectors and matrices it can be easily extended with existing C or C++ +code. + +WWW: http://rascal.sourceforge.net/ diff --git a/math/rascal/pkg-plist b/math/rascal/pkg-plist new file mode 100644 index 000000000000..33b97a990de1 --- /dev/null +++ b/math/rascal/pkg-plist @@ -0,0 +1,6 @@ +bin/rascal +%%PORTDOCS%%share/doc/rascal/modules.pdf +%%PORTDOCS%%share/doc/rascal/modules.ps +%%PORTDOCS%%share/doc/rascal/rascal.pdf +%%PORTDOCS%%share/doc/rascal/rascal.ps +%%PORTDOCS%%@dirrm share/doc/rascal |