Commit graph

42372 commits

Author SHA1 Message Date
drochner
361db3dbd5 add gtkglarea2 and py-gtk2 2003-05-09 15:29:37 +00:00
drochner
a4191d7e19 update to 0.91, provided by Marc Recht per PR pkg/20750
Most notable changes:
-uses gtk2 now
-Python support
-cleanups, UI improvements, fixes...
2003-05-09 15:21:29 +00:00
drochner
f1d512a076 pull in py-gtk2 from pkgsrc-wip, provided by Marc Recht 2003-05-09 14:50:12 +00:00
drochner
37c8e3d10b pull in gtkglarea2 from pkgsrc-wip, provided by Marc Recht 2003-05-09 14:40:17 +00:00
jmmv
1a1fbdeba7 Package tools support the "alpha" suffix properly to compare versions, so
set boehm-gc's version to 6.2alpha4 instead of 6.1.994.  Thanks, agc@.
2003-05-09 14:17:46 +00:00
lha
f86d6f3eaf Make work with netbsd libkrb that might require roken and com_err
Fixes PR: pkg/21505
2003-05-09 14:07:29 +00:00
jmmv
e2a378e09d Requires boehm-gc 6.1.994 or greater. 2003-05-09 13:05:33 +00:00
jmmv
747f202ffc Update of mono to 0.24 done. 2003-05-09 13:04:10 +00:00
jmmv
386142c423 Update to 0.24. Summary of changes:
# New code generation engine: The new code generation engine is the core of
  the Mono JIT, and now also features a code pre-compiler.
# Runtime: Mono now provides the GC system with object maps, providing better
  collection and improving applications speed. Also debugging information
  works across application domains.
# ASP.NET: WebForms parser has been rewritten.
# Remoting: Plenty of updates to the remoting infrastructure.
# C# compiler: Various speed improvements, plus support for C# 2.0 iterators.
# XML: XML deserialization, RELAX NG validating XmlReader, improved
  XmlNodeReader, XmlTextReader non-UTF8 stream support by default, plus a
  primitive DTD parser.
# Windows.Forms: Lots of updates, and System.Drawing progress.
# Globalization: Data files for supporting the various cultures are in,
  Chinese encoding support.
# New tools: Binding generator for C programs, security tools, mono-xsd.
# Ongoing development: ILASM, JScript, Soap, XmlSerialization.
# Mono Basic: Many improvements.
# Security: Uses new BigInteger, many new classes.
# 152 bugs closed, 3397 individual CVS commits.

The full announcement and list of changes can be found at:
    http://www.gnomedesktop.org/article.php?sid=1104
2003-05-09 13:03:21 +00:00
jmmv
1f011acc63 Note update of boehm-gc to 6.1.994 (6.2alpha4). 2003-05-09 12:59:47 +00:00
jmmv
367e68568c Add patch missed during update to 6.2alpha4. 2003-05-09 12:57:19 +00:00
jmmv
ef2fc0f967 Update to 6.2alpha4. The package version is set to 6.1.994 so that future
version checking will be correct when 6.2 final is out.

