Commit graph

2138 commits

Author SHA1 Message Date
mrg
d8a7657b23 update onyx to version 5.0.0. too many changes to list but includes:
- better RE support, including PCRE support
	- better C++ support
	- better -lm (math library) support
	- new "-i" flag / $ONYXRC support
	- new -f/-s flags
	- many new builtin functions (operators)
	- fix many bugs
	- new "class" and "instance" types
2004-01-04 03:08:02 +00:00
jlam
339cd13cb2 Initial sprinkling of work-in-progress buildlink3.mk files for using the
buildlink3 framework.
2004-01-03 23:06:43 +00:00
reed
6d9af8d68d Bump package revisions for tiff update.
Tiff is backward compatible, but was broken on amd64 platform
so this makes sure new tiff is used.
2004-01-03 18:49:33 +00:00
kristerw
8e3896d83a Fix multi-line strings and an incorrect function call identified by gcc3. 2004-01-03 09:50:39 +00:00
kristerw
a56602c899 Fix a multi-line sting. 2004-01-03 09:40:26 +00:00
cjep
daf5b5d453 Synchronize patches with lang/gcc. Fixes build on -current. PKGREVISION++ 2004-01-02 19:22:14 +00:00
jschauma
bf4808d0ad Update sun-j*13 to latest version 1.3.1_10. Bugs fixed since 1.3.1_09
according to http://java.sun.com/j2se/1.3/ReleaseNotes.html:

- J# Compiler silently generates bytecode that exceeds VM limits.
- BigDecimal String constructor throws StringIndexOutOfBounds.
- URL constructor throws java.lang.StringIndexOutOfBoundsException
- VM crashes if a run method throws an expection in a finally block
- JVM crash in java.net.ServerSocket.implAccept
- -Xcheck:jni overly strict in JNI method IsSameObject
- JVM hangs up with C++ std lib because of mutex deadlock in 1.3.1_03/1.4.0_0X
- jvm crashes without any error message
- java.util.Date(int,int,int,int,int,int) is unable to give hour information
- 1.3.1_09: JVM process size grows after every JVMPI heap dump request.
2004-01-02 17:07:21 +00:00
jschauma
0dcde9d835 Same as for 1.4:
Don't duplicate the FETCH_MESSAGE, move it to Makefile.common instead.
 Found a URL for older distfiles, so make that known.
2004-01-02 16:56:01 +00:00
kristerw
de068d67c9 Fix a gcc 3 issue by a patch provided by Sergio Jimenez in PR pkg/23441. 2003-12-31 18:37:21 +00:00
kristerw
398bc91ac7 Convert to USE_BUILDLINK2. 2003-12-31 17:11:57 +00:00
kristerw
a0e65e6496 Update lang/maude to version 2.0.1.
Maude 2 extends and generalizes Maude 1 to allow more expressive
modules and a wider range of computational commands.

The license has been changed to the GNU General Public License.
2003-12-31 01:20:35 +00:00
cjep
c843a6ae2a Add trailing / to HOMEPAGEs 2003-12-30 17:27:31 +00:00
recht
21d6475229 + py23-html-docs 2003-12-24 10:12:12 +00:00
recht
7f110eabb6 initial import of the python 2.3 html documentation 2003-12-24 10:09:43 +00:00
jmmv
2b07fc26d8 s/@netbsd.org/@NetBSD.org/ in MAINTAINER. 2003-12-24 09:53:47 +00:00
pooka
4d583e0c89 Upgrade to mzscheme 205, patches provided by
Jesper Louis Andersen <jlouis@mongers.org> in private email.

