Commit graph

6025 commits

Author SHA1 Message Date
recht
1605646fc5 update to tla-1.2.1
This is mostly a small fixes release, though some useful stuff
has gotten in:

* Spaces support in filenames (done by cehteh, merged by Tom)
* New version of libneon (ported by yours truly)
* Gobs of small bugs
* Gobs of typos
* NFS revlib fix. (Yes, this is the corrupt inode sigs one)
2004-08-15 18:59:40 +00:00
drochner
6c2b6b2680 add codeville&monotone 2004-08-15 14:47:37 +00:00
drochner
3e530bcf25 import monotone-0.14, another distributed revision control system 2004-08-15 14:38:38 +00:00
drochner
afa0408bb0 import codeville-0.1.7.1, another distributed revision control system
(implemented in Python)
2004-08-15 14:32:27 +00:00
wiz
385d4ac5b1 Update to 0.9:
This version includes support for /dev/poll so that libevent now supports all
fast event mechanisms. It also improves the portability across operating
systems.
2004-08-15 13:17:13 +00:00
minskim
d4bf017ca5 The hash function type can be selected among native, openssl,
libgcrypt, and mhash.  Suggested by gehenna@.
2004-08-15 04:20:59 +00:00
schmonz
879ae41098 Add and enable syncdir. 2004-08-15 00:46:58 +00:00
schmonz
8e3a361f72 Initial import of Bruce Guenter's syncdir library. In order to
portably create the shared library, I've libtoolized it (tested on
NetBSD 2.0_BETA and Darwin 7.5.0).

syncdir is a small library that makes the link() system call
synchronous. This is necessary when using qmail with the queue on
a filesystem that doesn't perform link() synchronously, such as
Linux's ext2fs, Reiserfs, SGI's XFS, and BSD FFS with softupdates.
2004-08-15 00:45:50 +00:00
xtraeme
0904314739 Update devel/glib2 to 2.4.6.
Overview of Changes from GLib 2.4.5 to GLib 2.4.6
=================================================

* Bug fixes [Matthias Clasen, Ray Strode]
* New and updated translations (mn,nb)

Overview of Changes from GLib 2.4.4 to GLib 2.4.5
=================================================

* Fix g_filename_from_uri() to work with non-UTF-8
  filenames  [Robert Ã~Vgren, Matthias Clasen]
* Make GMarkup parser handle of whitespace inside tags
  according to XML 1.1  [Hiroyuki Ikezoe, Matthias]
* Documentation improvements [Soeren Sandmann, Christophe Fergeau,
  Danek Duvall]
* Other bug fixes [Oliver Guntermann, Sven Neumann,
  James Henstridge, Murray Cumming, Matthias, Tommi Komulainen]
* New and updated translations (bg,hi,sq)
2004-08-14 11:24:13 +00:00
jlam
3e75da4566 Add some missing locale files. 2004-08-13 18:57:16 +00:00
jlam
8a2112d4fd Remove unnecessary one-off variable NO_GPROF. 2004-08-13 18:47:49 +00:00
wiz
ef7ebbb2db Update to 1.9.1:
Bugs fixed in 1.9.1:

This release fixes three longstanding bugs.

* Adjust #line directives in `parser.h' (when ylwrap is not used).
  (PR/432)

* Fix definition of YLWRAP when ylwrap is installed in a default
  aux directory found in a parent package.

* Properly recognize AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.

New in 1.9:

