1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

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/

PR:		ports/104983
Submitted by:	Morten Slot Kristensen
This commit is contained in:
Alejandro Pulver 2006-11-01 20:26:08 +00:00
parent 084d363574
commit b38a0ef77b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176116
4 changed files with 42 additions and 0 deletions

View File

@ -135,6 +135,7 @@
SUBDIR += ltl
SUBDIR += matharray
SUBDIR += mathomatic
SUBDIR += matrices
SUBDIR += matrix
SUBDIR += maxima
SUBDIR += mbasecalc

28
math/matrices/Makefile Normal file
View File

@ -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>

3
math/matrices/distinfo Normal file
View File

@ -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

10
math/matrices/pkg-descr Normal file
View File

@ -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/