1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Supports base-2, base-10, base-16, and base-256 numbers.

Uses the GMP or BCMath extensions, if available,
and an internal implementation, otherwise.

WWW: http://pear.php.net/package/Math_BigInteger/

PR:		ports/160211
Submitted by:	Piotr Rybicki <meritus@innervision.pl>
This commit is contained in:
Wen Heping 2011-09-08 06:30:15 +00:00
parent 87cb0b0166
commit 49b0e9e716
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=281425
4 changed files with 36 additions and 0 deletions

View File

@ -443,6 +443,7 @@
SUBDIR += pari
SUBDIR += parmetis
SUBDIR += parmgridgen
SUBDIR += pear-Math_BigInteger
SUBDIR += pear-Math_Combinatorics
SUBDIR += pecl-big_int
SUBDIR += pecl-bitset

View File

@ -0,0 +1,28 @@
# Ports collection makefile for: pear-Math_BigInteger
# Date created: 26 July 2011
# Whom: Piotr Rybicki <meritus@innervision.pl>
#
# $FreeBSD$
#
PORTNAME= Math_BigInteger
PORTVERSION= 1.0.0
CATEGORIES= math pear
MAINTAINER= meritus@innervision.pl
COMMENT= Pure-PHP arbitrary precission integer arithmetic library
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= Math
FILES= BigInteger.php
USE_PHP= pcre
EXAMPLES= demo/benchmark.php demo/demo.php
_EXAMPLESDIR=
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
SHA256 (PEAR/Math_BigInteger-1.0.0.tgz) = ce37c3c7287bc5734f2545454e29e0152e4e8a3ccfd2ec83cddc7d08aff9c67e
SIZE (PEAR/Math_BigInteger-1.0.0.tgz) = 26138

View File

@ -0,0 +1,5 @@
Supports base-2, base-10, base-16, and base-256 numbers.
Uses the GMP or BCMath extensions, if available,
and an internal implementation, otherwise.
WWW: http://pear.php.net/package/Math_BigInteger/