1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00
freebsd-ports/math/matharray/Makefile
Dirk Meyer 06f7bd813b MathArray is a general library of classes for performing mathematical
operations on arrays (vectors, matrices, etc) of values. It can
operate on any standard 'C' number type plus numbers of complex
type. MathArray is implemented using a "class cluster" concept,
allowing one to perform mathematical calculations on a number without
necessarily being aware of what type (class) of number is being
operated on.  MathArray knows implicitly what types of operations can
be performed on what types of numbers and will automatically cast
itself to the correct number type representation to handle the
specific operation. Standard operations include addition, scalar and
matrix multiplication and logical operations. Mathematical operations
in the standard C math library are also supported, as well as
user-defined functions.
MathArray also does much more.  Arrays can be manipulated, transposed
and concatenated. One can extract subarrays or include subarrays within
larger arrays.
2006-10-31 06:20:44 +00:00

28 lines
599 B
Makefile

# New ports collection makefile for: matharray
# Date created: 30 Oct 2006
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= matharray
PORTVERSION= 1.0
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_GNUSTEP}
MASTER_SITE_SUBDIR= contrib
DISTNAME= MathArray-${PORTVERSION}
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Class library for mathematical manipulation of matrices
USE_GMAKE= yes
USE_GNUSTEP= yes
USE_GNUSTEP_PREFIX= yes
USE_GNUSTEP_BASE= yes
USE_GNUSTEP_BUILD= yes
USE_GNUSTEP_INSTALL= yes
MAKEFILE= GNUmakefile
NO_FILTER_SHLIBS= yes
.include <bsd.port.mk>