freebsd-ports/shells/ksh93/Makefile
Peter Pentchev ce00a6623c Update the files' checksums.
Remove a patch that is now incorporated in the official sources.
Mark BROKEN until the maintainer (or somebody else) figures out a way
to make it build again on FreeBSD.

PR:		30825
Submitted by:	maintainer
2001-09-27 14:23:56 +00:00

51 lines
1.3 KiB
Makefile

# New ports collection makefile for: ksh93
# Date created: 2000-12-26
# Whom: Christian Weisgerber <naddy@mips.inka.de>
#
# $FreeBSD$
PORTNAME= ksh93
PORTVERSION= ${VERSION:S/-//g}
VERSION= 2001-07-04.0000
CATEGORIES= shells
MASTER_SITES= http://www.research.att.com/~gsf/download/tgz/
MAINTAINER= naddy@mips.inka.de
BROKEN= "does not build"
RESTRICTED= "Source recipient must acknowledge license"
DISTNAME= ${PORTNAME}-${VERSION}
DISTFILES= INIT.${VERSION}.tgz ast-ksh.${VERSION}.tgz
NO_WRKSUBDIR= yes
MAKE_ARGS= CC='${CC}' CCFLAGS='${CFLAGS}' SHELL='${SH}'
.if defined(WANT_STATIC)
MAKE_ARGS+= LDFLAGS=-static
.endif
MAN1= ksh93.1
.if defined(ACCEPT_AST_LICENSE)
post-patch:
@${TOUCH} ${WRKSRC}/lib/package/gen/ast.license.accepted
.else
IS_INTERACTIVE= yes # must acknowledge license
.endif
do-build:
@cd ${WRKSRC}; ./bin/package make ${MAKE_ARGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/arch/freebsd.${ARCH}/bin/ksh \
${PREFIX}/bin/ksh93
${INSTALL_MAN} ${WRKSRC}/arch/freebsd.${ARCH}/man/man1/sh.1 \
${PREFIX}/man/man1/ksh93.1
post-install:
@${ECHO} "updating /etc/shells"
@${CP} /etc/shells /etc/shells.bak
@(${GREP} -v ${PREFIX}/bin/ksh93 /etc/shells.bak; \
${ECHO} ${PREFIX}/bin/ksh93) >/etc/shells
@${RM} -f /etc/shells.bak
.include <bsd.port.mk>