pkgsrc/lang
asau 88566473b9 Update to SWI-Prolog 5.11.4
Changes in 5.11.4:

 * ADDED: library coinduction.pl, after discussion with Gopal Gupta.
 * CLEANUP: Share more of the Makefiles between Windows and the rest
 * FIXED: destruction of a queue if a thread is waiting to write
 * FIXED: error by current_blob/2.
 * MODIFIED: incorrect handling of (^)/2 in setof/3 and bagof/3.
   The new version should now fully comply to ISO.  As of now,

        - The predicate ^/2 no longer exists
        - ^ is only handled by bagof/setof if it appears
          directly at the toplevel of the 2nd argument.
          E.g., the following is NOT allowed:

            setof(X, (foo(X); Y^foo(Y)), L).

   Code must be rewritten.  At runtime, problems are signalled
   by ^/2 being undefined. compile-time analysis can be achieved using
   gxref/0 (or check/0 for quick-and-dirty).
 * FIXED: GC error when nesting (if->then/*no-else*/) inside \+.
   Thanks to test-case by Keri Harris.
 * FIXED: retractall(x(X,X)).  Roberto Tiella.


Changes in 5.11.3:

 * FIXED: Top level now performs expand_goal/2 *after* correcting the
goal.
 * MODIFIED: PL_CUTTED -> PL_PRUNED.  Kept PL_CUTTED as a #define for
compatibility.
 * FIXED: Correctly read RDF/XML that is in UTF-8 on Windows.
 * ENHANCED: Faster enumeration of subjects for writing small RDF gaphs
 * ENHANCED: Better sizing of the hash-tables.
 * CLEANUP: Use size_t in many places for RDF-DB
 * ADDED: RDF-DB index on +,+,+.  This provides a significant speedup in
   loading databases with multiple objects on the same SP.
 * ADDED: Syntax closer to ISO with set_prolog_flag(iso,true).
   See Prolog flag iso for a detailed description.
 * MAINT: Fix compilation under -DO_DEBUG.  Andy Valencia.
 * FIXED: Syntax: proper bracketing of arguments
 * MODIFIED: Simpler syntax within { }.
   According to 6.3.6 the term within curly brackets is read with
   priority 1201, so no extra parentheses are needed.


Changes in 5.11.2:

 * ADDED: lang_equal/2 to RDF library to test language equality.   Jacco
van Ossenbruggen
 * FIXED: Error from http_absolute_location/3 if an alias is not
defined.
 * FIXED: Avoid error in edit/1 hook if an HTTP path-alias is undefined.
 * ADDED: Just-in-time creation of thread-pools for the HTTP server
using the new hook
   http:create_pool/1.  Cleanup of the code for faster spawning of
worker-threads.
 * MODIFIED: Threaded server defaults: keep-alive-timeout is now 2
seconds (was 5)
   and the worker-count is now 5 (was 2).  Worker-count is increased
because many
   servers need it as since version 5.9.x there is hardly a price for
more workers.
 * ADDED: option hide_children(Bool) to make prefix handlers hide their
children
   and allow http_delete_handler to delete a handler-by-id.
 * PORT: Realise set_end_of_file in Windows version
 * ENHANCED: Implement safe-locking of the RDF persistent database
 * ADDED: set_end_of_stream/1.
 * PORT: Fix for MS VS2010 compilation.  Degski.
 * ADDED: lang_matches/2 to library(rdf_db)
 * FIXED: url_to_filename/2 in rdf_persistency was broken due to
steadfastness
   fix in DCG (commit 1a1a5699).  Jacco van Ossenbruggen.
 * FIXED: list_settings/0.  Li Li.
 * FIXED: handling of = and contains in xpath.  Carsten van Weelden.
 * ADDED: library(semweb/sparql_client) providing a SPARQL client API.
 * ENHANCED: Layout for listing where the body resides in another
module.
 * ENHANCED: Provide style pldoc(Id) with each PlDoc handler
 * ADDED: reply_html_page/3: re-stylable HTML pages
 * FIXED: Possible crash in cleanup handlers.
   See comment above discardChoicesAfter() for more details.
 * ENHANCED: Make it possible to give syntax-warnings with exact
positions.
 * ADDED: Warnings for missing quotes for , and |
 * MODIFIED: Stricter list syntax. E.g. [a,b|c,d] or [a|b|c] are now
illegal.
   In the unlikely case this was intended, the term after the bar (|)
