Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Jan 2016 09:04:29 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r405224 - in head/chinese: . gydict
Message-ID:  <201601040904.u0494TsT018539@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <chihhsin@cs.nctu.edu.tw>

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 <chihhsin@cs.nctu.edu.tw>
+# $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 <bsd.port.mk>

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601040904.u0494TsT018539>