summaryrefslogtreecommitdiff
path: root/lang/ecl/Makefile
diff options
context:
space:
mode:
authorasau <asau@pkgsrc.org>2009-08-13 18:17:18 +0000
committerasau <asau@pkgsrc.org>2009-08-13 18:17:18 +0000
commited5bee7bf9ac31c3ce369bf26122ee360899da0a (patch)
tree64198d2e078eac31e6a148d7e8e67050ca422eca /lang/ecl/Makefile
parentc8b4420e6a2d929ed1855342c6229d5a18b8dcbc (diff)
downloadpkgsrc-ed5bee7bf9ac31c3ce369bf26122ee360899da0a.tar.gz
Update to ECL 9.8.3.
Changes since previous packaged version (8.12.0) include half year of very active development: - The dynamic FFI is now implemented using libffi. - Support of UNICODE. - Multithreading (provided Boehm-GC built with threads support). - Command line flags to control the different memory limits: --heap-size, --lisp-stack, --frame-stack and --c-stack. - The stack size is now measured in bytes, not in lisp words. - The out of memory error (ext:storage-exhausted) can now be recovered. By default a correctable error is signaled and the user is given the chance to increase the heap size. - Better compiler, optimizer, debugger. - Improved handling of compiler errors. - New and more easily extensible implementation of streams. - *STANDARD-INPUT*, *{STANDARD,ERROR,TRACE}-OUTPUT* are no longer synonyms to *TERMINAL-IO* but directly the input or output streams associated to stdin, stdout and stderr. - Improved numerics. - Read-only readtables. - Numerous bug fixes.
Diffstat (limited to 'lang/ecl/Makefile')
-rw-r--r--lang/ecl/Makefile14
1 files changed, 9 insertions, 5 deletions
diff --git a/lang/ecl/Makefile b/lang/ecl/Makefile
index af1b7dd5008..98dcf4f9f13 100644
--- a/lang/ecl/Makefile
+++ b/lang/ecl/Makefile
@@ -1,9 +1,10 @@
-# $NetBSD: Makefile,v 1.2 2008/12/19 23:12:46 tnn Exp $
+# $NetBSD: Makefile,v 1.3 2009/08/13 18:17:18 asau Exp $
#
-DISTNAME= ecl-8.12.0
+DISTNAME= ecl-9.8.3
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ecls/}
+EXTRACT_SUFX= .tgz
MAINTAINER= asau@inbox.ru
HOMEPAGE= http://ecls.sourceforge.net/
@@ -18,9 +19,12 @@ USE_LIBTOOL= yes
USE_TOOLS+= gmake makeinfo
INFO_FILES= yes
-CONFIGURE_ARGS+= --enable-boehm=system
-CONFIGURE_ENV+= ECL_BOEHM_GC_HEADER=gc/gc.h
-CONFIGURE_ARGS+= --with-system-gmp
+CONFIGURE_ARGS+= --enable-boehm=system --with-system-gmp
+
+.include "options.mk"
+
+PLIST_SUBST= PKGVERSION_MAJOR_MINOR=${PKGVERSION_NOREV:R} \
+ PKGVERSION_MAJOR=${PKGVERSION_NOREV:R:R}
.include "../../devel/boehm-gc/buildlink3.mk"
.include "../../devel/gmp/buildlink3.mk"