summaryrefslogtreecommitdiff
path: root/devel/cl-split-sequence-clisp/Makefile
diff options
context:
space:
mode:
authorFoxfair Hu <foxfair@FreeBSD.org>2003-10-03 07:47:10 +0000
committerFoxfair Hu <foxfair@FreeBSD.org>2003-10-03 07:47:10 +0000
commit56bf077188ab1fdae31e0422f6dfdc6cb9e02708 (patch)
tree6ada0f1c3ea4ef3ac88fc09386304d404570b12c /devel/cl-split-sequence-clisp/Makefile
parentAdd cl-ppcre-clisp 0.5.4 (diff)
Add cl-split-sequence-clisp 20011114.1, partinitoning Common Lisp
sequences. split-sequence is a small library to split sequences in to a list of subsequences delimited by an object satisfying a test function. It is a member of the Common Lisp Utilities family of programs, designed by community consensus. PR: 52376 Submitted by: Henrik Motakef <henrik.motakef@web.de>
Notes
Notes: svn path=/head/; revision=90082
Diffstat (limited to 'devel/cl-split-sequence-clisp/Makefile')
-rw-r--r--devel/cl-split-sequence-clisp/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/devel/cl-split-sequence-clisp/Makefile b/devel/cl-split-sequence-clisp/Makefile
new file mode 100644
index 000000000000..4d8a72ff60ed
--- /dev/null
+++ b/devel/cl-split-sequence-clisp/Makefile
@@ -0,0 +1,40 @@
+# New ports collection Makefile for: cl-split-sequence-clisp
+# Date created: 12 May 2003
+# Whom: Henrik Motakef <henrik.motakef@web.de>
+#
+# $FreeBSD$
+
+PORTNAME= split-sequence
+PORTVERSION= 20011114.1
+CATEGORIES= devel
+MASTER_SITES= ftp://ftp.linux.org.uk/pub/lisp/experimental/cclan/ \
+ ftp://ftp.ntnu.no/pub/lisp/cclan/ \
+ ftp://www.aarg.net/pub/cclan/ \
+ http://thingamy.com/cclan/ \
+ http://www-jcsu.jesus.cam.ac.uk/ftp/pub/cclan/
+PKGNAMEPREFIX= cl-
+PKGNAMESUFFIX= -clisp
+DISTFILES= # use installed sources from CL_LIBDIR
+EXTRACT_ONLY= # use installed sources from CL_LIBDIR
+
+MAINTAINER= henrik.motakef@web.de
+COMMENT= Partinitoning Common Lisp sequences
+
+BUILD_DEPENDS= ${LOCALBASE}/lib/common-lisp/split-sequence/split-sequence.asd:${PORTSDIR}/devel/cl-split-sequence \
+ ${LOCALBASE}/lib/common-lisp/asdf/clispfasl/asdf.fasl:${PORTSDIR}/devel/cl-asdf-clisp \
+ clisp:${PORTSDIR}/lang/clisp
+RUN_DEPENDS= ${LOCALBASE}/lib/common-lisp/split-sequence/split-sequence.asd:${PORTSDIR}/devel/cl-split-sequence \
+ ${LOCALBASE}/lib/common-lisp/asdf/clispfasl/asdf.fasl:${PORTSDIR}/devel/cl-asdf-clisp \
+ clisp:${PORTSDIR}/lang/clisp
+
+do-build:
+ FBSD_ASDF_COMPILE_PORT=t WRKSRC=${WRKSRC}/ \
+ clisp -q -ansi -norc \
+ -i ${LOCALBASE}/etc/asdf-init \
+ -x "(asdf:oos 'asdf:compile-op :split-sequence)"
+
+do-install:
+ ${MKDIR} ${PREFIX}/lib/common-lisp/split-sequence/clispfasl
+ ${INSTALL_DATA} ${WRKSRC}/*.fasl ${PREFIX}/lib/common-lisp/split-sequence/clispfasl/
+
+.include <bsd.port.mk>