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>
This commit is contained in:
parent
7429074e64
commit
56bf077188
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=90082
4 changed files with 51 additions and 0 deletions
|
@ -110,6 +110,7 @@
|
|||
SUBDIR += cl-port-cmucl
|
||||
SUBDIR += cl-port-sbcl
|
||||
SUBDIR += cl-split-sequence
|
||||
SUBDIR += cl-split-sequence-clisp
|
||||
SUBDIR += cl-split-sequence-cmucl
|
||||
SUBDIR += cl-split-sequence-sbcl
|
||||
SUBDIR += clanlib
|
||||
|
|
40
devel/cl-split-sequence-clisp/Makefile
Normal file
40
devel/cl-split-sequence-clisp/Makefile
Normal file
|
@ -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>
|
8
devel/cl-split-sequence-clisp/pkg-descr
Normal file
8
devel/cl-split-sequence-clisp/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
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.
|
||||
|
||||
WWW: http://www.cliki.net/SPLIT-SEQUENCE
|
||||
|
||||
-- Henrik Motakef
|
2
devel/cl-split-sequence-clisp/pkg-plist
Normal file
2
devel/cl-split-sequence-clisp/pkg-plist
Normal file
|
@ -0,0 +1,2 @@
|
|||
lib/common-lisp/split-sequence/clispfasl/split-sequence.fasl
|
||||
@dirrm lib/common-lisp/split-sequence/clispfasl
|
Loading…
Reference in a new issue