forked from Lainports/freebsd-ports
Add cocot, a code converter on TTY. It transparently filters
characters on a TTY converting from one encoding to another.
This commit is contained in:
parent
7df9bc1cfb
commit
010e306fa7
5 changed files with 56 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
|||
SUBDIR += btoa
|
||||
SUBDIR += chmview
|
||||
SUBDIR += cmios9
|
||||
SUBDIR += cocot
|
||||
SUBDIR += convmv
|
||||
SUBDIR += dosunix
|
||||
SUBDIR += dumpasn1
|
||||
|
|
|
|||
37
converters/cocot/Makefile
Normal file
37
converters/cocot/Makefile
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# New ports collection makefile for: cocot
|
||||
# Date created: 24 July 2007
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= cocot
|
||||
PORTVERSION= 20041220
|
||||
CATEGORIES= converters
|
||||
MASTER_SITES= http://iwa.ath.cx/software/cygwin/
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
COMMENT= Code Converter on TTY
|
||||
|
||||
USE_BZIP2= yes
|
||||
USE_ICONV= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib
|
||||
|
||||
DOCS_EN= COPYING ChangeLog
|
||||
DOCS_JA= ChangeLog.ja README.ja
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${MKDIR} ${DOCSDIR}/ja
|
||||
.for f in ${DOCS_EN}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
||||
.endfor
|
||||
.for f in ${DOCS_JA}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ja
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
converters/cocot/distinfo
Normal file
3
converters/cocot/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
MD5 (cocot-20041220.tar.bz2) = 25f40806da5f822c92b7e2cfcf393bcd
|
||||
SHA256 (cocot-20041220.tar.bz2) = 9adf7239e37f953bffa12c5baf9520fb120d23e17cbbe26446ae607693c21750
|
||||
SIZE (cocot-20041220.tar.bz2) = 78411
|
||||
8
converters/cocot/pkg-descr
Normal file
8
converters/cocot/pkg-descr
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
This is a code converter on TTY. It transparently filters a TTY
|
||||
converting characters from one encoding to another.
|
||||
|
||||
e.g.
|
||||
$ cocot -p euc-jp -t utf-8 screen -xRR wb
|
||||
|
||||
WWW: http://iwa.ath.cx/software/cygwin/cocot.html
|
||||
Author: IWAMURO Motonori <iwa[at]deenheart[dot]org>>
|
||||
7
converters/cocot/pkg-plist
Normal file
7
converters/cocot/pkg-plist
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
bin/cocot
|
||||
%%PORTDOCS%%%%DOCSDIR%%/COPYING
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ja/ChangeLog.ja
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ja/README.ja
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ja
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
Loading…
Add table
Reference in a new issue