pkgsrc/lang
asau 9b2398f67c Update Chicken to version 4.7.0
Provided by Peter Bex on IRC.


Changes in 4.7.0

- Build system
  - On BSD, libchicken.so is linked with -lpthread, as this seems
    to be required for linking libraries that require pthreads
  - The C header-files are now installed in a subdirectory below
    the "PRFIX/include" directory to allow installation of multiple
    chickens with different PROGRAM_PREFIX/PROGRAM_SUFFIX settings
    in the same prefix; to avoid conflicts with existing CHICKEN
    headers, it is recommended to completely remove any old
    installation before installing the new version
  - the PROGRAM_PREFIX and PROGRAM_SUFFIX configuration settings
    are applied to generated files and directories which allows
    perform differently named installations into the same PREFIX
  - increaded binary-compatibility version from 5 to 6, which
    means installed extensions in an existing installations will
    have to be re-installed
  - bugfixes in mingw/msys makefiles
  - Sven Hartrumpf contributed a bugfix to the internal helper
    script for creating distribution directories
  - Peter Bex has cleaned up the makefiles heavily, making the
    build more maintainable and easier to modify; thanks to all
    who helped testing this new build
  - renamed the makefile to `GNUmakefile' to catch using the
    a make(3) other than GNU make
  - configuration-header fix for BSD systems (thanks to Peter Bex
    and Christian Kellermann)


- Core libraries
  - the `regex' library unit has been removed and is separately
    available as an extension which should be fully backwards-
    compatible
  - `irregex' is now a core library unit and replaces the  `regex' API
  - "extras" unit
    - fixed pretty-printer output of certain escaped character
      sequences inside strings (thanks to Mario Domenech Goulart,
      thanks to Kon Lovett for pointing out a missing test-file)
    - The pretty printer did not escape some control characters correctly
      (reported by Alan Post)
    - control-characters in symbol-names are now properly escaped if
     the symbol is printed readably (thanks to Alaric Snell-Pym
     for pointing this out)
    - the deprecated `random-seed' function has been removed
  - "files" unit
    - fixed bug in `normalize-pathname'
    - `file-copy' and `file-move' check whether the source-file is a
      directory
    - `delete-directory' now optionally deletes directories recursively
  - "irregex" unit
    - Peter Bex has contributed various bugfixes and performance
      enhancements
  - "library" unit
    - Added "condition->list" (thanks to Christian Kellermann)
    - The reader accepts now escaped octal character codes in string
      literals
    - Read-syntax can return zero values to indicate ignored objects
    - R5RS output output routines now always return a "void" result
    - "\|" was not correctly escaped when occurring inside
      symbol print names
    - added `condition->list', contributed by Christian Kellermann
    - added `equal=?'
    - removed deprecated `getenv', `left-section', `right-section',
      `project', `c-runtime' and `noop'
    - added missing import-library entry for `vector-copy!' (thanks
      to Jules Altfas)
    - circular or excessively deeply nested data generates a more
      useful error message when encountered by `equal?'
    - `list-tail' gives now a better error message when passed a
      non-list argument
    - fixed bug in `getter-with-setter' that modified the first
      argument if it already had a setter procedure attached
    - fixed incorrect size of internal data vector used in `time'
      (thanks to Kon Lovett)
  - "lolevel" unit
    - removed deprecated `global-bound?', `global-make-unbound',
      `global-ref' and `global-set!' procedures
    - added support for `pointer-vectors':
      -  make-pointer-vector
      -  pointer-vector?
      -  pointer-vector-length
      -  pointer-vector-ref
      -  pointer-vector-set!
  - "posix" unit
    - "close-input-pipe" did not return the status code of a
      terminated process on Windows (reported by Mario Domenech Goulart)
    - added `file-creation-mode' (suggested by Mario Domenech Goulart)
  - "setup-api" unit
    - `required-extension-version' and `required-chicken-version' have
       been deprecated
  - "srfi-18" unit
    - removed deprecated `milliseconds->time' and `time->milliseconds'
      procedures
    - `make-mutex' incorrectly created mutexes as initially owned by
      the current threads (thanks to Joerg Wittenberger)
    - the file-descriptor handling in the scheduler has been simplified
      and performs some sanity checks
    - deadlock in the scheduler now terminates the process instead of
      attempting to throw an error
    - added some sanity checks to the scheduler
  - "tcp" unit
    - Fixed bug in "tcp-abandon-port" (reported by Jim Ursetto)
  - "utils" unit
    - `compile-file' now returns `#f' when the compilation fails,
       instead of raising an error


