Commit graph

45390 commits

Author SHA1 Message Date
tron
bf2ee3a526 Add support for OpenSSL 0.9.7b shipped with NetBSD-current. 2003-07-24 20:18:24 +00:00
wiz
06995dc024 Note new bkedit package. 2003-07-24 20:18:23 +00:00
wiz
d8e9536777 Add and enable bkedit. 2003-07-24 20:15:20 +00:00
wiz
4c1a9d6a1c Initial import of bkedit, a bookmark editor.
bkedit is an easy to use bookmark manager and editor. The program
can read, write, edit, create, manage and convert the bookmarks
of the most popular browsers. There is also a simple Drag & Drop
interface for adding new bookmarks from a running browser in a
very comfortable way.
2003-07-24 20:14:48 +00:00
jtb
0f2b283283 Note the update of oo2c to 2.0.10.
From the release notes:

This release is unfortunately a bit late and incorporates a whole
bunch of very different changes.  The biggest part is an update of the
libraries to incorporate the string types from module `Object' into
ADT:*, IO:*, OS:*, URI:*, and (partially) XML:* modules.  The internal
encoding of Unicode strings has been switched to UTF-16.  Support for
the MacOS X and Win32 platforms has been improved.

There were several changes to the symbol file format.  Please remove
any old symbol files that are still around.
  __________________________________________________________________________

(Object, ADT:StringBuffer): Internal representation of Unicode strings
is now UTF-16.  `String32' is gone and has been replaced with
`String16'.  MAX(UCS4CHAR) is 10FFFFX, the largest possible Unicode
code point.

(Object:BigInt): Renamed string base constructors to follow the naming
conventions from module `Object'.

(ADT:ArrayList, ADT:Dictionary): Have been converted to parametric
types.  One known side-effect of this is that a type guard
`Dictionary.Dictionary' can no longer be applied to instances of
`Object.Object'.  The reason for this is that the run-time type
information does not include information on type parameters and
therefore cannot test for particular type arguments.  (The necessary
run-time information may be added later.)

(ADT:Storable, ADT:Object:Storage): The parameter type of the methods
ReadObject() and WriteObject() has been changed back to
`Object.Object'.  The methods now handle instances of `Object.String'
as well.

(IO:Address): `UnknownHostException' is now derived from `IO.Error'.

(IO:Buffer): Introduce method `ReadLineLF()', to read a single line of
8-bit characters from a channel, including the termination Ascii.lf
character.

(IO:FileChannel): File name arguments are now of type STRING.  They
are converted to sequences of bytes using OS:Path.Encode().  Dito for
system() from OS:ProcessManagement.

(IO:Socket, IO:SocketChannel): Non-blocking connect is implemented.

(OS:Path): Changed functions to work on STRINGs.  Changed function
names to follow the Oberon naming conventions.  Dito for GetCwd() from
OS:ProcessParameters.

(Exception): Fixed a bug in PopContext(), which lead to stack
corruption if more than one TRY context is popped from the stack.
Also some minor cleanups.

(HashCode): Collects all hash functions for the various basic data
types.

(URI, URI:*): The URI modules use the string types from `Object',
instead of defining their own variant of this theme.  Error signalling
has been converted to Exception.ParseError.  Please note that the
interface of these modules may be in for further changes later.  The
URI changes also propgate into the XML modules.

(oo2c): New command --package-installed (tests if a package is
present) and --list-packages (list all installed packages).

(oo2c): The "Pascal" calling convention, and the CSTRING and ALIGNX
flags have been ported to v2 by Stewart Greenhill.  This is primarily
used for native Windows DLLs.

(oo2c): There is now support for MaxOS X style "framework" libraries
(contributed by Tim Teulings).

