diff options
author | pho <pho@pkgsrc.org> | 2015-02-13 14:01:58 +0000 |
---|---|---|
committer | pho <pho@pkgsrc.org> | 2015-02-13 14:01:58 +0000 |
commit | e109df31a69057676ce94f19031783d4b52a4fa3 (patch) | |
tree | c29ba1bfff990e0cfdba642959bf358c7817bc45 /misc/elscreen | |
parent | 9ee8677308a6c4e531bff78b4b99432367facf04 (diff) | |
download | pkgsrc-e109df31a69057676ce94f19031783d4b52a4fa3.tar.gz |
Declare that misc/elscreen does not support Emacs 24 or later
It uses some of obsolete variables/functions, resulting in an error on
Emacs 24 or later like this:
string-to-number: Symbol's value as variable is void: last-command-char
I have recently created wip/elscreen-current for this
reason. Unfortunately it doesn't have a version number nor a release
tarball since it's an unofficial fork of the original ElScreen, even
though it's what MELPA currently provides: http://melpa.org/#/elscreen
Diffstat (limited to 'misc/elscreen')
-rw-r--r-- | misc/elscreen/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/misc/elscreen/Makefile b/misc/elscreen/Makefile index b284f5c04e9..e069876e849 100644 --- a/misc/elscreen/Makefile +++ b/misc/elscreen/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2013/02/17 19:18:07 dholland Exp $ +# $NetBSD: Makefile,v 1.21 2015/02/13 14:01:58 pho Exp $ # DISTNAME= elscreen-1.4.6 PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME} -#PKGREVISION= PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ftp://ftp.morishima.net/pub/morishima.net/naoto/ElScreen/ \ @@ -30,6 +29,14 @@ NO_BUILD= yes EMACS_BUILDLINK=# empty +# Emacs 24 or later is not supported. Try wip/elscreen-current +# instead. +EMACS_VERSIONS_ACCEPTED= \ + emacs23 emacs23nox \ + emacs22 emacs22nox \ + emacs21 emacs21nox \ + emacs20 + INSTALLATION_DIRS+= ${EMACS_LISPPREFIX}/elscreen INSTALLATION_DIRS+= share/doc/elscreen |