Date: Wed, 10 Oct 2012 15:34:02 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305667 - in head/chinese: . chiconv Message-ID: <201210101534.q9AFY2FQ054314@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Wed Oct 10 15:34:02 2012 New Revision: 305667 URL: http://svn.freebsd.org/changeset/ports/305667 Log: Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert them to specified chinese encoding with transliteration. WWW: https://github.com/buganini/chiconv PR: ports/172267 Submitted by: Kuan-Chung Chiu <buganini@gmail.com> Added: head/chinese/chiconv/ head/chinese/chiconv/Makefile (contents, props changed) head/chinese/chiconv/distinfo (contents, props changed) head/chinese/chiconv/pkg-descr (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Wed Oct 10 15:21:55 2012 (r305666) +++ head/chinese/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -27,6 +27,7 @@ SUBDIR += cce SUBDIR += cconv SUBDIR += celvis + SUBDIR += chiconv SUBDIR += cless SUBDIR += cmexfonts SUBDIR += cnprint Added: head/chinese/chiconv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/Makefile Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,24 @@ +# Created by: buganini@gmail.com +# $FreeBSD$ + +PORTNAME= chiconv +PORTVERSION= 1.0 +CATEGORIES= chinese converters +DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} + +MAINTAINER= buganini@gmail.com +COMMENT= Auto chinese encoding converter + +LICENSE= BSD + +LIB_DEPENDS= bsdconv:${PORTSDIR}/converters/bsdconv + +USE_GITHUB= yes +GH_ACCOUNT= buganini +GH_COMMIT= 046010f + +MAKE_ARGS= PREFIX=${PREFIX} + +PLIST_FILES= bin/chiconv + +.include <bsd.port.mk> Added: head/chinese/chiconv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/distinfo Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,2 @@ +SHA256 (buganini-chiconv-1.0-0-g046010f.tar.gz) = ac8cdf73cebaf9725cdb2034d188fe1d2b988379b87fde269aa9b9b15fddf27c +SIZE (buganini-chiconv-1.0-0-g046010f.tar.gz) = 1531 Added: head/chinese/chiconv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/chiconv/pkg-descr Wed Oct 10 15:34:02 2012 (r305667) @@ -0,0 +1,4 @@ +Auto chinese encoding converter. It can detect UTF-8/Big5/GBK text and convert +them to specified chinese encoding with transliteration. + +WWW: https://github.com/buganini/chiconv
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210101534.q9AFY2FQ054314>