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

2
math/p5-Math-GMP/DESCR Normal file
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.

27
math/p5-Math-GMP/Makefile Normal file
View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.13 2013/05/31 12:41:23 wiz Exp $
#
DISTNAME= Math-GMP-2.06
PKGNAME= p5-${DISTNAME}
PKGREVISION= 5
SVR4_PKGNAME= p5mgp
CATEGORIES= math perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Math/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Math-GMP/
COMMENT= Perl 5 module for high speed arbitrary size integer math
LICENSE= gnu-gpl-v2
#BUILD_DEPENDS+= p5-Module-Signature>=0.50:../../security/p5-Module-Signature
#BUILD_DEPENDS+= p5-Text-SpellChecker>0:../../textproc/p5-Text-SpellChecker
#BUILD_DEPENDS+= p5-Perl-Critic>0:../../devel/p5-Perl-Critic
#BUILD_DEPENDS+= p5-Pod-Spell>0:../../textproc/p5-Pod-Spell
#BUILD_DEPENDS+= p5-Test-Pod>=0.95:../../devel/p5-Test-Pod
BUILD_DEPENDS+= p5-Test-YAML-Meta>=0.03:../../devel/p5-Test-YAML-Meta
PERL5_PACKLIST= auto/Math/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.3 2009/09/22 20:40:35 sno Exp $
SHA1 (Math-GMP-2.06.tar.gz) = fb2f49eed88c7f4760cb663ff8b6bcca53fe7445
RMD160 (Math-GMP-2.06.tar.gz) = 4ef2e5104d5e48133506fbd1e1efd84af23bcdab
Size (Math-GMP-2.06.tar.gz) = 24563 bytes
SHA1 (patch-aa) = 0609ee8dbfdb087c4f08257fe925ac5bb9129a17

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-aa,v 1.1 2008/11/18 05:46:55 he Exp $
Trick perl into emitting use of -lgmp. Actual library
location will be handled via buildlink / wrapper.
--- Makefile.PL.orig 2008-11-18 05:39:39.000000000 +0000
+++ Makefile.PL
@@ -8,7 +8,7 @@ my $output = WriteMakefile
(
'NAME' => 'Math::GMP',
'VERSION_FROM' => 'lib/Math/GMP.pm',
- 'LIBS' => ['-lgmp'],
+ 'LIBS' => ["-L$ENV{PREFIX}/lib -lgmp"],
'NO_META' => 1,
);