Changes since 6.1:
 - Guard the test for GC_DUMP_REGULARLY in misc.c with
   "#ifndef NO_DEBUGGING".  Otherwise it fails to build with NO_DEBUGGING
   defined.  (Thanks to Manuel Serrano.)
 - Message about retrying suspend signals was incorrectly generated even when
   flag was not set.
 - Cleaned up MACOSX/NEXT root registration code.  There was apparently a
   separate ifdef case in GC_register_data_segments() for no reason.
 - Removed MPROTECT_VDB for MACOSX port, based on one negative report.
 - Arrange for gc.h and friends to be correctly installed with GNU-style
   "make install".
 - Enable the GNU-style build facility include C++ support in the library
   with --enable-cplusplus. (Thanks to Thomas Maier for some of the patch.)
 - Mark from GC_thread_key in linux_threads.c, in case that's allocated
   from the garbage collected heap, as it is with our own thread-specific
   storage implementation.  (Thanks to Jeff Sturm.)
 - Mark all free list header blocks if they are heap allocated.  This avoids
   some unnecessary tracing.  And it remains correct if we clear the
   root set. (Thanks to Jeff Sturm for identifying the bug.)
 - Improved S390/Linux support.  Add S390/Linux 64-bit support.  (Thanks
   to Ulrich Weigand.)
 - Corrected the spelling of GC_{M,C}ALLOC_EXPLICTLY_TYPED to
   GC_{M,C}ALLOC_EXPLICITLY_TYPED in gc_typed.h.  This is technically
   an interface change.  Based on the fact that nobody reported this,
   I suspect/hope there were no clients.
 - Cleaned up gc_typed.h so that (1) it adds an extern "C" declaration
   when appropriate, (2) doesn't generate references to undefined internal
   macros, and (3) allows easier manual construction of descriptors.
 - Close the file descriptor used by GC_print_address_map().
 - Set the "close-on-exec" bit for various file descriptors maintained
   for the collector's internal use.
 - Added a hack to find memory segments owned by the system allocator
   under win32.  Based on my tests, this tends to eventually find all
   segments, though it may take a while.  There appear to be cleaner,
   but slower solutions under NT/XP.  But they rely on an API that's
   unsupported under 9X.
 - Changed Linux PowerPC stack finding to LINUX_STACKBOTTOM.  (Thanks
   to Akira Tagoh for pointing out that HEURISTIC1 doesn't work on
   64-bit kernels.)
 - Added GC_set_free_space_divisor to avoid some Windows dll issues.
 - Added FIXUP_POINTER, POINTER_SHIFT, POINTER_MASK to allow preprocessing
   of candidate pointers for tagging, etc.
 - Always lock around GC_notify_full_gc().  Simplified code for
   invoking GC_notify_full_gc().
 - Changed the way DATASTART is defined on FreeBSD to be robust against
   an unmapped page after etext.  (Thanks to Hironori Sakamoto for
   tracking down the intermittent failure.)
 - Made GC_enable() and GC_disable() official.  Deprecated direct update
   of GC_dont_gc.  Changed GC_gcollect to be a noop when garbage collection
   is disabled.
 - Call GC_register_dynamic_libraries before stopping the world on Linux,
   in order to avoid a potential deadlock due to the dl_iterate_phdr lock.
 - Introduced a more general mechanism for platform-dependent code to
   decide whether the main data segment should be handled separately
   from dynamic libraries, or registered by GC_register_dynamic_libraries.
   The latter is more reliable and easier on Linux with dl_iterate_phdr.

Changes since 6.2alpha1:
 - Fixed the completely broken FreeBSD code in 6.2alpha1.  (Thanks to
   Hironori Sakamoto for the patch.)
 - Changed IRIX reference in dbg_mlc.c to IRIX5. (Thanks to Marcus Herbert.)
 - Attempted to work around the problems with .S filenames and the SGI
   compiler.  (Reported by several people. Untested.)
 - Worked around an HP/UX make issue with the GNU-style build process.
 - Fixed the --enable-cplusplus build machinery to allow builds without
   a C++ compiler.  (That was always the intent ...)
 - Changed the debugging allocation macros to explicitly pass the return
   address for Linux and XXXBSD on hardware for which we can't get stack
   traces.  Use __builtin_return_address(0) to generate it when possible.
   Some of the configuration work was cleaned up (good) and moved to gc.h
   (bad, but necessary).  This should make leak detection more useful
   on a number of platforms.  (Thanks to Fabian Thylman for the suggestion.)
 - Fixed compilation problems in dbg_mlc.c with GC_ADD_CALLER.
 - Bumped revision number for dynamic library.

