mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
bdb0f6273c
Some commentary from Mr. bwk: Mar 5, 1999: after hearing from yet another innocent victim, changed isnumber to is_number to avoid the problem caused by freeBSD gratuitously and incorrectly including the name isnumber in the standard header file ctype.h. Prompted by: bento
27 lines
594 B
Makefile
27 lines
594 B
Makefile
# New ports collection makefile for: nawk
|
|
# Version required: 99.04.16
|
|
# Date created: 29 April 1998
|
|
# Whom: Josh Gilliam <josh@quick.net>
|
|
#
|
|
# $Id: Makefile,v 1.3 1999/01/18 02:53:20 steve Exp $
|
|
#
|
|
|
|
DISTNAME= awk
|
|
PKGNAME= nawk-99.04.16
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://cm.bell-labs.com/who/bwk/
|
|
EXTRACT_SUFX= tar.gz
|
|
|
|
MAINTAINER= josh@quick.net
|
|
|
|
NO_WRKSUBDIR= yes
|
|
MAKEFILE= makefile
|
|
ALL_TARGET= a.out
|
|
MAN1= nawk.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/a.out ${PREFIX}/bin/nawk
|
|
${INSTALL_MAN} ${WRKSRC}/awk.1 ${PREFIX}/man/man1/nawk.1
|
|
|
|
.include <bsd.port.mk>
|