* Makefile.in bloat reduction:

  - Inference rules are used to compile sources in subdirectories when
    the `subdir-objects' option is used and no per-target flags are
    used.  This should reduce the size of some projects a lot, because
    Automake used to output an explicit rule for each such object in
    the past.

  - Automake no longer outputs three rules (.o, .obj, .lo) for each
    object that must be built with explicit rules.  It just outputs
    the rules required to build the kind of object considered: either
    the two .o and .obj rules for usual objects, or the .lo rule for
    libtool objects.

* Change to Libtool support:

  - Libtool tags are used with libtool versions that support them.
    (I.e., with Libtool 1.5 or greater.)

  - Automake is now able to handle setups where a libtool library is
    conditionally installed in different directories, as in

      if COND
        lib_LTLIBRARIES = liba.la
      else
        pkglib_LTLIBRARIES = liba.la
      endif
      liba_la_SOURCES = ...

* Changes to aclocal:

  - aclocal now ensures that AC_DEFUNs and AU_DEFUNs it discovers are
    really evaluated, before it decides to include them in aclocal.m4.
    This solves nasty problems with conditional redefinitions of
    Autoconf macros in /usr/share/aclocal/*.m4 files causing extraneous
    *.m4 files to be included in any project using these macros.
    (Calls to AC_PROG_EGREP causing libtool.m4 to be included is the
    most famous instance of this bug.)

  - Do not complain about missing conditionally AC_REQUIREd macros
    that are not actually used.  In 1.8.x aclocal would correctly
    determine which of these macros were really needed (and include
    only these in the package); unfortunately it would also require
    all of them to be present in order to run.  This created
    situations were aclocal would not work on a tarball distributing
    all the macros it uses.  For instance running aclocal on a project
    containing only the subset of the Gettext macros in use by the
    project did not work, because gettext conditionally requires other
    macros.

* Portability improvements:

  - Tar format can be chosen with the new options tar-v7, tar-ustar, and
    tar-pax.  The new option filename-length-max=99 helps diagnosing
    filenames that are too long for tar-v7.  (PR/414)

  - Variables aumented with `+=' are now automatically flattened (i.e.,
    trailing backslashes removed) and then wrapped around 80 colummns
    (adding trailing backslashes).  In previous versions, a long series
    of
      VAR += value1
      VAR += value2
      VAR += value3
      ...
    would result in a single-line definition of VAR that could possibly
    exceed the maximum line length of some make implementations.

    Non-augmented variables are still output as they are defined in
    the Makefile.am.

* Miscellaneous:

  - Support Fortran 90/95 with the new "fc" and "ppfc" languages.
    Works the same as the old Fortran 77 implementation; just replace
    F77 with FC everywhere (exception: FFLAGS becomes FCFLAGS).
    Requires a version of autoconf which provides AC_PROG_FC (>=2.59).

  - Support for conditional _LISP.

  - Support for conditional -hook and -local rules (PR/428).

  - Diagnose AC_CONFIG_AUX_DIR calls following AM_INIT_AUTOMAKE. (PR/49)

  - Automake will not write any Makefile.ins after the first error it
    encounters.  The previous Makefile.ins (if any) will be left in
    place.  (Warnings will not prevent output, but remember they can
    be turned into errors with -Werror.)

  - The restriction that SUBDIRS must contain direct children is gone.
    Do not abuse.

  - The manual tells more about SUBDIRS vs. DIST_SUBDIRS.
    It also gives an example of nested packages using AC_CONFIG_SUBDIRS.
2004-08-13 13:27:06 +00:00
recht
d29dec38a5 Use a build dependency on devel/scons instead of a full dependency
on Python.
2004-08-13 08:21:40 +00:00
cube
e8045881e4 The PLIST was far from complete [hi recht!] (package installed files in
include/ and a locale file).  But since the package's configure script is
rather dumb about shared libraries and gettext catalogs, the best is to
simply disable all of it.

While I'm here, add a buildlink file since it will soon be used by a
package in -wip.
2004-08-13 07:09:01 +00:00
minskim
e18fbbdd4f Add dependency on readline to build on platforms without a native
readline library.
2004-08-13 00:42:31 +00:00
minskim
828f78807a Use openssl hash functions on platforms that don't provide native hash
functions.
2004-08-12 20:46:21 +00:00
minskim
c53f1a6038 Honor *OWN, *GRP, and *MODE.
Bump PKGREVISION due to file permission changes.
2004-08-12 20:37:28 +00:00
adrianp
7fde6b3e6e - update to v1.4.1
- grab maintainership
- ok'ed wiz@, snj@, schmonz@