Changes since 6.2alpha2:
 - Don't include execinfo.h in os_dep.c when it's not needed, and may not exist.

Changes since 6.2alpha3:
 - Use LINUX_STACKBOTTOM for >= glibc2.2 on Linux/MIPS.  (See Debian bug
   # 177204)
 - Integrated Jeff Sturm and Jesse Rosenstock's MACOSX threads patches.
 - Integrated Grzegorz Jakacki's substantial GNU build patch.  "Make dist"
   should now work for the GNU build process.  Documentation files
   are installed under share/gc.
 - Tweaked gc_cpp.h to again support the Borland compiler.  (Thanks to
   Rene Girard for pointing out the problems.)
 - Updated BCC_MAKEFILE (thanks to Rene Girard).
 - Added GC_ASSERT check for minimum thread stack size.
 - Added --enable-gc-assertions.
 - Added some web documentation to the distribution.  Updated it in the
   process.
 - Separate gc_conf_macros.h from gc.h.
 - Added generic GC_THREADS client-defined macro to set the appropriate
   GC_XXX_THREADS internal macro.  (gc_config_macros.h.)
 - Add debugging versions of _ignore_off_page allocation primitves.
 - Moved declarations of GC_make_closure and GC_debug_invoke_finalizer
   from gc.h to gc_priv.h.
 - Reset GC_fail_count even if only a small allocation succeeds.
 - Integrated Brian Alliet's patch for dynamic library support on Darwin.
 - gc_cpp.h's gc_cleanup destructor called GC_REGISTER_FINALIZER_IGNORE_SELF
   when it should have called the lower case version, since it was
   explicitly computing a base pointer.
2003-05-09 12:53:26 +00:00
abs
8109d94bf0 Explicitly handle phoenix & phoenix-bin, plus any www package the user chooses.
This is an awkward package as it takes its version from the browser on which it
depends. Thoughts welcomed.
2003-05-09 11:59:40 +00:00
drochner
aaa25f9bc4 Update to 2.4.0.7.
Since glib pulls in threads, we gave to use a threaded Python.
While this is not exactly what the author of PR pkg/21428 intended,
it is correct now.
There is still a problem with dynamically loading of C++ libraries
(the known libgcc issue). For reasons I don't understand atm this
only shows up on 1.5.
2003-05-09 11:46:43 +00:00
abs
886543ff0c sun-jdk defaults to sun-jdk14, but sun-jdk14 does not work reliably
on NetBSD/i386 1.6. I_believe_ it started working around the point
scheduler activations were imported, so give sun-jdk14 to 1.6M and
later, otherwise sun-jdk13.
2003-05-09 11:31:46 +00:00
wiz
7c24a873a0 Fix line in French localisation; from Quentin Garnier.
I'll assume that nobody updated their pan yet, so no PKGREVISION bump.
2003-05-09 10:30:20 +00:00
wiz
e1eadd64db pan-0.14.0 update done. 2003-05-09 10:05:20 +00:00
wiz
445e523501 + exmh-2.6.3
- distcc & doxygen [thanks, martti!]
2003-05-09 10:04:42 +00:00
wiz
09e6371cde Update to 0.14.0.
Supports slrn and XNews-style scorefiles.
Added sixth layout mode in the Preferences|Layout dialog.
Added a default character set to the Posting Profiles.
Faster article filters.
Lots of bugfixes.
2003-05-09 10:02:15 +00:00
jmmv
c8f09aaf1f Note update of lmule to 1.2.1. 2003-05-09 09:37:18 +00:00
jmmv
56c46fc498 Trivially update to 1.2.1:
* Should crash less often
Tiku's contributions:
* FIXED -- segfault at startup with RH9.
Pure_Ascii's contributions:
* FIXED -- zero column widths at first startup
  (From 1.2.0.1, was missing in CVS).
* Now displays lmule version on startup
* Updated german translation
  Madcat's contributions:
* Download List is now sorted during startup.
* Searching crash bug FIXED! (tagcount problem)
* Stops old global search if you start a new
* one.
* FIXED -- preview with paths containing
* spaces etc.
* FIXED -- SIGPIPE (Broken pipe) problems.
  Octane's contributions:
* FIXED -- GTK2 problems

Patch provided in pkg/21510 by Juan RP.
2003-05-09 09:36:28 +00:00
jdolecek
a796119e39 some packages (e.g. py-wxWindows 2.4.0.7) have the Python setup.py
in subdirectory and need to execute setup.py in that directory, but
still need WRKSRC set to the base directory for configure/patch targets

to handle this, add PYSETUPSUBDIR variable (default empty), and
change do-build+do-install targets to use working directory
${WRKSRC}/${PYSETUPSUBDIR} when executing setup.py
2003-05-09 09:24:17 +00:00
jmmv
71394334e6 +mono-0.24, pan-0.14.0 2003-05-09 08:58:31 +00:00
martti
6d114b047a Updated distcc to 2.2 2003-05-09 08:43:22 +00:00
martti
2941dad045 Updated distcc to 2.2
* If $DISTCC_HOSTS is not set, the host list is taken from from
  ~/.distcc/hosts, if that exists, or otherwise $sysconfdir/distcc/hosts.

* Add --listen option to distccd, to control which IP address is
  used to listen for connections.  May be useful for access
  control on dual-homed machines.
2003-05-09 08:43:10 +00:00
wiz
2f59aa7f95 sudo-1.6.7p5 update done. 2003-05-09 08:30:39 +00:00
wiz
164b721135 Update to 1.6.7p5:
509) Fixed a typo that caused a compilation error on Heimdal.
510) Darwin (MacOS X) doesn't have a real setreuid() system call.
511) Fixed a problem with large numbers of environment variables.
2003-05-09 08:29:14 +00:00
martti
f0c787d99d Updated lyx, doxygen, etcupdate and distcc 2003-05-09 08:04:08 +00:00
martti
265d55a260 Updated distcc to 2.0.1
* lots of bug fixes
2003-05-09 08:03:24 +00:00
martti
3d837bc498 Updated etcupdate to 20030509
* sync with current (use awk instead of fgrep and sed)
2003-05-09 08:03:08 +00:00
martti
197ae29fda Updated doxygen to 1.3
* translation updates
* lots of bug fixes
2003-05-09 08:02:44 +00:00
wiz
35678d2b3a Fix dir in depends line. From Soren Jacobsen in PR 21508. 2003-05-09 08:02:38 +00:00
martti
a21a32b1d9 Updated lyx to 1.3.2
* the spellchecker code has been overhauled and many bugs have been squashed
* many small bugs in the Qt frontend have been fixed
* several languages now benefit from an improved translation of the user
  interface
