diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-28 10:29:08 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-28 10:29:08 +0000 |
commit | 1ac33cdc0b052ad96bbe28f9e020e6e247ed3ae6 (patch) | |
tree | b9e8057c08af0af67a70c458d8f4b81fa926f7ad /textproc/cl-ppcre-cmucl/Makefile | |
parent | 1215e58d0ba5cc901eb87b739562cd34f0ac8997 (diff) |
Notes
Diffstat (limited to 'textproc/cl-ppcre-cmucl/Makefile')
-rw-r--r-- | textproc/cl-ppcre-cmucl/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/textproc/cl-ppcre-cmucl/Makefile b/textproc/cl-ppcre-cmucl/Makefile new file mode 100644 index 000000000000..36caaca057c5 --- /dev/null +++ b/textproc/cl-ppcre-cmucl/Makefile @@ -0,0 +1,36 @@ +# New ports collection Makefile for: cl-ppcre-cmucl +# Date created: 16 May 2003 +# Whom: Henrik Motakef <henrik.motakef@web.de> +# +# $FreeBSD$ + +PORTNAME= cl-ppcre +PORTVERSION= 0.5.4 +CATEGORIES= textproc +MASTER_SITES= http://weitz.de/files/ +PKGNAMESUFFIX= -cmucl +DISTFILES= # use installed sources from CL_LIBDIR +EXTRACT_ONLY= # use installed sources from CL_LIBDIR + +MAINTAINER= henrik.motakef@web.de +COMMENT= Portable Perl-Compatible Regular Expression for Common Lisp + +BUILD_DEPENDS= ${LOCALBASE}/lib/common-lisp/cl-ppcre/cl-ppcre.asd:${PORTSDIR}/textproc/cl-ppcre \ + ${LOCALBASE}/lib/common-lisp/asdf/cmuclfasl/asdf.fasl:${PORTSDIR}/devel/cl-asdf-cmucl \ + lisp:${PORTSDIR}/lang/cmucl +RUN_DEPENDS= ${LOCALBASE}/lib/common-lisp/cl-ppcre/cl-ppcre.asd:${PORTSDIR}/textproc/cl-ppcre \ + ${LOCALBASE}/lib/common-lisp/asdf/cmuclfasl/asdf.fasl:${PORTSDIR}/devel/cl-asdf-cmucl \ + lisp:${PORTSDIR}/lang/cmucl + +do-build: + WRKSRC=${WRKSRC}/ FBSD_ASDF_COMPILE_PORT=t\ + lisp -nositeinit -noinit \ + -load ${LOCALBASE}/etc/asdf-init.lisp \ + -eval "(asdf:oos 'asdf:compile-op :cl-ppcre)" \ + -eval "(quit)" + +do-install: + ${MKDIR} ${PREFIX}/lib/common-lisp/cl-ppcre/cmuclfasl + ${INSTALL_DATA} ${WRKSRC}/*.fasl ${PREFIX}/lib/common-lisp/cl-ppcre/cmuclfasl/ + +.include <bsd.port.mk> |