summaryrefslogtreecommitdiff
path: root/lang/dylan-interpreter
AgeCommit message (Collapse)AuthorFilesLines
2002-10-03Use automake.mk. Adapt PLIST.wiz5-45/+36
2002-06-26Substitute a couple of `mkdir' by `${MKDIR}'.seb1-2/+2
Remove `-p' from mkdir arguments, it is already part of ${MKDIR}. While here substitute a couple of ${PREFIX} by `%D' in `@exec ${MKDIR} ...' lines and add a couple of missing `%D' in such lines too!
2002-03-18Add missing file.fredb1-1/+2
2002-02-05/bin/mkdir -> ${MKDIR}.skrll1-2/+2
Make the print-PLIST target output ${MKDIR} also.
2002-01-21Add a build dependency on autoconf for the dylan packages - fixes aagc1-1/+2
problem noted in recent bulk build results, and pointed out by Thomas Klausner.
2002-01-16Don't use Darwin cc options on NetBSD.agc2-6/+6
2002-01-16Additional diffs for NetBSD/sparc and NetBSD/powerpc.agc5-14/+38
2002-01-16Use ${DYLAN_VERSION}, instead of a hardcoded 2.3.6, in the Makefile.common,agc3-37/+50
Makefile and PLIST files, using PLIST_SUBST accordingly. Also use an ALT_ARCH definition, with PLIST_SUBST, to make the two PLISTS more generic, and set up ALT_ARCH accordingly.
2002-01-15Initial import of the Gwydion Dylan interpreter, version 2.3.6, intoagc12-0/+357
the NetBSD Packages Collection. Dylan is an object-oriented, dynamic, infix, garbage-collected programming language with support for multiple inheritence, multiple dispatch (an advanced form of polymorphism), typed and untyped variables, closures and exceptions. Dylan also supports pattern-based hygenic macros. These allow you to define new control constructs and fully integrate them with the language. Dylan (theoretically) combines the performance of C or C++ with the rapid development of Perl and the expressiveness of LISP. It looks similar to C or Pascal, so experienced programmers can learn to write simple programs quickly. Gwydion Dylan provides two implementations of the Dylan programming language: Mindy and d2c. Mindy is bytecode compiler and interpreter, and d2c is a Dylan-to-C compiler. Mindy compiles programs quickly, but the resulting executables run slowly. On the other hand, d2c compiles programs slowly, but they run quickly. This package contains mindy. Gwydion Dylan was originally written by the Gwydion Group at CMU as part of a research project studying advanced hypercode development environments. It is now maintained by a group of volunteers. For just now, the only supported platform is NetBSD/i386, but they are fairly easy to add, so all contributions gratefully received.