No earth-shattering changes, just a long list of bugfixes and minor
twiddles and additions.  For a complete list, see plt/notes/mzscheme/HISTORY
2003-12-23 23:57:16 +00:00
recht
6ff2e5bdd5 update to 2.3.3
This is a bug-fix release for Python 2.3 that fixes a number of bugs,
including a couple of serious errors with weakrefs and the cyclic garbage
collector. There are also a number of fixes to the standard library
- see the release notes ( http://www.python.org/2.3.3/NEWS.html )for details.
2003-12-23 17:24:42 +00:00
sketch
511ea1387e Remove patch-ai which worked around a bug previously in bsd.prefs.mk,
which is now causing the build to fail on Solaris since -r1.130 of
that file.

Bump PKGREVISION for Solaris installations which previously had the
package installed correctly, but with a different RUBY_ARCHLIBDIR
location.
2003-12-19 11:59:39 +00:00
ben
4f12f860b5 Apply patch from Harry Waddell in PR 23289 to chill in gcc 2.95.3, to
fix a build error when using gcc 3.  Also bumps PKGREVISION.
2003-12-18 15:44:24 +00:00
sketch
5a9e886854 Remove the dependancy on GNU make, which should be unnecessary. This
package would previously fail to build if devel/gmake wasn't already
installed due to the circular dependancy prevention logic in tools.mk
2003-12-17 15:11:03 +00:00
wiz
ea4a30b73d Update to 1.6.4:
XXX: Package fails the same regression test 1.6.3 failed (scfi-19).

Changes since Guile 1.6.3 (i.e. changes for 1.6.4):

* Changes to the distribution

** Various architecture (and compiler optimization) related bugs fixed.

These changes should improve the situation on at least ia64, alpha,
and powerpc.

* Changes to the stand-alone interpreter

** Readline prompt problem fixed.

Previously, the readline prompt disappeared when running Guile in
non-echoing terminal mode (for example under GDB in Emacs).  This has
been fixed.

** Printing bug fixed.

Previously, the state of writingp in the print state could be altered
by recursive calls to printing functions.

** Append mode in hooks.

Append mode in hooks (adding the hook last in the list) now works
correctly.

** GOOPS/GC bug fixed.

The class layout slot, which informs the GC about which slots to GC
protect, is now initialized correctly.

** GOOPS class redefinition bug fixed.

The class redefinition protocol now properly removes the old accessor
methods from their accessors.

** GOOPS method dispatch bug fixed.

Previously, the code updating the method cache in generic functions
got confused if handed method code created in a null environment
(environment = empty list).  It now stands every environment
imaginable (think about it!).

** GOOPS init-thunks can now be primitive procedures

Previously, attempts to provide something else than a closure as value
for the #:init-thunk slot option would yield a segmentation fault.
Now, it's possible to supply a primitive procedure as init-thunk.
Non-allowed values result in an error.

** Garbage collection frequency improved for large malloc heaps

The decision when to run the GC is now done in a way that avoids GCs
with a small yield for heaps with a large amount of malloced storage.
The minimum expected yield for malloc storage is now relative to the
heap size, and not a fixed amount as it was previously.

* Changes to Scheme functions and syntax

** %fast-slot-ref no longer checks slot boundness

This makes the <active-class> metaclass in (oop goops active-slot)
working again.

** eqv? and equal? are now primitive generic functions

This means that it is possible to provide custom comparisons for new
classes by specializing `eqv?' and `equal?' to those classes.

* Changes to the C interface

** New snarf macros: SCM_PRIMITIVE_GENERIC, SCM_PRIMITIVE_GENERIC_1

These provide a way of adding primitive generics which is equivalent
to SCM_DEFINE and SCM_DEFINE1.
2003-12-14 17:14:40 +00:00
jschauma
97fad08703 Don't duplicate the FETCH_MESSAGE, move it to Makefile.common instead. 2003-12-12 17:17:19 +00:00
jschauma
ae28731a17 Found a URL for older distfiles, so make that known. 2003-12-12 15:38:16 +00:00
adam
41a6c546d5 _02 is no longer available, updating to _03; couldn't find any differences listed 2003-12-12 15:16:49 +00:00
recht
0e669f40cb update to 0.9
New Features:

* An extension type can inherit from another built-in or extension type.
* Extension types can have properties.
* Extension types can have C methods.

Numerous bugs have also been fixed - see the CHANGES file for details.
2003-12-10 15:58:09 +00:00
agc
9e710df666 The build of this package fails on NetBSD-current and 1.6.2 - a SIGSEGV is
thrown when the ksi interpreter is invoked.

Mark this package as broken.
2003-12-09 12:17:35 +00:00
reed
aa42f1c5ce Capitalize first letter of COMMENT. 2003-12-09 00:54:29 +00:00
recht
d5dc8a4e54 Update to Python 2.3.2
Changes in Python:
Quite a few fixes.. See NEWS for details.

Changes in the pkg:
- add FreeBSD patches from the FreeBSD port
- add fix for a fatal bug in type's GC handling causes segfaults
  (via FreeBSD port)
  see http://cvs.sourceforge.net/viewcvs.py/python/python/dist/src/Misc/NEWS?r1=1.831.4.75&r2=1.831.4.76&diff_format=u
- always build the db 1.85 module (on all platforms)
2003-12-08 21:13:56 +00:00
drochner
7b54409a9d mktemp->mkstemp, by John R. Shannon, per PM 2003-12-08 18:42:23 +00:00
drochner
b6e4248069 add tasking support, developed by John R. Shannon, submitted by
PR pkg/23627
This requires native pthreads, so it is for -current only.
2003-12-08 18:33:52 +00:00
kristerw
dfac8125ae Make the pkg compile on m68k. 2003-12-07 13:17:11 +00:00
kristerw
7a4f5ced03 Make the pkg compile on arm. 2003-12-05 22:50:59 +00:00
kristerw
f0279fe6c8 Override config.sub and config.guess to let it recognize shark. 2003-12-05 20:22:58 +00:00
recht
5ae0dcc995 Fix PYTHON_VERSION_REQG regex for non-NetBSD native make (read for bmake). 2003-12-05 19:24:31 +00:00
reed
7e5d8c6dc9 For BSD/OS, define LIBSWANTED.BSDOS and SYSLIBPATH.BSDOS.
(I hadn't needed before, since didn't have other libraries
installed that it tried to detect.)
2003-12-05 05:31:12 +00:00
uebayasi
b0d18a1447 Update from 0.5.0 to 0.6.2. From Jorge Ramon Acereda Macia <al004046 at anubis
dot uji dot es> in PR 23635.

User-visible changes between 0.6.1 and 0.6.2:

Bug fixes (in particular, gforth-0.6.2 compiles with gcc-3.3)
New words: LATEST, LATESTXT (LASTXT deprecated)
Operating environment: Added optional support for a C interface built
  on the ffcall libraries (more portable and powerful than the old
  one, but still not documented).  To use it, the ffcall libraries
  have to be installed before building Gforth (see INSTALL).
Miscellaneous: Gforth-fast now uses static superinstructions (some
  speedup on some platforms); generally this is transparent (apart
  from the speedup), but there are lots of command-line options for
  controlling the static superinstruction generation.

User-visible changes between 0.6.0 and 0.6.1:

Bug fixes (installation on big-endian machines sometimes did not work)

User-visible changes between 0.5.0 and 0.6.0:

Changes in behaviour:

S": interpreted use now ALLOCATEs the string (they live until BYE).
Long word names (512MB on 32-bit systems) are now supported (change to
  the header format).
New threaded code execution method: primitive-centric (allows the
  following), hybrid direct/indirect threaded (easier portability),
  with dynamic superinstructions (typical speedup on Athlon: factor
  2).  New engine gforth-itc for dealing with some potential
  backwards-compatibility problems (see "Direct or Indirect Threaded?"
  in the manual).

Operating environment:

Default dictionary size is now 4MB.
Large file support on OSs that support them (i.e., files with more
  than 2GB on 32-bit machines).
Gforth can now deal well with broken pipes in most situations.
vi tags files can be built with tags.fs (usage like etags.fs).
gforth.el mostly rewritten.
New image file format.

New words:

Keyboard input: EDIT-LINE K-PRIOR K-NEXT K-DELETE
File input: SLURP-FILE SLURP-FID
Programming tools: ID. .ID WORDLIST-WORDS SIMPLE-SEE
Conditional execution: [DEFINED] [UNDEFINED]
Defining Words: CONST-DOES> ]]
Input stream: PARSE-WORD EXECUTE-PARSING EXECUTE-PARSING-FILE
String comparison: STR= STR< STRING-PREFIX?
String literals: S\" .\" \"-PARSE
Floating point output: F.RDP F>STR-RDP F>BUF-RDP

