summaryrefslogtreecommitdiff
path: root/lang/dylan-interpreter
AgeCommit message (Collapse)AuthorFilesLines
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam1-3/+2
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam1-7/+5
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-10-05:g/x86/s//${ALT_ARCH}/gagc1-57/+57
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-30Update the dylan-interpreter to version 2.3.11 from 2.3.6agc10-263/+130
Fixes build problems shown up on various bulk builds. 2.3.11 has support for NetBSD/i386 as standard, so I've brought the sparc and ppc support forward from previous pkgsrc patches. 2.3.11 no longer includes its own version of the Boehm GC malloc package, so add the boehm-gc buildlink3.mk file to the package Makefile.
2004-05-09Convert to buildlink3.snj1-4/+4
2004-02-20Add AUTOCONF_REQD=2.50 for those packages that use libtoolize. Otherwise,jlam1-1/+2
when calling ${ACLOCAL}, invoke it with "-I ." so that it will find the local libtool.m4 file.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-4/+2
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-09Capitalize first letter of COMMENT.reed1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-1/+2
2003-06-23s/packages@/tech-pkg@/gjschauma1-2/+2
(Forgot the last time we did this. Pointed out by Sergey Svishchev (svs at ropnet dot ru))
2003-05-05Line up PKGREVISION whitespace.jmmv1-2/+2
2003-05-02Dependency bumps, needed because of devel/pth's major bump, and relatedwiz1-1/+2
dependency bumps.
2002-11-14buildlink1 -> buildlink2jlam1-6/+8
2002-10-10regenwiz1-2/+1
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.