pkgsrcv2.git
23 years agoRegen patch-ac which failed to apply before.
veego [Mon, 3 Jul 2000 13:46:43 +0000 (13:46 +0000)]
Regen patch-ac which failed to apply before.

23 years agotest(1) -e doesn't work on Solaris so use -f instead.
veego [Mon, 3 Jul 2000 13:45:54 +0000 (13:45 +0000)]
test(1) -e doesn't work on Solaris so use -f instead.

23 years agoMake it work on Solaris (fix the sendmail path).
veego [Mon, 3 Jul 2000 13:44:53 +0000 (13:44 +0000)]
Make it work on Solaris (fix the sendmail path).

23 years agoUpdate png to 1.0.7.
rh [Mon, 3 Jul 2000 12:06:49 +0000 (12:06 +0000)]
Update png to 1.0.7.

Changes are:
  Changed sprintf() to strcpy() in png_write_sCAL_s() to work without STDIO
  Added data_length parameter to png_decompress_chunk() function
  Revised documentation to remove reference to abandoned png_free_chnk functions
  Fixed an error in png_rgb_to_gray_fixed()
  Revised example.c, usage of png_destroy_write_struct().
  Renamed makefile.ibmvac3 to makefile.ibmc, added libpng.icc IBM project file
  Added a check for info_ptr->free_me&PNG_FREE_TEXT when free'ing text in png.c
  Simplify png_sig_bytes() function to remove use of non-ISO-C strdup().
  Added png_data_freer() function.
  In the code that checks for over-length tRNS chunks, added check of
    info_ptr->num_trans as well as png_ptr->num_trans (Matthias Benckmann)
  Check for existing data and free it if the free_me flag is set, in png_set_*()
    and png_handle_*().
  Only define PNG_WEIGHTED_FILTERS_SUPPORTED when PNG_FLOATING_POINT_SUPPORTED
    is defined.
  Changed several instances of PNG_NO_CONSOLE_ID to PNG_NO_STDIO in pngrutil.c
    and mentioned the purposes of the two macros in libpng.txt/libpng.3.
  Revised png_set_iCCP() and png_set_rows() to avoid prematurely freeing data.
  Add checks in png_set_text() for NULL members of the input text structure.
  Removed superfluous prototype for png_set_itxt from png.h
  Removed "else" from pngread.c, after png_error(), and changed "0" to "length".
  Changed several png_errors about malformed ancillary chunks to png_warnings.
  Added png_pass-* arrays to pnggccrd.c when PNG_USE_LOCAL_ARRAYS is defined.
  Relocated paragraph about png_set_background() in libpng.3/libpng.txt
    and other revisions (Matthias Benckmann)
  Relocated info_ptr->free_me to restore binary compatibility with libpng-1.0.5
    (breaks compatibility with libpng-1.0.6).
  Relocated info_ptr->free_me, png_ptr->free_me, and other info_ptr and
    png_ptr members to restore binary compatibility with libpng-1.0.5
    (breaks compatibility with libpng-1.0.6).
  Rearranged some members at the end of png_info and png_struct, to put
    unknown_chunks_num and free_me within the original size of the png_structs
    and free_me, png_read_user_fn, and png_free_fn within the original png_info,
    because some old applications allocate the structs directly instead of
    using png_create_*().
  Added documentation of user memory functions in libpng.txt/libpng.3
  Modified png_read_png so that it will use user_allocated row_pointers
    if present, unless free_me directs that it be freed, and added description
    of the use of png_set_rows() and png_get_rows() in libpng.txt/libpng.3.
  Added PNG_LEGACY_SUPPORTED macro, and #ifdef out all new (since version
    1.00) members of png_struct and png_info, to regain binary compatibility
    when you define this macro.  Capabilities lost in this event
    are user transforms (new in version 1.0.0),the user transform pointer
    (new in version 1.0.2), rgb_to_gray (new in 1.0.5), iCCP, sCAL, sPLT,
    the high-level interface, and unknown chunks support (all new in 1.0.6).
    This was necessary because of old applications that allocate the structs
    directly as authors were instructed to do in libpng-0.88 and earlier,
    instead of using png_create_*().
  Added makefile.intel and updated makefile.watcom (Pawel Mrochen)
  Overloaded png_read_init() and png_write_init() with macros that convert
    calls to png_read_init_2() or png_write_init_2() that check the version
    and structure sizes.
  Made PNG_NO_ITXT_SUPPORTED the default setting, to avoid memory overrun
    when old applications fill the info_ptr->text structure directly.
  Added PNGAPI macro, and added it to the definitions of all exported functions.
  Relocated version macro definitions ahead of the includes of zlib.h and
    pngconf.h in png.h.
  Made PNG_NO_CONSOLE_IO the default condition when PNG_BUILD_DLL is defined.
  Use MSC _RPTn debugging instead of fprintf if _MSC_VER is defined.
  Added png_access_version_number() function.
  Check for mask&PNG_FREE_CHNK (for TEXT, SCAL, PCAL) in png_free_data().
  Expanded libpng.3/libpng.txt information about png_data_freer().
  Changed pnggccrd.c and pngvcrd.c to handle bad adaptive filter types as
    warnings instead of errors, as pngrutil.c does.
  Set the PNG_INFO_IDAT valid flag in png_set_rows() so png_write_png()
    will actually write IDATs.
  Made the default PNG_USE_LOCAL_ARRAYS depend on PNG_DLL instead of WIN32.
  Make png_free_data() ignore its final parameter when freeing data that can
    have multiple instances (text, sPLT, unknowns).
  Removed info_ptr->valid tests from png_free_data(), as in version 1.0.5.
  Added png_set_invalid() function.
  Fixed incorrect illustrations of png_destroy_write_struct() in example.c.
  Revised the deliberately erroneous Linux setjmp code in pngconf.h to produce
    fewer error messages.
  Set each pointer to NULL after freeing it in png_free_data().
  Worked around a problem in pngconf.h; AIX's strings.h defines an "index"
    macro that conflicts with libpng's png_color_16.index. (Dimitri Papadapoulos)
  Added PNG_NO_POINTER_INDEXING macro to use array-indexing instead of pointer
    indexing in pngrutil.c and pngwutil.c to accommodate a buggy compiler.
  Added a check for overlength PLTE chunk in pngrutil.c.
  Added PNG_NO_POINTER_INDEXING macro to use array-indexing instead of pointer
    indexing in pngrutil.c and pngwutil.c to accommodate a buggy compiler.
  Added a warning in png_decompress_chunk() when it runs out of data.
  Revised the copyright/disclaimer/license notice.
  Corrected the definition of PNG_TRANSFORM_INVERT_ALPHA  (0x0400 not 0x0200)
  Added PNG_USE_DLL macro.
  Added "msvc" and contrib/msvctest directories with MSVC++ project files
    (Simon-Pierre Cadieux) and contrib/visupng directory (Willem van Schaik).
  Removed leading underscores from "_PNG_H" and "_PNG_SAVE_BSD_SOURCE" macros.
  Fixed bugs in pngwrite.c and pngwutil.c that prevented writing iCCP chunks.
  Revised the definition of "trans_values" in libpng.3/libpng.txt

