diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2002-09-15 06:07:03 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2002-09-15 06:07:03 +0000 |
commit | f29fdcc4cf18c9d827517ac59a2f674f5d884460 (patch) | |
tree | 5955b8953aaf2fb6f4f1385b499b6e391c0c13ab /editors/mule-ucs/Makefile | |
parent | 5252fdf459a5c754ff3a2b9580b19e85f5874d19 (diff) | |
download | pkgsrc-f29fdcc4cf18c9d827517ac59a2f674f5d884460.tar.gz |
Initial import of Mule-UCS 0.84.
Mule-UCS is an Emacs Lisp library providing flexible and complehensible
encoding mechanism to Emacs. As the name suggests, it supports Unicode, which
the original Emacs doesn't support.
Diffstat (limited to 'editors/mule-ucs/Makefile')
-rw-r--r-- | editors/mule-ucs/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/mule-ucs/Makefile b/editors/mule-ucs/Makefile new file mode 100644 index 00000000000..2a1d473c416 --- /dev/null +++ b/editors/mule-ucs/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/09/15 06:07:03 uebayasi Exp $ + +DISTNAME= Mule-UCS-0.84 +CATEGORIES= editors +MASTER_SITES= ftp://ftp.m17n.org/pub/mule/Mule-UCS/ + +MAINTAINER= uebayasi@netbsd.org +#HOMEPAGE= +COMMENT= another encoding conversion mechanism for Emacs + +# XXX Emacs 20.7 needs a patch to use Mule UCS. +EMACS_VERSIONS_ACCEPTED= emacs21 + +do-build: + @cd ${WRKSRC}; \ + for f in lisp/*.el; do \ + ${EMACS_BIN} -q --no-site-file -batch -l mucs-comp.el $$f; \ + done + +do-install: + @${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/mule-ucs + @for f in ${WRKSRC}/lisp/*.el ${WRKSRC}/lisp/*.elc; do \ + ${INSTALL_DATA} $$f ${EMACS_LISPPREFIX}/mule-ucs; \ + done + +.include "../../mk/emacs.mk" +.include "../../mk/bsd.pkg.mk" |