From owner-svn-ports-head@freebsd.org Mon Oct 3 15:40:33 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 CEDE3AF3A25; Mon, 3 Oct 2016 15:40:33 +0000 (UTC) (envelope-from ume@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 AA3A3B03; Mon, 3 Oct 2016 15:40:33 +0000 (UTC) (envelope-from ume@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u93FeW6o077851; Mon, 3 Oct 2016 15:40:32 GMT (envelope-from ume@FreeBSD.org) Received: (from ume@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u93FeWsQ077847; Mon, 3 Oct 2016 15:40:32 GMT (envelope-from ume@FreeBSD.org) Message-Id: <201610031540.u93FeWsQ077847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ume set sender to ume@FreeBSD.org using -f From: Hajimu UMEMOTO Date: Mon, 3 Oct 2016 15:40:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423201 - in head/japanese: . boiled-mozc 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.23 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, 03 Oct 2016 15:40:33 -0000 Author: ume Date: Mon Oct 3 15:40:32 2016 New Revision: 423201 URL: https://svnweb.freebsd.org/changeset/ports/423201 Log: Add new port -- boiled-mozc. boiled-mozc.el wraps("boil"s) mozc.el to offer modeless input style, where you can type a Romaji sequence without activating the Mozc input method and then just hit \M-o or \C-o to obtain its Hiragana and Kana-Kanji conversion, respectively. Added: head/japanese/boiled-mozc/ head/japanese/boiled-mozc/Makefile (contents, props changed) head/japanese/boiled-mozc/distinfo (contents, props changed) head/japanese/boiled-mozc/pkg-descr (contents, props changed) Modified: head/japanese/Makefile Modified: head/japanese/Makefile ============================================================================== --- head/japanese/Makefile Mon Oct 3 15:11:32 2016 (r423200) +++ head/japanese/Makefile Mon Oct 3 15:40:32 2016 (r423201) @@ -20,6 +20,7 @@ SUBDIR += asterisk-sounds SUBDIR += awffull SUBDIR += bible_names-fpw + SUBDIR += boiled-mozc SUBDIR += bookview SUBDIR += bugzilla44 SUBDIR += bugzilla50 Added: head/japanese/boiled-mozc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/boiled-mozc/Makefile Mon Oct 3 15:40:32 2016 (r423201) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= boiled-mozc +PORTVERSION= 0.7 +#PORTREVISION= 0 +CATEGORIES= japanese editors elisp + +MAINTAINER= ume@FreeBSD.org +COMMENT= Wrapper to mozc.el that offers modeless ("boil"ed) input style + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${LOCALBASE}/${EMACS_VERSION_SITE_LISPDIR}/mozc/mozc.el.gz:japanese/mozc-el + +GH_ACCOUNT= tadanagao +GH_TAGNAME= v${PORTVERSION} + +USE_GITHUB= yes +USE_EMACS= yes + +PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.el \ + ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}.elc + +do-build: + @cd ${WRKSRC} && ${EMACS_CMD} -batch -q -no-site-file -no-init-file \ + -f batch-byte-compile ${PORTNAME}.el + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.el \ + ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.elc \ + ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + +.include Added: head/japanese/boiled-mozc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/boiled-mozc/distinfo Mon Oct 3 15:40:32 2016 (r423201) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475505570 +SHA256 (tadanagao-boiled-mozc-0.7-v0.7_GH0.tar.gz) = 0b6f722d4d9d45857472961f37cf0ebfde50a53d17b0ce415d2f9bfb29a2b8ad +SIZE (tadanagao-boiled-mozc-0.7-v0.7_GH0.tar.gz) = 4613 Added: head/japanese/boiled-mozc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/japanese/boiled-mozc/pkg-descr Mon Oct 3 15:40:32 2016 (r423201) @@ -0,0 +1,15 @@ +boiled-mozc.el wraps("boil"s) mozc.el to offer modeless input style, +where you can type a Romaji sequence without activating the Mozc input +method and then just hit \M-o or \C-o to obtain its Hiragana and +Kana-Kanji conversion, respectively. + +To use `boiled-mozc.el`, just add the following code into your `.emacs`: + + (autoload 'boiled-mozc-rK-conv "boiled-mozc" + "Romaji to Kana-Kanji conversion" t) + (autoload 'boiled-mozc-rhkR-conv "boiled-mozc" + "Romaji to Hiragana conversion" t) + (global-set-key "\C-o" 'boiled-mozc-rK-conv) + (global-set-key "\M-o" 'boiled-mozc-rhkR-conv) + +WWW: https://github.com/tadanagao/boiled-mozc