must be
   enclosed in brackets.  I.e. [a,b|(c,d)] or [a|(b|c)].
 * FIXED: Syntax: proper quoting of | and ,
 * PORT: Improve behavioral consistency between 32-bit and 64-bit
allocation
 * FIXED: Memory leak for threads allocating chunks of 512 bytes.  Matt
Lilley.
 * ADDED: computing SHA incrementally.  Ivan Shmakov
 * INSTALL: Item#567: make check of xpce loading user's .plrc
 * FIXED: steadfastness in DCG translation. Item#379
 * FIXED: Item#559: hanging system in GC.  Only affects 32-bit platforms
   when doing GC on large stacks that have >8Mb chunks of continuous
   garbage. Ulrich Neumerkel.
 * DOC: errors for atom_length/2.  Ulrich Neumerkel.
 * ADDED: Library(http/js_write) to embed JavaScript calls into HTML
pages
 * FIXED: Processing of stack-limit options in thread_create/3.  Jacco.
 * FIXED: Avoid direct access to private predicates of module error.
 * ADDED: rdf_reachable/5, providing a distance limit and returning the
distance.
 * ADDED: rdf_is_resource/1 and rdf_is_literal/1 for completeness.
 * FIXED: Thread-creation if ulimit -s == infinite.
 * FIXED: Do not skip character after . in turtle parser.  Lourens van
der Meij.
 * PORT: Windows snprintf --> _snprintf
 * MODIFIED: On systems that provide getrlimit(), the default
C-stack-size of
   created threads is the same as that of the main thread.  This was
already
   the default on Linux, but not on e.g. MacOS.
 * ADDED: statistics(c_stack, StackSize) to query the system (C-)stack
limit.
   For consistency, thread_create now also accepts c_stack as parameter.
   This patch also cleans some type-issues with regard to stack-size
   specification and removes 2Gb limit for Win64 due to the use of long.
 * ADDED: Skos prefix
 * ADDED: http_server_property/2.  This patch also does some cleanup to
   the meta-predicate declarations for the multi-threaded HTTP server.
 * FIXED: Check for integer overflows in numeric-arguments for
format-specifiers
 * FIXED: Possible buffer overflow on format('~200f', [1]).  Mike
Elston.
 * ADDED: library(http/http_openid), supporting OpenID consumers and a
server.
 * ADDED: library(http/http_host) to obtain the public hostname of our
HTTP service
 * CLEANUP: Stricter type-checking in load_files/2.  Discussion on
comp.lang.prolog.
 * FIXED: Old naming conventions.  Julian Zubek.
 * FIXED: Atom-GC for blobs that do not have PL_BLOB_UNIQUE.  Samer
Abdallah.
 * ADDED: Allow for selective importing of operators in use_module/2.
   After discussion with Vitor.
 * PORT: Do not use chrpath if the kernel is not a shared object
 * PORT: Some type-issues in socket libs (nonblockio.c)
   I do not think any of these could have been fatal.  They just produce
   alarming messages from the compiler.


Changes in 5.11.1:

 * PORT: Windows: make fake EWOULDBLOCK error compatible with new def in
VS2010
 * PORT: Fix download of Windows prerequisites for Windows 7.  Degski.
 * ADDED: Support for "406 Not Acceptable" responses in the HTTP server.
 * INSTALL: make prepare check all checked-out modules, regardless of
-a.
 * FIXED: Cleanup after uncaught stack-overflow exceptions.  Paul
Singleton.
 * DOC: Fixed code for skeleton client.  Mike Elston.
 * FIXED: ?= for cases where the arguments do not unify.  Marco Montali.
 * FIXED: Possible crash on stack-shift in cleanup handler.  Jochem
Liem.
 * FIXED: Possibly wrong association of $and in frozen/2.  Samer
Abdallah.
 * FIXED: Handling option register_namespaces(true) in rdf_load/2.
   Vangelis Vassiliadis.
 * MODIDIED: rdf_assert/4 now discards *complete* duplicates (incl
source).
 * PORT: Avoid including termios.h into pl-os.h to localise the
dependencies
   and (hopefully) make the system compile on Solaris.
 * PORT: Get prototype for posix_openpt(), avoiding warning
 * PORT: Move time-dependencies where they are needed; use POSIX
   clock_gettime() if it is provided.
 * DOC: Enhance comments of rb_insert/4 and rb_insert_new/4.
 * MODIFIED: Make rdf_meta/1 module-aware.  This means that calls are
   only expanded if they resolve to the exact predicate that is declared
   using rdf_meta.  This might break code relying on the old behaviour
   that expansion took place regardless of the module.

   It is possible to get a warning on calls that used to be expanded
   and are now not using this call before *loading* the program:

        ?- debug(rdf_meta).

   The new code also expands NS:Local appearing literally in the head
   of rdf_meta-declared clauses.
