diff options
author | tonnerre <tonnerre> | 2009-02-24 12:25:35 +0000 |
---|---|---|
committer | tonnerre <tonnerre> | 2009-02-24 12:25:35 +0000 |
commit | bc75875cfa2be47bfbb09738052b71952376cca4 (patch) | |
tree | 65b2424b20266765829526fd6fd059cc2ae0faf8 /textproc | |
parent | 96180000a4eaf7db06d5b18cb50f2c38f3531559 (diff) | |
download | pkgsrc-bc75875cfa2be47bfbb09738052b71952376cca4.tar.gz |
Initial import of the Convert-Translit Perl package version 1.03.
This module converts strings among 8-bit character sets defined by IETF
RFC 1345 (about 128 sets). The RFC document is included so you can look up
character set names and aliases; it's also read by the module when composing
conversion maps. Failing functions or objects return undef value.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/p5-Convert-Translit/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/textproc/p5-Convert-Translit/Makefile b/textproc/p5-Convert-Translit/Makefile new file mode 100644 index 00000000000..01f37b946fb --- /dev/null +++ b/textproc/p5-Convert-Translit/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 2009/02/24 12:25:35 tonnerre Exp $ +# + +DISTNAME= Convert-Translit-1.03 +PKGNAME= p5-${DISTNAME} +CATEGORIES= converters perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Convert/} + +MAINTAINER= tonnerre@NetBSD.org +HOMEPAGE= http://search.cpan.org/dist/Convert-Translit/ +COMMENT= Perl5 module to transliterate various character sets + +PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir + +USE_LANGUAGES= # empty +PERL5_PACKLIST= auto/Convert/Translit/.packlist +REPLACE_PERL= lib/Convert/Translit.pm + +SUBST_CLASSES= example +SUBST_FILES.example= MANIFEST +SUBST_SED.example= -e "s@^example\.pl@@" +SUBST_STAGE.example= post-extract + +post-extract: + ${RM} -f ${WRKSRC}/example.pl + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" |