99a5c10056
DISTFILES hack dosen't seems to need now. 2002-11-20 NAKAJIMA Mikio <minakaji@osaka.email.ne.jp> * Makefile (SNAPBASE, tar, snapshot): Add `-'. 2002-11-10 NAKAJIMA Mikio <minakaji@osaka.email.ne.jp> * skk-dic.el.in: Set buffer coding system to iso-2022-jp and specify the coding system in the header. 2002-11-09 NAKAJIMA Mikio <minakaji@osaka.email.ne.jp> * skk-dic.el.in (skk-search-small-dic): Add doc string. 2002-11-09 Akihiro Motoki <amotoki@dd.iij4u.or.jp> * skk-comp.el (skk-comp-do): Keyword completion shows a candidate circularly. (After showing the last candidate, back to the first.) (skk-comp-previous): Ditto. * skk.el (keyboard-quit): While keyword completion in Midashi input mode, C-g terminates the completion and redisplay the original Midashi input. * skk-vars.el (skk-comp-circulate): New user variable. (skk-comp-search-done): New buffer local variable. 2002-11-09 NAKAJIMA Mikio <minakaji@osaka.email.ne.jp> * skk-setup.el.in (isearch-mode-end-hook): Check if `skk-isearch-mode-enable' is non-nil before invoking `skk-isearch-mode-cleanup' 2002-11-03 NAKAJIMA Mikio <minakaji@osaka.email.ne.jp> * skk-vars.el (skk-isearch-mode-enable): New user variable. * skk-setup.el.in (isearch-mode-hook): Check if `skk-isearch-mode-enable' is non-nil before invoking `skk-isearch-mode-setup'. 2002-10-28 Tsuyoshi AKIHO <akiho@kawachi.zaq.ne.jp> * doc/skk.texi changes (taca: I've omited description in Japanese.) 2002-10-22 Yano Keisuke <yano@moon.email.ne.jp> * skk-kcode.el (skk-display-code): Modified for JISX0213. Change display of KUTEN code in accordance with `JIS kanji jiten'. (taca: I've omited description in Japanese.) (skk-jis2sjis2): New function.
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2002/11/30 13:29:21 taca Exp $
|
|
#
|
|
|
|
DISTNAME= ddskk-20021124
|
|
CATEGORIES= japanese inputmethod
|
|
MASTER_SITES= http://openlab.ring.gr.jp/skk/maintrunk/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= tech-pkg-ja@jp.netbsd.org
|
|
HOMEPAGE= http://openlab.ring.gr.jp/skk/index.html
|
|
COMMENT= Japanese input methods for Emacs
|
|
|
|
DEPENDS= ${PKGNAME_PREFIX}apel>=10.2:../../devel/apel
|
|
|
|
MAKEFLAGS= EMACS=${EMACS_BIN}
|
|
ALL_TARGET= elc
|
|
|
|
INFO_FILES= skk.info
|
|
|
|
do-configure:
|
|
@${MV} ${WRKSRC}/SKK-CFG ${WRKSRC}/SKK-CFG.orig
|
|
@${SED} \
|
|
-e 's|@PREFIX@|${PREFIX}|g' \
|
|
-e 's|@EMACS_LISPPREFIX@|${EMACS_LISPPREFIX}|g' \
|
|
${FILESDIR}/SKK-CFG >${WRKSRC}/SKK-CFG
|
|
|
|
# Create PLIST, since some files are installed conditionally and what
|
|
# file will be installed is hard to expect before configure / build.
|
|
# The idea here is that files compiled as *.elc will be installed.
|
|
post-build:
|
|
@{ \
|
|
${CAT} ${PKGDIR}/PLIST.header; \
|
|
cd ${WRKSRC}; \
|
|
for e in *.elc; do \
|
|
${ECHO} '$${EMACS_LISPPREFIX}/skk/'$${e%.elc}.el; \
|
|
${ECHO} '$${EMACS_LISPPREFIX}/skk/'$$e; \
|
|
done; \
|
|
${CAT} ${PKGDIR}/PLIST.footer; \
|
|
} >${PKGDIR}/PLIST
|
|
|
|
.include "../../mk/emacs.mk"
|
|
.include "../../mk/texinfo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|