summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2004-08-15update to tla-1.2.1recht2-8/+10
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-15add codeville&monotonedrochner1-1/+3
2004-08-15import monotone-0.14, another distributed revision control systemdrochner8-0/+126
2004-08-15import codeville-0.1.7.1, another distributed revision control systemdrochner5-0/+125
(implemented in Python)
2004-08-15Update to 0.9:wiz2-5/+5
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-15The hash function type can be selected among native, openssl,minskim1-1/+22
libgcrypt, and mhash. Suggested by gehenna@.
2004-08-15Add and enable syncdir.schmonz1-1/+2
2004-08-15Initial import of Bruce Guenter's syncdir library. In order toschmonz6-0/+75
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-14Update devel/glib2 to 2.4.6.xtraeme3-10/+11
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-13Add some missing locale files.jlam1-1/+5
2004-08-13Remove unnecessary one-off variable NO_GPROF.jlam1-5/+3
2004-08-13Update to 1.9.1:wiz3-7/+9
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-13Use a build dependency on devel/scons instead of a full dependencyrecht1-5/+4
on Python.
2004-08-13The PLIST was far from complete [hi recht!] (package installed files incube3-5/+30
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-13Add dependency on readline to build on platforms without a nativeminskim1-1/+2
readline library.
2004-08-12Use openssl hash functions on platforms that don't provide native hashminskim1-1/+9
functions.
2004-08-12Honor *OWN, *GRP, and *MODE.minskim1-1/+4
Bump PKGREVISION due to file permission changes.
2004-08-10- update to v1.4.1adrianp3-18/+19
- 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-09fix handling of wait() return valuesdrochner2-1/+31
(actually, add some error handling)
2004-08-07s/can not/cannot/jschauma1-2/+2
Pointed out by Georg Schwarz in private email.
2004-08-07Update to 0.15.0nb1:wiz3-2/+16
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-06Fix the GNOME bug 129741, which crashes many applications, mostminskim4-2/+84
notably web browsers. Patches obtained from Pango CVS. Bump PKGREVISION.
2004-08-05use MASTER_SITE_SOURCEFORGE instead of an arbitrary mirrordrochner1-2/+2
2004-08-05Sort.schmonz1-2/+2
2004-08-04Fix the path to p5-Apache-Testagc1-2/+2
2004-08-04Update cpuflags to 0.75abs4-40/+174
- 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-04update to apache-ant-1.6.2recht3-614/+634
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-03Bump PKGREVISION for the additional file that is now installed by the uclsnj1-1/+2
package.
2004-08-03Add rt3.cube1-1/+2
2004-08-03Initial import of rt3, version 3.2.1, into the NetBSD Packagescube9-0/+760
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-03Install the uclpack "example".mycroft2-2/+4
2004-08-03update to 0.8.14recht2-6/+6
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-02Update devel/p5-IO-stringy to 2.109. Changes from version 2.108 includejlam2-5/+5
making IO::Scalar::getline work with ref to int.
2004-08-02update to 2.0.2drochner6-66/+66
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-07-30Update to 2.4.5:jmmv3-10/+11
* 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-30Add p5-Module-Versions-Report, p5-HTML-Scrubber and p5-Tree-Simple.cube1-1/+3
2004-07-30Initial import of p5-Tree-Simple, version 1.06, into the NetBSD Packagescube4-0/+25
Collection. Perl extension to create and manipulation tree objects.
2004-07-30Initial import of p5-Module-Versions-Report, version 1.02 into the NetBSDcube4-0/+23
Packages Collection. Module::Versions::Report allows a PERL program to list all currently loaded extensions in memory.
2004-07-28Update cpuflags to 0.74:abs3-19/+44
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-28Add buildlink3.mk.minskim1-0/+18
2004-07-28Enable pkgviews installation.minskim1-1/+3
2004-07-27Enable pkgviews installation.minskim1-1/+5
2004-07-27Make this package compile - fixes problem in bulk build.agc2-1/+15
2004-07-27Update cpuflags to 0.73:abs3-49/+105
sync cpuflags.Linux with cpuflags.NetBSD, at least optimise for Duron in cpuflags.Linux
2004-07-27Update to 1.8.5. From the NEWS file:wiz2-5/+5
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-27Update to version 0.7.1.salo4-25/+14
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-26Reduce audio delay in the *BSD audio driver (by configuring audiodillo3-7/+17
device with shorter block size and lower water marks). PKGREVISION++
2004-07-26Updated doxygen to 1.3.8martti3-8/+14
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-24Add and enable patchutils.recht1-1/+2
2004-07-24initial import of patchutils-0.2.30recht4-0/+77
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.