Lots of changes, please see http://www.akhphd.au.dk/~bertho/cvsgraph/#changes
for full details.

In brief:

- Implement new option to generate proper maps for different levels of HTML.
- Lots of bug fixes
- Implemented folding of empty branches
- Implemented logentry expansions using %l and %L
- You can now instruct CvsGraph to ommit all revisions that are not tagged
- Configuration no longer requires a configuration file
2004-08-10 15:10:50 +00:00
drochner
025fe7fc65 fix handling of wait() return values
(actually, add some error handling)
2004-08-09 10:06:13 +00:00
jschauma
16ee8029e0 s/can not/cannot/
Pointed out by Georg Schwarz in private email.
2004-08-07 19:06:59 +00:00
wiz
d5e69d96ae Update to 0.15.0nb1:
Close file descriptor leak; make --list-all work if you have more pc
files than the file descriptor limit allows.

Submitted to freedesktop bugzilla as
	http://freedesktop.org/bugzilla/show_bug.cgi?id=1006
2004-08-07 12:14:09 +00:00
minskim
a470f37dee Fix the GNOME bug 129741, which crashes many applications, most
notably web browsers.  Patches obtained from Pango CVS.

Bump PKGREVISION.
2004-08-06 02:09:38 +00:00
drochner
1cd4763fd2 use MASTER_SITE_SOURCEFORGE instead of an arbitrary mirror 2004-08-05 13:38:00 +00:00
schmonz
00f6a8a6af Sort. 2004-08-05 05:40:51 +00:00
agc
013c558a79 Fix the path to p5-Apache-Test 2004-08-04 17:31:42 +00:00
abs
876cf499e8 Update cpuflags to 0.75
- all:
    Implement 'cpuflags -v' which indicates the values used to determine flags
    Sync the latest fixup options for older gccs
  - cpuflags.NetBSD:
    Use -march=pentium3m and -march=pentium4m for gcc 3.4.x
    Set -mcpu=hypersparc for RT620/625 and -mcpu=cypress for L64811
  - cpuflags.Linux:
    Handle two different Celeron cases (thanks to Marc Recht & Jeremy C. Reed)
2004-08-04 11:39:43 +00:00
recht
02a2b8253c update to apache-ant-1.6.2
Ant 1.6.2 fixes a large number of bugs and adds a number of features which
were asked for by users on Bugzilla.

Important changes (for a complete list see the included WHATSNEW document):

Changes that could break older environments:
--------------------------------------------

* The import task used the canonical version of a file path. This
  has been changed to use the absolute path. Bugzilla 28505.

* ant-xalan2.jar has been removed since the only class contained in it
  didn't depend on Xalan-J 2 at all.  Its sole dependency has always
  been TraX and so it has been merged into ant-trax.jar.

* All exceptions thrown by tasks are now wrapped in a buildexception
  giving the location in the buildfile of the task.

* Nested elements for namespaced tasks and types may belong to the
  Ant default namespace as well as the task's or type's namespace.

* <junitreport> will very likely no longer work with Xalan-J 1.

  Note that Xalan-J 1 has been deprecated for a very long time and we
  highly recommend that you upgrade.

  If you really need to continue using Xalan-J 1, please copy the
  junit-frames-xalan1.xsl from the distribution's etc directory as
  junit-frames.xsl into a new directory and use the task's styledir
  attribute to point to.  This is the last version of the XSLT
  stylesheet that is expected to be compatible with Xalan-J 1.
2004-08-04 08:49:09 +00:00
snj
d56dd88dea Bump PKGREVISION for the additional file that is now installed by the ucl
package.
2004-08-03 16:36:13 +00:00
cube
3a37c5c2c4 Add rt3. 2004-08-03 15:36:00 +00:00
cube
eecedbbfaf Initial import of rt3, version 3.2.1, into the NetBSD Packages
Collection.

