diff options
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/matrices/Makefile | 28 | ||||
-rw-r--r-- | math/matrices/distinfo | 3 | ||||
-rw-r--r-- | math/matrices/pkg-descr | 10 |
4 files changed, 42 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index a4ae34bbb2cb..8bf24f27bd0b 100644 --- a/math/Makefile +++ b/math/Makefile @@ -135,6 +135,7 @@ SUBDIR += ltl SUBDIR += matharray SUBDIR += mathomatic + SUBDIR += matrices SUBDIR += matrix SUBDIR += maxima SUBDIR += mbasecalc diff --git a/math/matrices/Makefile b/math/matrices/Makefile new file mode 100644 index 000000000000..ffc4b9ec6ad9 --- /dev/null +++ b/math/matrices/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: matrices +# Date created: Oct. 29 - 2006 +# Whom: Morten Slot Kristensen +# +# $FreeBSD$ +# + +PORTNAME= matrices +PORTVERSION= 1.0 +CATEGORIES= math +MASTER_SITES= http://mplus.dk/${PORTNAME}/ + +MAINTAINER= ontherenth@gmail.com +COMMENT= Matrix calculator (with both GUI & console-interface) + +USE_GNOME= glib20 gtk20 +GNU_CONFIGURE= yes +PLIST_FILES= bin/${PORTNAME} + +MAN1= ${PORTNAME}.1 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not build +.endif + +.include <bsd.port.post.mk> diff --git a/math/matrices/distinfo b/math/matrices/distinfo new file mode 100644 index 000000000000..3228628ea871 --- /dev/null +++ b/math/matrices/distinfo @@ -0,0 +1,3 @@ +MD5 (matrices-1.0.tar.gz) = fc13e41f4b25da6ffb9b4a185a0d93cc +SHA256 (matrices-1.0.tar.gz) = c32d22e469d0ae1d356b4e65eb4cb862916e74503d1d1de8b07d07848cc641d9 +SIZE (matrices-1.0.tar.gz) = 69915 diff --git a/math/matrices/pkg-descr b/math/matrices/pkg-descr new file mode 100644 index 000000000000..6c7673eb443f --- /dev/null +++ b/math/matrices/pkg-descr @@ -0,0 +1,10 @@ +This is a program which can calculate with several martices. +It can multiplicate (by matrix or number), add, substract, invert, +transpose and get the determinant of matrices. And these calculations +can be done on matrices of any order. + +It has two interfaces: GTK GUI and console-interface. + +Morten Slot Kristensen <ontherenth@gmail.com> + +WWW: http://mplus.dk/matrices/ |