diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2005-09-04 04:49:53 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2005-09-04 04:49:53 +0000 |
commit | 3da2ba016456d171884458150450e2a399b9c034 (patch) | |
tree | 566d6c976b65800bcb9df3e2bec126dd0a13ef0b /lang/clisp/Makefile | |
parent | 3c1afd3073beed476aa79ca5e02537d31a853fc2 (diff) | |
download | ports-3da2ba016456d171884458150450e2a399b9c034.tar.gz ports-3da2ba016456d171884458150450e2a399b9c034.zip |
Notes
Diffstat (limited to 'lang/clisp/Makefile')
-rw-r--r-- | lang/clisp/Makefile | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index 5baaa316b930..d129af07144e 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -6,14 +6,15 @@ # PORTNAME= clisp -PORTVERSION= 2.33.2 -PORTREVISION= 1 +PORTVERSION= 2.35 CATEGORIES= lang lisp MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR=${PORTNAME}/release/${PORTVERSION} MAINTAINER= jakub@rehor.net -COMMENT= An ANSI Common Lisp +COMMENT= A Common Lisp implementation + +BUILD_DEPENDS= ${LOCALBASE}/lib/libsigsegv.a:${PORTSDIR}/devel/libsigsegv USE_BZIP2= yes USE_ICONV= yes @@ -23,19 +24,13 @@ USE_GETTEXT= yes # Build subdirectory BUILD_DIRNAME=${CONFIGURE_TARGET} -# Check ./configure --help in the distribution to see all modules -MAKEMAKE_ARGS=--prefix=${PREFIX} --with-readline --with-gettext \ - --with-dynamic-ffi --with-module=regexp --with-export-syscalls +# Check ./configure --list-modules in the distribution to see all modules +MAKEMAKE_ARGS=--prefix=${PREFIX} --mandir=${PREFIX}/man --with-dynamic-ffi \ + --with-module=rawsock --with-module=wildcard \ + --with-module=clx/new-clx --srcdir=${WRKSRC}/src .include <bsd.port.pre.mk> -# Does not compile on 64-bit architectures -# See http://sourceforge.net/mailarchive/message.php?msg_id=7103089 -# for discussion. -.if ${ARCH} == "alpha" || ${ARCH} == "ia64" || ${ARCH} == "amd64" || ${ARCH} == "sparc64" -BROKEN= "Does not compile on 64-bit architectures" -.endif - # The source doesn't include a top-level Makefile, so we'll fake one. post-extract: @cd ${WRKSRC} && \ |