summaryrefslogtreecommitdiff
path: root/math/p5-Math-BigInteger
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2001-04-27 23:16:31 +0000
committerjtb <jtb@pkgsrc.org>2001-04-27 23:16:31 +0000
commitfec180220cc939efb451e6d9d7b16614a8e12168 (patch)
treedf69540fd44feb0458fe2edb16380d9c401e0954 /math/p5-Math-BigInteger
parent0add1997de974e7af21b41ac0ba4382d8b381b6d (diff)
downloadpkgsrc-fec180220cc939efb451e6d9d7b16614a8e12168.tar.gz
Reimport of p5-BigInteger as p5-Math-BigInteger.
Diffstat (limited to 'math/p5-Math-BigInteger')
-rw-r--r--math/p5-Math-BigInteger/Makefile18
-rw-r--r--math/p5-Math-BigInteger/distinfo5
-rw-r--r--math/p5-Math-BigInteger/patches/patch-aa24
-rw-r--r--math/p5-Math-BigInteger/pkg/DESCR4
-rw-r--r--math/p5-Math-BigInteger/pkg/PLIST1
5 files changed, 52 insertions, 0 deletions
diff --git a/math/p5-Math-BigInteger/Makefile b/math/p5-Math-BigInteger/Makefile
new file mode 100644
index 00000000000..52c43fec753
--- /dev/null
+++ b/math/p5-Math-BigInteger/Makefile
@@ -0,0 +1,18 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/04/27 23:16:31 jtb Exp $
+
+DISTNAME= Math-BigInteger-1.0
+PKGNAME= p5-${DISTNAME}
+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-Math-BigInteger/distinfo b/math/p5-Math-BigInteger/distinfo
new file mode 100644
index 00000000000..11d047869d3
--- /dev/null
+++ b/math/p5-Math-BigInteger/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2001/04/27 23:16:31 jtb 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-Math-BigInteger/patches/patch-aa b/math/p5-Math-BigInteger/patches/patch-aa
new file mode 100644
index 00000000000..3366f126b26
--- /dev/null
+++ b/math/p5-Math-BigInteger/patches/patch-aa
@@ -0,0 +1,24 @@
+$NetBSD: patch-aa,v 1.1.1.1 2001/04/27 23:16:31 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-Math-BigInteger/pkg/DESCR b/math/p5-Math-BigInteger/pkg/DESCR
new file mode 100644
index 00000000000..0999cf0b535
--- /dev/null
+++ b/math/p5-Math-BigInteger/pkg/DESCR
@@ -0,0 +1,4 @@
+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-Math-BigInteger/pkg/PLIST b/math/p5-Math-BigInteger/pkg/PLIST
new file mode 100644
index 00000000000..51393658539
--- /dev/null
+++ b/math/p5-Math-BigInteger/pkg/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2001/04/27 23:16:31 jtb Exp $