freebsd-ports/shells/ksh93/Makefile
Steve Price f20528e489 - Remove the custom do-extract target.
- Cleanup the do-build target.
- Allow the ksh binary to be statically linked but default to dynamic
  to support dynamic loading of 'builtin' functions.

Submitted by:	Jacques A. Vidrine <n@nectar.com>
Reviewed by:	maintainer
2001-02-27 18:33:39 +00:00

39 lines
980 B
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-01-01.0000
CATEGORIES= shells
MASTER_SITES= http://www.research.att.com/~gsf/download/tgz/
MAINTAINER= Christian Weisgerber <naddy@mips.inka.de>
RESTRICTED= "Impenetrable license"
IS_INTERACTIVE= yes # 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
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
.include <bsd.port.mk>