2003-05-09 08:02:29 +00:00
rh
bea151dcb1 Note update of cgoban-java to 2.4.61 2003-05-09 07:48:32 +00:00
rh
a039a36746 Update cgoban-java to 2.4.61. No change list is available, but this
avoids warnings on KGS about the use of an outdated client.
2003-05-09 07:47:56 +00:00
agc
c7a428acc4 Initial import of Alan Watson's utftools-1.6 into the NetBSD Packages
Collection.

This package contains implementations of UTF-8-aware wc, fmt,
expand, and unexpand.
2003-05-09 07:40:39 +00:00
agc
3292afa316 Add and enable utftools 2003-05-09 07:39:47 +00:00
agc
7160168209 Initial import of Alan Watson's utftools-1.6 into the NetBSD Packages
Collection.

This package contains implementations of UTF-8-aware wc, fmt,
expand, and unexpand.
2003-05-09 07:38:16 +00:00
agc
8e463e0b8f Adapt to buildlink2. 2003-05-09 07:34:44 +00:00
agc
15331817ac Add a buildlink2 file for this package. 2003-05-09 07:33:31 +00:00
taca
316d1772e4 Note update of www/squid package to 2.5.2nb3. 2003-05-09 05:08:03 +00:00
taca
86c0b65b2f Update squid package to 2.5.2nb3.
Apply newer offcial patches (total 19).  Here is short summary of those
newly added patch files.