- Compiler
  - Removed unreliable lambda-lifting optimization (now, really!);
    the "-lambda-lift" option is still accepted but produces a
    warning
  - When "-scrutinize" is given, installed ".types" files will be
    automatically consulted for extensions and used units
  - Fixed optimizer bug in handling of "let" forms with multiple
    bindings which could result in toplevel assignments being
    silently dropped (reported by Moritz Heidkamp)
  - the `-accumulate-profile' option did not provide a way to
    specify the target profile data file - now `-profile-name'
    must always be given when accumulated profiling is done
    (thanks to Taylor Venable)
  - added `-module' option, which wraps the code into an implicit
    module
  - removed check for unsafe toplevel calls in safe mode
  - intrinsic handling of `exact->inexact' and `string->number' is
    now more efficient
  - fixed bug in leaf-routine optimization (thanks to David
    Dreisigmeyer)
  - unit-toplevel entry-points are now named differently, which
    may break binary-compatibility with existing compiled Scheme
    code modules
  - fixed invalid dropping of unused external entry-points in
    block-mode
  - fixed incorrect lambda-list check in scrutinizer (thanks to
    Alan Post)
  - Kon Lovett reported numerous bugs in the type-database used
    by the scrutinizer
  - `-fwrapv' is disabled on OpenBSD, since the default compiler
     does not support this option (thanks to Christian Kellermann)
  - on Solaris `gcc' is used by default, override `C_COMPILER'
    to use the Sun compiler instead
  - declaring a function `notinline' will prevent direct-call
    optimization for known procedure calls
  - the implementation of overflow-detection for arithmetic operations
    on fixnums have been replaced and now allow using the full 63-bit
    range of fixnums on 64-bit systems
  - fixed serious inlining-bug (thanks to Sven Hartrumpf)
  - constant-folding in the compiler has been simplified and
    is more reliable (thanks to Sven Hartrumpf)
  - optimization-levels 3 and higher imply `-unboxing -inline-global'
  - added new declaration `unsafe-specialized-arithmetic' which allows
    optimizing unboxed floating-point arithmetic in safe mode
  - removed `scrutinize' declaration
  - the warning shown when unimported identifiers are used in compiled
    modules now also shows the name of the procedure where the
    identifier is referenced (suggested by Alaric Snell-Pym)


- Documentation
  - Added list of installed files to README
  - Documented remaining "c...r" standard procedures (thanks to
    Juergen Lorenz)
  - The manual is now installed in HTML format in
    PREFIX/share/chicken/doc, many thanks to Jim Ursetto for
    contributing is excellent `manual-labor' extension which made
    this possible


- Foreign function interface
  - Added support for missing "(const [XXX-]c-string)" foreign type
    (thanks to Moritz Heidkamp)
  - removed deprecated `pointer', `nonnull-pointer', `byte-vector'
    and `nonnull-byte-vector' types
  - added missing result-type handling for `unsigned-integer64'
    (thanks to Moritz Heidkamp)
  - added `foreign-type-size' macro
  - added the new foreign type `size_t' (suggested by Moritz
    Heidkamp)
  - added the missing `unsigned-integer64' foreign type (thanks
    to Moritz for catching this)
  - added new foreign type `pointer-vector' which maps to `void **'
    and provided a low-level API in the `lolevel' library unit for
    manipulating pointer vectors


- Runtime system
  - Fixed typo in "runtime.c" (thanks to Sven Hartrumpf)
  - Little-endian detection on MIPS systems was not correct (thanks
    to Christian Kellermann)
  - Fixed bug in handling of runtime-options with arguments (also
    reported by Christian Kellermann)
  - `equal?' does not compare procedures recursively anymore
  - fixed incorrect use of alloca.h on OpenBSD (thanks to
    Christian Kellermann and Alan Post)
  - checks for NaN and infinity are now done using ISO C99
    operations, which required various changes to `chicken.h'
    to make the code compile in ISO C99 mode
  - remaining debris regarding MSVC builds has been removed
  - fixed bug in argument-type check for 64-bit integer (thanks
    to Kon Lovett)
  - increased default trace-buffer size from 10 to 16
  - fixed bug in low-level termination routine (thanks to
    Jeronimo Pellegrini)
  - the scheduler handles violations of internal invariants
    regarding threads slightly more gracefully (thanks to Jim
    Ursetto)
  - fixed broken sleep-time conversion (thanks to Karel Miklav)
  - repaired broken handling of multiple finalizers that referred
    to the same object (reported by Moritz Heidkamp)
  - fixed problem with reader and escaping of single-char symbols


- Syntax expander
  - For-syntax syntax definitions where not correctly retained inside
    modules
  - Peter Bex fixed various critical bugs in the expander
  - The simplification for quasiquote expressions was unable
    to handle certain circular data (reported by Moritz Heidkamp)
  - `syntax-rules' now supports tail-patterns and is now fully
    SRFI-46 compatible - many thanks to Peter Bex for implementing
    this
  - Peter Bex provided a bugfix for resolution of primitive imports
  - handling of internal definitions with shadowed defining
    forms is now done correctly - fix once again from Peter Bex
  - corrected non-standard behaviour of quasiquote with respect
    to nested quasiquotations - another bugfix by our mighty macro
    master
  - removed stub-implementation of `define-macro'
  - handled case where a global redefinition of `cons' influenced
    a non-inlined internal use in the expander (thanks to David
    Steiner)
  - `define-record' now allows defining SRFI-17 setter procedures
    for accessing slots
  - the expansion of DSSSL lambda-lists uses now `let-optionals*'
    internally instead of `let-optionals' and so allows
    back-references to earlier formal variables; this also results in
    faster and more compact code for argument-list destructuring
    (thanks to Alan Post)
  - new "implicit renaming" macro facility contributed by Peter Bex
    (see `ir-macro-transformer')
  - record-definitions are now made local to the module in which
    they are defined (thanks to Jim Ursetto)
  - parameters are now settable and can be modified using `set!'
    (SRFI-17)
  - added a SRFI-17 setter to `list-ref'
  - added literal blob syntax ("#{ ... }")


