diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-12-06 23:48:26 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-12-06 23:48:26 +0800 |
commit | 7564dccb31c1869f3c46fca560ef5fd4e764e390 (patch) | |
tree | 6a48eef90b743f05454a3881059a7596ac4e2f2d | |
parent | 3c20071ab9bd71c223a5cfe4f0f7470b7245be63 (diff) | |
download | freebsd-ports-gnome-7564dccb31c1869f3c46fca560ef5fd4e764e390.tar.gz freebsd-ports-gnome-7564dccb31c1869f3c46fca560ef5fd4e764e390.tar.zst freebsd-ports-gnome-7564dccb31c1869f3c46fca560ef5fd4e764e390.zip |
add newmat
A C++ matrix library
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/newmat/Makefile | 31 | ||||
-rw-r--r-- | math/newmat/distinfo | 1 | ||||
-rw-r--r-- | math/newmat/pkg-comment | 1 | ||||
-rw-r--r-- | math/newmat/pkg-descr | 6 | ||||
-rw-r--r-- | math/newmat/pkg-plist | 15 |
6 files changed, 55 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 02bb7ec370fa..14d636a9b368 100644 --- a/math/Makefile +++ b/math/Makefile @@ -54,6 +54,7 @@ SUBDIR += naturalmath SUBDIR += nauty SUBDIR += netcdf + SUBDIR += newmat SUBDIR += ngraph SUBDIR += ntl SUBDIR += octave diff --git a/math/newmat/Makefile b/math/newmat/Makefile new file mode 100644 index 000000000000..a3afacb333ae --- /dev/null +++ b/math/newmat/Makefile @@ -0,0 +1,31 @@ +# ex:ts=8 +# New ports collection makefile for: newmat +# Date created: Dec 6, 2001 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= newmat +PORTVERSION= 1.0 +CATEGORIES= math +MASTER_SITES= ftp://webnz.com/robert/ +DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} + +MAINTAINER= ports@FreeBSD.org + +NO_WRKSUBDIR= yes +USE_GMAKE= yes +MAKEFILE= nm_gnu.mak +ALL_TARGET= everything + +post-patch: + @${PERL} -pi -e "s,^CXX,#CXX,g ; \ + s,^CXXFLAGS,#CXXFLAGS,g" ${WRKSRC}/${MAKEFILE} + +do-install: + @${MKDIR} ${PREFIX}/include/${PORTNAME} + ${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/${PORTNAME} + ${INSTALL_PROGRAM} ${WRKSRC}/libnewmat.a ${PREFIX}/lib + +.include <bsd.port.mk> diff --git a/math/newmat/distinfo b/math/newmat/distinfo new file mode 100644 index 000000000000..5fa119c0d127 --- /dev/null +++ b/math/newmat/distinfo @@ -0,0 +1 @@ +MD5 (newmat10.tar.gz) = 6aad1fd21c28f5a92c51992b8012255b diff --git a/math/newmat/pkg-comment b/math/newmat/pkg-comment new file mode 100644 index 000000000000..143b896e42fc --- /dev/null +++ b/math/newmat/pkg-comment @@ -0,0 +1 @@ +A C++ matrix library diff --git a/math/newmat/pkg-descr b/math/newmat/pkg-descr new file mode 100644 index 000000000000..0223135180bd --- /dev/null +++ b/math/newmat/pkg-descr @@ -0,0 +1,6 @@ +The package is intended for scientists and engineers who need to manipulate +a variety of types of matrices using standard matrix operations. Emphasis is +on the kind of operations needed in statistical calculations such as least +squares, linear equation solve and eigenvalues. + +WWW: http://webnz.com/robert/cpp_lib.htm#newmat10 diff --git a/math/newmat/pkg-plist b/math/newmat/pkg-plist new file mode 100644 index 000000000000..355cb75be6d0 --- /dev/null +++ b/math/newmat/pkg-plist @@ -0,0 +1,15 @@ +include/newmat/boolean.h +include/newmat/controlw.h +include/newmat/include.h +include/newmat/myexcept.h +include/newmat/newmat.h +include/newmat/newmatap.h +include/newmat/newmatio.h +include/newmat/newmatnl.h +include/newmat/newmatrc.h +include/newmat/newmatrm.h +include/newmat/precisio.h +include/newmat/solution.h +include/newmat/tmt.h +@dirrm include/newmat +lib/libnewmat.a |