Miscellaneous:

Generalized prims2x.fs into Vmgen (see README.vmgen etc.); used the
  new capabilities in prims (e.g., automatic handling of the return
  stack and instruction stream).
2003-12-05 00:26:38 +00:00
xtraeme
f794de2624 Bump PKGREVISION (libxml2, libxslt and imlib2 were updated). 2003-12-04 19:48:24 +00:00
erh
76cc1bbdbb On AIX, perl doesn't like building with gcc.
Force it to use /usr/bin/cc instead.
2003-12-03 17:29:12 +00:00
recht
fcb9bedc62 update to 0.29
lots of updates fixes
see http://www.go-mono.com/archive/mono-0.29.html for details
2003-12-03 17:08:24 +00:00
darcy
291b036e4d Revert previous change. I was trying to get pkglint to keep quiet but
Marc Recht pointed out that install is not the install command here but
rather an argument to the Python setup program.
2003-12-03 12:26:35 +00:00
darcy
b4b58bfb37 Change hard coded call of install to use INSTALL environment variable. 2003-12-03 12:00:09 +00:00
drochner
dfe4f86754 update to gcc-3.3.2 (bugfix release) 2003-12-03 11:28:55 +00:00
recht
a842a85e99 Add missing LIBTOOL_OVERRIDE for libgc and add a libgc patch
from Christian Limpach wrt to signal handling.
Pull in FreeBSD fixes from the FreeBSD port and disable pthread for
NetBSD and FreeBSD for libgc.
Fix a sysconfdir related path problem.