- Tools
  - chicken-install
    - option "-deploy" does not compile deployed extensions with
      "-setup-mode" anymore to avoid problems with dynamic loading on
      some platforms (specifically Mac OS X)
    - option "-deploy" option did not copy the correct library
      (including the version-number) (thanks to Christian Kellermann)
    - added support for proxy-authentification (thanks to Iruata Souza)
    - when installing from a local directory `chicken-install' now
      removes existing `*.so' files in that location to avoid stale
      binaries when the `make' syntax is used in setup scripts
  - chicken-bug
    - removed disabled e-mail support
  - csc
    - removed `-static-extension' option
    - removed deprecated `-windows' option
    - fixed incorrect use of `chicken.rc' on non-Windows platforms
      in `-gui' mode (thanks to "ddp")
    - when compiling in C++ mode, the compiler will be called with the
      `-Wno-write-strings' option
    - `-frwapv' has been added to the default C compiler options
  - csi
    - the ",m" toplevel command now accepts "#f" to switch back to
      the initial empty module context (suggested by Christian Kellermann)
    - fixed broken `,g' toplevel command
    - deprecated `script' feature identifier (use `chicken-script'
      instead)
    - options `-p' and `-P' and `-e' imply `-no-init'
    - the call-trace reported will not include exception-handler code
      anymore (suggested by Christian Kellermann)
2011-05-26 20:06:13 +00:00
..
a60 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
awka DESTDIR support 2010-02-03 23:27:52 +00:00
baci Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
boomerang Initial import of boomerang-0.2: 2010-12-18 12:47:11 +00:00
brandybasic Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
bwbasic Set HOMEPAGE. 2010-03-03 12:38:28 +00:00
caml-light Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
camlp5 Update lang/camlp5 to 5.15 2010-10-11 21:27:54 +00:00
ccsh Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
cdl3 Update to CDL3 version 1.2.8 2011-04-19 19:45:02 +00:00
Cg-compiler Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
chicken Update Chicken to version 4.7.0 2011-05-26 20:06:13 +00:00
cim
cint Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
clang Fix LLVM bug 8765 (longjmp issue on NetBSD); patches courtesy of joerg. 2011-05-07 16:54:56 +00:00
classpath recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
classpath-gui recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
clisp recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
coq recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
cparser Update to 0.9.9. 2009-08-18 19:01:26 +00:00
cu-prolog Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
eag Pass down --x-includes/--x-libraries for modular Xorg too. 2009-11-26 16:40:55 +00:00
ecl Fix build on SunOS. 2011-05-14 22:30:44 +00:00
eieio Doesn't support Emacs 23. 2010-02-16 20:21:57 +00:00
elisp-manual Add user-destdir support. 2010-02-20 12:27:22 +00:00
elk Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
embryo Update to embryo-0.9.9.063: Minor bugfixes. 2009-12-16 19:30:31 +00:00
erlang Replace "/usr/bin/env" interpreter to comply with stricter rules. 2011-04-25 20:58:24 +00:00
erlang-doc Update to Erlang/OTP R14B02 2011-04-14 19:34:07 +00:00
erlang-man Update to Erlang/OTP R14B02 2011-04-14 19:34:07 +00:00
ezm3 Remove empty PLIST.common_end. 2009-07-22 09:26:26 +00:00
f2c Update to f2c-20100903. 2010-12-14 18:12:40 +00:00
ficl Import FICL 4.1.0 as lang/ficl. 2010-12-01 21:58:27 +00:00
focal patch getline() -> get_line() for -current (thank you PSOIX) 2010-04-29 00:22:02 +00:00
fort77 Don't run tests at build time. Fixes PR pkg/42955 2010-03-11 18:55:34 +00:00
g95 lang/g95: bring in DragonFly support 2011-02-19 16:06:31 +00:00
gambc Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
gauche Fix the location of SITE_ARCH_DIR. It was changed not to include 2010-12-16 06:58:20 +00:00
gawk recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gcc At least try to compile with newer GCC. 2010-10-12 22:57:55 +00:00
gcc3 corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc3-ada Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-c Fix a number of GENERATE_PLIST entries to always have a terminating ; 2009-06-16 15:25:31 +00:00
gcc3-c++ Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-f77 Support DESTDIR. 2009-11-07 18:03:55 +00:00
gcc3-java Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc3-objc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gcc34 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gcc34-ada recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
gcc44 Replace patch-ae with a better patches/patch-gcc_ginclude_stddef.h, 2011-05-14 18:00:24 +00:00
gcc45 Initial import of gcc45-4.5.2 from pkgsrc-wip. 2011-05-14 20:19:46 +00:00
gcc46 Initial import of gcc46-4.6.0, packaged for wip by Kai-Uwe Eckhardt. 2011-05-15 00:09:55 +00:00
gforth Fix annoying marker bug. 2011-03-29 21:19:19 +00:00
ghc Fix build issue when using gmake 3.82. 2010-10-31 19:05:01 +00:00
gnat-aux update to 20110325, from John Marino 2011-05-10 13:46:22 +00:00
gpc DESTDIR support. 2010-02-14 06:58:25 +00:00
gprolog Update to GNU Prolog version 1.3.1. 2010-05-19 09:10:55 +00:00
guile Increase default stack limit. This gets around a problem where the 2011-05-12 12:15:41 +00:00
guile16 Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
gwydion-dylan Build fix: always pass "--tag" parameter to libtool. 2011-03-31 09:03:21 +00:00
hugs LICENSE=modified-bsd 2010-09-28 04:36:41 +00:00
icon Fix icon binary, it had the destdir embedded. From Mark Schuetz Schmuck 2011-03-01 10:08:26 +00:00
inform Add inform-license and use it for lang/inform (instead of unclear 2010-06-03 09:26:30 +00:00
intercal update to 0.29 2010-11-30 20:13:29 +00:00
ja-gawk * add user-destdir support 2010-02-20 08:14:44 +00:00
jamvm Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
japhar Explicitly depend on zlib. This package includes a local copy of it 2010-11-05 13:46:44 +00:00
jasmin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
java-lang-spec Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
java-vm-spec Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
jikes Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
jini Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
joos service suspended. fetch from backup. 2011-03-11 12:33:04 +00:00
js add license information to the package Makefile 2010-04-19 06:16:40 +00:00
kaffe recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kaffe-esound Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
kaffe-x11 recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
kali Update to Kali Scheme 0.52.2 2010-08-21 14:16:17 +00:00
ksi Update to KSi 3.9.0 2010-08-12 09:27:54 +00:00
librep recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
libtcl-nothread Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
likepython Added one forgotten installation directory. 2010-03-03 12:25:16 +00:00
lua update master_sites. remove dead mirrors. 2011-03-11 12:44:30 +00:00
LuaJIT Only for i386. 2009-08-03 12:20:16 +00:00
lush Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
maude Update Maude to version 2.6 2011-04-19 19:18:40 +00:00
mawk Closes PR pkg/44852, oked by wiz@ and reed@ 2011-05-07 09:43:05 +00:00
mercury Update to Mercury 0.13.1 2010-07-20 12:29:20 +00:00
minischeme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mit-scheme-bin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mono Since mono-2.8, --with-glib=system is not supported (embeded on will be used) 2011-05-16 06:18:13 +00:00
mono-basic Update to mono-basic-2.10, part of mono-2.10 2011-04-25 14:04:51 +00:00
moscow_ml Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
mpd DESTDIR support. 2010-03-03 13:31:53 +00:00
nawk Reset maintainer, developer lost his commit bit. 2010-03-21 16:29:38 +00:00
nhc98 Use new ${LP64PLATFORMS} variable to restrict platforms instead of manual 2010-01-07 07:36:53 +00:00
objc Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ocaml Pass CFLAGS and LDFLAGS to the compiler (fixes problems e.g. on Mac OS X); pkglint clean-up 2011-03-29 13:45:01 +00:00
ocamlduce Update HOMEPAGE. 2010-02-07 12:55:29 +00:00
onyx Support staged installation. 2011-03-30 22:17:48 +00:00
oo2c Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
opencobol recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
openjdk7 lang/openjdk7: add bootstrap for DragonFly 2.9 2011-03-14 06:31:29 +00:00
openjdk7-bin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ossp-js update master_sites. 2011-03-11 12:50:38 +00:00
p2c DESTDIR support. Fix getline issues. 2009-09-03 13:14:10 +00:00
parrot Update parrot to version 3.4.0. 2011-05-18 08:20:30 +00:00
pcc Update pcc to 1.0.0. 2011-04-10 10:46:45 +00:00
pcc-current Upgrade from 1.0.0_BETA-20110225 to the 20110228 version. 2011-03-01 08:59:45 +00:00
pear Add a patch to fix CVE-2011-1144 (and a few bug fixes). 2011-05-16 13:05:01 +00:00
perl5 Allow sitebin to be overridden by PERL5_SITEBIN. No change to default build 2011-05-16 07:59:04 +00:00
pfe Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
pforth Update to pForth version 27. 2010-11-22 01:25:48 +00:00
php Install module correctly 2011-04-13 13:23:39 +00:00
php5 Apply changes by r308525 from PHP's repository to fix bug #54055 2011-03-21 16:34:28 +00:00
php5-perl Bump the PKGREVISION for all packages which depend directly on perl, 2010-08-21 16:32:42 +00:00
php53 Add a patch to fix for CVE-2011-1148 (and more bugfix) from PHP's repository. 2011-05-16 13:08:45 +00:00
pict Not MAKE_JOBS_SAFE. 2009-12-07 22:56:02 +00:00
pnet Drop LICENSE=gnu-gpl-v2. 2011-05-21 11:59:53 +00:00
pnetC Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
pnetlib * note "used by" comments. 2011-05-21 12:09:35 +00:00
pnetlib-nox11
polyml Update to Poly/ML Version 5.3 2009-12-13 23:26:25 +00:00
py-basicproperty Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-cxfreeze update to 4.2.2, from Helge Muehlmeier per PR pkg/44315 (but without 2011-01-11 11:39:50 +00:00
py-html-docs Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py-psyco Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
py-pyrex Update to 0.9.9, set LICENSE. 2010-05-02 13:51:44 +00:00
py24-html-docs Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py25-html-docs Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
py26-html-docs Imported py26-html-docs-2.6.3: 2009-10-25 23:39:01 +00:00
python also put PYLIB in PLIST_SUBST, a part of PR#44826. 2011-05-04 10:01:02 +00:00
python24 Update python24 to 2.4.6. 2011-04-23 08:53:53 +00:00
python25 Recent SunOS has netpacket/packet.h, but it is not what Python expects. 2011-05-15 10:06:11 +00:00
python26 Recent SunOS has netpacket/packet.h, but it is not what Python expects. 2011-05-15 10:06:11 +00:00
python27 Fix build on (at least RHEL 5.6). Tested (and no change) on NetBSD 5.99.51 2011-05-06 16:21:16 +00:00
racket Update to Racket 5.0.1 2010-08-10 10:32:45 +00:00
racket-textual Update to Racket 5.0.1 2010-08-10 10:32:45 +00:00
rcfunge NetBSD<5.99's curses has a wrong keypad(3) declaration, use pkgsrc 2009-12-01 10:36:58 +00:00
rexx-imc DESTDIR support 2010-02-04 01:32:00 +00:00
rexx-regina DESTDIR support 2010-02-04 01:32:00 +00:00
ruby Start update of rails3 related packages to 3.0.7. 2011-05-10 14:09:21 +00:00
ruby-doc-stdlib Remove empty PLIST.pre. 2009-07-22 09:30:39 +00:00
ruby18 * Add LICENSE. 2010-09-10 03:37:05 +00:00
ruby18-base * Make rdoc compatible with newer version of rdoc (on Ruby 1.9.2) about 2011-03-28 14:10:25 +00:00
ruby19 Importing lang/ruby19 package, a meta package which covers ruby19-base, 2010-09-12 03:51:51 +00:00
ruby19-base Add a patch for fix of CVE-2011-0188. 2011-03-28 16:19:36 +00:00
runawk update description 2011-05-09 19:21:44 +00:00
sablevm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
sablevm-classpath Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
sablevm-classpath-gui recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
sather Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
sbcl Update SBCL to version 1.0.48 2011-05-09 19:35:37 +00:00
scala Update Scala to 2.8.1. 2010-11-12 20:20:33 +00:00
scheme48 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
scm DESTDIR support 2010-02-04 01:32:00 +00:00
see add licensing information 2010-04-19 06:24:33 +00:00
sigscheme Fix build on SunOS. 2011-04-14 20:06:49 +00:00
siod service suspended. fetch from backup. 2011-03-11 12:55:09 +00:00
smalltalk Update GNU Smalltalk to version 3.2.4 2011-04-30 11:46:15 +00:00
SmartEiffel - fix pkglint warnings 2009-08-08 23:32:17 +00:00
smlnj Update to SML/NJ 110.72, bug fix release. 2010-02-07 03:14:36 +00:00
snobol Mark BROKEN, doesn't fetch. 2011-04-22 23:05:26 +00:00
spidermonkey Only include nspr and threads bl3.mk files when threading is enabled; 2011-01-01 14:03:42 +00:00
spl Support staged installation. 2011-04-01 01:02:41 +00:00
squeak Update to Squeak 4.0 2010-03-19 14:41:56 +00:00
squeak-vm recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
sr De-warn-ify. 2010-03-03 15:23:51 +00:00
sr-examples Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
stalin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
STk Not MAKE_JOBS_SAFE. 2010-03-17 15:12:23 +00:00
sun-jdk6 Update sun-{jre,jdk}6 to 6.0.24. 2011-02-21 07:48:19 +00:00
sun-jre6 Update sun-{jre,jdk}6 to 6.0.24. 2011-02-21 07:48:19 +00:00
swi-prolog Use META_PACKAGE 2009-04-08 23:11:13 +00:00
swi-prolog-lite Update to SWI-Prolog 5.11.18 2011-04-12 23:16:42 +00:00
swi-prolog-packages Update to SWI-Prolog 5.11.18 2011-04-12 23:16:42 +00:00
tcl Add 'clean' to PRIVILEGED_STAGES. 2009-09-12 17:57:40 +00:00
tcl-expect Fix argument order when calling libtool. 2009-09-09 17:18:18 +00:00
tcl-itcl Fix some issues where DESTDIR ended up included twice... 2010-02-11 13:44:02 +00:00
tcl-itcl-current Redo DESTDIR support 2010-02-11 13:58:05 +00:00
tcl-otcl Replace @exec/@unexec with @pkgdir or drop it. 2009-06-14 20:34:12 +00:00
tcl-tclX Fix patch so that -Wl,-R and the path are one option. 2010-02-25 19:53:55 +00:00
tinyscheme reorder entries with standard format. 2011-05-02 11:35:18 +00:00
tk-expect Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
tk-tclX Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +00:00
twelf DESTDIR support 2010-02-04 01:21:39 +00:00
ucblogo Support staged installation. 2009-12-10 23:42:14 +00:00
umb-scheme Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
utilisp Not MAKE_JOBS_SAFE, but in a very simple way, so just patch it. 2010-04-28 23:42:38 +00:00
vala recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
vscm Update VCSM to V4R2. 2011-04-17 07:46:05 +00:00
vslisp Fix MASTER_SITES. 2010-05-19 11:11:44 +00:00
wsbasic Update to 1_2_7, from <wenheping@gmail.com> via PR pkg/42845. 2010-02-19 14:06:19 +00:00
yabasic DESTDIR support 2010-02-04 01:32:00 +00:00
yap Update to Yap 6.2.0 2010-10-27 12:32:52 +00:00
Makefile + gcc46. 2011-05-15 00:10:23 +00:00