summaryrefslogtreecommitdiffstats
path: root/cluster/clapack
diff options
context:
space:
mode:
authorroot2006-04-24 09:03:08 -0500
committerroot2006-04-24 09:03:08 -0500
commit84d8b510ac289af0a43bfa9e110844af27a90196 (patch)
treed7093929b954dd2f71114bff270755e18f737eb1 /cluster/clapack
initial commit from stable 0.3
Diffstat (limited to 'cluster/clapack')
-rwxr-xr-xcluster/clapack/BUILD25
-rwxr-xr-xcluster/clapack/CONFLICTS2
-rwxr-xr-xcluster/clapack/DETAILS32
-rw-r--r--cluster/clapack/HISTORY14
-rwxr-xr-xcluster/clapack/PRE_BUILD4
5 files changed, 77 insertions, 0 deletions
diff --git a/cluster/clapack/BUILD b/cluster/clapack/BUILD
new file mode 100755
index 0000000000..c03e9cb84c
--- /dev/null
+++ b/cluster/clapack/BUILD
@@ -0,0 +1,25 @@
+(
+ cp INSTALL/make.inc.LINUX make.inc &&
+
+ 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 -m 644 clapack.h /usr/include/clapack.h &&
+
+ 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/clapack/CONFLICTS b/cluster/clapack/CONFLICTS
new file mode 100755
index 0000000000..ed57bfccb7
--- /dev/null
+++ b/cluster/clapack/CONFLICTS
@@ -0,0 +1,2 @@
+conflicts lapack &&
+conflicts atlas
diff --git a/cluster/clapack/DETAILS b/cluster/clapack/DETAILS
new file mode 100755
index 0000000000..3f3387ec29
--- /dev/null
+++ b/cluster/clapack/DETAILS
@@ -0,0 +1,32 @@
+ SPELL=clapack
+ VERSION=3.0
+ SOURCE=$SPELL.tgz
+ SOURCE2=manpages.tgz
+ MD5[0]=7ed7ae518198faaafea11a2f97ecedad
+ MD5[1]=8e57a511eee8b842daab2d7128374f97
+ SOURCE_DIRECTORY=$BUILD_DIRECTORY/CLAPACK
+SOURCE2_DIRECTORY=$BUILD_DIRECTORY/CLAPACK/man
+ SOURCE_URL[0]=http://www.netlib.org/$SPELL/$SOURCE
+ SOURCE2_URL[0]=http://www.netlib.org/lapack/$SOURCE2
+ WEB_SITE=http://www.netlib.org/clapack
+ ENTERED=20020524
+ UPDATED=20020524
+ MAINTAINER=zoran@idi.ntnu.no
+ LICENSE=http://netlib2.cs.utk.edu/lapack/faq.html#1.2
+ SHORT="Linear Algebra PACKage (C 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 (C version).
+EOF
diff --git a/cluster/clapack/HISTORY b/cluster/clapack/HISTORY
new file mode 100644
index 0000000000..acf269e302
--- /dev/null
+++ b/cluster/clapack/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 sums.
+ Compiles with gcc3.
+
+2002-06-10 Zoran Constantinescu <zoran@idi.ntnu.no>
+ * Added LICENSE entry.
+ Added temporary USEGCC2 - not yet tested with gcc3.
+
+2002-05-24 Zoran Constantinescu <zoran@idi.ntnu.no>
+ * Spell created.
+
diff --git a/cluster/clapack/PRE_BUILD b/cluster/clapack/PRE_BUILD
new file mode 100755
index 0000000000..f803e08e9b
--- /dev/null
+++ b/cluster/clapack/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+unpack $SOURCE2 ${MD5[1]}
+