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

View File

@@ -0,0 +1,2 @@
The Perl 5 module Math::GMP gives you access to the fast GMP library
for fast big integer math.

View File

@@ -0,0 +1,19 @@
# $NetBSD: Makefile,v 1.11 2013/05/31 12:41:23 wiz Exp $
DISTNAME= Math-BigInt-GMP-1.37
PKGNAME= p5-${DISTNAME}
PKGREVISION= 2
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Math-BigInt-GMP/
COMMENT= Perl module for arbitrary size integer math via the GMP library
LICENSE= ${PERL5_LICENSE}
PERL5_REQD+= 5.14.2 # for Math::BigInt 1.997
PERL5_PACKLIST= auto/Math/BigInt/GMP/.packlist
.include "../../devel/gmp/buildlink3.mk"
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.5 2012/02/24 16:29:43 adam Exp $
SHA1 (Math-BigInt-GMP-1.37.tar.gz) = 7a9762e604e48b1d331b237da9952fb20bc5d086
RMD160 (Math-BigInt-GMP-1.37.tar.gz) = cec6e3779262ba50062638614b0b43d3d1897620
Size (Math-BigInt-GMP-1.37.tar.gz) = 54520 bytes
SHA1 (patch-aa) = a83074f12af5d5ef78d1c937df14d5e8a9fb2224

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-aa,v 1.4 2012/02/24 16:29:43 adam Exp $
From p5-Math-GMP/patches/patch-aa:
Trick perl into emitting use of -lgmp. Actual library
location will be handled via buildlink / wrapper.
--- Makefile.PL.orig 2011-09-04 14:31:50.000000000 +0000
+++ Makefile.PL
@@ -28,6 +28,6 @@ WriteMakefile
Math::BigInt => 1.997,
XSLoader => 0.02,
},
- 'LIBS' => ['-lgmp'],
+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
'SIGN' => 1,
);