diff options
author | hrs <hrs@FreeBSD.org> | 2013-05-15 03:46:20 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-05-15 03:46:20 +0800 |
commit | e4b30749a745b203b86568b696b9c1a8a9d83254 (patch) | |
tree | f985850491613a2507e5197dbaec962101e3ffef /japanese/mozc-el | |
parent | bcc7cc53cdadb16e2351f04c10d3d1825766eb7c (diff) | |
download | freebsd-ports-gnome-e4b30749a745b203b86568b696b9c1a8a9d83254.tar.gz freebsd-ports-gnome-e4b30749a745b203b86568b696b9c1a8a9d83254.tar.zst freebsd-ports-gnome-e4b30749a745b203b86568b696b9c1a8a9d83254.zip |
- Add Japan Post zip code dictionary.
- Add LICENSE.
- Fix malformed BUILD_DEPENDS and remove unnecessary dependencies.
Use USE_* in a consistent manner.
- Fix inconsistency toolchain usage in build_tools and the others.
Hardcoded g++ was always used only for the former even if both gcc
and clang were available.
- Enable -Werror.
- Fix SSP issue on i386 platform.
- Let cpp(1) to replace LOCALBASE instead of patching and sed(1).
- Use GYP_DEFINES for build variables instead of patching.
- Separate the stages of configuration and build from each other.
- Add options for localbase and openssl-related configuration to gyp
instead of patching.
- Fix makesum target.
- Fix whitespaces to make portlint happy.
- Disable serialization for linking. It is not needed.
- Remove hardcoded mozc.xml.
- Respect DISABLE_MAKE_JOBS=yes. Do not calculate the factor using the
number of CPUs.
- Remove a confusing message after pkg-message.
- Rename a deprecated function (inactivate-current-input-method-function)
in mozc.el in a compatible fashion with the older emacsen [1].
- Add leim-list.el for registration of mozc-mode via LEIM API.
"(require 'mozc)" is no longer needed.
- Fix a build problem when binutils is installed and ${LOCALBASE}/bin
comes first in $PATH [2].
Submitted by: Tadaaki Nagao [1]
Reported by: Kenichi Niioka [2]
PR: ports/178250
Approved by: maintainer timeout (2 weeks)
Diffstat (limited to 'japanese/mozc-el')
-rw-r--r-- | japanese/mozc-el/Makefile | 16 | ||||
-rw-r--r-- | japanese/mozc-el/pkg-message | 2 |
2 files changed, 4 insertions, 14 deletions
diff --git a/japanese/mozc-el/Makefile b/japanese/mozc-el/Makefile index dff288a42a89..43c416f3e2c4 100644 --- a/japanese/mozc-el/Makefile +++ b/japanese/mozc-el/Makefile @@ -1,23 +1,13 @@ -# New ports collection makefile for: mozc-el -# Date created: 26 June 2010 -# Whom: TAKANO, Yuji -# +# Created by: TAKANO, Yuji # $FreeBSD$ -# PKGNAMESUFFIX= -el-${EMACS_PORT_NAME} -COMMENT= Mozc for GNU Emacs + +COMMENT= Emacs input method for Mozc MASTERDIR= ${.CURDIR}/../../japanese/mozc-server PKGMESSAGE= ${.CURDIR}/pkg-message BUILD_MOZC_LIST=mozc_el -USE_EMACS= yes -CATEGORIES= editors elisp - -post-install: - @${CAT} ${PKGMESSAGE} - @${ECHO_CMD} To display this message again, type ${PKG_INFO} -D ${PKGNAME} - .include "${MASTERDIR}/Makefile" diff --git a/japanese/mozc-el/pkg-message b/japanese/mozc-el/pkg-message index 28c70fcd2f1a..0f7281b2231f 100644 --- a/japanese/mozc-el/pkg-message +++ b/japanese/mozc-el/pkg-message @@ -1,7 +1,7 @@ + To activate mozc, you will need to add the following lines to your ~/.emacs: -(require 'mozc) (set-language-environment "Japanese") (setq default-input-method "japanese-mozc") (global-set-key (kbd "C-o") 'toggle-input-method) |