diff options
author | taca <taca@pkgsrc.org> | 2004-11-25 15:17:52 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-11-25 15:17:52 +0000 |
commit | 4690864e236224afed68ce404c997615ed30d7b2 (patch) | |
tree | f497277ccf7df3899b4aa28743a059c738f4629a /converters/p5-chkjis/Makefile | |
parent | d080013d310dbedc90d35d51a6f666c36b828f84 (diff) | |
download | pkgsrc-4690864e236224afed68ce404c997615ed30d7b2.tar.gz |
Initial import of p5-chkjis:
chkjis.pl is Perl library for Japanese character code processing.
It replace vendor's own characters which isn't defined in JIS X
0208:1997 to "geta" character and support ISO-2022-JP, euc-JP and
Shift_JIS.
It is useful to check intentional use of vendor's own characters in
text or to filter out these characters.
Diffstat (limited to 'converters/p5-chkjis/Makefile')
-rw-r--r-- | converters/p5-chkjis/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/converters/p5-chkjis/Makefile b/converters/p5-chkjis/Makefile new file mode 100644 index 00000000000..80d28935044 --- /dev/null +++ b/converters/p5-chkjis/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/11/25 15:17:52 taca Exp $ +# + +DISTNAME= chkjis +PKGNAME= p5-chkjis-0.18 +CATEGORIES= textproc +MASTER_SITES= http://www2d.biglobe.ne.jp/~msyk/software/perl5/ +EXTRACT_SUFX= .pl + +MAINTAINER= tech-pkg-ja@jp.netbsd.org +HOMEPAGE= http://www2d.biglobe.ne.jp/~msyk/software/chkjis.html +COMMENT= Filter library substituting vendor's own characters + +WRKSRC= ${WRKDIR} +USE_BUILDLINK3= yes + +EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKSRC} + +WRKSRC= ${WRKDIR} +USE_PERL5= yes +NO_BUILD= yes +NO_CONFIGURE= yes +NO_WRAPPER= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/chkjis.pl ${PERL5_SITELIB} + +.include "../../mk/bsd.pkg.mk" |