23 years agoregen
wiz [Mon, 3 Jul 2000 12:03:36 +0000 (12:03 +0000)]
regen

23 years agoMissing NetBSD id.
mjl [Mon, 3 Jul 2000 11:31:04 +0000 (11:31 +0000)]
Missing NetBSD id.

23 years agoUpdate to 1.0703. No changes available, the included ChangeLog
mjl [Mon, 3 Jul 2000 11:30:22 +0000 (11:30 +0000)]
Update to 1.0703. No changes available, the included ChangeLog
stops at rev 402... :(

23 years agoUpdate pth to 1.3.6. Changes are bugfixes pulled up from the 1.4.x devel
rh [Mon, 3 Jul 2000 11:08:13 +0000 (11:08 +0000)]
Update pth to 1.3.6.  Changes are bugfixes pulled up from the 1.4.x devel
tree.

23 years agoMark this package as working for i386 and sparc platforms, with any
agc [Mon, 3 Jul 2000 10:34:07 +0000 (10:34 +0000)]
Mark this package as working for i386 and sparc platforms, with any
operating system.  There are hooks for Linux/ppc, but not tested on
that operating system or platform.

23 years agoAdd and enable gprolog.
agc [Mon, 3 Jul 2000 10:28:26 +0000 (10:28 +0000)]
Add and enable gprolog.

23 years agoMerge from vendor branch TNF:
agc [Mon, 3 Jul 2000 10:27:50 +0000 (10:27 +0000)]
Merge from vendor branch TNF:
Import gprolog-1.1.6, the GNU prolog compiler and interpreter, into
the Packages Collection.

Package created by Brook Milligan (brook@biology.nmsu.edu) and submitted
in PR pkg/10479. Additional Solaris patch by myself.

23 years agoImport gprolog-1.1.6, the GNU prolog compiler and interpreter, into
agc [Mon, 3 Jul 2000 10:27:50 +0000 (10:27 +0000)]
Import gprolog-1.1.6, the GNU prolog compiler and interpreter, into
the Packages Collection.

Package created by Brook Milligan (brook@biology.nmsu.edu) and submitted
in PR pkg/10479. Additional Solaris patch by myself.

23 years agoUpdate to 5.48. Changes:
mjl [Mon, 3 Jul 2000 09:49:20 +0000 (09:49 +0000)]
Update to 5.48. Changes:

    README.SSL update by Marko Asplund <aspa@hip.fi>

    Added cookie example to lwpcook.pod

    HTTP::Date::str2time returns undef on failure instead
    of an empty list as suggested by Markus B Krüger <markusk@pvv.org>

    $request->uri($uri) will now always store a copy of the $uri.

    HTTP::Status: Added status codes from RFC 2616 and RFC 2518 (WebDAV)

    LWP::RobotUA will not parse robots.txt unless content type and
    content sample looks right.

    LWP::UserAgent: Deal with multiple WWW-Authenticate headers.
    Patch by Hugo <hv@crypt.compulink.co.uk>

    $ua->proxy can now return the old proxy settings without
    destroying the old one.
    Based on patch by Benjamin Low <ben@snrc.uow.edu.au>

    LWP::Protocol::http update
        - don't terminate header parsing on bad headers
        - extra_sock_opts
        - preparations for keep alive support
        - method CONNECT

   WWW::RobotRules deal with various absolute URIs in the
   disallow lines.

   Makefile.PL: Make sure we have HTML::TokeParser

   Added HTML::Form to the distribution.

   LWP::Protocol::http: Kill any Connection header

   LWP::MediaTypes: Fixed builtin html/text mapping.
   Added bz2 to suffixEncoding

23 years agoUpdate to 1.07. Changes:
mjl [Mon, 3 Jul 2000 09:36:14 +0000 (09:36 +0000)]
Update to 1.07. Changes:
URI::WithBase (and URI::URL) now support $u->new_abs constructor.
URI::WithBase->new("foo", "URI::URL") bug fixed.
QNX file support by Norton Allen <allen@huarp.harvard.edu>.
Support for rsync:-URI by Dave Beckett <D.J.Beckett@ukc.ac.uk>

23 years agoUpdate to 3.10. Too many changes to include here, please
mjl [Mon, 3 Jul 2000 09:17:56 +0000 (09:17 +0000)]
Update to 3.10. Too many changes to include here, please
refer to the Changes file.

23 years agoUpdate ruby-Tk to 1.4.5.
sakamoto [Mon, 3 Jul 2000 07:32:22 +0000 (07:32 +0000)]
Update ruby-Tk to 1.4.5.
Sync with lang/ruby.

23 years agoUpdate ruby to 1.4.5
sakamoto [Mon, 3 Jul 2000 07:31:37 +0000 (07:31 +0000)]
Update ruby to 1.4.5
Changes: Several bug fixes.

use MACHINE_GNU_ARCH instead of MACHINE_ARCH in PLIST,
patch from Paul Clifford <paul@plasma.demon.co.uk>.

23 years agoReimport this in the right place:
jwise [Mon, 3 Jul 2000 03:50:13 +0000 (03:50 +0000)]
Reimport this in the right place:

Initial import of jakarta-ant-3.1, a java-based make(1) replacement which
is starting to be used by a lot of java-based projects.

23 years agoMerge from vendor branch TNF:
jwise [Mon, 3 Jul 2000 03:50:13 +0000 (03:50 +0000)]
Merge from vendor branch TNF:
Reimport this in the right place:

Initial import of jakarta-ant-3.1, a java-based make(1) replacement which
is starting to be used by a lot of java-based projects.

23 years agoAdd and enable jakarta-ant
jwise [Mon, 3 Jul 2000 03:45:51 +0000 (03:45 +0000)]
Add and enable jakarta-ant

23 years agoUpdate to postfix-19991231-pl08
sommerfeld [Mon, 3 Jul 2000 02:46:18 +0000 (02:46 +0000)]
Update to postfix-19991231-pl08

Major changes with postfix-19991231-pl08:
=========================================

Specify "body_checks = regexp:/etc/postfix/body_checks" for a quick
and dirty emergency content filter that looks at non-header lines
one line at a time (including MIME headers inside the message body).
Details in conf/sample-filter.cf.

Incompatible changes with postfix-19991231-pl07:
================================================

As required by RFC 822, Postfix now inserts a generic destination
message header when no destination header is present.  The text is
specified via the undisclosed_recipients_header configuration
parameter (default:  "To: undisclosed-recipients:;").

23 years agoupgrade fro 2.1.1p1 to 2.1.1p2.
itojun [Sun, 2 Jul 2000 22:07:56 +0000 (22:07 +0000)]
upgrade fro 2.1.1p1 to 2.1.1p2.

--- recent changelogs
20000701
 - (djm) Fix Tru64 SIA problems reported by John P Speno <speno@isc.upenn.edu>
 - (djm) Login fixes from Tom Bertelson <tbert@abac.com>
 - (djm) Replace "/bin/sh" with _PATH_BSHELL. Report from Corinna Vinschen
   <vinschen@cygnus.com>
 - (djm) Replace "/usr/bin/login" with LOGIN_PROGRAM
 - (djm) Added check for broken snprintf() functions which do not correctly
   terminate output string and attempt to use replacement.
 - (djm) Released 2.1.1p2

20000628
 - (djm) Fixes to lastlog code for Irix
 - (djm) Use atomicio in loginrec
 - (djm) Patch from Michael Stone <mstone@cs.loyola.edu> to add support for
   Irix 6.x array sessions, project id's, and system audit trail id.
 - (djm) Added 'distprep' make target to simplify packaging
 - (djm) Added patch from Chris Adams <cmadams@hiwaay.net> to add OSF SIA
   support. Enable using "USE_SIA=1 ./configure [options]"

20000627
 - (djm) Fixes to login code - not setting li->uid, cleanups
 - (djm) Formatting

20000626
 - (djm) Better fix to aclocal tests from Garrick James <garrick@james.net>
 - (djm) Account expiry support from Andreas Steinmetz <ast@domdv.de>
 - (djm) Added password expiry checking (no password change support)
 - (djm) Make EGD failures non-fatal if OpenSSL's entropy pool is still OK
   based on patch from Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
 - (djm) Fix fixed EGD code.
 - OpenBSD CVS update
   - provos@cvs.openbsd.org  2000/06/25 14:17:58
     [channels.c]
     correct check for bad channel ids; from Wei Dai <weidai@eskimo.com>

20000623
 - (djm) Use sa_family_t in prototype for rresvport_af. Patch from
   Svante Signell <svante.signell@telia.com>
 - (djm) Autoconf logic to define sa_family_t if it is missing
 - OpenBSD CVS Updates:
   - markus@cvs.openbsd.org  2000/06/22 10:32:27
     [sshd.c]
     missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
   - djm@cvs.openbsd.org     2000/06/22 17:55:00
     [auth-krb4.c key.c radix.c uuencode.c]
     Missing CVS idents; ok markus

20000622
 - (djm) Automatically generate host key during "make install". Suggested
   by Gary E. Miller <gem@rellim.com>
 - (djm) Paranoia before kill() system call
 - OpenBSD CVS Updates:
   - markus@cvs.openbsd.org  2000/06/18 18:50:11
     [auth2.c compat.c compat.h sshconnect2.c]
     make userauth+pubkey interop with ssh.com-2.2.0
   - markus@cvs.openbsd.org  2000/06/18 20:56:17
     [dsa.c]
     mem leak + be more paranoid in dsa_verify.
   - markus@cvs.openbsd.org  2000/06/18 21:29:50
     [key.c]
     cleanup fingerprinting, less hardcoded sizes
   - markus@cvs.openbsd.org  2000/06/19 19:39:45
     [atomicio.c auth-options.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c]
     [auth-rsa.c auth-skey.c authfd.c authfd.h authfile.c bufaux.c bufaux.h]
     [buffer.c buffer.h canohost.c channels.c channels.h cipher.c cipher.h]
     [clientloop.c compat.c compat.h compress.c compress.h crc32.c crc32.h]
     [deattack.c dispatch.c dsa.c fingerprint.c fingerprint.h getput.h hmac.c]
     [kex.c log-client.c log-server.c login.c match.c mpaux.c mpaux.h nchan.c]
     [nchan.h packet.c packet.h pty.c pty.h readconf.c readconf.h readpass.c]
     [rsa.c rsa.h scp.c servconf.c servconf.h ssh-add.c ssh-keygen.c ssh.c]
     [ssh.h tildexpand.c ttymodes.c ttymodes.h uidswap.c xmalloc.c xmalloc.h]
     OpenBSD tag
   - markus@cvs.openbsd.org  2000/06/21 10:46:10
     sshconnect2.c missing free; nuke old comment

20000620
 - (djm) Replace use of '-o' and '-a' logical operators in configure tests
   with '||' and '&&'. As suggested by Jim Knoble <jmknoble@pint-stowp.cx>
   to fix SCO Unixware problem reported by Gary E. Miller <gem@rellim.com>
 - (djm) Typo in loginrec.c

20000618
 - (djm) Add summary of configure options to end of ./configure run
 - (djm) Not all systems define RUSAGE_SELF & RUSAGE_CHILDREN. Report from
   Michael Stone <mstone@cs.loyola.edu>
 - (djm) rusage is a privileged operation on some Unices (incl.
   Solaris 2.5.1). Report from Paul D. Smith <pausmith@nortelnetworks.com>
 - (djm) Avoid PAM failures when running without a TTY. Report from
   Martin Petrak <petrak@spsknm.schools.sk>
 - (djm) Include sys/types.h when including netinet/in.h in configure tests.
   Patch from Jun-ichiro itojun Hagino <itojun@iijlab.net>
 - (djm) Started merge of Ben Lindstrom's <mouring@pconline.com> NeXT support
 - OpenBSD CVS updates:
   - deraadt@cvs.openbsd.org 2000/06/17 09:58:46
     [channels.c]
     everyone says "nix it" (remove protocol 2 debugging message)
   - markus@cvs.openbsd.org  2000/06/17 13:24:34
     [sshconnect.c]
     allow extended server banners
   - markus@cvs.openbsd.org  2000/06/17 14:30:10
     [sshconnect.c]
     missing atomicio, typo
   - jakob@cvs.openbsd.org   2000/06/17 16:52:34
     [servconf.c servconf.h session.c sshd.8 sshd_config]
     add support for ssh v2 subsystems. ok markus@.
   - deraadt@cvs.openbsd.org 2000/06/17 18:57:48
     [readconf.c servconf.c]
     include = in WHITESPACE; markus ok
   - markus@cvs.openbsd.org  2000/06/17 19:09:10
     [auth2.c]
     implement bug compatibility with ssh-2.0.13 pubkey, server side
   - markus@cvs.openbsd.org  2000/06/17 21:00:28
     [compat.c]
     initial support for ssh.com's 2.2.0
   - markus@cvs.openbsd.org  2000/06/17 21:16:09
     [scp.c]
     typo
   - markus@cvs.openbsd.org  2000/06/17 22:05:02
     [auth-rsa.c auth2.c serverloop.c session.c auth-options.c auth-options.h]
     split auth-rsa option parsing into auth-options
     add options support to authorized_keys2
   - markus@cvs.openbsd.org  2000/06/17 22:42:54
     [session.c]
     typo

20000613
 - (djm) Fixes from Andrew McGill <andrewm@datrix.co.za>:
  - Platform define for SCO 3.x which breaks on /dev/ptmx
  - Detect and try to fix missing MAXPATHLEN
 - (djm) Fix short copy in loginrec.c (based on patch from Phill Camp
   <P.S.S.Camp@ukc.ac.uk>

20000612
 - (djm) Glob manpages in RPM spec files to catch compressed files
 - (djm) Full license in auth-pam.c
 - (djm) Configure fixes from SAKAI Kiyotaka <ksakai@kso.netwk.ntt-at.co.jp>
 - (andre) AIX, lastlog, configure fixes from Tom Bertelson <tbert@abac.com>:
  - Don't try to retrieve lastlog from wtmp/wtmpx if DISABLE_LASTLOG is
     def'd
  - Set AIX to use preformatted manpages

20000610
 - (djm) Minor doc tweaks
 - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>

20000609
 - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage
   (in favour of utmpx) on Solaris 8

20000606
 - (djm) Cleanup of entropy.c. Reorganised code, removed second pass through
   list of commands (by default). Removed verbose debugging (by default).
 - (djm) Increased command entropy estimates and default entropy collection
   timeout
 - (djm) Remove duplicate headers from loginrec.c
 - (djm) Don't add /usr/local/lib to library search path on Irix
 - (djm) Fix rsh path in RPMs. Report from Jason L Tibbitts III
   <tibbs@math.uh.edu>
 - (djm) Warn user if grabs fail in GNOME askpass. Patch from Zack Weinberg
   <zack@wolery.cumb.org>
 - (djm) OpenBSD CVS updates:
  - todd@cvs.openbsd.org
    [sshconnect2.c]
    teach protocol v2 to count login failures properly and also enable an
    explanation of why the password prompt comes up again like v1; this is NOT
    crypto
  - markus@cvs.openbsd.org
    [readconf.c readconf.h servconf.c servconf.h session.c ssh.1 ssh.c sshd.8]
    xauth_location support; pr 1234
    [readconf.c sshconnect2.c]
    typo, unused
    [session.c]
    allow use_login only for login sessions, otherwise remote commands are
    execed with uid==0
    [sshd.8]
    document UseLogin better
    [version.h]
    OpenSSH 2.1.1
    [auth-rsa.c]
    fix match_hostname() logic for auth-rsa: deny access if we have a
    negative match or no match at all
    [channels.c hostfile.c match.c]
    don't panic if mkdtemp fails for authfwd; jkb@yahoo-inc.com via
    kris@FreeBSD.org

23 years agoUpdate darcnes to 20000625.
wiz [Sun, 2 Jul 2000 01:05:15 +0000 (01:05 +0000)]
Update darcnes to 20000625.
Changes from the web-page:
o Added driver-specific menu support to the X version.
o Broke all non-X versions (what, you didn't see this coming?).
o Added a reset menu item for the Apple ][ driver (it's now somewhat
  usable).
o Fixed unix sound and CD interfaces to automatically detect what type
  of system to compile for.
o Added support for Inserting/Removing FDS disks, and changing which
  side is up.
o Fixed "Error 24" problem reading many FDS disks (still need write
  support and timer IRQs).
o Fixed GTK version (yes, this one is tested).
o Fixed Makefile to allow overriding gtk-config (necessary for my system).
o More tweaks to the 68000 core (no it doesn't work).
o Cleaned up mapper 23 code (untested).
o Removed mapper vsync hooks (they weren't being used).
o Fixed NES palette mirroring (longstanding oops).
o More untested fixes to the Allegro and SVGALib ports (let's hope
  they work this time).

23 years agoAdd FAQ entry: "Could not find bsd.own.mk" - what's wrong?
hubertf [Sat, 1 Jul 2000 20:12:03 +0000 (20:12 +0000)]
Add FAQ entry: "Could not find bsd.own.mk" - what's wrong?

23 years agoIf ONLY_FOR_PLATFORM included NetBSD-1.4[Z][A-Z]-i386, include
david [Sat, 1 Jul 2000 19:42:26 +0000 (19:42 +0000)]
If ONLY_FOR_PLATFORM included NetBSD-1.4[Z][A-Z]-i386, include
NetBSD-1.5_ALPHA-i386

23 years agoremove librep (moved to lang/)
danw [Sat, 1 Jul 2000 04:15:29 +0000 (04:15 +0000)]
remove librep (moved to lang/)

23 years agoadd rep-gtk and sawfish
danw [Sat, 1 Jul 2000 04:14:45 +0000 (04:14 +0000)]
add rep-gtk and sawfish

23 years agosawfish 0.28.1
danw [Sat, 1 Jul 2000 04:13:30 +0000 (04:13 +0000)]
sawfish 0.28.1

a GNOME-aware window manager that is fully configurable in Lisp

23 years agoMerge from vendor branch TNF:
danw [Sat, 1 Jul 2000 04:13:30 +0000 (04:13 +0000)]
Merge from vendor branch TNF:
sawfish 0.28.1

a GNOME-aware window manager that is fully configurable in Lisp

23 years agoUpdate to rep-gtk-0.11
danw [Sat, 1 Jul 2000 03:40:20 +0000 (03:40 +0000)]
Update to rep-gtk-0.11

23 years agoUpdate to librep 0.12.2
danw [Sat, 1 Jul 2000 03:39:47 +0000 (03:39 +0000)]
Update to librep 0.12.2

23 years agoRemove this: it is a duplicate of lang/librep
danw [Sat, 1 Jul 2000 03:38:58 +0000 (03:38 +0000)]
Remove this: it is a duplicate of lang/librep

23 years agopkgdiff now only generates output at all if the files differ.
wiz [Sat, 1 Jul 2000 02:38:56 +0000 (02:38 +0000)]
pkgdiff now only generates output at all if the files differ.
mkpatches doesn't generate empty patches, and warns if name and name.orig
don't differ.
Bump version to 0.91.

23 years agoUpdate links to 0.92. Adds a man page, and the following changes from
wiz [Sat, 1 Jul 2000 01:17:59 +0000 (01:17 +0000)]
Update links to 0.92. Adds a man page, and the following changes from
the NEWS file:
o Frames
o Bookmarks
o Support for more languages
o Mailto: and telnet: link types
o -dump, -source
o -anonymous

23 years agogenerate dsa host key in post-install.
itojun [Sat, 1 Jul 2000 01:16:39 +0000 (01:16 +0000)]
generate dsa host key in post-install.

23 years agouse more recent code from kame(7/1).
itojun [Sat, 1 Jul 2000 01:11:32 +0000 (01:11 +0000)]
use more recent code from kame(7/1).

changes from 6/14:
- improved internal data garbage collection
- avoid sending packet that constitutes invalid exchange
- "non_auth" setting will avoid negotiating ESP authentication
- improve notify message

23 years agoUse release version instead of pre-release version. No functional change.
wiz [Fri, 30 Jun 2000 23:28:19 +0000 (23:28 +0000)]
Use release version instead of pre-release version. No functional change.
Bump version to 4.50.2.

23 years agomake the default timescale in the output VCD files be 1ns for compatibility
dmcmahill [Fri, 30 Jun 2000 19:55:06 +0000 (19:55 +0000)]
make the default timescale in the output VCD files be 1ns for compatibility
with viewers such as Dinotrace.

23 years agodefuzz
itojun [Fri, 30 Jun 2000 19:36:06 +0000 (19:36 +0000)]
defuzz

23 years agoAdd bugfixes from glibc and build a shared library version of libintl.
danw [Fri, 30 Jun 2000 17:07:36 +0000 (17:07 +0000)]
Add bugfixes from glibc and build a shared library version of libintl.
Bump version to 0.10.35nb1.

23 years agoUpdate to gmp-3.0.1, including new functions, autoconf/libtool support,
danw [Fri, 30 Jun 2000 16:52:56 +0000 (16:52 +0000)]
Update to gmp-3.0.1, including new functions, autoconf/libtool support,
and a shared version of the library.

23 years agodepend on gmp>=2.0.2 rather than gmp-2.0.2
danw [Fri, 30 Jun 2000 16:30:24 +0000 (16:30 +0000)]
depend on gmp>=2.0.2 rather than gmp-2.0.2

23 years agoUpdate this to build with either gmp 2.0.2 or gmp 3.0.x.
danw [Fri, 30 Jun 2000 16:29:17 +0000 (16:29 +0000)]
Update this to build with either gmp 2.0.2 or gmp 3.0.x.
(Theoretically... the package seems to be broken.)

23 years agoRemove some dirs from this list that are handled somewhere else (perl)
hubertf [Fri, 30 Jun 2000 15:57:06 +0000 (15:57 +0000)]
Remove some dirs from this list that are handled somewhere else (perl)

23 years agoRemove some more smartness from Makefile
wennmach [Fri, 30 Jun 2000 15:03:12 +0000 (15:03 +0000)]
Remove some more smartness from Makefile

23 years agoRemove unneccessary patch-ai.
wennmach [Fri, 30 Jun 2000 13:36:03 +0000 (13:36 +0000)]
Remove unneccessary patch-ai.
Do not automatically add an entry for xfs to /etc/fstab (pointed
out by hubertf).

23 years agoUpdate list of categories (no more corba).
wiz [Fri, 30 Jun 2000 11:09:53 +0000 (11:09 +0000)]
Update list of categories (no more corba).
Add two paragraphs recommending use of the pkgdiff package.
Improve wording of paragraph about pkg-CHANGES.

23 years agoUpdate to qt-2.1.1, use LIBTOOL and sort PLIST.
skrll [Fri, 30 Jun 2000 10:42:58 +0000 (10:42 +0000)]
Update to qt-2.1.1, use LIBTOOL and sort PLIST.

Changes are...

Qt 2.1.1 is a bugfix release. It keeps both forward and backward
compatibility (source and binary) with Qt 2.1.

****************************************************************************
*     General    *
****************************************************************************

- Many documentation improvements

- Various compilation problems relating to particular versions of xlC,
MipsPRO, Solaris, Japanese Windows, old X11 libraries, and gcc 2.7.2
fixed

- 64bit HP build targets added

- Qt OpenGL Extension updated; see details in qt/extensions/opengl/CHANGES

- As usual, many minor bugfixes, too small to be mentioned here.

****************************************************************************
*     Specific    *
****************************************************************************

QToolbar: fix of layout-saving when moving out of dock

QAccel: Support for non-alphanumeric keys

QPrinter: Better tolerance for PS interpreter peculiarities

QPainter: drawText() with rasterOp on Windows

QIconView: Drawing fixes

QDate: Ensure invalid status when created with invalid values

Motif Dnd: Fix possible crash

QWorkSpace: Proper minmize/maximize activation

QListBox: Optimization: better performance for lists with thousands of
elements. Selection problem fixed.

QFont: Fontset matching fix for X11

QMultiLineEdit: Wordwrap/selection workaround

QTabBar: Refresh layout after style change. Optimization.

QTimer: Zero-timers on Windows speedup

QFileDialog: Correct caption on Windows

QComboBox: Accept only left button. Do proper font propagation.

QMenuBar: Accept only left button

QDialog: Modal dialogs after QApplication::exec() returns

QWidget: Optimization: fewer server roundtrips

QCheckBox: Fixed mask drawing

QSpinBox: Accept '-' key, for negative values

Dnd: Allow disabling on X11

QFontDatabase: Use QApplication's charset as default,
and fixed garbage on Win2000

23 years agoUpdate Packages.txt to reflect reality - there has been a way of
agc [Fri, 30 Jun 2000 10:23:28 +0000 (10:23 +0000)]
Update Packages.txt to reflect reality - there has been a way of
installing X11 packages in ${LOCALBASE} for a while now.
Document the new X11PREFIX definition, which points to X11BASE by
default, or LOCALBASE if xpkgwedge is installed.

23 years agoMake this package xpkgwedge-safe by using the new X11PREFIX definition
agc [Fri, 30 Jun 2000 10:04:48 +0000 (10:04 +0000)]
Make this package xpkgwedge-safe by using the new X11PREFIX definition
in preference to X11BASE when trying to find the installed location of
X11 libraries, programs and headers (which will change if xpkgwedge is
installed).

[X11BASE reflects the location of the X11 libs, headers and programs.
X11PREFIX reflects the installed location of X11 packages.]

23 years agoDon't use kvm_read for cp_time, use sysctl instead.
wiz [Fri, 30 Jun 2000 03:13:37 +0000 (03:13 +0000)]
Don't use kvm_read for cp_time, use sysctl instead.
Patch provided by Simon Burge; thanks to Dan McMahill for further testing.

23 years agoReplace one occurence of "$NetBSD$" by something that won't be replaced
hubertf [Fri, 30 Jun 2000 01:56:08 +0000 (01:56 +0000)]
Replace one occurence of "$NetBSD$" by something that won't be replaced
by CVS.

23 years agoAdd support for timestamps.
jwise [Thu, 29 Jun 2000 14:26:40 +0000 (14:26 +0000)]
Add support for timestamps.

23 years agocorrect typo in commented out perl5-current entry
wiz [Thu, 29 Jun 2000 10:08:11 +0000 (10:08 +0000)]
correct typo in commented out perl5-current entry

23 years agoadd commented out i386-cygwin32
wiz [Thu, 29 Jun 2000 10:06:49 +0000 (10:06 +0000)]
add commented out i386-cygwin32

23 years agoUpdate to support C++ in a different way to pkglibtool. There is no
skrll [Thu, 29 Jun 2000 08:06:06 +0000 (08:06 +0000)]
Update to support C++ in a different way to pkglibtool. There is no
--cplusplus option is should just work. Thanks to Todd Verling for
help with this.

I've been sitting on this update while I played with
deplibs_check_method for a.out. There seems to be a problem related
to dlopen stuff if file_magic is used. Still investigating.

Version bumped to nb4.

23 years agoFix saving of user-defined colors. Patches by Brian Smith supplied in
tron [Thu, 29 Jun 2000 07:20:41 +0000 (07:20 +0000)]
Fix saving of user-defined colors. Patches by Brian Smith supplied in
PR pkg/10470 by Jim Bernard.

23 years agoAnd check in new checksum for patch-bd.
wrstuden [Thu, 29 Jun 2000 03:03:07 +0000 (03:03 +0000)]
And check in new checksum for patch-bd.

23 years agoMake work with recent changes to lint which pays attention to the
wrstuden [Thu, 29 Jun 2000 03:01:36 +0000 (03:01 +0000)]
Make work with recent changes to lint which pays attention to the
value of $CC.

23 years agoAdd library dependencies on libtool link-command line, so that they
wiz [Wed, 28 Jun 2000 23:18:30 +0000 (23:18 +0000)]
Add library dependencies on libtool link-command line, so that they
get properly recorded in the library.

23 years agoInclude bsd.prefs.mk for proper handling of NO_EXTRA_FONTS.
wiz [Wed, 28 Jun 2000 21:50:24 +0000 (21:50 +0000)]
Include bsd.prefs.mk for proper handling of NO_EXTRA_FONTS.
Problem report and fix by SUNAGAWA Keiki <kei_sun@ba2.so-net.ne.jp> in
pkg/10467.

23 years agoeliminate a few more makes from being forked off in the clean-depends area
dmcmahill [Wed, 28 Jun 2000 17:35:53 +0000 (17:35 +0000)]
eliminate a few more makes from being forked off in the clean-depends area

23 years agoonly clean depends with the "clean-depends" target, not the top level
dmcmahill [Wed, 28 Jun 2000 16:39:23 +0000 (16:39 +0000)]
only clean depends with the "clean-depends" target, not the top level

23 years agorework how the DEPENDS tree is traversed in the 'clean-depends' target.
dmcmahill [Wed, 28 Jun 2000 16:05:44 +0000 (16:05 +0000)]
rework how the DEPENDS tree is traversed in the 'clean-depends' target.
now, each branch is only traversed once instead of possibly multiple times.

depending on the size of the DEPENDS list, the speedup is _huge_.  For example
   make clean CLEANDEPENDS=yes
in x11/gnome now takes around 12 minutes instead of 4 hours on a DECstation
5000/240.

Thanks to Hubert for help and suggestions on this.  Look for more changes to
come as this same problem exists in other areas.

23 years agoRemove the user setting of the USE_LOCALBASE_FOR_X11 definition.
agc [Wed, 28 Jun 2000 15:02:33 +0000 (15:02 +0000)]
Remove the user setting of the USE_LOCALBASE_FOR_X11 definition.
(Users can still set it if they want, but it won't make much
difference).

In bsd.pkg.mk, check for the presence of the xpkgwedge package to
determine whether to use LOCALBASE for X11 programs.  Set
_USE_LOCALBASE_FOR_X11 (an internal definition) if xpkgwedge is
installed. Remove BUILD_DEPENDS on xpkgwedge (it would always have
been true anyway).

Add a new X11PREFIX definition, which reflects the PREFIX for X11
packages, and set it to LOCALBASE or X11BASE accordingly.

Remove all references to USE_LOCALBASE_FOR_X11 from the xpkgwedge
package.

In all, make the installation of xpkgwedge a tad less clumsy.

23 years agoadd & enable pkgdiff
wiz [Wed, 28 Jun 2000 01:43:34 +0000 (01:43 +0000)]
add & enable pkgdiff

23 years agoImport of pkgdiff & friends, some tools for easier patch creation
wiz [Wed, 28 Jun 2000 01:42:43 +0000 (01:42 +0000)]
Import of pkgdiff & friends, some tools for easier patch creation
and maintenance.

23 years agoMerge from vendor branch TNF:
wiz [Wed, 28 Jun 2000 01:42:43 +0000 (01:42 +0000)]
Merge from vendor branch TNF:
Import of pkgdiff & friends, some tools for easier patch creation
and maintenance.

23 years agoUpdate to pre-release 4.50D. Fixes pkg/10461.
wiz [Wed, 28 Jun 2000 00:40:45 +0000 (00:40 +0000)]
Update to pre-release 4.50D. Fixes pkg/10461.
BSD-relevant changes:
o Updated FreeBSD, NetBSD, NeXTSTEP, OpenBSD, and OpenStep support to
  report "no PCB" and the values of the SO_CANTSENDMORE and
  SO_CANTRCVMORE state flags when a socket structure has no inpcb
  pointer.
o Upgraded support for FreeBSD 5.0-CURRENT.  Ben Smithurst
  <ben@scientia.demon.co.uk> supplied patches and did testing.  David
  O'Brien <obrien@NUXI.com> supplied a test system.  The update included
  dropping the Fctty part of file descriptor file system support,
  conditional on a Configure script test.  I propagated those changes to
  BSDI, NetBSD, and OpenBSD in anticipation of their having the
  modification in the future.
o Added support for 64 bit file sizes and offsets on BSDI, FreeBSD,
  NetBSD, and OpenBSD, based on a report from Dan Nelson
  <dnelson@emsphone.com>.  Dan supplied a patch and did FreeBSD testing.
o Added Configure script recognition of NetBSD 1.5, based on a report
  from Andrew Brown <atatat@atatdot.net>.

23 years ago * some whitespace fix
hubertf [Tue, 27 Jun 2000 20:14:45 +0000 (20:14 +0000)]
 * some whitespace fix
 * s/.MAKEFLAGS/MAKEFLAGS/ in one place
 * add check-shlibs target. Need to at least document that later. :)
   (Should be added at end of root-install target, to check if the pkg's
   binaries/libs will find the shared libs they need)

23 years agoAdd update_dat script missing from previous commit
rh [Tue, 27 Jun 2000 10:18:48 +0000 (10:18 +0000)]
Add update_dat script missing from previous commit

23 years agoUpdate uvscan-dat to 4083. Changes include detection of new viruses and an
rh [Tue, 27 Jun 2000 10:18:07 +0000 (10:18 +0000)]
Update uvscan-dat to 4083.  Changes include detection of new viruses and an
update_dat script for downloading new dat files.

23 years agoRemove RCS Id from contect in "patch-ae" to get a valid patch checksum.
tron [Tue, 27 Jun 2000 08:37:41 +0000 (08:37 +0000)]
Remove RCS Id from contect in "patch-ae" to get a valid patch checksum.

23 years agoRegen.
tron [Tue, 27 Jun 2000 08:34:38 +0000 (08:34 +0000)]
Regen.

23 years agoUse "ncurses" under NetBSD 1.4 to get the curses version of "tali".
tron [Tue, 27 Jun 2000 08:30:48 +0000 (08:30 +0000)]
Use "ncurses" under NetBSD 1.4 to get the curses version of "tali".

23 years agoUse Brian's "netbsd.org" e-mail address as maintainer.
tron [Tue, 27 Jun 2000 08:17:46 +0000 (08:17 +0000)]
Use Brian's "netbsd.org" e-mail address as maintainer.

23 years agoFix "xosview" to build under NetBSD 1.5 again.
tron [Tue, 27 Jun 2000 08:15:51 +0000 (08:15 +0000)]
Fix "xosview" to build under NetBSD 1.5 again.

23 years agoRemove duplicate slash in master site list which breaks at least
tron [Tue, 27 Jun 2000 06:15:12 +0000 (06:15 +0000)]
Remove duplicate slash in master site list which breaks at least
downloads from "ftp.sunet.se".

23 years agoUpdate distname to reflect 4.0 -> 4.1 bump.
kleink [Tue, 27 Jun 2000 05:03:49 +0000 (05:03 +0000)]
Update distname to reflect 4.0 -> 4.1 bump.

23 years agofix ELF lib paths
hubertf [Tue, 27 Jun 2000 03:18:03 +0000 (03:18 +0000)]
fix ELF lib paths

23 years agoadd USE_LIBTOOL and LTCONFIG_OVERRIDE since the pkg uses libtool
dmcmahill [Tue, 27 Jun 2000 02:33:16 +0000 (02:33 +0000)]
add USE_LIBTOOL and LTCONFIG_OVERRIDE since the pkg uses libtool

23 years agofix ELF lib paths
hubertf [Tue, 27 Jun 2000 01:55:16 +0000 (01:55 +0000)]
fix ELF lib paths

23 years agoFix to confirm to hier(7), PKGLIBTOOL->LIBTOOL
hubertf [Tue, 27 Jun 2000 01:32:14 +0000 (01:32 +0000)]
Fix to confirm to hier(7), PKGLIBTOOL->LIBTOOL

23 years agoAdd all libraries to link step of gdk_imlib.
wiz [Tue, 27 Jun 2000 01:13:49 +0000 (01:13 +0000)]
Add all libraries to link step of gdk_imlib.
Adresses pkg/10453.

23 years agoUpdate to 4.1. Changes:
hubertf [Tue, 27 Jun 2000 00:51:42 +0000 (00:51 +0000)]
Update to 4.1. Changes:

No user-visible changes; removed some 4.0 future use comments that had
accidentally been left in the DTD and fixed a couple of incorrect FPIs.
See 40chg.txt for a list of the significant changes.

23 years agounify esound dependencies in gnome packages
wiz [Tue, 27 Jun 2000 00:29:10 +0000 (00:29 +0000)]
unify esound dependencies in gnome packages

23 years agorename Size* to .Size*
wiz [Mon, 26 Jun 2000 23:53:33 +0000 (23:53 +0000)]
rename Size* to .Size*

23 years agoRemove obvious pasto.
jlam [Mon, 26 Jun 2000 23:07:37 +0000 (23:07 +0000)]
Remove obvious pasto.

23 years agomake sure local font directory exists before trying to install to it.
dmcmahill [Mon, 26 Jun 2000 22:12:35 +0000 (22:12 +0000)]
make sure local font directory exists before trying to install to it.

23 years agoUpdate gnumeric to 0.56. In addition to the following changes, this also
rh [Mon, 26 Jun 2000 21:55:50 +0000 (21:55 +0000)]
Update gnumeric to 0.56.  In addition to the following changes, this also
fixes PR 10454 by Jasper Wallace.

Changes include:
 * Stf importer bug fixes and enhancements.
 * Speedup workbook exit, copy/paste.
 * Improve cut/copy/paste.
 * Improve col/row resize.
 * Undo for copy/paste, autofill, col/row resize
 * More work on formula guru.
 * Extend auto-fill to support months and years.
 * Some translation bugs.
 * Tooltips for combo boxes.
 * Synchronize list selection with entry field in combo boxes.
 * Make  units in print setup dialog user selectable.
 * More dialog polishing.
 * Sorting now moves styles with the elements
 * Sorting now detects headers when sorting
 * Added two perl scripts for translation help/maintainence.
   Also added is a README.tools file, explaining how to use these.
 * Fix tricky Excel import problem.
 * Split libole2 out into a standalone package.
 * Added support for autocompletion.
 * Changed a bunch of internals to work with StyleFormats instead
   of throwing strings around.
 * Improved the optimization of styles.
 * Fix ROUND.
 * Make sorts stable.
 * Make sorts faster.
 * Updated: da (Kenneth), de (Karl), ja (Oka/Nakai), no
   (Kjartan), pt (Jesus), ru (Valek), maybe more.
 * Update not new, but not mentioned the last time: it (Leandro).

23 years agoAdd and enable libole2
rh [Mon, 26 Jun 2000 21:39:56 +0000 (21:39 +0000)]
Add and enable libole2

23 years agoInitial import of libole2-0.1.5, an OLE2 streams parsing library.
rh [Mon, 26 Jun 2000 21:38:18 +0000 (21:38 +0000)]
Initial import of libole2-0.1.5, an OLE2 streams parsing library.

23 years agoMerge from vendor branch TNF:
rh [Mon, 26 Jun 2000 21:38:18 +0000 (21:38 +0000)]
Merge from vendor branch TNF:
Initial import of libole2-0.1.5, an OLE2 streams parsing library.

23 years ago- make this work on sparc. The original code used #ifdef(__sparc__) to do
dmcmahill [Mon, 26 Jun 2000 21:02:09 +0000 (21:02 +0000)]
- make this work on sparc.  The original code used #ifdef(__sparc__) to do
  SunOS/Solaris specific stuff.

23 years agoUpdate dependency on guile-slib to 2c8.
jlam [Mon, 26 Jun 2000 20:52:33 +0000 (20:52 +0000)]
Update dependency on guile-slib to 2c8.

23 years agoAdd patches to fix a possible buffer overflow attacks with the "SITE EXEC"
rh [Mon, 26 Jun 2000 20:09:35 +0000 (20:09 +0000)]
Add patches to fix a possible buffer overflow attacks with the "SITE EXEC"
command.
Bump revision to 2.6.0nb1

23 years ago-add sparc and mipsel support. Thanks to soda for help on the mipsel part.
dmcmahill [Mon, 26 Jun 2000 18:05:46 +0000 (18:05 +0000)]
-add sparc and mipsel support.  Thanks to soda for help on the mipsel part.

-it has been suggested (Soren) that the routines in sysdeps/freebsd/prockernel.c
 are of minimal use anyway and should just be disabled.

-it has also been suggested (Soren) that the right way anyway is to use the KERN_PROC2 sysctl.
 I do not have a recent enough machine to try this (this sysctl was not part of
 NetBSD-1.4.2).

23 years agoUpdate gnucash to 1.4.1
rh [Mon, 26 Jun 2000 17:03:11 +0000 (17:03 +0000)]
Update gnucash to 1.4.1

Changes include:

 * bug fixes
 * translations are loaded correctly
 * totally revamped interface, customizable from within the GUI
 * transaction auto-completion
 * New reporting system, including several new reports and much
   improved existing ones
 * internationalisation
 * new Japanese translations
 * updated documentation
 * fixes for 64-bit architectures
 * user interface improvements

23 years agoInitial import of g-wrap-0.9.4, a tool for importing types, functions, and
rh [Mon, 26 Jun 2000 16:57:09 +0000 (16:57 +0000)]
Initial import of g-wrap-0.9.4, a tool for importing types, functions, and
constants into guile.

23 years agoMerge from vendor branch TNF:
rh [Mon, 26 Jun 2000 16:57:09 +0000 (16:57 +0000)]
Merge from vendor branch TNF:
Initial import of g-wrap-0.9.4, a tool for importing types, functions, and
constants into guile.