2003-09-28 06:57:21 -04:00
|
|
|
# New ports collection makefile for: ArrowLISP
|
|
|
|
# Date created: 12 Aug 2003
|
|
|
|
# Whom: Nils M Holm <nmh@t3x.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= alisp
|
2006-09-18 15:19:07 -04:00
|
|
|
PORTVERSION= 20060917
|
2003-11-18 04:14:57 -05:00
|
|
|
CATEGORIES= lang devel lisp
|
2006-09-12 15:07:19 -04:00
|
|
|
MASTER_SITES= http://t3x.org/files/
|
2003-09-28 06:57:21 -04:00
|
|
|
|
2005-09-04 08:20:26 -04:00
|
|
|
MAINTAINER= nmh@t3x.org
|
- re-wrote the T3X part of the interpreter in C
- re-wrote the reference manual
- added AND and OR primitives
- added RECURSIVE-BIND primitive
- added DEFINED primitive
- replaced meta commands with functions, ie
:L FILE.L became (LOAD FILE)
- replaced (DEFUN f(x) ...) with (DEFINE (f x) ...)
- replaced LABEL with LET and LETREC
- replaced *T* and *F* (true/false) with T and ()
- dropped CALL/CC
- renamed math functions:
plus/iplus/rplus -> N+, I+, R+, +
times/itimes/rtimes -> N*, I*, R*, *
difference/idifference/rdifference -> N-, I-, R-, -
rquotient -> /
- added default workspace image (no need to install a
local copy of the library functions any longer)
- temporarily removed most example programs
PR: ports/98483
Submitted by: Nils M Holm <nmh@t3x.org>
Reviewed by: aaron
Approved by: tobez
2006-06-13 22:36:58 -04:00
|
|
|
COMMENT= An interpreter for purely symbolic LISP
|
2003-09-28 06:57:21 -04:00
|
|
|
|
|
|
|
MAN7= alisp.7
|
|
|
|
MANCOMPRESSED= no
|
|
|
|
|
2006-09-12 15:07:19 -04:00
|
|
|
USE_LDCONFIG= yes
|
- re-wrote the T3X part of the interpreter in C
- re-wrote the reference manual
- added AND and OR primitives
- added RECURSIVE-BIND primitive
- added DEFINED primitive
- replaced meta commands with functions, ie
:L FILE.L became (LOAD FILE)
- replaced (DEFUN f(x) ...) with (DEFINE (f x) ...)
- replaced LABEL with LET and LETREC
- replaced *T* and *F* (true/false) with T and ()
- dropped CALL/CC
- renamed math functions:
plus/iplus/rplus -> N+, I+, R+, +
times/itimes/rtimes -> N*, I*, R*, *
difference/idifference/rdifference -> N-, I-, R-, -
rquotient -> /
- added default workspace image (no need to install a
local copy of the library functions any longer)
- temporarily removed most example programs
PR: ports/98483
Submitted by: Nils M Holm <nmh@t3x.org>
Reviewed by: aaron
Approved by: tobez
2006-06-13 22:36:58 -04:00
|
|
|
MAKE_ENV+= BINOWN=${BINOWN} \
|
2008-07-25 08:24:09 -04:00
|
|
|
BINGRP=${BINGRP}
|
2003-09-28 06:57:21 -04:00
|
|
|
|
2006-07-17 15:00:38 -04:00
|
|
|
post-patch:
|
|
|
|
${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/alisp.h
|
|
|
|
|
2003-09-28 06:57:21 -04:00
|
|
|
.include <bsd.port.mk>
|