See http://www.squid-cache.org/Versions/v2/2.5/bugs/ in detail.

o squid_ldap_auth update to support TLS, SSL and increased security for bind
  password
o Basic auth looping when multiple proxy_auth ACLs combined in one line.
o reply_body_max_size fails with ident or proxy_auth acls
o acl ident REQUIRED matches even if the ident lookup fails
o msntauth helper crashes related to the alow/deny file operation
o LDAP basic authentication crash if server is unreachable
o "squid -k reconfigure" does not close logs to activate new settings
o --enable-ssl fails on RedHat 9
o SNMP MIB used Counter32 for certain values which are gauges
o Upgrade of wb_group to 1.1
o AIX 5 issues
2003-05-09 05:07:13 +00:00
salo
b249e46b73 Actually, leave COPYING and controls.txt as they are, the frontends expect
them there.
2003-05-09 00:23:56 +00:00
salo
b98c2f98c1 Note celestia packages addition. 2003-05-08 23:56:47 +00:00
salo
df127fa9bc Add celestia packages. 2003-05-08 23:54:47 +00:00
salo
9b24c792c2 Import of celestia-kde-1.3.0: KDE frontend for free real-time 3D space
simulator.

Celestia is a free real-time space simulation that lets you experience our
universe in three dimensions.  Unlike most planetarium software, Celestia
doesn't confine you to the surface of the Earth.  You can travel throughout
the solar system, to any of over 100,000 stars, or even beyond the galaxy.
All travel in Celestia is seamless; the exponential zoom feature lets you
explore space across a huge range of scales, from galaxy clusters down to
spacecraft only a few meters across.  A 'point-and-goto' interface makes it
simple to navigate through the universe to the object you want to visit.

This is the KDE frontend for Celestia.
2003-05-08 23:50:11 +00:00
salo
b3c14e2f1b Import of celestia-gnome-1.3.0: GNOME frontend for free real-time 3D space
simulator.

Celestia is a free real-time space simulation that lets you experience our
universe in three dimensions.  Unlike most planetarium software, Celestia
doesn't confine you to the surface of the Earth.  You can travel throughout
the solar system, to any of over 100,000 stars, or even beyond the galaxy.
All travel in Celestia is seamless; the exponential zoom feature lets you
explore space across a huge range of scales, from galaxy clusters down to
spacecraft only a few meters across.  A 'point-and-goto' interface makes it
simple to navigate through the universe to the object you want to visit.

This is the GNOME frontend for Celestia.
2003-05-08 23:49:06 +00:00
salo
edc0ff45ce Import of celestia-1.3.0: Free real-time 3D space simulator.
Celestia is a free real-time space simulation that lets you experience our
universe in three dimensions.  Unlike most planetarium software, Celestia
doesn't confine you to the surface of the Earth.  You can travel throughout
the solar system, to any of over 100,000 stars, or even beyond the galaxy.
All travel in Celestia is seamless; the exponential zoom feature lets you
explore space across a huge range of scales, from galaxy clusters down to
spacecraft only a few meters across.  A 'point-and-goto' interface makes it
simple to navigate through the universe to the object you want to visit.

This is the base package with data and simple GLUT-driven display window.

Package submitted by Cesar C. Catrian to pkgsrc-wip, modified by me.
2003-05-08 23:47:03 +00:00
itojun
3c8220eef5 net/wistumbler 2003-05-08 22:05:23 +00:00
itojun
38c9c7ca65 upgrade to 20020816. minor bug fixes only. 2003-05-08 22:03:09 +00:00