diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 12:39:06 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-08-29 12:39:06 +0000 |
commit | dcb2f17c0467b6c757b15b53fcf1905def5ee3b0 (patch) | |
tree | 0d99933c3a2da1edc3bce7ed55009db29d90681f /lang/slisp | |
parent | d71b137e0bd213367b45103473f949bcafe61850 (diff) | |
download | ports-dcb2f17c0467b6c757b15b53fcf1905def5ee3b0.tar.gz ports-dcb2f17c0467b6c757b15b53fcf1905def5ee3b0.zip |
add slisp
A simple Lisp interpreter
PR: 29643
Submitted by: Patrick Li <pat@databits.net>
Notes
Notes:
svn path=/head/; revision=47091
Diffstat (limited to 'lang/slisp')
-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 |
5 files changed, 31 insertions, 0 deletions
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 |