This package is based on the work of Dieter Roelants in pkgsrc-wip, with
a lot of changes to make it proper WRT pkgsrc.

RT is an industrial-grade ticketing system. It lets a group of
people intelligently and efficiently manage requests submitted by
a community of users. RT is used by systems administrators, customer
support staffs, NOCs, developers and even marketing departments at
over a thousand sites around the world.
2004-08-03 15:33:48 +00:00
mycroft
a9f78fa3e2 Install the uclpack "example". 2004-08-03 14:27:51 +00:00
recht
9fc9aa7335 update to 0.8.14
Version 0.8.14   - 6 June 2004
  * Fix spurious warning in Python 2.3+ when doing a,b = 1,2
  * Add warning to check for "if s.find(str):"
      this should be "if s.find(str) >= 0:" when s is a string
  * Fix spurious warning when using augmented assignment (e.g., x += x)
  * Fix spurious warning when doing x = not x
  * Fix spurious warning for invalid arg count when calling a staticmethod
  * Fix spurious warning for setting a variable to itself when:  x, y, z = x
  * Fix spurious warning when doing some binary operations:  self.a ^ self.b
  * Fix crash in STORE_ATTR with some list comprehensions in Python 2.2
  	e.g., a.a = [x for x in range(2) if x > 1]
  * Support Tk 8.4 and above in the GUI (change col= to column=)
2004-08-03 12:07:27 +00:00
jlam
cc9ef9f677 Update devel/p5-IO-stringy to 2.109. Changes from version 2.108 include
making IO::Scalar::getline work with ref to int.
2004-08-02 21:36:48 +00:00
drochner
c217953ba0 update to 2.0.2
2.0 was a major feature release - too many to list here, see the
included ChangeLog.* files for details.
2.0.x fixed bugs.
2004-08-02 13:08:09 +00:00
jmmv
8fd6a53938 Update to 2.4.5:
* Fix g_filename_from_uri() to work with non-UTF-8 filenames
  [Robert Ögren, Matthias Clasen]
* Make GMarkup parser handle of whitespace inside tags according to XML 1.1
  [Hiroyuki Ikezoe, Matthias]
* Documentation improvements [Soeren Sandmann, Christophe Fergeau, Danek
  Duvall]
* Other bug fixes [Oliver Guntermann, Sven Neumann, James Henstridge, Murray
  Cumming, Matthias, Tommi Komulainen]
* New and updated translations (bg,hi,sq)
2004-07-30 22:14:18 +00:00
cube
a1854a30bd Add p5-Module-Versions-Report, p5-HTML-Scrubber and p5-Tree-Simple. 2004-07-30 13:00:59 +00:00
cube
e9727062b6 Initial import of p5-Tree-Simple, version 1.06, into the NetBSD Packages
Collection.

Perl extension to create and manipulation tree objects.
2004-07-30 12:57:40 +00:00
cube
66663692db Initial import of p5-Module-Versions-Report, version 1.02 into the NetBSD
Packages Collection.

Module::Versions::Report allows a PERL program to list all currently
loaded extensions in memory.
2004-07-30 12:56:39 +00:00
abs
816811eb3f Update cpuflags to 0.74:
NetBSD/Linux:
	athlon-4, athlon-mp, athlon-tbird, and athlon-xp should fall back to
	athlon in gcc3, and only pentiumpro in 2.95
    Linux:
	Identify "AMD Athlon(tm) XP "* - thanks to Sebastian Prause
