1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

ised is a command-line tool for generating number sequences and

arithmetic evaluation. Unlike big gui-based software (e.g. Mathematica,
Derive, Matlab, Octave,...) it is intended for use in shell scripting,
together with gnu core utilities.

Its main advantage is that all functions are generalized to operate
on one-dimensional arrays. It can be used for loop indexing (much
like seq), line-by-line arithmetic processing of files, floating
point math for shells that don't support it natively, or interactively,
as extended calculator.

WWW:	http://ised.sourceforge.net

PR:		ports/144914
Submitted by:	Charlie Kester <corky1951 at comcast.net>
This commit is contained in:
Martin Wilke 2010-03-21 12:55:26 +00:00
parent 54844b1be6
commit 78ed03a1d2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=251331
4 changed files with 48 additions and 0 deletions

View File

@ -125,6 +125,7 @@
SUBDIR += hs-vector-space
SUBDIR += igraph
SUBDIR += isabelle
SUBDIR += ised
SUBDIR += itl
SUBDIR += jacal
SUBDIR += jags

32
math/ised/Makefile Normal file
View File

@ -0,0 +1,32 @@
# ex:ts=8
# Ports collection makefile for: ised
# Date created: 20 Mar 2010
# Whom: Charlie Kester <corky1951@comcast.net>
#
# $FreeBSD$
#
PORTNAME= ised
PORTVERSION= 2.2.2
CATEGORIES= math
MASTER_SITES= SF/${PORTNAME}
MAINTAINER= corky1951@comcast.net
COMMENT= A tool for generating number sequences and arithmetic evaluation
USE_BZIP2= yes
GNU_CONFIGURE= yes
.if !defined(NO_INSTALL_MANPAGES)
MAN1= ${PORTNAME}.1
.endif
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin
.if !defined(NO_INSTALL_MANPAGES)
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
.endif
.include <bsd.port.mk>

3
math/ised/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (ised-2.2.2.tar.bz2) = 441fe6f5228f3d9b0549f88b5b3776bb
SHA256 (ised-2.2.2.tar.bz2) = b6d2c6ad218cca1c2ccfc2d4cee570fcb41cc09b824de15992630abdb46561d9
SIZE (ised-2.2.2.tar.bz2) = 99694

12
math/ised/pkg-descr Normal file
View File

@ -0,0 +1,12 @@
ised is a command-line tool for generating number sequences and
arithmetic evaluation. Unlike big gui-based software (e.g. Mathematica,
Derive, Matlab, Octave,...) it is intended for use in shell scripting,
together with gnu core utilities.
Its main advantage is that all functions are generalized to operate
on one-dimensional arrays. It can be used for loop indexing (much
like seq), line-by-line arithmetic processing of files, floating
point math for shells that don't support it natively, or interactively,
as extended calculator.
WWW: http://ised.sourceforge.net