b412737e69
This is a elisp frontend of inputmethod/anthy.
30 lines
884 B
Makefile
30 lines
884 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/12/28 05:38:47 taya Exp $
|
|
|
|
.include "../../inputmethod/anthy/Makefile.common"
|
|
PKGNAME= anthy-elisp-${ANTHY_VERSION}
|
|
CATEGORIES= inputmethod editor
|
|
|
|
MAINTAINER= taya@NetBSD.org
|
|
COMMENT= Emacs lisp files for inputmethod/anthy
|
|
|
|
DEPENDS+= anthy>=${ANTHY_VERSION}:../../inputmethod/anthy
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV+= EMACS=${EMACS_BIN}
|
|
EMACS_USE_LEIM= # defined (for emacs21/emacs20)
|
|
|
|
.include "../../mk/emacs.mk"
|
|
.if ${EMACS_FLAVOR} == "xemacs"
|
|
PKGNAME= ${PKGNAME_PREFIX}anthy-elisp-${ANTHY_VERSION}
|
|
DEPENDS+= xemacs-packages:../../editors/xemacs-packages
|
|
.endif
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/src-util && ${MAKE} elc-stamp
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/anthy
|
|
${INSTALL_DATA} ${WRKSRC}/src-util/*.el ${EMACS_LISPPREFIX}/anthy
|
|
${INSTALL_DATA} ${WRKSRC}/src-util/*.elc ${EMACS_LISPPREFIX}/anthy
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|