2004-07-28 16:54:03 +00:00
minskim
58e23e5d4c Add buildlink3.mk. 2004-07-28 02:29:29 +00:00
minskim
75112c2901 Enable pkgviews installation. 2004-07-28 02:29:05 +00:00
minskim
a851ed0092 Enable pkgviews installation. 2004-07-27 22:18:26 +00:00
agc
256a90e554 Make this package compile - fixes problem in bulk build. 2004-07-27 22:14:43 +00:00
abs
0eeb203e60 Update cpuflags to 0.73:
sync cpuflags.Linux with cpuflags.NetBSD, at least optimise for
	Duron in cpuflags.Linux
2004-07-27 19:25:44 +00:00
wiz
b587e92d71 Update to 1.8.5. From the NEWS file:
Bugs fixed in 1.8.5:

* Long standing bugs:

  - Define DIST_SUBDIRS even when the `no-dist' or `cygnus' options are used
    so that `make distclean' and `make maintainer-clean' can work.

  - Define AR and ARFLAGS even when only EXTRA_LIBRARIES are defined.

  - Fix many rules to please FreeBSD make, which runs commands with `sh -e'.

  - Polish diagnostic when no input file is found.
2004-07-27 16:42:41 +00:00
salo
d7e2a24d91 Update to version 0.7.1.
Changes:

- use bzip2 distribution tarball

0.7.1:
======
- Set eol-style and keywords properties
- various cosmetic fixes to Makefile and build in general
- BeOS support
2004-07-27 04:10:51 +00:00
dillo
a0e044de84 Reduce audio delay in the *BSD audio driver (by configuring audio
device with shorter block size and lower water marks).
PKGREVISION++
2004-07-26 20:42:27 +00:00
martti
44c01f8cdf Updated doxygen to 1.3.8
Changes

* Rewrote doxywizard. It should be more easy to use and has much better
  support for running doxygen from the GUI. Feedback is welcomed!
* Members of a namespace are now also added to the file in which they appear
* Included patch by Mikhail Glushenkov that fixed item 5 on the todo
  list (titles of html pages are now internationalized).
* A macro defined in the config file can now be undefined in the source
  code via a #undef.
* Optimized calling of dot using multiple -T flags at a couple of places

New features

* New option FILTER_PATTERNS which can be used to specify multiple input
  filters, and let doxygen select the right one based on matching the
  source file name with a specified pattern.
* id 142939: New commands \protocol and \category which can be used to
  document Objective-C protocols and categories in the same way the
   \class command does for classes.
* Included patch that removes some cosmetic annoyances in the man page output
* Added internationalization support for Afrikaans and Lithanian. Included
  language updates for Dutch, Czech, Italian, Brazilian, Croatian, Japanese,
  Norwegian and Russian.

Bug fixes
2004-07-26 08:39:57 +00:00
recht
8da8f21bec Add and enable patchutils. 2004-07-24 08:46:46 +00:00
recht
96f235d772 initial import of patchutils-0.2.30
Patchutils is a small collection of programs that operate on patch files.
Interdiff generates an incremental patch from two patches against a common
source. For example, if you have applied a pre-patch to a source tree, and
wish to apply another pre-patch (which is against the same original source
tree), you can use interdiff to generate the patch that you need to apply.
You can also use this to review changes between two pre-patches.
Combinediff generates a single patch from two incremental patches, allowing
you to merge patches together. The resulting patch file only alters each file
once.
Filterdiff will select the portions of a patch file that apply to files
matching (or, alternatively, not matching) a shell wildcard.
Fixcvsdiff is for correcting the output of 'cvs diff'.
Rediff corrects hand-edited patches, by comparing the original patch with the
modified one and adjusting the offsets and counts.
Lsdiff displays a short listing of affected files in a patch file, along with
(optionally) the line numbers of the start of each patch.
Splitdiff separates out patches from a patch file so that each new patch file
only alters any given file once. In this way, a file containing several
incremental patches can be split into individual incremental patches.
Grepdiff displays a list of the files modified by a patch where the patch
contains a given regular expression.
Recountdiff fixes up counts and offsets in a unified diff.
Unwrapdiff fixes word-wrapped unified diffs.
2004-07-24 08:45:26 +00:00