Changelog: Changes since 5.0.0 ------------------- Numeric constants encountered in mathematical expressions (but not other contexts) can contain underscores as separators that will be ignored on evaluation, as allowed in other scripting languages. For example, 0xFFFF_FFFF, or 3.141_592_654. "functions -T" turns on tracing for the specified function(s) only, similar to "functions -t" except that tracing is turned off for any functions called from the specified one(s) that don't also have the -t or -T flag. In file completion, the recursive-files style can be set to an array of patterns to match against "$PWD/". In any matched location, it is possibly to complete files in arbitrarily deep subdirectories without needing to type the directory prefix. See example in the zshcompsys manual. The _user_expand completer now allows expansion functions in the user-expand files to return a string in REPLY that will be used to name the set of expansions returned.
33 lines
897 B
Makefile
33 lines
897 B
Makefile
# $NetBSD: Makefile,v 1.61 2013/01/03 15:37:23 ryoon Exp $
|
|
|
|
.include "../../shells/zsh/Makefile.common"
|
|
|
|
ZSH_VERSION= 5.0.2
|
|
ZSH_MAINTAINER= uebayasi@NetBSD.org
|
|
|
|
CONFIGURE_ARGS+= --disable-gdbm
|
|
|
|
SUBST_CLASSES+= prefix-fixup
|
|
SUBST_STAGE.prefix-fixup= pre-configure
|
|
SUBST_FILES.prefix-fixup= \
|
|
Misc/globtests \
|
|
Misc/globtests.ksh \
|
|
Test/ztst.zsh \
|
|
Test/runtests.zsh \
|
|
Util/reporter \
|
|
Functions/Calendar/calendar_add \
|
|
Functions/Misc/run-help \
|
|
Functions/Misc/checkmail \
|
|
Functions/Misc/sticky-note \
|
|
Functions/Misc/zcalc \
|
|
Functions/Misc/zkbd \
|
|
Functions/Misc/zed \
|
|
Functions/Example/cat \
|
|
Functions/Example/zless
|
|
SUBST_SED.prefix-fixup= \
|
|
-e 's|^\#\!/bin/zsh|\#\!${PREFIX}/bin/zsh|g' \
|
|
-e 's|^\#\! /bin/zsh|\#\! ${PREFIX}/bin/zsh|g' \
|
|
-e 's|^\#\!/usr/local/bin/zsh|\#\!${PREFIX}/bin/zsh|g' \
|
|
-e 's|^\#\! /usr/local/bin/zsh|\#\! ${PREFIX}/bin/zsh|g'
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|