summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-27 23:14:17 +0000
committerjtb <jtb@pkgsrc.org>2001-04-27 23:14:17 +0000
commit0add1997de974e7af21b41ac0ba4382d8b381b6d (patch)
tree088de10b9192f0cff583727241af229ebb0793d5 /math
parent6d13a44ddae61bf6e467ca1d2bf8613f0b8715d4 (diff)
downloadpkgsrc-0add1997de974e7af21b41ac0ba4382d8b381b6d.tar.gz
Removing p5-* packages to reimport with the default name p5-${DISTNAME}.
So, p5-Interpolate will be reimported as p5-Math-Interpolate, etc.
Diffstat (limited to 'math')
-rw-r--r--math/p5-BigInteger/Makefile18
-rw-r--r--math/p5-BigInteger/distinfo5
-rw-r--r--math/p5-BigInteger/patches/patch-aa24
-rw-r--r--math/p5-BigInteger/pkg/DESCR4
-rw-r--r--math/p5-BigInteger/pkg/PLIST1
-rw-r--r--math/p5-Interpolate/Makefile18
-rw-r--r--math/p5-Interpolate/distinfo4
-rw-r--r--math/p5-Interpolate/pkg/DESCR4
-rw-r--r--math/p5-Interpolate/pkg/PLIST1
-rw-r--r--math/p5-MatrixReal/Makefile18
-rw-r--r--math/p5-MatrixReal/distinfo4
-rw-r--r--math/p5-MatrixReal/pkg/DESCR18
-rw-r--r--math/p5-MatrixReal/pkg/PLIST1
13 files changed, 0 insertions, 120 deletions
diff --git a/math/p5-BigInteger/Makefile b/math/p5-BigInteger/Makefile
deleted file mode 100644
index 7e64040bdad..00000000000
--- a/math/p5-BigInteger/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2001/04/14 21:43:54 jtb Exp $
-
-DISTNAME= Math-BigInteger-1.0
-PKGNAME= p5-BigInteger-1.0
-CATEGORIES= math perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
-
-MAINTAINER= packages@netbsd.org
-COMMENT= Arbitrary length integer extension module for Perl
-
-USE_PERL5= #defined
-PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Math/BigInteger/.packlist
-
-do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
-
-.include "../../mk/bsd.pkg.mk"
-
diff --git a/math/p5-BigInteger/distinfo b/math/p5-BigInteger/distinfo
deleted file mode 100644
index 689253a44ed..00000000000
--- a/math/p5-BigInteger/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.2 2001/04/19 08:45:42 agc Exp $
-
-SHA1 (Math-BigInteger-1.0.tar.gz) = 15a738cfee2e0d235b324c07e477739c747f62f7
-Size (Math-BigInteger-1.0.tar.gz) = 19869 bytes
-SHA1 (patch-aa) = 3a3d3792e499dc1cd5104c9db5e0e9c4aa03e35e
diff --git a/math/p5-BigInteger/patches/patch-aa b/math/p5-BigInteger/patches/patch-aa
deleted file mode 100644
index 7dfbb5784e7..00000000000
--- a/math/p5-BigInteger/patches/patch-aa
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/02/10 04:12:39 jtb Exp $
-
---- bn.c.orig Wed Feb 7 20:53:14 2001
-+++ bn.c
-@@ -304,8 +304,8 @@
- int i,j,v,z=0;
- static char *hex="0123456789ABCDEF";
-
-- if (a->neg) Fputc('-',fp);
-- if (a->top == 0) Fputc('0',fp);
-+ if (a->neg) fputc('-',fp);
-+ if (a->top == 0) fputc('0',fp);
- for (i=a->top-1; i >=0; i--)
- {
- for (j=BITS2-4; j >= 0; j-=4)
-@@ -314,7 +314,7 @@
- v=(a->d[i]>>j)&0x0f;
- if (z || (v != 0))
- {
-- Fputc(hex[v],fp);
-+ fputc(hex[v],fp);
- z=1;
- }
- }
diff --git a/math/p5-BigInteger/pkg/DESCR b/math/p5-BigInteger/pkg/DESCR
deleted file mode 100644
index 0999cf0b535..00000000000
--- a/math/p5-BigInteger/pkg/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-The BigInteger extension module gives access to Eric Young's bignum
-library. This provides a faster alternative to the Math::BigInt
-library. The basic object in this library is a BigInteger. It is used
-to hold a single large integer.
diff --git a/math/p5-BigInteger/pkg/PLIST b/math/p5-BigInteger/pkg/PLIST
deleted file mode 100644
index 8651815158c..00000000000
--- a/math/p5-BigInteger/pkg/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/10 04:12:39 jtb Exp $
diff --git a/math/p5-Interpolate/Makefile b/math/p5-Interpolate/Makefile
deleted file mode 100644
index 1707cbc564d..00000000000
--- a/math/p5-Interpolate/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2001/04/14 21:43:54 jtb Exp $
-
-DISTNAME= Math-Interpolate-1.05
-PKGNAME= p5-Interpolate-1.05
-CATEGORIES= math perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
-
-MAINTAINER= packages@netbsd.org
-COMMENT= Perl module for interpolating data
-
-USE_PERL5= #defined
-PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Math/Interpolate/.packlist
-
-do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
-
-.include "../../mk/bsd.pkg.mk"
-
diff --git a/math/p5-Interpolate/distinfo b/math/p5-Interpolate/distinfo
deleted file mode 100644
index da035f06661..00000000000
--- a/math/p5-Interpolate/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-$NetBSD: distinfo,v 1.2 2001/04/19 08:45:43 agc Exp $
-
-SHA1 (Math-Interpolate-1.05.tar.gz) = e0ef6aaa4c678409abe8ca91e0355319ea5aea1c
-Size (Math-Interpolate-1.05.tar.gz) = 44323 bytes
diff --git a/math/p5-Interpolate/pkg/DESCR b/math/p5-Interpolate/pkg/DESCR
deleted file mode 100644
index e45559f2bd7..00000000000
--- a/math/p5-Interpolate/pkg/DESCR
+++ /dev/null
@@ -1,4 +0,0 @@
-Math::Interpolate
-
-This module contains several useful routines for interpolating data
-sets and finding where a given value lies in a sorted list.
diff --git a/math/p5-Interpolate/pkg/PLIST b/math/p5-Interpolate/pkg/PLIST
deleted file mode 100644
index cb7627f3162..00000000000
--- a/math/p5-Interpolate/pkg/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/10 04:22:11 jtb Exp $
diff --git a/math/p5-MatrixReal/Makefile b/math/p5-MatrixReal/Makefile
deleted file mode 100644
index f6072d6313d..00000000000
--- a/math/p5-MatrixReal/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2001/04/14 21:43:55 jtb Exp $
-
-DISTNAME= Math-MatrixReal-1.3a5
-PKGNAME= p5-MatrixReal-1.3a5
-CATEGORIES= math perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
-
-MAINTAINER= packages@netbsd.org
-COMMENT= Perl module for performing operations on real matrices
-
-USE_PERL5= #defined
-PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Math/MatrixReal/.packlist
-
-do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
-
-.include "../../mk/bsd.pkg.mk"
-
diff --git a/math/p5-MatrixReal/distinfo b/math/p5-MatrixReal/distinfo
deleted file mode 100644
index b1915fafd7e..00000000000
--- a/math/p5-MatrixReal/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-$NetBSD: distinfo,v 1.2 2001/04/19 08:45:43 agc Exp $
-
-SHA1 (Math-MatrixReal-1.3a5.tar.gz) = 71f0f758c96336da915842e90fda64d97a6cef4b
-Size (Math-MatrixReal-1.3a5.tar.gz) = 34360 bytes
diff --git a/math/p5-MatrixReal/pkg/DESCR b/math/p5-MatrixReal/pkg/DESCR
deleted file mode 100644
index dc82b89bcb4..00000000000
--- a/math/p5-MatrixReal/pkg/DESCR
+++ /dev/null
@@ -1,18 +0,0 @@
-Math::MatrixReal - Matrix of Reals
-
-This module includes many important matrix operations and methods:
-matrix norm, matrix transposition, matrix inverse, determinant of a
-matrix, order and numerical condition of a matrix, scalar product of
-vectors, vector product of vectors, vector length, projection of row
-and column vectors, a comfortable way for reading in a matrix from a
-file, the keyboard or your code, and many more.
-
-Systems of linear equations may be solved using an efficient algorithm
-known as "L-R-decomposition" and several approximative (iterative)
-methods. The Householder transformation and QL decomposition for the
-determination of the eigensystem of a real symmetric matrix are also
-implemented.
-
-The module also features an implementation of Kleene's algorithm to
-compute the minimal costs for all paths in a graph with weighted edges
-(the "weights" being the costs associated with each edge).
diff --git a/math/p5-MatrixReal/pkg/PLIST b/math/p5-MatrixReal/pkg/PLIST
deleted file mode 100644
index c534ae68574..00000000000
--- a/math/p5-MatrixReal/pkg/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/07 22:35:39 jtb Exp $