summaryrefslogtreecommitdiffstats
path: root/cluster/lapack
diff options
context:
space:
mode:
authorroot2006-04-24 09:03:08 -0500
committerroot2006-04-24 09:03:08 -0500
commit84d8b510ac289af0a43bfa9e110844af27a90196 (patch)
treed7093929b954dd2f71114bff270755e18f737eb1 /cluster/lapack
initial commit from stable 0.3
Diffstat (limited to 'cluster/lapack')
-rwxr-xr-xcluster/lapack/BUILD25
-rwxr-xr-xcluster/lapack/CONFLICTS2
-rwxr-xr-xcluster/lapack/DETAILS32
-rw-r--r--cluster/lapack/HISTORY14
-rwxr-xr-xcluster/lapack/PRE_BUILD4
5 files changed, 77 insertions, 0 deletions
diff --git a/cluster/lapack/BUILD b/cluster/lapack/BUILD
new file mode 100755
index 0000000000..cacb6c9043
--- /dev/null
+++ b/cluster/lapack/BUILD
@@ -0,0 +1,25 @@
+(
+ cp INSTALL/make.inc.LINUX make.inc &&
+
+ make install &&
+ make blaslib &&
+ make lapacklib &&
+ make tmglib &&
+
+ install -m 644 blas_LINUX.a /usr/lib/libblas.a
+ install -m 644 lapack_LINUX.a /usr/lib/liblapack.a
+ install -m 644 tmglib_LINUX.a /usr/lib/libtmglib.a
+
+ install -d -m 755 /usr/man/manl
+ for file in `ls -1 man/manl/*` ; do
+ install -m 644 $file /usr/man/manl
+ done
+
+ for file in `ls -1 blas/man/manl/*` ; do
+ install -m 644 $file /usr/man/manl
+ done
+
+ gcc -o equivalence equivalence.c
+ install -m 755 equivalence /usr/bin
+
+) > $C_FIFO 2>&1
diff --git a/cluster/lapack/CONFLICTS b/cluster/lapack/CONFLICTS
new file mode 100755
index 0000000000..ab12794b00
--- /dev/null
+++ b/cluster/lapack/CONFLICTS
@@ -0,0 +1,2 @@
+conflicts clapack &&
+conflicts atlas
diff --git a/cluster/lapack/DETAILS b/cluster/lapack/DETAILS
new file mode 100755
index 0000000000..8ad1f00295
--- /dev/null
+++ b/cluster/lapack/DETAILS
@@ -0,0 +1,32 @@
+ SPELL=lapack
+ VERSION=3.0
+ SOURCE=$SPELL.tgz
+ SOURCE2=manpages.tgz
+ MD5[0]=bf94f16cb3748678d38999bfba72b0ed
+ MD5[1]=8e57a511eee8b842daab2d7128374f97
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/LAPACK
+SOURCE2_DIRECTORY=$BUILD_DIRECTORY/LAPACK/man
+ SOURCE_URL[0]=http://www.netlib.org/$SPELL/$SOURCE
+ SOURCE2_URL[0]=http://www.netlib.org/$SPELL/$SOURCE2
+ WEB_SITE=http://www.netlib.org/lapack
+ ENTERED=20020519
+ UPDATED=20020519
+ MAINTAINER=zoran@idi.ntnu.no
+ LICENSE=http://netlib2.cs.utk.edu/lapack/faq.html#1.2
+ SHORT="Linear Algebra PACKage (Fortran version)"
+
+cat << EOF
+LAPACK provides routines for solving systems of simultaneous
+linear equations, least-squares solutions of linear systems
+of equations, eigenvalue problems, and singular value problems.
+The associated matrix factorizations (LU, Cholesky, QR, SVD,
+Schur, generalized Schur) are also provided, as are related
+computations such as reordering of the Schur factorizations
+and estimating condition numbers. Dense and banded matrices
+are handled, but not general sparse matrices. In all areas,
+similar functionality is provided for real and complex matrices,
+in both single and double precision.
+
+Contains also the BLAS (Basic Linear Algebra Subprograms)
+library (Fortran version).
+EOF
diff --git a/cluster/lapack/HISTORY b/cluster/lapack/HISTORY
new file mode 100644
index 0000000000..f1172d77ce
--- /dev/null
+++ b/cluster/lapack/HISTORY
@@ -0,0 +1,14 @@
+2003-04-04 M.L. <mlubrano@sourcemage.org>
+ * Added missing MD5 on PRE_BUILD file.
+
+2002-06-10 Zoran Constantinescu <zoran@idi.ntnu.no>
+ * Added MD5 sum.
+ Compiles with gcc 3.2.
+
+2002-06-10 Zoran Constantinescu <zoran@idi.ntnu.no>
+ * Added LICENSE entry.
+ Added temporary USEGCC2 - not yet tested with gcc3.
+
+2002-05-19 Zoran Constantinescu <zoran@idi.ntnu.no>
+ * Spell created.
+
diff --git a/cluster/lapack/PRE_BUILD b/cluster/lapack/PRE_BUILD
new file mode 100755
index 0000000000..aea51eb4d3
--- /dev/null
+++ b/cluster/lapack/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+unpack $SOURCE2 ${MD5[1]}
+