diff options
author | uebayasi <uebayasi> | 2005-08-28 04:25:28 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2005-08-28 04:25:28 +0000 |
commit | 94e4fa69d6357e1a5cae535af27c4c9c24bdfe3c (patch) | |
tree | ccca2342ed9e54797d6faec6027bbd0e5c89cd07 /inputmethod/skk | |
parent | b7a1a03542680610d58269bfcd522517b8693a08 (diff) | |
download | pkgsrc-94e4fa69d6357e1a5cae535af27c4c9c24bdfe3c.tar.gz |
Rework emacs.mk:
1) Simplify the way how an emacs version is picked when no emacs
is installed, but a user try to install an Emacs Lisp package.
Just pick up the version set as EMACS_TYPE than searching for
versions already installed etc. If the EMACS_TYPE version is
not supported by the Emacs Lisp Package, just fail. EMACS_TYPE
be default to GNU Emacs 21.
(In other words, users should set EMACS_TYPE as they want.
Otherwise GNU Emacs 21 is used.)
2) All Emacs Lisp Packages *must* prepend EMACS_PKGNAME_PREFIX to
a) the PKGNAME itself, and b) PKGNAME in its dependency lines.
EMACS_PKGNAME_PREFIX is expanded to "xemacs-" when XEmacs is
used. This keeps dependency graph of Emacs-Lisp-packages-
installed-for-XEmacs consistent.
3) Document EMACS_* variables as much as possible.
4) Provide more cookies for PLIST. Maybe utilized later.
Note that the 2) change doesn't affect the default, GNU Emacs 21
behaviour. So no version / revision bumps in this commit.
Diffstat (limited to 'inputmethod/skk')
-rw-r--r-- | inputmethod/skk/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/inputmethod/skk/Makefile b/inputmethod/skk/Makefile index b47dff8608d..91f33161869 100644 --- a/inputmethod/skk/Makefile +++ b/inputmethod/skk/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2005/03/05 11:26:48 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2005/08/28 04:25:30 uebayasi Exp $ # DISTNAME= ddskk-12.2.0 -PKGNAME= skk-12.2.0 +PKGNAME= ${EMACS_PKGNAME_PREFIX}skk-12.2.0 PKGREVISION= 1 CATEGORIES= japanese inputmethod MASTER_SITES= http://openlab.ring.gr.jp/skk/maintrunk/ @@ -19,12 +19,12 @@ EMACS_VERSIONS_ACCEPTED= emacs21 emacs21nox xemacs214 emacs20 xemacs215 .include "../../mk/emacs.mk" .include "options.mk" -DEPENDS= ${PKGNAME_PREFIX}apel>=10.6:../../devel/apel +DEPENDS= ${EMACS_PKGNAME_PREFIX}apel>=10.6:../../devel/apel .if ${EMACS_FLAVOR} == "emacs" EMACS_USE_LEIM= # defined -BUILD_DEPENDS+= ${PKGNAME_PREFIX}Mule-UCS-[0-9]*:../../editors/mule-ucs +BUILD_DEPENDS+= ${EMACS_PKGNAME_PREFIX}Mule-UCS-[0-9]*:../../editors/mule-ucs .else -BUILD_DEPENDS+= ${PKGNAME_PREFIX}xemacs-packages>=1.10:../../editors/xemacs-packages +BUILD_DEPENDS+= xemacs-packages>=1.10:../../editors/xemacs-packages .endif MAKEFLAGS= EMACS=${EMACS_BIN} |