diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-17 19:08:10 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-17 19:08:10 +0000 |
commit | adb7a3e545ec8940ba933bc5f1836d51245d44c9 (patch) | |
tree | 6e7c68679e061a3d2f0612ca8c49dd00b6955d77 /math | |
parent | f3cd8641128e1c945400b7466726001908970973 (diff) | |
download | ports-adb7a3e545ec8940ba933bc5f1836d51245d44c9.tar.gz ports-adb7a3e545ec8940ba933bc5f1836d51245d44c9.zip |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/pecl-big_int/Makefile | 40 | ||||
-rw-r--r-- | math/pecl-big_int/distinfo | 2 | ||||
-rw-r--r-- | math/pecl-big_int/files/patch-libbig_int-include-big_int.h | 14 | ||||
-rw-r--r-- | math/pecl-big_int/pkg-descr | 16 | ||||
-rw-r--r-- | math/pecl-big_int/pkg-plist | 12 |
6 files changed, 85 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index da1ce1e131f1..8fec97e87584 100644 --- a/math/Makefile +++ b/math/Makefile @@ -183,6 +183,7 @@ SUBDIR += pari-devel SUBDIR += parmetis SUBDIR += pear-Structures_Graph + SUBDIR += pecl-big_int SUBDIR += petsc SUBDIR += petsc-mpich SUBDIR += pgcalc diff --git a/math/pecl-big_int/Makefile b/math/pecl-big_int/Makefile new file mode 100644 index 000000000000..37d22047518d --- /dev/null +++ b/math/pecl-big_int/Makefile @@ -0,0 +1,40 @@ +# Ports collection makefile for: pecl-big_int +# Date created: 16 May 2005 +# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) +# +# $FreeBSD$ +# + +PORTNAME= big_int +PORTVERSION= 1.0.5 +CATEGORIES= math devel pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz +DIST_SUBDIR= PECL + +MAINTAINER= antonio@php.net +COMMENT= Functions for calculations with arbitrary length integers and bitsets + +USE_PHP= yes +USE_PHPEXT= yes + +DOCS= CREDITS INSTALL LICENSE README docs/index.html libbig_int/CREDITS \ + libbig_int/LICENSE +EXAMPLES= bitset.php example.php rand.php RSA.php std_header.php + +CONFIGURE_ARGS= --enable-big-int=shared + +.if !defined(NOPORTDOCS) +post-install: + ${MKDIR} ${DOCSDIR} + ${MKDIR} ${EXAMPLESDIR} +. for doc in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} +. endfor +. for test in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/tests/${test} ${EXAMPLESDIR} +. endfor +.endif + +.include <bsd.port.mk> diff --git a/math/pecl-big_int/distinfo b/math/pecl-big_int/distinfo new file mode 100644 index 000000000000..a18d399f6597 --- /dev/null +++ b/math/pecl-big_int/distinfo @@ -0,0 +1,2 @@ +MD5 (PECL/big_int-1.0.5.tgz) = c27f62e767950c33f109b3a841a60f42 +SIZE (PECL/big_int-1.0.5.tgz) = 45853 diff --git a/math/pecl-big_int/files/patch-libbig_int-include-big_int.h b/math/pecl-big_int/files/patch-libbig_int-include-big_int.h new file mode 100644 index 000000000000..e1e9be1338de --- /dev/null +++ b/math/pecl-big_int/files/patch-libbig_int-include-big_int.h @@ -0,0 +1,14 @@ +--- libbig_int/include/big_int.h.orig Wed May 11 16:11:09 2005 ++++ libbig_int/include/big_int.h Tue May 17 21:01:26 2005 +@@ -77,9 +77,9 @@ + #endif /* end of BIG_INT_DIGIT_SIZE */
+ #else
+ /*
+- for ANSI C99 compliant comilers, which have stdint.h header
++ for ANSI C99 compliant compilers, which have inttypes.h header
+ */
+-#include <stdint.h>
++#include <inttypes.h>
+ #if (BIG_INT_DIGIT_SIZE == 32)
+ typedef uint32_t big_int_word;
+ typedef uint64_t big_int_dword;
diff --git a/math/pecl-big_int/pkg-descr b/math/pecl-big_int/pkg-descr new file mode 100644 index 000000000000..2adc2a8b43d1 --- /dev/null +++ b/math/pecl-big_int/pkg-descr @@ -0,0 +1,16 @@ +Functions from this package are useful for number theory applications. +For example, in two-keys cryptography. + +See /tests/RSA.php in the package for example of simple implementation of +RSA-like cryptoalgorithm. See http://chat.finalcombat.com/vayala/big_int/ page +for more complex implementation of RSA-like crypto, which supports key +generating, encrypting/decrypting, signing and validating of sign. + +The package has many bitset functions, which allow to work with arbitrary +length bitsets. + +This package is much faster than bundled into PHP BCMath and consists almost +all functions, which are implemented in PHP GMP extension, but it needn't any +external libraries. + +WWW: http://pecl.php.net/package/big_int/ diff --git a/math/pecl-big_int/pkg-plist b/math/pecl-big_int/pkg-plist new file mode 100644 index 000000000000..982efe9af06e --- /dev/null +++ b/math/pecl-big_int/pkg-plist @@ -0,0 +1,12 @@ +%%PORTDOCS%%%%DOCSDIR%%/CREDITS +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/LICENSE +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/index.html +%%PORTDOCS%%%%EXAMPLESDIR%%/RSA.php +%%PORTDOCS%%%%EXAMPLESDIR%%/bitset.php +%%PORTDOCS%%%%EXAMPLESDIR%%/example.php +%%PORTDOCS%%%%EXAMPLESDIR%%/rand.php +%%PORTDOCS%%%%EXAMPLESDIR%%/std_header.php +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% |