From owner-svn-ports-head@FreeBSD.ORG Wed Oct 10 15:34:03 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 094C1F8B; Wed, 10 Oct 2012 15:34:03 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CBF0F8FC08; Wed, 10 Oct 2012 15:34:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9AFY2BO054319; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9AFY2FQ054314; Wed, 10 Oct 2012 15:34:02 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201210101534.q9AFY2FQ054314@svn.freebsd.org> From: Bryan Drewery Date: Wed, 10 Oct 2012 15:34:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305667 - in head/chinese: . chiconv X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 15:34:03 -0000 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 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 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