Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Oct 2016 15:40:32 +0000 (UTC)
From:      Hajimu UMEMOTO <ume@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423201 - in head/japanese: . boiled-mozc
Message-ID:  <201610031540.u93FeWsQ077847@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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



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