From owner-svn-ports-head@freebsd.org Mon Jan 4 09:04:30 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2951A60F7B; Mon, 4 Jan 2016 09:04:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C79419AF; Mon, 4 Jan 2016 09:04:30 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0494Tc7018543; Mon, 4 Jan 2016 09:04:29 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0494TsT018539; Mon, 4 Jan 2016 09:04:29 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201601040904.u0494TsT018539@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Mon, 4 Jan 2016 09:04:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r405224 - in head/chinese: . gydict 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.20 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: Mon, 04 Jan 2016 09:04:30 -0000 Author: miwi Date: Mon Jan 4 09:04:29 2016 New Revision: 405224 URL: https://svnweb.freebsd.org/changeset/ports/405224 Log: A command line tool to do EN <-> CH translation, utilized by Yahoo! Dictionary. WWW: https://github.com/iamgyz/gydict PR: 203872 Submitted by: Chih-Hsin Chang Added: head/chinese/gydict/ head/chinese/gydict/Makefile (contents, props changed) head/chinese/gydict/distinfo (contents, props changed) head/chinese/gydict/pkg-descr (contents, props changed) Modified: head/chinese/Makefile Modified: head/chinese/Makefile ============================================================================== --- head/chinese/Makefile Mon Jan 4 08:36:29 2016 (r405223) +++ head/chinese/Makefile Mon Jan 4 09:04:29 2016 (r405224) @@ -50,6 +50,7 @@ SUBDIR += gb2ps SUBDIR += gcin SUBDIR += gimp-help-zh_CN + SUBDIR += gydict SUBDIR += hc SUBDIR += ibus-chewing SUBDIR += ibus-libpinyin Added: head/chinese/gydict/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/gydict/Makefile Mon Jan 4 09:04:29 2016 (r405224) @@ -0,0 +1,27 @@ +# Created by: Chih-Hsin Chang +# $FreeBSD$ + +PORTNAME= gydict +PORTVERSION= 1.0 +CATEGORIES= chinese textproc python + +MAINTAINER= chihhsin@cs.nctu.edu.tw +COMMENT= Command line tool of Yahoo! Dictionary + +LICENSE= MIT + +USES= python:run,3 + +USE_GITHUB= yes +GH_ACCOUNT= iamgyz +GH_TAGNAME= 124aebf + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= bin/gydict + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/gydict.py ${STAGEDIR}${PREFIX}/bin/gydict + +.include Added: head/chinese/gydict/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/gydict/distinfo Mon Jan 4 09:04:29 2016 (r405224) @@ -0,0 +1,2 @@ +SHA256 (iamgyz-gydict-1.0-124aebf_GH0.tar.gz) = 732b5f4e70d23c84cc71979b3f3d77e598b6b583879c173006629b48e71e58d8 +SIZE (iamgyz-gydict-1.0-124aebf_GH0.tar.gz) = 1967 Added: head/chinese/gydict/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/chinese/gydict/pkg-descr Mon Jan 4 09:04:29 2016 (r405224) @@ -0,0 +1,3 @@ +A command line tool to do EN <-> CH translation, utilized by Yahoo! Dictionary. + +WWW: https://github.com/iamgyz/gydict