mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
b38a0ef77b
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
29 lines
535 B
Makefile
29 lines
535 B
Makefile
# 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>
|