Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

12
math/linpack/DESCR Normal file
View File

@@ -0,0 +1,12 @@
LINPACK is a collection of Fortran subroutines that analyze and solve
linear equations and linear least-squares probles. The package solves
linear systems whose matrices are general, banded, symmetric
indefinite, symmetric positive definite, triangular, and tridiagonal
square. In addition, the package computes the QR and singular value
decompositions of rectangular matrices and applies them to
least-squares problems. LINPACK uses column-oriented algorithms to
increase efficiency by preserving locality of reference.
LINPACK was designed for supercomputers in use in the 1970s and early
1980s. LINPACK has been largely superceded by LAPACK which has been
designed to run efficiently on shared-memory, vector supercomputers.

18
math/linpack/Makefile Normal file
View File

@@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.14 2012/09/11 23:04:23 asau Exp $
DISTNAME= linpack-20010510
PKGREVISION= 2
CATEGORIES= math devel
MASTER_SITES= ${MASTER_SITE_LOCAL}
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Library of linear algebra Fortran routines
DEPENDS+= blas-[0-9]*:../../math/blas
NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL
USE_LANGUAGES= fortran77
WRKSRC= ${WRKDIR}/linpack
INSTALLATION_DIRS= lib
.include "../../mk/bsd.pkg.mk"

2
math/linpack/PLIST Normal file
View File

@@ -0,0 +1,2 @@
@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:12:36 zuntum Exp $
lib/liblinpack.a

10
math/linpack/distinfo Normal file
View File

@@ -0,0 +1,10 @@
$NetBSD: distinfo,v 1.6 2009/12/11 01:34:38 asau Exp $
SHA1 (linpack-20010510.tar.gz) = b10aca3f0232719c1fa3de455f91230393829b12
RMD160 (linpack-20010510.tar.gz) = 72015366e8f9342d58c2429896fd75810f2df6f3
Size (linpack-20010510.tar.gz) = 334832 bytes
SHA1 (patch-aa) = 9993203f6b17bef939df4f958d0f458a5962edee
SHA1 (patch-ab) = 2c6ea54300b0bca78268d5ca6e23637e8059b201
SHA1 (patch-ac) = c83d40137147445a8dd9fb72c97004759ce8366a
SHA1 (patch-ad) = d73a1e4f1287c56842037158a413d90b4faee8fa
SHA1 (patch-ae) = 2b587d534329bd24b32205716a30e81f85670aa0

View File

