diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-04-09 12:02:52 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-04-09 12:02:52 +0000 |
commit | 99c92c4c0ad0a7d9274bf04d2ec00194f14efd14 (patch) | |
tree | 73856e9cccc5d0410f39c4e648df322cb3e64f95 /devel | |
parent | c128f4f81013339a45af47f66b8669b8a9222d84 (diff) | |
download | ports-99c92c4c0ad0a7d9274bf04d2ec00194f14efd14.tar.gz ports-99c92c4c0ad0a7d9274bf04d2ec00194f14efd14.zip |
Notes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/cl-uffi-sbcl/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/devel/cl-uffi-sbcl/Makefile b/devel/cl-uffi-sbcl/Makefile index 270a3caf011e..d1825ee69a72 100644 --- a/devel/cl-uffi-sbcl/Makefile +++ b/devel/cl-uffi-sbcl/Makefile @@ -5,9 +5,9 @@ # $FreeBSD$ PORTNAME= uffi -PORTVERSION= 1.4.37 +PORTVERSION= 1.5.9 CATEGORIES= devel lisp -MASTER_SITES= http://files.b9.com/uffi/ +MASTER_SITES= # use installed sources from CL_LIBDIR PKGNAMEPREFIX= cl- PKGNAMESUFFIX= -sbcl DISTFILES= # use installed sources from CL_LIBDIR @@ -23,15 +23,17 @@ RUN_DEPENDS= ${LOCALBASE}/lib/common-lisp/port/port.asd:${PORTSDIR}/devel/cl-por ${LOCALBASE}/lib/common-lisp/asdf/sbclfasl/asdf.fasl:${PORTSDIR}/devel/cl-asdf-sbcl \ sbcl:${PORTSDIR}/lang/sbcl +CL_LIBDIR?= ${LOCALBASE}/lib/common-lisp + do-build: WRKSRC=${WRKSRC}/ FBSD_ASDF_COMPILE_PORT=t\ - sbcl --noinform --userinit /dev/null \ + sbcl --noinform --userinit /dev/null --disable-debugger \ --eval '#.(load "${LOCALBASE}/etc/asdf-init")' \ --eval "(asdf:oos 'asdf:compile-op :uffi)" \ --eval "(quit)" do-install: - ${MKDIR} ${PREFIX}/lib/common-lisp/uffi/src/sbclfasl - ${INSTALL_DATA} ${WRKSRC}/*.fasl ${PREFIX}/lib/common-lisp/uffi/src/sbclfasl/ + ${MKDIR} ${CL_LIBDIR}/uffi/src/sbclfasl + ${INSTALL_DATA} ${WRKSRC}/*.fasl ${CL_LIBDIR}/uffi/src/sbclfasl/ .include <bsd.port.mk> |