* [tg] Fix regression tests on OSes insisting on a shebang (Cygwin) * [Sean Boudreau] QNX 6.4.2 ed(1) is said to have the bugs fixed * [tg] Build.sh bugfixes: -DMKSH_BINSHREDUCED can also be given without -DMKSH_SMALL; allow HAVE_REALPATH=x and HAVE_REVOKE=x in the environment to re-enable these even if -DMKSH_SMALL disables them by default, like mknod already did * [tg] -DMKSH_ASSUME_UTF8=0 skips the environment checks, like -DMKSH_ASSUME_UTF8=1, but disables the utf8-mode * [tg] Apply some more KNF – style(9) – to the source; clean it up and further optimise for small size * [OpenBSD] Fix segfaults caused by missing check for end of input in the tokeniser on “let --” and other input * [OpenBSD] Make Vi editing mode ^W behave like Emacs mode’s * [tg] If no killpg(3) is avaiable, use kill(2) and hope it works * [tg] -DMKSH_NO_LIMITS skips trying to build the ulimit code
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.12 2009/06/14 11:51:41 ahoka Exp $
|
|
|
|
DISTNAME= mksh-R38c
|
|
PKGNAME= ${DISTNAME:S/-R/-/}
|
|
CATEGORIES= shells
|
|
MASTER_SITES= http://www.mirbsd.org/MirOS/dist/mir/mksh/ \
|
|
http://pub.allbsd.org/MirOS/dist/mir/mksh/
|
|
EXTRACT_SUFX= .cpio.gz
|
|
|
|
MAINTAINER= ahoka@NetBSD.org
|
|
HOMEPAGE= http://mirbsd.de/mksh
|
|
COMMENT= MirBSD Korn Shell
|
|
LICENSE= miros
|
|
|
|
WRKSRC= ${WRKDIR}/mksh
|
|
WRKBUILD?= ${WRKSRC}
|
|
|
|
PKG_INSTALLATION_TYPES= pkgviews overwrite
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PKG_SHELL= bin/mksh
|
|
|
|
LIBS.Interix+= -lcrypt
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/examples/mksh
|
|
|
|
do-build:
|
|
cd ${WRKBUILD} && LIBS=${LIBS:Q} CC=${CC:Q} CFLAGS=${CFLAGS:Q} \
|
|
CPPFLAGS=${CPPFLAGS:Q} LDFLAGS=${LDFLAGS:Q} \
|
|
${TOOLS_SHELL} ${WRKSRC}/Build.sh -r
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKBUILD}/mksh ${DESTDIR}${PREFIX}/bin/mksh
|
|
${INSTALL_MAN} ${WRKSRC}/mksh.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
${INSTALL_DATA} ${WRKSRC}/dot.mkshrc ${DESTDIR}${PREFIX}/share/examples/mksh/
|
|
|
|
# Uncomment this if you want to run the regression tests
|
|
#USE_TOOLS+= perl
|
|
#do-test:
|
|
# ${WRKBUILD}/test.sh -v
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|