2010-08-18 22:32:00 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +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.13 2010-04-24 18:40:43 +00:00
ccsh Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
cdl3 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
Cg-compiler Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
chicken Update to Chicken 4.5.0. 2010-05-13 19:32:02 +00:00
cim Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cint Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
clang Add C++ include path for NetBSD's /usr/include/g++, addresses 2010-05-04 16:52:16 +00:00
classpath Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
classpath-gui Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
clisp Update to CLISP 2.49. 2010-07-09 18:08:05 +00:00
coq Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +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 Update to ECL 10.4.1 2010-06-16 13:57:30 +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 CVE-2008-2371 pcro buffer overflow fix based on: 2010-04-17 20:10:16 +00:00
erlang-doc Fix PLIST. 2009-12-21 12:07:27 +00:00
erlang-man Follow Erlang/OTP update to R13B03. 2009-12-15 13:07:52 +00:00
ezm3 Remove empty PLIST.common_end. 2009-07-22 09:26:26 +00:00
f2c Fix integer type misuse caught by gcc 4.4. PR 43291 from Makoto Fujiwara; 2010-07-31 20:31:33 +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 Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
gambc Make it build on DragonFly and (probably) FreeBSD. 2009-07-20 18:18:10 +00:00
gauche Allow rpath into WRKSRC, the package knows about relinking itself. 2010-02-25 19:07:53 +00:00
gawk Compile with -D_OSF_SOURCE on Tru64. Closes PR pkg/42476. 2009-12-20 23:03:15 +00:00
gcc corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +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 Add patch to embedded libltdl for CVE-2009-3736 from: 2010-05-04 20:46:31 +00:00
gcc34-ada corrected HOMEPAGE URL (old URL no longer exists) 2009-09-20 14:41:52 +00:00
gcc44 Bump revision after math/mpfr update. 2010-07-15 21:35:10 +00:00
gforth Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
ghc Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +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 Enhance gc_os_dep.c patch for Solaris. From Marion Hakanson on 2010-04-18 00:31:55 +00:00
guile16 Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
gwydion-dylan Not MAKE_JOBS_SAFE: 2010-04-28 23:31:57 +00:00
hugs Use copy and manual messing with the package.conf in the DESTDIR case. 2010-01-29 18:52:09 +00:00
icon honour PKGMANDIR 2009-09-21 16:38:08 +00:00
inform Add inform-license and use it for lang/inform (instead of unclear 2010-06-03 09:26:30 +00:00
intercal "flex" apparently changed its behavior wrt "yylineno": If invoked 2010-01-02 12:49:43 +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 Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +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 Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
js add license information to the package Makefile 2010-04-19 06:16:40 +00:00
kaffe Recursive revision bump for GMP update. 2010-03-24 19:43:21 +00:00
kaffe-esound Recursive bump for libltdl 2009-12-15 23:41:45 +00:00
kaffe-x11 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
kali Use new ${LP64PLATFORMS} variable to restrict platforms instead of manual 2010-01-07 07:36:53 +00:00
ksi Update to KSi 3.9.0 2010-08-12 09:27:54 +00:00
librep Recursive revision bump for GMP update, 2nd part. 2010-03-24 21:54:15 +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 Apply Solaris build fix from Joern Clausen in PR 43350. 2010-05-28 05:35:50 +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 to Maude 2.4 2010-05-19 11:55:43 +00:00
mawk forgot to remove patches. 2010-04-20 19:25:16 +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 Update to 2.6.7 - XXX: need to make moonlight profile work 2010-07-31 08:40:37 +00:00
mono-basic Update to mono-basic 2.6.2, bugfix version on 2.6 branch 2010-04-09 15:48:17 +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 Remove patch that was removed from distinfo during update to 3.11.2. 2010-04-22 07:01:13 +00:00
ocamlduce Update HOMEPAGE. 2010-02-07 12:55:29 +00:00
onyx Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
oo2c Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
opencobol Changes 1.0: 2010-06-02 12:38:29 +00:00
openjdk7 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
openjdk7-bin Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
ossp-js Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
p2c DESTDIR support. Fix getline issues. 2009-09-03 13:14:10 +00:00
parrot Update parrot from version 2.3.0 to 2.4.0. 2010-08-17 13:27:51 +00:00
pcc Add platform list based on configure.ac. 2010-03-17 19:26:54 +00:00
pcc-current Update to snapshot as of 2010-08-10, changes are unknown. 2010-08-10 13:39:56 +00:00
pear Remove one more php4 part. 2010-03-15 16:50:15 +00:00
perl5 fix CVE-2010-1168 and CVE-2010-1447 by updating Safe.pm to the current, 2010-06-27 13:38:39 +00:00
pfe Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
pforth Mark as generally not 64bit safe. Assumes int32 ~= void *. 2010-02-15 16:41:46 +00:00
php add support for PHP 5.2.*-only packages 2010-03-21 11:07:37 +00:00
php5 Update "php5" package to version 5.2.14. Changes since version 5.2.13: 2010-07-24 22:23:14 +00:00
php5-perl Restrict to php5 with PHP_VERSION_REQD. 2010-03-16 11:56:22 +00:00
php53 Update "php53" package to version 5.3.3. Changes since version 5.3.2: 2010-07-24 22:23:37 +00:00
pict Not MAKE_JOBS_SAFE. 2009-12-07 22:56:02 +00:00
pnet Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
pnetC Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
pnetlib Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
pnetlib-nox11 Update dotgnu Portable.Net packages to 0.8.0: 2008-02-18 16:39:43 +00:00
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 add py-cxfreeze-4.2, a (sort of) compiler which makes a standalone 2010-08-15 10:45:57 +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 Remove empty PLIST.pre. 2009-07-22 09:28:15 +00:00
py26-html-docs Imported py26-html-docs-2.6.3: 2009-10-25 23:39:01 +00:00
python Clarify when to use this fragment, and that it's ok to use it and 2010-07-24 18:12:11 +00:00
python24 Added LICENSE information for Python. The license was approved by OSI 2010-01-21 16:28:51 +00:00
python25 Update to 2.5.5, a minor security fix release with very few changes relative to 2.5.4. 2010-04-07 14:57:49 +00:00
python26 Add fix for CVE-2010-2089 taken from Red Hat's Bugzilla database. 2010-06-29 08:15:42 +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 Update Ruby packages to 1.8.7.174 (1.8.7-p174). 2009-06-16 15:08:38 +00:00
ruby-doc-stdlib Remove empty PLIST.pre. 2009-07-22 09:30:39 +00:00
ruby18 Switch to use META_PACKAGE. No functional change. 2008-01-06 15:45:12 +00:00
ruby18-base Add a patch to fix for possible cross-site scripting (CVE-2010-0541) 2010-08-16 07:08:12 +00:00
sablevm Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
sablevm-classpath Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
sablevm-classpath-gui Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +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 1.0.41 2010-08-06 08:29:01 +00:00
scala Update to Scala 2.8.0 2010-08-12 12:31:46 +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 Update sigscheme to 0.8.5. 2010-07-28 09:35:51 +00:00
siod Remove @dirrm entries from PLISTs 2009-06-14 18:03:28 +00:00
smalltalk Update to GNU Smalltalk 3.2.2 2010-07-31 22:06:24 +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 Update to SNOBOL4 1.3 2010-05-19 10:30:58 +00:00
spidermonkey use pkg-config to locate nspr 2010-01-16 15:04:32 +00:00
spl Reset maintainer, mail bounced 2010-03-02 15:13:48 +00:00
squeak Update to Squeak 4.0 2010-03-19 14:41:56 +00:00
squeak-vm Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +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.20, aka 1.6.0_20. 2010-06-06 09:51:49 +00:00
sun-jre6 Update sun-{jre,jdk}6 to 6.0.20, aka 1.6.0_20. 2010-06-06 09:51:49 +00:00
swi-prolog Use META_PACKAGE 2009-04-08 23:11:13 +00:00
swi-prolog-lite Update to SWI-Prolog 5.11.4 2010-08-18 22:32:00 +00:00
swi-prolog-packages Update to SWI-Prolog 5.11.4 2010-08-18 22:32:00 +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 Update to TinyScheme 1.39 2010-08-12 10:22:40 +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 Bump PKGREVISION for libpng shlib name change. 2010-06-13 22:43:46 +00:00
vscm Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +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 Quickly fix accidentally broken update. 2010-08-10 08:26:20 +00:00
Makefile +py-cxfreeze 2010-08-15 10:47:26 +00:00