summaryrefslogtreecommitdiff
path: root/math/dcdflib.f
diff options
context:
space:
mode:
Diffstat (limited to 'math/dcdflib.f')
-rw-r--r--math/dcdflib.f/DESCR20
-rw-r--r--math/dcdflib.f/Makefile20
-rw-r--r--math/dcdflib.f/PLIST6
-rw-r--r--math/dcdflib.f/distinfo7
-rw-r--r--math/dcdflib.f/patches/patch-aa29
-rw-r--r--math/dcdflib.f/patches/patch-ab31
6 files changed, 0 insertions, 113 deletions
diff --git a/math/dcdflib.f/DESCR b/math/dcdflib.f/DESCR
deleted file mode 100644
index dd2587520c1..00000000000
--- a/math/dcdflib.f/DESCR
+++ /dev/null
@@ -1,20 +0,0 @@
-This library contains routines to compute cumulative distribution
-functions, inverses, and parameters of the distribution for the
-following set of statistical distributions:
-
- (1) Beta
- (2) Binomial
- (3) Chi-square
- (4) Noncentral Chi-square
- (5) F
- (6) Noncentral F
- (7) Gamma
- (8) Negative Binomial
- (9) Normal
- (10) Poisson
- (11) Student's t
- (12) Noncentral t
-
-Given values of all but one parameter of a distribution, the other is
-computed. These calculations are done with FORTRAN Double Precision
-variables.
diff --git a/math/dcdflib.f/Makefile b/math/dcdflib.f/Makefile
deleted file mode 100644
index 37aa94ada91..00000000000
--- a/math/dcdflib.f/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD: Makefile,v 1.8 2005/01/12 15:32:00 jlam Exp $
-
-DISTNAME= dcdflib.f-1.1
-PKGREVISION= 1
-CATEGORIES= math
-MASTER_SITES= ftp://odin.mdacc.tmc.edu/pub/source/
-
-MAINTAINER= tech-pkg@NetBSD.org
-HOMEPAGE= http://odin.mdacc.tmc.edu/anonftp/
-COMMENT= Library of Fortran Routines for Cumulative Distribution Functions
-
-WRKSRC= ${WRKDIR}/dcdflib.f/src
-USE_LANGUAGES= fortran
-
-post-install:
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dcdflib.f
- ${INSTALL_DATA} ${WRKSRC}/../doc/* ${PREFIX}/share/doc/dcdflib.f
- ${INSTALL_DATA} ${WRKSRC}/../README ${PREFIX}/share/doc/dcdflib.f
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/math/dcdflib.f/PLIST b/math/dcdflib.f/PLIST
deleted file mode 100644
index b985ee920d3..00000000000
--- a/math/dcdflib.f/PLIST
+++ /dev/null
@@ -1,6 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 00:12:17 zuntum Exp $
-lib/libdcdflib_f.a
-share/doc/dcdflib.f/README
-share/doc/dcdflib.f/dcdflib.chs
-share/doc/dcdflib.f/dcdflib.fdoc
-@dirrm share/doc/dcdflib.f
diff --git a/math/dcdflib.f/distinfo b/math/dcdflib.f/distinfo
deleted file mode 100644
index 6e64d78e132..00000000000
--- a/math/dcdflib.f/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.3 2005/02/23 12:06:54 agc Exp $
-
-SHA1 (dcdflib.f-1.1.tar.gz) = 9b5d730a9f8ac46bb3e1b202c91c444382316dbb
-RMD160 (dcdflib.f-1.1.tar.gz) = 8638d6baef6b115ef5e527836b943de7067c5ca8
-Size (dcdflib.f-1.1.tar.gz) = 62269 bytes
-SHA1 (patch-aa) = c27575c82fcefa55df6d75449f4b112d7e3cdbe8
-SHA1 (patch-ab) = 45f4ccf4192da712a5cd8c64b37e3638e9fa6a7a
diff --git a/math/dcdflib.f/patches/patch-aa b/math/dcdflib.f/patches/patch-aa
deleted file mode 100644
index ec660b8565c..00000000000
--- a/math/dcdflib.f/patches/patch-aa
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/04/17 00:19:57 jtb Exp $
-
---- /dev/null Tue Apr 17 00:09:13 2001
-+++ ipmpar.c
-@@ -0,0 +1,24 @@
-+#include <float.h>
-+#include <limits.h>
-+#include <math.h>
-+#include <stdio.h>
-+
-+int
-+ipmpar_ (int *i)
-+{
-+ switch (*i) {
-+ case 1: return 2;
-+ case 2: return (sizeof(int)*(CHAR_BIT) - 1);
-+ case 3: return INT_MAX;
-+ case 4: return FLT_RADIX;
-+ case 5: return FLT_MANT_DIG;
-+ case 6: return FLT_MIN_EXP;
-+ case 7: return FLT_MAX_EXP;
-+ case 8: return DBL_MANT_DIG;
-+ case 9: return DBL_MIN_EXP;
-+ case 10: return FLT_MAX_EXP;
-+ }
-+ fprintf (stderr, "invalid argument: ipmpar(%ld)\n", *i);
-+ exit (1);
-+ return 0;
-+}
diff --git a/math/dcdflib.f/patches/patch-ab b/math/dcdflib.f/patches/patch-ab
deleted file mode 100644
index 5e105bcf5da..00000000000
--- a/math/dcdflib.f/patches/patch-ab
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2001/04/17 00:19:57 jtb Exp $
-
---- /dev/null Tue Apr 17 00:09:25 2001
-+++ Makefile
-@@ -0,0 +1,26 @@
-+LIB= dcdflib_f
-+
-+all: lib${LIB}.a
-+
-+OBJS= algdiv.o alngam.o alnrel.o apser.o basym.o bcorr.o betaln.o \
-+ bfrac.o bgrat.o bpser.o bratio.o brcmp1.o brcomp.o bup.o \
-+ cdfbet.o cdfbin.o cdfchi.o cdfchn.o cdff.o cdffnc.o cdfgam.o \
-+ cdfnbn.o cdfnor.o cdfpoi.o cdft.o cdftnc.o cumbet.o cumbin.o \
-+ cumchi.o cumchn.o cumf.o cumfnc.o cumgam.o cumnbn.o cumnor.o \
-+ cumpoi.o cumt.o cumtnc.o devlpl.o dinvnr.o dinvr.o dt1.o \
-+ dzror.o erf.o erfc1.o esum.o exparg.o fpser.o gam1.o gaminv.o \
-+ gamln.o gamln1.o gamma.o grat1.o gratio.o gsumln.o ipmpar.o \
-+ psi.o rcomp.o rexp.o rlog.o rlog1.o spmpar.o stvaln.o
-+
-+ipmpar.o:
-+ ${CC} -c ipmpar.c -o $@
-+
-+lib${LIB}.a: ${OBJS}
-+ ${AR} cr $@ $?
-+ ${RANLIB} $@
-+
-+install: lib${LIB}.a
-+ ${BSD_INSTALL_DATA} $? ${PREFIX}/lib
-+
-+clean:
-+ rm -f *.o lib${LIB}.a