(oo2c): The documentation strings of a module have been removed from
the symbol file `M.Sym', and are now stored in a separate file `M.Doc'
(in the same directory as `M.Sym').  Compilation commands only read
the `M.Sym' part.  Also, compilation of huge interface modules is now
much faster.

(oo2c): Constant folding on floating point expressions is now enabled.

(oo2c): Various minor bugs with parametric types have been fixed.
around.
2003-07-24 18:42:46 +00:00
jtb
2151669bff Update to version 2.0.10.
From the release notes:

This release is unfortunately a bit late and incorporates a whole
bunch of very different changes.  The biggest part is an update of the
libraries to incorporate the string types from module `Object' into
ADT:*, IO:*, OS:*, URI:*, and (partially) XML:* modules.  The internal
encoding of Unicode strings has been switched to UTF-16.  Support for
the MacOS X and Win32 platforms has been improved.

There were several changes to the symbol file format.  Please remove
any old symbol files that are still around.
  __________________________________________________________________________

(Object, ADT:StringBuffer): Internal representation of Unicode strings
is now UTF-16.  `String32' is gone and has been replaced with
`String16'.  MAX(UCS4CHAR) is 10FFFFX, the largest possible Unicode
code point.

(Object:BigInt): Renamed string base constructors to follow the naming
conventions from module `Object'.

(ADT:ArrayList, ADT:Dictionary): Have been converted to parametric
types.  One known side-effect of this is that a type guard
`Dictionary.Dictionary' can no longer be applied to instances of
`Object.Object'.  The reason for this is that the run-time type
information does not include information on type parameters and
therefore cannot test for particular type arguments.  (The necessary
run-time information may be added later.)

(ADT:Storable, ADT:Object:Storage): The parameter type of the methods
ReadObject() and WriteObject() has been changed back to
`Object.Object'.  The methods now handle instances of `Object.String'
as well.

(IO:Address): `UnknownHostException' is now derived from `IO.Error'.

(IO:Buffer): Introduce method `ReadLineLF()', to read a single line of
8-bit characters from a channel, including the termination Ascii.lf
character.

(IO:FileChannel): File name arguments are now of type STRING.  They
are converted to sequences of bytes using OS:Path.Encode().  Dito for
system() from OS:ProcessManagement.

(IO:Socket, IO:SocketChannel): Non-blocking connect is implemented.

(OS:Path): Changed functions to work on STRINGs.  Changed function
names to follow the Oberon naming conventions.  Dito for GetCwd() from
OS:ProcessParameters.

(Exception): Fixed a bug in PopContext(), which lead to stack
corruption if more than one TRY context is popped from the stack.
Also some minor cleanups.

(HashCode): Collects all hash functions for the various basic data
types.

(URI, URI:*): The URI modules use the string types from `Object',
instead of defining their own variant of this theme.  Error signalling
has been converted to Exception.ParseError.  Please note that the
interface of these modules may be in for further changes later.  The
URI changes also propgate into the XML modules.


(oo2c): New command --package-installed (tests if a package is
present) and --list-packages (list all installed packages).

(oo2c): The "Pascal" calling convention, and the CSTRING and ALIGNX
flags have been ported to v2 by Stewart Greenhill.  This is primarily
used for native Windows DLLs.

(oo2c): There is now support for MaxOS X style "framework" libraries
(contributed by Tim Teulings).

(oo2c): The documentation strings of a module have been removed from
the symbol file `M.Sym', and are now stored in a separate file `M.Doc'
(in the same directory as `M.Sym').  Compilation commands only read
the `M.Sym' part.  Also, compilation of huge interface modules is now
much faster.

(oo2c): Constant folding on floating point expressions is now enabled.

(oo2c): Various minor bugs with parametric types have been fixed.
around.
2003-07-24 18:39:14 +00:00
wiz
7cafdcb95b Convert to buildlink2 -- fixes PR 22222 from Marko Schuetz, who
also provided the buildlink2ification.
2003-07-24 17:47:25 +00:00
jschauma
bc858212a3 Note import of games/spider 2003-07-24 17:25:38 +00:00
jschauma
6e2baa8f05 Add/enable spider 2003-07-24 17:24:23 +00:00
jschauma
49ad3cbed1 Initial import of games/spider provided by Greg A. Woods in PR pkg/19284:
Spider is a challenging double decked solitaire game.  Unlike most
soilitaire games, skill is just as important as luck.

The X11 version of spider is based on the NeWS version by Don Woods,
and uses the same save file format and card images.
2003-07-24 17:23:36 +00:00
jmmv
ce19168e92 Note revision bump for xmms-osd to 2. 2003-07-24 17:18:42 +00:00
jmmv
248dc57105 Do not build the static version of the xmms-osd plugin (it's useless).
Bump revision of its package (xmms-osd) to 2.
2003-07-24 17:17:36 +00:00
jschauma
e45c69983b Note import of math/djbfft 2003-07-24 16:50:20 +00:00
jschauma
9e69a29f3f Add/enable djbfft 2003-07-24 16:49:07 +00:00
jschauma
bfb9e6ea13 Initial import of math/djbfft provided by Chris Lloyd in PR pkg/19258:
djbfft is an extremely fast library for floating-point convolution.
The current version holds most of the speed records for double-precision
FFTs on general-purpose computers.

djbfft provides power-of-2 complex FFTs, real FFTs at twice the
speed, and fast multiplication of complex arrays. Single precision
and double precision are equally supported.
2003-07-24 16:47:52 +00:00
jtb
da91049aaf Install the include file to ${PREFIX}/include/algae. Fixes leftover
issue from i386 bulk build.
2003-07-24 16:28:55 +00:00
jtb
6799c4bfd2 hevea only depends on ocaml to build. 2003-07-24 16:18:38 +00:00
jtb
c7e51e59e9 Add a missing info file (from i386 bulk build leftovers). 2003-07-24 16:06:29 +00:00
jtb
43ab607e8a Fix logic in determining if pthreads is required. 2003-07-24 16:01:41 +00:00
jmmv
220c1f9e4e Note addition of xmms-arts, version 0.4. 2003-07-24 14:28:32 +00:00
jmmv
81c6c64e2c Add and enable xmms-arts. 2003-07-24 14:26:19 +00:00
jmmv
43037eb712 Initial import of xmms-arts, version 0.4:
xmms-arts is an output plugin for the XMMS program that allows it to output
sound using the aRts sound daemon (mainly used by the KDE desktop).
2003-07-24 14:25:35 +00:00
wiz
b2f2aaa999 + TeXmacs-1.0.1.19, ethereal-0.9.14, evilwm-0.99.15 [pkg/22239],
iozone-3.191, tin-1.6.0.
2003-07-24 13:42:11 +00:00
grant
e3e13fc5f3 fix previous: pass _BLNK_ICONV_LDFLAGS instead of -liconv so libsablot
can once again find the iconv functions on systems without iconv
in libc.
2003-07-24 13:35:28 +00:00
drochner
08c25fadbf add python libs 2003-07-24 13:31:13 +00:00
drochner
85bc80d457 add py-kjbuckets-2.2, a fast hashtable implemtation 2003-07-24 13:29:59 +00:00
drochner
7de548e722 add py-pqueue-0.2, a fast priority-queue implementation 2003-07-24 13:28:16 +00:00
tron
cdef5ac9e1 Remove "trium" skin which is not available any more. 2003-07-24 12:56:52 +00:00
seb
17cad0df4b Add TEST_TARGET. 2003-07-24 12:10:29 +00:00
jmmv
1665025119 Note update of buildtool to 0.12.
Note addition of buildtool-doc, version 0.12.
2003-07-24 10:16:59 +00:00
jmmv
46013339aa Add and enable buildtool-doc. 2003-07-24 10:14:14 +00:00
jmmv
257bce7f58 Initial import of buildtool-doc, version 0.12:
This package provides the full User's and Developer's manual for the Buildtool
portable BSD-like build infrastructure.  Documentation is installed in HTML
format only.
2003-07-24 10:13:39 +00:00
jmmv
f616762b62 Update to 0.12:
Released on 2003/07/24, its state was alpha.

     o   The bt_wizard module was added, which creates the basic structure
         needed for a project based on a serie of interactive questions.

     o   Added cache support for many checks in bt_config.  This makes the
         program run a lot faster if checks are duplicated, and more impor-
         tant, lets the administrator define check results beforehand in the
         system wide bt_config.conf configuration file.

     o   The bt_swcgen module was added, which aids the system administrator
         in the creation of system-wide configuration files for bt_config
         (that is, files that store check results to avoid rechecking the same
         thing over and over again).

     o   The buildtool.d/config_init file was deprecated.  The entire configu-
         ration script is now read from a single file, buildtool.d/config, as
         the old framework was confusing and error prone.  Compatibility will
         be kept for some time.

     o   The TeXinfo documentation was removed.  The manual is now distributed
         in its own `buildtool-doc' package, written using Docbook/XML.

     o   The buildtool.spec file was added, needed to create RPM packages.  It
         actually supports building binary packages for RedHat Linux and SuSE
         Linux.

     o   Improved user experience: better usage messages and support for long
         options added.

     o   A developer mode was added to all configure scripts (disabled by de-
         fault).  It enables extra functionality during the build process,
         ideal for developers but which may annoy end users.

     o   Removed license description files.  bt_dist will suggest a COPYING
         file instead, as this is the most common practice suggested by li-
         censes.

     o   New standard checks in the bt_config module, specially
         bt_check_prog_m4() and bt_check_attribute().

     o   Code cleanup and simplification (using M4 in some places).
2003-07-24 10:12:30 +00:00
seb
4ebad82337 Workaround a bug in sparc64 -current's f77: disable f77 checks altogether it
is not needed anyway for this package.
2003-07-24 09:21:18 +00:00
agc
6a41393e05 Attempt to be slightly more portable by using libtool to create the shared
object and install it.
2003-07-24 08:42:29 +00:00
wennmach
04dd0e8050 regen distinfo after removal of patches/patch-aa 2003-07-24 08:39:58 +00:00
wiz
df9c66c774 Note pkglint-3.57 update. 2003-07-24 07:55:17 +00:00
wiz
a175673769 Check if HOMEPAGE URL has a trailing slash if it only consists of a hostname.
From Ben Collver in PR 22215.
Bump to 3.57.
2003-07-24 07:54:45 +00:00
agc
002af730c0 Initial import of Paulus's dirdiff-1.6 into the NetBSD Packages Collection.
dirdiff is a graphical tool to display the differences(a la diff)
between files in directories.  Given two or more directory trees,
dirdiff will display the differences between them in various glorious
colors.  It provides merging and the creation of patches.
2003-07-24 07:10:10 +00:00
agc
efc0cfc015 Add and enable dirdiff 2003-07-24 07:09:06 +00:00
agc
c1a9a58490 Initial import of Paulus's dirdiff-1.6 into the NetBSD Packages Collection.
dirdiff is a graphical tool to display the differences(a la diff)
between files in directories.  Given two or more directory trees,
dirdiff will display the differences between them in various glorious
colors.  It provides merging and the creation of patches.
2003-07-24 07:08:20 +00:00
jmc
e324d453aa Various patches to make this work with rpcgen that exports _rpcsvcdirty
incorrectly
2003-07-24 06:40:54 +00:00
wiz
ce8e7daf54 + evilwm-0.99.15, mailman-2.1.2 [pkgsrc-wip], rdiff-backup-0.12.1. 2003-07-24 06:32:18 +00:00
grant
d97aa3a86e s/export -n/unset/ in the install script.
fixes install on NetBSD (stupid bash'isms).
2003-07-24 06:29:42 +00:00
atatat
783fa5270c A strange meta-package of a sort, rdigest is implemented as a jumbo
patch to the well-known digest package.  The output is the same for
files, but if rdigest is given a directory as an argument, it will
recursively checksum the directory in such a manner as to:

(1) give a repeatable checksum
(2) with no regard for file ownership
(3) or timestamps
(4) or modes
(5) while taking into account empty files and directories

such that the checksum of an extracted tar file will match the
checksum of the same tree as retrieved via cvs, or two allegedly
matching trees from different cvs servers, etc.
2003-07-24 05:21:04 +00:00
atatat
677c3a74db Fix the usage line. Addresses PR pkg/22207. 2003-07-24 00:27:09 +00:00
grant
3b9a5f5e2a fix GCC_VERSION so GCC_ARCHDIR is correctly set.
re-arrange gcc/Makefile a bit to more closely resemble gcc3/Makefile.
2003-07-23 22:30:12 +00:00
jmmv
4634a89e73 Mark all targets that do not correspond to real files with the .PHONY
attribute.
2003-07-23 22:02:48 +00:00
jmc
a6846198c1 Update to 3.9.7l (only one on site at the moment).
I think some of this is duplications but the updates include:

NVidia nForce2 SPDIF output with AC3 passthrough now supported
Added AC3 passthrough support for MIDIMan Delta/Audiophile/2496 series
Intel ICH SPDIF/AC3 passthrough and 2/4/6 multichannel audio fixed
AC3 passthrough support added for Yamaha DSXG, SiS7012, CMI8738, SBLive-Dell,
VIA8233.
Added SPDIF output support for AC97 devices: Sigmatel, Avance, Cirrus logic.
Announcing drivers for MIDIMan Revolution and Envy24HT based soundcards
Support for NetBSD 1.6.1 added
Added support for SBLive 5.1 Dell OEM version
SB Audigy2 support added
Multichannel audio device for VIA8233 added
Fixed up Virtual Mixer loopback recording and ulaw audio
4Front Virtual Mixer now comes standard with the OSS drivers. An advanced
version with builtin equalizers, loopback audio recording, individual volume
control is also available with an extra licensing fee. The basic Virtual Mixer
technology allows users to play upto 4 audio apps at the same time. There is
no special programming required (unlike ESD or aRTsd) as the Virtual
Mixer devices behave exactly like the physcal hardware devices. Virtual Mixer
contains 4Front's proprietary profesional quality sample rate convertors that
handle the mixing of various audio applications.
2003-07-23 21:52:29 +00:00
jmc
d46e28d7a7 Use PKG_SKIP_REASON instead of PKG_FAIL_REASON here if qualifications aren't
met. The same message gets to the user but now it won't show a package as
broken on bulk builds that really is simply unavaiable on a given platform
2003-07-23 20:15:01 +00:00