@@ -0,0 +1,44 @@
$NetBSD: patch-aa,v 1.2 2009/12/11 01:34:39 asau Exp $
--- /dev/null Fri Apr 27 22:55:43 2001
+++ Makefile
@@ -0,0 +1,39 @@
+LIB = linpack
+
+LIBDIR = ${PREFIX}/lib
+
+all: lib$(LIB).a
+
+OBJS = cchdc.o cchdd.o cchex.o cchud.o cgbco.o cgbdi.o cgbfa.o \
+ cgbsl.o cgeco.o cgedi.o cgefa.o cgesl.o cgtsl.o chico.o chidi.o \
+ chifa.o chisl.o chpco.o chpdi.o chpfa.o chpsl.o cmach.o cpbco.o \
+ cpbdi.o cpbfa.o cpbsl.o cpoco.o cpodi.o cpofa.o cposl.o cppco.o \
+ cppdi.o cppfa.o cppsl.o cptsl.o cqrdc.o cqrsl.o csico.o csidi.o \
+ csifa.o csisl.o cspco.o cspdi.o cspfa.o cspsl.o csvdc.o ctrco.o \
+ ctrdi.o ctrsl.o dcabs1.o dchdc.o dchdd.o dchex.o dchud.o dgbco.o \
+ dgbdi.o dgbfa.o dgbsl.o dgeco.o dgedi.o dgefa.o dgesl.o dgtsl.o \
+ dmach.o dpbco.o dpbdi.o dpbfa.o dpbsl.o dpoco.o dpodi.o dpofa.o \
+ dposl.o dppco.o dppdi.o dppfa.o dppsl.o dptsl.o dqrdc.o dqrsl.o \
+ dsico.o dsidi.o dsifa.o dsisl.o dspco.o dspdi.o dspfa.o dspsl.o \
+ dsvdc.o dtrco.o dtrdi.o dtrsl.o schdc.o schdd.o schex.o schud.o \
+ sgbco.o sgbdi.o sgbfa.o sgbsl.o sgeco.o sgedi.o sgefa.o sgesl.o \
+ sgtsl.o smach.o spbco.o spbdi.o spbfa.o spbsl.o spoco.o spodi.o \
+ spofa.o sposl.o sppco.o sppdi.o sppfa.o sppsl.o sptsl.o sqrdc.o \
+ sqrsl.o ssico.o ssidi.o ssifa.o ssisl.o sspco.o sspdi.o sspfa.o \
+ sspsl.o ssvdc.o strco.o strdi.o strsl.o zchdc.o zchdd.o \
+ zchex.o zchud.o zgbco.o zgbdi.o zgbfa.o zgbsl.o zgeco.o zgedi.o \
+ zgefa.o zgesl.o zgtsl.o zhico.o zhidi.o zhifa.o zhisl.o zhpco.o \
+ zhpdi.o zhpfa.o zhpsl.o zmach.o zpbco.o zpbdi.o zpbfa.o zpbsl.o \
+ zpoco.o zpodi.o zpofa.o zposl.o zppco.o zppdi.o zppfa.o zppsl.o \
+ zptsl.o zqrdc.o zqrsl.o zsico.o zsidi.o zsifa.o zsisl.o zspco.o \
+ zspdi.o zspfa.o zspsl.o zsvdc.o ztrco.o ztrdi.o ztrsl.o
+
+lib$(LIB).a: $(OBJS)
+ $(AR) cru $@ $?
+ $(RANLIB) $@
+
+install: lib$(LIB).a
+ $(BSD_INSTALL_DATA) lib$(LIB).a $(DESTDIR)$(LIBDIR)
+
+clean:
+ rm -f *.o lib$(LIB).a

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ab,v 1.1.1.1 2001/04/27 22:57:31 jtb Exp $
--- cptsl.f.orig Fri Nov 17 17:32:00 2000
+++ cptsl.f
@@ -1,6 +1,6 @@
subroutine cptsl(n,d,e,b)
integer n
- complex d(1),e(1),b(1)
+ complex d(1),e(1),b(*)
c
c cptsl given a positive definite tridiagonal matrix and a right
c hand side will find the solution.

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ac,v 1.1.1.1 2001/04/27 22:57:31 jtb Exp $
--- sptsl.f.orig Fri Nov 17 17:32:03 2000
+++ sptsl.f
@@ -1,6 +1,6 @@
subroutine sptsl(n,d,e,b)
integer n
- real d(1),e(1),b(1)
+ real d(1),e(1),b(*)
c
c sptsl given a positive definite tridiagonal matrix and a right
c hand side will find the solution.

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ad,v 1.1.1.1 2001/04/27 22:57:31 jtb Exp $
--- dptsl.f.orig Thu Jan 5 21:00:46 1984
+++ dptsl.f
@@ -1,6 +1,6 @@
subroutine dptsl(n,d,e,b)
integer n
- double precision d(1),e(1),b(1)
+ double precision d(1),e(1),b(*)
c
c dptsl given a positive definite tridiagonal matrix and a right
c hand side will find the solution.

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ae,v 1.1.1.1 2001/04/27 22:57:31 jtb Exp $
--- zptsl.f.orig Tue Sep 21 22:22:55 1982
+++ zptsl.f
@@ -1,6 +1,6 @@
subroutine zptsl(n,d,e,b)
integer n
- complex*16 d(1),e(1),b(1)
+ complex*16 d(1),e(1),b(*)
c
c zptsl given a positive definite tridiagonal matrix and a right
c hand side will find the solution.