1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

- update to 10.0a (NOTE: the author didn't change tarball name)

- fix fetching
- fix WWW: in pkg-descr

PR:		47567 (partially)
This commit is contained in:
Max Khon 2003-01-27 23:09:09 +00:00
parent 79f2f14d7d
commit 95d6f6abf3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74110
5 changed files with 3 additions and 31 deletions

View File

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

View File

@ -1 +1 @@
MD5 (newmat10.tar.gz) = 823a95a83912fdeb7e9fec212eb64a13
MD5 (newmat10.tar.gz) = 4234ce414e416266c935e67186b54392

View File

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

View File

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

View File

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