bump PKGREVISION
2003-12-03 00:12:12 +00:00
jlam
31104a316c It's actually PASTHRU_INC, not INC. 2003-11-27 04:11:40 +00:00
dmcmahill
23284d34db add sparc support provided by Julian Coleman in PR23533. While here
also add logic for NetBSD/alpha.
2003-11-26 22:13:58 +00:00
dmcmahill
56b89512f4 Make this patch be more selective so that this package will work
on NetBSD/alpha versions 1.6 and newer.  Previously, this package only
worked on pre-1.6.  Fixes problems noted in recent bulk builds.
2003-11-25 22:35:14 +00:00
jlam
5859da67ec Make PERL5_SUB_* public so that they may be used in buildlink2.mk files
and also in package Makefiles.
2003-11-25 19:30:21 +00:00
jlam
87dbaa95f1 MakeMaker provides two hooks, INC and OTHERLDFLAGS, to pass options to the
compiler and linker.  Use them to pass CPPFLAGS and LDFLAGS from pkgsrc.
2003-11-25 17:45:56 +00:00
jlam
f79c8b61ed Make PERL5_INSTALLSITELIB, PERL5_INSTALLSITEARCH, etc. public so that
package Makefiles can refer to the directory in which they install Perl5
site modules.
2003-11-25 15:37:35 +00:00
recht
7a9d015928 The dl module isn't built for 64 bit archs and Darwin, so exclude it in
the PLIST for these.
2003-11-17 00:11:43 +00:00