diff options
author | heinz <heinz@pkgsrc.org> | 2007-03-24 19:53:11 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-03-24 19:53:11 +0000 |
commit | 2ebc14f6cb99e23e10e829921ae9bd795f59b3e9 (patch) | |
tree | c2aef1b79273b052f5e06885e1a8fae2a71776f2 /textproc/p5-Encode-Detect/Makefile | |
parent | 215300ded02fd522a266a849d8a8610e2dcd3f7d (diff) | |
download | pkgsrc-2ebc14f6cb99e23e10e829921ae9bd795f59b3e9.tar.gz |
Initial import of p5-Encode-Detect 1.0 from pkgsrc-wip.
The package was created by Hiramatsu Yoshifumi, with some very small changes
by me:
- different wording in COMMENT
- BUILD_DEPENDS instead of DEPENDS. The required version of
p5-ExtUtils-CBuilder is not specified in Build.PL, so I left it that way.
- Added USE_LANGUAGES.
=====================================
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.
Diffstat (limited to 'textproc/p5-Encode-Detect/Makefile')
-rw-r--r-- | textproc/p5-Encode-Detect/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/textproc/p5-Encode-Detect/Makefile b/textproc/p5-Encode-Detect/Makefile new file mode 100644 index 00000000000..4af76ca45d7 --- /dev/null +++ b/textproc/p5-Encode-Detect/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/03/24 19:53:11 heinz Exp $ +# + +DISTNAME= Encode-Detect-1.00 +PKGNAME= p5-${DISTNAME} +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Encode/} + +MAINTAINER= hiramatu@boreas.dti.ne.jp +HOMEPAGE= http://search.cpan.org/dist/Encode-Detect/ +COMMENT= Perl module that detects the encoding of data + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +BUILD_DEPENDS+= p5-ExtUtils-CBuilder-[0-9]*:../../devel/p5-ExtUtils-CBuilder + +USE_LANGUAGES+= c c++ + +PERL5_PACKLIST= auto/Encode/Detect/.packlist +PERL5_MODULE_TYPE= Module::Build + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" |