diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-08-29 20:39:06 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-08-29 20:39:06 +0800 |
commit | ee5a3fdda811ad26a7b0acfa2b92e8d7bdfeb653 (patch) | |
tree | e82061625c70c070639f3cb88503194bab00b4cd | |
parent | 0f0880d22861761c036cb5f707835b729437a6d9 (diff) | |
download | freebsd-ports-gnome-ee5a3fdda811ad26a7b0acfa2b92e8d7bdfeb653.tar.gz freebsd-ports-gnome-ee5a3fdda811ad26a7b0acfa2b92e8d7bdfeb653.tar.zst freebsd-ports-gnome-ee5a3fdda811ad26a7b0acfa2b92e8d7bdfeb653.zip |
add slisp
A simple Lisp interpreter
PR: 29643
Submitted by: Patrick Li <pat@databits.net>
-rw-r--r-- | lang/Makefile | 1 | ||||
-rw-r--r-- | lang/slisp/Makefile | 19 | ||||
-rw-r--r-- | lang/slisp/distinfo | 1 | ||||
-rw-r--r-- | lang/slisp/pkg-comment | 1 | ||||
-rw-r--r-- | lang/slisp/pkg-descr | 8 | ||||
-rw-r--r-- | lang/slisp/pkg-plist | 2 |
6 files changed, 32 insertions, 0 deletions
diff --git a/lang/Makefile b/lang/Makefile index 9f668d992de5..094f0caa1093 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -148,6 +148,7 @@ SUBDIR += scriba SUBDIR += siod SUBDIR += slib + SUBDIR += slisp SUBDIR += smalleiffel SUBDIR += smalleiffel-devel SUBDIR += smalltalk diff --git a/lang/slisp/Makefile b/lang/slisp/Makefile new file mode 100644 index 000000000000..2ba504c70cec --- /dev/null +++ b/lang/slisp/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: slisp +# Date created: Sun Aug 12 05:20:32 EDT 2001 +# Whom: Patrick Li <pat@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= slisp +PORTVERSION= 1.2 +CATEGORIES= lang +MASTER_SITES= http://www.sigala.it/sandro/files/ + +MAINTAINER= pat@databits.net + +GNU_CONFIGURE= yes + +MAN1= ${PORTNAME}.1 + +.include <bsd.port.mk> diff --git a/lang/slisp/distinfo b/lang/slisp/distinfo new file mode 100644 index 000000000000..faecd941f37b --- /dev/null +++ b/lang/slisp/distinfo @@ -0,0 +1 @@ +MD5 (slisp-1.2.tar.gz) = d8549a17f8de75c73b667f3aa0e203b4 diff --git a/lang/slisp/pkg-comment b/lang/slisp/pkg-comment new file mode 100644 index 000000000000..ecce185b5445 --- /dev/null +++ b/lang/slisp/pkg-comment @@ -0,0 +1 @@ +A simple Lisp interpreter diff --git a/lang/slisp/pkg-descr b/lang/slisp/pkg-descr new file mode 100644 index 000000000000..906ce8668347 --- /dev/null +++ b/lang/slisp/pkg-descr @@ -0,0 +1,8 @@ +SLisp is a simple Lisp interpreter that implements most of the +common Lisp constructs in a few hundred lines of C code. It may be +useful for learning the basis of the Lisp language. + +WWW: http://www.sigala.it/sandro/software.html#slisp +Author: Sandro Sigala <sandro@sigala.it> + +- Patrick Li <pat@databits.net> diff --git a/lang/slisp/pkg-plist b/lang/slisp/pkg-plist new file mode 100644 index 000000000000..e1d78f2a396d --- /dev/null +++ b/lang/slisp/pkg-plist @@ -0,0 +1,2 @@ +bin/slisp +info/slisp.info |