diff options
author | rafan <rafan@FreeBSD.org> | 2006-07-10 09:26:05 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2006-07-10 09:26:05 +0800 |
commit | 499c55c755bfb72db73f9e11f1be0fa87e555f19 (patch) | |
tree | b57311e1e252e5f7ed43d49e8933fd174dfa962d /converters/p5-Encode-Detect | |
parent | 6c33c8c5a02db5e66e9b69d141710d8f984c42e3 (diff) | |
download | freebsd-ports-gnome-499c55c755bfb72db73f9e11f1be0fa87e555f19.tar.gz freebsd-ports-gnome-499c55c755bfb72db73f9e11f1be0fa87e555f19.tar.zst freebsd-ports-gnome-499c55c755bfb72db73f9e11f1be0fa87e555f19.zip |
Add p5-Encode-Detect 0.01, an Encode::Encoding subclass that detects the
encoding of data.
PR: ports/99980
Submitted by: Gea-Suan Lin <gslin at gslin.org>
Diffstat (limited to 'converters/p5-Encode-Detect')
-rw-r--r-- | converters/p5-Encode-Detect/Makefile | 29 | ||||
-rw-r--r-- | converters/p5-Encode-Detect/distinfo | 3 | ||||
-rw-r--r-- | converters/p5-Encode-Detect/pkg-descr | 10 | ||||
-rw-r--r-- | converters/p5-Encode-Detect/pkg-plist | 10 |
4 files changed, 52 insertions, 0 deletions
diff --git a/converters/p5-Encode-Detect/Makefile b/converters/p5-Encode-Detect/Makefile new file mode 100644 index 000000000000..7bc761a28fb4 --- /dev/null +++ b/converters/p5-Encode-Detect/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: p5-Encode-Detect +# Date created: 2006-07-10 +# Whom: Gea-Suan Lin <gslin@gslin.org> +# +# $FreeBSD$ +# + +PORTNAME= Encode-Detect +PORTVERSION= 0.01 +CATEGORIES= converters perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Encode +PKGNAMEPREFIX= p5- + +MAINTAINER= gslin@gslin.org +COMMENT= An Encode::Encoding subclass that detects the encoding of data + +PERL_MODBUILD= yes + +MAN3= Encode::Detect.3 Encode::Detect::Detector.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500800 +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Encode.pm:${PORTSDIR}/converters/p5-Encode +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Encode.pm:${PORTSDIR}/converters/p5-Encode +.endif + +.include <bsd.port.post.mk> diff --git a/converters/p5-Encode-Detect/distinfo b/converters/p5-Encode-Detect/distinfo new file mode 100644 index 000000000000..e29595ae6897 --- /dev/null +++ b/converters/p5-Encode-Detect/distinfo @@ -0,0 +1,3 @@ +MD5 (Encode-Detect-0.01.tar.gz) = fa8457f635ab654eb7717f772d059615 +SHA256 (Encode-Detect-0.01.tar.gz) = 447724b1e05c3c14ec11e5381d3ba903dccb74273cd2ce2634b6d62356c54d9c +SIZE (Encode-Detect-0.01.tar.gz) = 175277 diff --git a/converters/p5-Encode-Detect/pkg-descr b/converters/p5-Encode-Detect/pkg-descr new file mode 100644 index 000000000000..7c8a54ec4374 --- /dev/null +++ b/converters/p5-Encode-Detect/pkg-descr @@ -0,0 +1,10 @@ +This Perl module is an Encode::Encoding subclass that uses +Encode::Detect::Detector to determine the charset of the input data and +then decodes it using the encoder of the detected charset. + +It is similar to Encode::Guess, but does not require the configuration +of a set of expected encodings. Like Encode::Guess, it only supports +decoding--it cannot encode. + +Author: John Gardiner Myers <jgmyers@proofpoint.com> +WWW: http://search.cpan.org/dist/Encode-Detect/ diff --git a/converters/p5-Encode-Detect/pkg-plist b/converters/p5-Encode-Detect/pkg-plist new file mode 100644 index 000000000000..49721eb4f6f8 --- /dev/null +++ b/converters/p5-Encode-Detect/pkg-plist @@ -0,0 +1,10 @@ +@comment $FreeBSD$ +%%SITE_PERL%%/%%PERL_ARCH%%/Encode/Detect.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Encode/Detect/Detector.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Encode/Detect/Detector/Detector.bs +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Encode/Detect/Detector/Detector.so +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Encode/Detect +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Encode +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Encode/Detect/Detector +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Encode/Detect +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Encode |