diff options
author | rillig <rillig@pkgsrc.org> | 2006-02-27 10:33:57 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-02-27 10:33:57 +0000 |
commit | d10b92c3a189ce4e68359fcab2ff34b2e3a8764a (patch) | |
tree | 32bf8c388d48ce3ad6bd7b347983ebcd4b5d2d9f /lang/scheme48/Makefile | |
parent | 81d0287a22aee5500771c1ec8acd9e473d850b1d (diff) | |
download | pkgsrc-d10b92c3a189ce4e68359fcab2ff34b2e3a8764a.tar.gz |
Updated scheme48 to 1.3.
05/01/05 (version 1.3)
Additions:
A collection of libraries implementing the Concurrent ML
model for concurrent programming has been added; it is
compatible to the CML libraries in Sunterlib. See the
documentation for details.
Support for SRFIs 34-36 ("Exception handling for programs",
"Conditions", "I/O conditions") has been added. This is in
the CONDITIONS, EXCEPTIONS, and I/O-CONDITIONS structures,
for which the SRFI-34, SRFI-35, and SRFI-36 structures are
essentially aliases. A bridging infrastructure between the
old condition system and the new one translates condition
objects back and forth, hopefully transparently for the
user.
A new infrastructure for dynamically loading external
libraries from shared objects has been added; check the
manual for details. The old infrastructure is still
presented, but is unsupported on Windows and will be
removed in a future release.
The S48_GC_UNPROTECT_GLOBAL macro has been added, which
allows to remove a root added by S48_GC_PROTECT_GLOBAL.
The Scheme 48 header files should now be compileable by a
C++ compiler.
An experimental Windows port has been added.
Changes:
The HTML manual is now generated with tex2page.
A number of changes to the VM to support the (future)
native-code compiler have been made.
The PreScheme type rule for IF is now more strict, thus
disallowing code that would lead to invalid C output.
(This fixes a bug reported by Markus Ziegler.)
Bug fixes:
The TRAVERSE structure for displaying heap statistics has
been re-enabled.
A number of misues of CALL-ERROR have been corrected
(reported by Taylor Campbell).
The VALUE-PIPES package works again
(fix by Taylor Campbell).
In PreScheme it is now possible to shift integers by
non-constant shift widths.
Logical right shifts in PreScheme work now
(reported by Taylor Campbell).
A bug in TERMINATE-THREAD! was fixed
(reported by Taylor Campbell).
A bug in the implementation of ,exit-when-done was fixed.
A bug in the regexp-matching code that prevented matching
the empty string correctly was fixed.
A bug in the implementation of STRING-CONTAINS from SRFI-13
was fixed.
A bug in the implementation of :WHILE in SRFI-42 was fixed
(submitted by Sebastian Egner).
Bugs in the implementations of ANGLE and MAGNITUDE were
fixed.
An obscure bug in the implementation of APPLY (which was
triggered by certain instances of (apply apply ...) )
was fixed.
For a degenerate case of ITERATE, the code was made to
conform the documentation
(reported by Taylor Campbell).
Various miscellaneous fixes.
Patch provided by Nils O. Selasdal in PR 32941.
While here, fixed pkglint warnings.
Diffstat (limited to 'lang/scheme48/Makefile')
-rw-r--r-- | lang/scheme48/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lang/scheme48/Makefile b/lang/scheme48/Makefile index 00e9fa8a37c..df1cfea9c89 100644 --- a/lang/scheme48/Makefile +++ b/lang/scheme48/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.26 2005/11/01 20:01:48 tv Exp $ +# $NetBSD: Makefile,v 1.27 2006/02/27 10:33:57 rillig Exp $ -DISTNAME= scheme48-1.2 +DISTNAME= scheme48-1.3 CATEGORIES= lang -MASTER_SITES= http://s48.org/1.2/ +MASTER_SITES= http://s48.org/1.3/ EXTRACT_SUFX= .tgz MAINTAINER= tech-pkg@NetBSD.org @@ -11,16 +11,17 @@ COMMENT= The Scheme Underground's implementation of R5RS NOT_FOR_PLATFORM= *-*-alpha # *severe* problems. Bus error, alignment -GNU_CONFIGURE= yes +GNU_CONFIGURE= yes BUILD_TARGET= enough post-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/scheme48 - cd ${WRKSRC}/doc; ${INSTALL_DATA} *.txt *.ps \ - ${PREFIX}/share/doc/scheme48 - ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/doc/scheme48 - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/scheme48 - ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${PREFIX}/share/doc/html/scheme48 + ${INSTALL_DATA_DIR} ${PREFIX:Q}/share/doc/scheme48 + cd ${WRKSRC:Q}/doc && ${INSTALL_DATA} *.txt *.ps \ + ${PREFIX:Q}/share/doc/scheme48 + ${INSTALL_DATA} ${WRKSRC:Q}/COPYING ${PREFIX:Q}/share/doc/scheme48 + ${INSTALL_DATA_DIR} ${PREFIX:Q}/share/doc/scheme48/html + ${INSTALL_DATA} ${WRKSRC:Q}/doc/html/* \ + ${PREFIX:Q}/share/doc/scheme48/html .include "../../devel/sysexits/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |