diff options
author | fjoe <fjoe@FreeBSD.org> | 2003-01-28 07:09:09 +0800 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2003-01-28 07:09:09 +0800 |
commit | 1d14f18366e7f885e9bd3e48fb940a8875ca78ae (patch) | |
tree | 8051aed96b8827181a7fa98977837225c09589bc /math/newmat | |
parent | 33e64fe7fad1c70b449e16ec2b8c8a88b737416e (diff) | |
download | freebsd-ports-gnome-1d14f18366e7f885e9bd3e48fb940a8875ca78ae.tar.gz freebsd-ports-gnome-1d14f18366e7f885e9bd3e48fb940a8875ca78ae.tar.zst freebsd-ports-gnome-1d14f18366e7f885e9bd3e48fb940a8875ca78ae.zip |
- update to 10.0a (NOTE: the author didn't change tarball name)
- fix fetching
- fix WWW: in pkg-descr
PR: 47567 (partially)
Diffstat (limited to 'math/newmat')
-rw-r--r-- | math/newmat/Makefile | 2 | ||||
-rw-r--r-- | math/newmat/distinfo | 2 | ||||
-rw-r--r-- | math/newmat/files/patch-include.h | 14 | ||||
-rw-r--r-- | math/newmat/files/patch-newmat9.cpp | 14 | ||||
-rw-r--r-- | math/newmat/pkg-descr | 2 |
5 files changed, 3 insertions, 31 deletions
diff --git a/math/newmat/Makefile b/math/newmat/Makefile index bc4c72ef6d7e..563ee8b40aba 100644 --- a/math/newmat/Makefile +++ b/math/newmat/Makefile @@ -9,7 +9,7 @@ PORTNAME= newmat PORTVERSION= 1.0 CATEGORIES= math -MASTER_SITES= ftp://webnz.com/robert/ +MASTER_SITES= http://www.robertnz.com/ftp/ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} MAINTAINER= ports@FreeBSD.org diff --git a/math/newmat/distinfo b/math/newmat/distinfo index 80c23f1cd7d0..6440aa3c737e 100644 --- a/math/newmat/distinfo +++ b/math/newmat/distinfo @@ -1 +1 @@ -MD5 (newmat10.tar.gz) = 823a95a83912fdeb7e9fec212eb64a13 +MD5 (newmat10.tar.gz) = 4234ce414e416266c935e67186b54392 diff --git a/math/newmat/files/patch-include.h b/math/newmat/files/patch-include.h deleted file mode 100644 index 13305d139a56..000000000000 --- a/math/newmat/files/patch-include.h +++ /dev/null @@ -1,14 +0,0 @@ ---- include.h.orig Sat Sep 7 00:26:44 2002 -+++ include.h Fri Sep 6 23:59:21 2002 -@@ -30,8 +30,9 @@ - - #define bool_LIB 0 - -- --//#define _STANDARD_ // using standard library -+#if defined __GNUG__ && __GNUG__ >= 3 -+#define _STANDARD_ // using standard library -+#endif - - //#define use_float_h // use float.h for precision data - diff --git a/math/newmat/files/patch-newmat9.cpp b/math/newmat/files/patch-newmat9.cpp deleted file mode 100644 index 841a744a604e..000000000000 --- a/math/newmat/files/patch-newmat9.cpp +++ /dev/null @@ -1,14 +0,0 @@ ---- newmat9.cpp.orig Wed Oct 17 14:46:04 2001 -+++ newmat9.cpp Tue Oct 1 11:00:36 2002 -@@ -24,8 +24,10 @@ - #endif - - // for G++ 3.01 --#ifndef _Ios_Fmtflags -+#if __GNUC__ < 3 - #define _Ios_Fmtflags long -+#else -+#define _Ios_Fmtflags ios_base::fmtflags - #endif - - ostream& operator<<(ostream& s, const BaseMatrix& X) diff --git a/math/newmat/pkg-descr b/math/newmat/pkg-descr index 0223135180bd..045083f66708 100644 --- a/math/newmat/pkg-descr +++ b/math/newmat/pkg-descr @@ -3,4 +3,4 @@ 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 +WWW: http://www.robertnz.net/nm_intro.htm |