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

8
math/minpack/DESCR Normal file
View File

@@ -0,0 +1,8 @@
Minpack includes software for solving nonlinear equations and
nonlinear least squares problems. Five algorithmic paths each include
a core subroutine and an easy-to-use driver. The algorithms proceed
either from an analytic specification of the Jacobian matrix or
directly from the problem functions. The paths include facilities for
systems of equations with a banded Jacobian matrix, for least squares
problems with a large amount of data, and for checking the consistency
of the Jacobian matrix with the functions.

20
math/minpack/Makefile Normal file
View File

@@ -0,0 +1,20 @@
# $NetBSD: Makefile,v 1.16 2012/09/11 23:04:24 asau Exp $
DISTNAME= minpack-20001130
PKGREVISION= 2
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_LOCAL}
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= FORTRAN 77 library for the solution of nonlinear equations
NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL
USE_LANGUAGES= fortran77
WRKSRC= ${WRKDIR}/minpack
INSTALLATION_DIRS= lib
pre-build:
${CP} ${FILESDIR}/Makefile ${WRKSRC}
.include "../../mk/bsd.pkg.mk"

2
math/minpack/PLIST Normal file
View File

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

5
math/minpack/distinfo Normal file
View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.3 2005/02/23 12:06:56 agc Exp $
SHA1 (minpack-20001130.tar.gz) = 34d26afa91e6deb55582affae618a7ac7fe49ad6
RMD160 (minpack-20001130.tar.gz) = 4554f68ef6b2d527b00ae787cb16d2c307794b79
Size (minpack-20001130.tar.gz) = 186179 bytes

View File

@@ -0,0 +1,22 @@
LIB = minpack
LIBDIR = ${PREFIX}/lib
all: lib$(LIB).a
OBJ = covar.o dmchar.o dogleg.o dpmpar.o enorm.o errjac.o fdjac1.o \
fdjac2.o grdfcn.o hesfcn.o hybipt.o hybrd.o hybrd1.o hybrj.o \
hybrj1.o lhesfcn.o lmder.o lmder1.o lmdif.o lmdif1.o lmdipt.o \
lmpar.o lmstr.o lmstr1.o objfcn.o ocpipt.o qform.o qrfac.o \
qrsolv.o r1mpyq.o r1updt.o rwupdt.o ssqfcn.o ssqjac.o vecfcn.o \
vecjac.o
lib$(LIB).a: $(OBJ)
$(AR) cru $@ $?
$(RANLIB) $@
install: lib$(LIB).a
$(BSD_INSTALL_DATA) $? $(DESTDIR)$(LIBDIR)
clean:
rm -f *.o lib$(LIB).a