svn commit: r305667 - in head/chinese: . chiconv
Bryan Drewery
bdrewery at FreeBSD.org
Wed Oct 10 15:34:03 UTC 2012
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 at 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 at gmail.com
+# $FreeBSD$
+
+PORTNAME= chiconv
+PORTVERSION= 1.0
+CATEGORIES= chinese converters
+DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT}
+
+MAINTAINER= buganini at 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
More information about the svn-ports-head
mailing list