diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2008-08-09 12:53:04 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2008-08-09 12:53:04 +0000 |
commit | b1222ca9080f5314db2c9aa3e7cba2b4be7b3193 (patch) | |
tree | 16bb448c03381d01e58e4a1b0bef794bb801325a /math | |
parent | Update to 1.0.1. (diff) |
This module converts to and from Base36 numbers (0..9 - A..Z)
It was created because of an article/challenge in "The Perl Review"
WWW: http://search.cpan.org/dist/Math-Base36/
PR: ports/126383
Submitted by: Yi-Hsuan Hsin <mhsin at mhsin.org>
Notes
Notes:
svn path=/head/; revision=218266
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/p5-Math-Base36/Makefile | 21 | ||||
-rw-r--r-- | math/p5-Math-Base36/distinfo | 3 | ||||
-rw-r--r-- | math/p5-Math-Base36/pkg-descr | 5 | ||||
-rw-r--r-- | math/p5-Math-Base36/pkg-plist | 5 |
5 files changed, 35 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 63a3b59e4ed9..54ba67cd4081 100644 --- a/math/Makefile +++ b/math/Makefile @@ -199,6 +199,7 @@ SUBDIR += p5-Geo-Distance SUBDIR += p5-Graph SUBDIR += p5-Math-Algebra-Symbols + SUBDIR += p5-Math-Base36 SUBDIR += p5-Math-Base85 SUBDIR += p5-Math-BaseCalc SUBDIR += p5-Math-Bezier diff --git a/math/p5-Math-Base36/Makefile b/math/p5-Math-Base36/Makefile new file mode 100644 index 000000000000..7036a29b90db --- /dev/null +++ b/math/p5-Math-Base36/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: math/p5-Math-Base36 +# Date created: 2008-08-04 +# Whom: Yi-Hsuan Hsin <mhsin@mhsin.org> +# +# $FreeBSD$ +# + +PORTNAME= Math-Base36 +PORTVERSION= 0.05 +CATEGORIES= math perl5 converters +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= mhsin@mhsin.org +COMMENT= Encoding and decoding of base36 strings + +PERL_CONFIGURE= yes + +MAN3= Math::Base36.3 + +.include <bsd.port.mk> diff --git a/math/p5-Math-Base36/distinfo b/math/p5-Math-Base36/distinfo new file mode 100644 index 000000000000..16451ec4c49f --- /dev/null +++ b/math/p5-Math-Base36/distinfo @@ -0,0 +1,3 @@ +MD5 (Math-Base36-0.05.tar.gz) = dd4faae2fed15326571651ea17ee7a04 +SHA256 (Math-Base36-0.05.tar.gz) = b5e4f2f13803bd1d2a3c221d19e82d28f9ecd3d18259e1a5bfe9a8c1630fb748 +SIZE (Math-Base36-0.05.tar.gz) = 18785 diff --git a/math/p5-Math-Base36/pkg-descr b/math/p5-Math-Base36/pkg-descr new file mode 100644 index 000000000000..2ced30a88193 --- /dev/null +++ b/math/p5-Math-Base36/pkg-descr @@ -0,0 +1,5 @@ +This module converts to and from Base36 numbers (0..9 - A..Z) + +It was created because of an article/challenge in "The Perl Review" + +WWW: http://search.cpan.org/dist/Math-Base36/ diff --git a/math/p5-Math-Base36/pkg-plist b/math/p5-Math-Base36/pkg-plist new file mode 100644 index 000000000000..648df0fa8f37 --- /dev/null +++ b/math/p5-Math-Base36/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Base36/.packlist +%%SITE_PERL%%/Math/Base36.pm +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math/Base36 +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Math +@dirrmtry %%SITE_PERL%%/Math |