summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-05-16cleanuprillig1-2/+2
2009-05-16Fixed a pkglint warning.rillig1-2/+2
2009-05-16Convert options.mk to standard format/usage.obache1-10/+5
2009-05-16Remove preserve packages for make update with -N -f -f and therefore dojoerg1-2/+2
not depend on the behavior of older pkg_delete to allow the removal with simple force.
2009-05-16Don't require pkg_delete or pkg_info -r to list packages in fulljoerg2-3/+9
topological sort for the make update list. This breaks naturally when new dependencies are introduced that are also in the list scheduled for later installation. Reported by David Holland.
2009-05-15Updated mail/cyrus-imapd to 2.2.13nb8obache1-1/+2
2009-05-15Fixes `-n' option handling for fetchnews(1).obache3-15/+26
Patch provided by Jukka Salmi in PR 41432. While here, add DESTDIR support.
2009-05-15Added devel/matio version 1.3.3dmcmahill1-1/+2
2009-05-15add and enable matiodmcmahill1-1/+2
2009-05-15Import matio-1.3.3dmcmahill5-0/+57
libmatio is an open-source library for reading/writing Matlab MAT files. This library is designed for use by programs/libraries that do not have access or do not want to rely on Matlab's libmat shared library.
2009-05-15Re-enabled the detection of variables as they appear inrillig1-2/+2
mk/defaults/mk.conf. I don't know when I removed it accidentally.
2009-05-15new MASTER_SITESjnemeth1-3/+3
2009-05-15Note update of mail/squirrelmail package to 1.4.18nb1.taca1-1/+2
2009-05-15Enable squirrelmail-japanese option with Japanese patch:taca3-10/+13
squirrelmail-1.4.16-ja-20081013-patch. Bump PKGREVISION.
2009-05-15Pull in patch from tk 8.4 to work with xproto > 7.0.13 (fixes MouseWheelsborrill3-3/+27
problems at tk startup). Bump PKGREVISION
2009-05-15Changes 3.0.1:adam22-267/+973
* Bug fixes. * Check for job_canceled() in fd_plugin code. * Update Win32 table creation to have new DB version 11 format * Remove illegal Options in Exclude of default Win32/64 bacula-dir.conf * Remove "Reposition" message when restoring * Update projects file * Modify insertion of read Volumes in SD to be done before the drive reservation. This ensures that a Volume to be read will not be reserved for writing. Significant enhancement. Changes 3.0.0: * Fix Win32 make clean to clean correctly * Separate object/binaries in Win32 and Win64 builds. More to be done. * Add bconsole to Win64 installer. * Enhance Job messages from SD when the FD->SD protocol is incorrect and the SD hangs up. Previously this looked like a comm error. * Fixed problem in xattr and acl code trying to send empty acl or xattr streams. * Fix for bug #1261 where we send out a null stream when a file only an acl and xattr support is also turned on. * Added some warnings to configure when using libtool and static in one configure. * Fix small memory leak in fileregexp bsr code * Correct bacula32.def entry point as specified by James. * Add code to FD plugin driver to make a copy of the plugin filename to be saved to avoid save_file from zaping it. * Directly mark all files saved by plugin as being seen for Accurate. * more...
2009-05-15Updated net/Transmission to 1.61tnn1-1/+2
2009-05-15Updated textproc/ruby-libxml to 1.1.3obache1-1/+2
2009-05-15Update libxml-ruby to 1.1.3.obache3-130/+72
== 1.1.3 / 2009-03-18 Charlie Savage * Improve performance 10 to 20% by turning on libxml2's dictionary feature that allows parsers to reuse previously parsed strings. * Fix XML::Node#remove! to work correctly with libxml's dictionary feature. * Correctly set up parser context options. * Simplify DOM modification code (Node#next=, Node#prev=, Node#sibling=) and update documenation. * Deprecated Node#add_child and Node#child=, use Node#<< instead * Fix documentation for Node#<< * Added Document#import to enable moving nodes from one document to another document. == 1.1.2 / 2009-03-12 Charlie Savage * Added XML::Node#inner_xml helper method. * Fix segmentation that could occur when calling the mark function on a previously freed node. == 1.1.1 / 2009-03-10 Charlie Savage * Fix - Only include extra html parser context methods for versions of libxml older than 2.6.27. == 1.1.0 / 2009-03-09 Charlie Savage * Fix bug caused by the mark function being called on partially initialized attributes. * Revert back to libxml2's internal memory manager. == 1.0.0 / 2009-03-05 Charlie Savage * OS X (Charlie Savage). Update bindings to support the default installed version of libxml2 (2.6.16) on OS X 10.5 and the latest version available via MacPorts. == 0.9.9 / 2009-03-05 Charlie Savage * Ruby 1.9.1 support (Charlie Savage). libxml-ruby now compiles and runs on eith er 1.8.6 and 1.9.1. With 1.8.6 all tests should pass while on 1.9.1 all but for encoding tests pass. The port to Ruby 1.9.1 revealed two memory allocation bugs (one with dtds, one with nodes) which are now fixed. * Better OS X support (Joe Khoobyar). The default version of libxml2 on OS X 10.5 is fairly old, resulting in this link error: NSLinkModule() error dyld: Symbol not found: _htmlNewParserCtxt This can be fixed by using MacPorts to get a newer version of libxml2. To make use of MacPorts, the build script has been updated to use xml2-config. This can be fine-tuned using the new --with-xml2-config / --without-xml2-confi g options to extconf.rb (default is --without-xml2-config to match existing beh avior). * Greatly reduced memory usage (Joe Khoobyar). See http://rubyforge.org/pipermail/libxml-devel/2009-February/001375.html. * Add Document#xhtml? and document#node_type methods (Joe Khoobyar) * Add XPath::Object#last (Joe Khoobyar) * Provide finer control over CDATA nodes on a parser by parser basis (Joe Khoob yar). * Bug fix - Namespaces were incorrectly merged with attributes in the new sax2 handler (Charlie Savage). * Bug fix - Support iterating over nodes and attributes even with blocks that call remove! (Charlie Savage) * Bug fix - If reader.node is NULL, return nil instead of crashing (Charlie Sava ge) * Bug fix - Dtd's owned by documents were freed twice in some circumstances (Joe Khoobyar). * Bug fix - Fix output escaping on attributes nodes (Joe Khoobyar). * Bug fix - Make sure IO objects are not garbage collected when used as parser sources (Charlie Savage). == 0.9.8 / 2009-1-24 Charlie Savage * Refactored XML::Parser, XML::HTMLParser, XML::SaxParser and XML::Reader to have consistent APIs. All the parsers now take a context object in their constructors, allowing fine grained control over the parsers for advanced use cases. These API changes are backwards compatible except for XML::Reader, which now takes an optional hash table as a second parameter in its various constructors versus an optional boolean value. * Updated all APIs to use the encoding constants defined in XML::Encoding versus string values. This API change is not backwards compatible. * Added support for attribute declarations in DTD's via the new XML::AttrDecl class (Len Lattanzi) * Support libxml's content escaping capabilities for text nodes by wrapping libxml's "xmlStringText" and "xmlStringTextNoenc" (Joe Khoobyar). * Updated XML::Reader#read API to return true if a node was read, false if node was not read and raises an exception on an error. Previously #read returned 1 if a node was read, 0 if a node was not read and -1 for an error. This change is not backwards compatible, but provides a more natural interface for Ruby by allowing code like this: while reader.read # do stuff end * Changed XML::Error exception objects to return copies of nodes that cause parse errors instead of the original node. This prevents segmentation faults when the error is reraised. * Added XML::Reader#node method. * Fixed compile errors on OS X which uses an older version of libxml. * Fixed memory leak when performing XPath searches. * Fixed rdocs. * Don't override libxml's default settings for entity substitution and loading external DTDs. This may break some code - you may need to add in a call to XML.default_substitute_entities = true or XML.default_load_external_dtd = true. == 0.9.7 / 2008-12-08 Charlie Savage * Added SAX2 support. SAX handlers now define two new callbacks, on_start_element_ns and on_end_element_ns methods. These new callbacks support namespaces, making them superior to the older callbacks on_start_element and on_end_element methods. The old callbacks are still supported, but may be deprecated in the future depending on community feedback. * Added SAX support for libxml's structured error handling. That menas sax handlers now define a new callback, on_error, which takes one parameter, an instance of XML::Error. The older on_parser_error, on_parser_warning and on_parser_fatal_error callbacks are no longer suported so you must port your code. Note that the older callbacks took one string parameter, instead of an XML::Error object. * Experimental work-around for libxml error handling bug - see http://mail.gnome.org/archives/xml/2008-December/msg00014.html for more information. * Fix compilation bugs on Solaris. * Fix Rdoc compilation bug. == 0.9.6 / 2008-12-08 Charlie Savage * Refactored namespace handling. The existing, and inconsistent, namespace methods defined on XML::Node have been deprecated. They have been replaced by a the new XML::Namespaces class. Use this class to inspect a node's namespace, its default namespace, its namespace definitions and which namespaces are in scope. It can be accessed via the the XML::Node#namespaces method. * Rationalized XML::Document#save, XML::Document#to_s and XML::Node#to_s to take an optional hash table of parameters that control how output is generated. Supported parameters include setting indentation on or off, the indentation level and the output encoding. This is an API change and may break existing calls to XML::Document#save. However, the previous API was broken - setting the encoding resulted in an error so its unlikely anyone is using it. * Rationalized XML::Document#debug, XML::Node#debug, XML::XPath::XPathObject#Deb ug. * Deprecated a number of duplicate dump* and debug_* methods in XML::Document and XML::Node. * Additional Ruby 1.9.1 compatability fixes. * Cleaned up header file guards. == 0.9.5 / 2008-11-29 Charlie Savage * Ruby 1.9.1 preview release compatability (Felipe Contreras) * Update Node#remove! to return the removed node and to set its document to nil. This allows the node to be either moved to another document, another part of the same document or to be freed on the next garbage collection once its references have gone out of scope. * Fix bug where XPathExpression#compile mistakenly overwrote RegExp#compile. * Update Node to use standard ruby allocators and initializers. * Update HTML parser to be more forgiving of invalid documents. * Update include paths for Darwin Ports on OS X. * Updated C code base to use BSD/Allman style == 0.9.4 / 2008-11-24 Charlie Savage * Update HTML parser so that it can read files, strings and io streams. * Update HTML parser to support user specified encodings. * Additional C code cleanup. == 0.9.3 / 2008-11-22 Charlie Savage * Fixed segmentation fault caused by documents being freed before xpath results that referenced the document (take 2). * Allowed sax parser to use io stream * Combined encoding and input classes * Cleaned up C code - removed remaining legacy structures, added static to most methods, changed C namespace from ruby_xml to rxml == 0.9.2 / 2008-11-19 Charlie Savage * Add support for compiled XPath expressions (donated by Pavel Valodzka) * Fixes for compiling on OS X 10.5.4 and 10.5.5 == 0.9.1 / 2008-11-18 Charlie Savage * Expose LibXML's encoding support via a new Encoding object. * Revamp error handling to be much easier to use. Errors are now wrapped by the new XML::Error class and are thrown as exceptions when it is appropriate. * Fixed segmentation fault caused by documents being freed before xpath results that referenced the document. * Add Node#register_default_namespace to simplify default namespace handling. * Significantly improve documentation * A number of bug fixes and patches. == 0.9.0 / 2008-11-18 Charlie Savage * Version 0.9.0 was removed due to packaging errors.
2009-05-15ruby-gettext-2.0.3 out.obache1-2/+2
2009-05-15Updated inputmethod/gtk-im-libthai to 0.1.4nb1obache1-1/+2
2009-05-15Bump PKGREVISION, from libdatrie's ABI change.obache1-2/+6
While here, add ftp MASTER_SITES and set LICENSE.
2009-05-15Updated devel/libthai to 0.1.11obache1-1/+2
2009-05-15Update libthai to 0.1.11.obache4-13/+14
LibThai 0.1.11 (6 April 2009): * Diminished link flags in pkg-config info, for less dependency for clients. * More words in word break dictionary. LibThai 0.1.10 (30 March 2009): * More dictionary capacity with libdatrie 0.2. * Dictionary clean-up on unload. * Some performance fine-tuning. * More words in word break dictionary.
2009-05-15Updated devel/libdatrie to 0.2.2obache1-1/+2
2009-05-15Update libdatrie to 0.2.2.obache4-15/+21
0.2.2 (2009-04-29) ===== - Support building with linkers without symbol versioning supports, including Mac, Cygwin, MinGW. - Support other iconv implementations than that's in glibc, for Mac and MinGW. 0.2.1 (2009-04-05) ===== - Fix errors in documentation - Symbol versioning to ease upgrade across SONAME - Minor cleanups 0.2.0 (2009-03-24) ===== - New APIs for performance: trie_state_copy(), trie_state_is_single() - Clean-ups 0.1.99.2 (2008-12-15) ======== - More robust handling of alphabet ranges - Allow co-existence with libdatrie0 0.1.99.1 (2008-12-12) ======== - Breaking ABI with libdatrie0 - More capacity with 32-bit node index - Adjusted API for non-file trie usage - All data in one file, no more *.br and *.tl split - Drop SBTrie wrapper; all features are merged into Trie - Domain characters are now Unicode
2009-05-15belatedly note updates of xf86-video-nv and xf86-video-radeonhdtnn1-1/+3
2009-05-15Fix buildling for X11R7adam2-11/+19
2009-05-14Updated graphics/ruby-RMagick to 2.9.2obache1-1/+2
2009-05-14Update RMagick to 2.9.2obache2-6/+6
Changes: RMagick 2.9.2 o Add new HorizontalTileEdgeVirtualPixelMethod, VerticalTileEdgeVirtualPixelMethod, CheckerTileVirtualPixelMethod VirtualPixelMethod enum values (available in ImageMagick 6.5.0-1) o Added BilinearForwardDistortion, BilinearReverseDistortion enums (available in ImageMagick 6.5.1-2) o Add missing composite operators to Magick::Draw#composite method o Add warning about dropping support for ImageMagick < 6.3.5 and Ruby < 1.8.5 o Fix bug #25892, stack buffer overflow in Magick::TypeMetric.to_s (reported by Roman Simecek)
2009-05-14Note update of cyrus-sasl-2.1.23.obache2-3/+14
2009-05-14Update cyrus-sasl to 2.1.23.obache14-59/+53
New in 2.1.23 ------------- * Fixed CERT VU#238019 (make sure sasl_encode64() always NUL terminates output or returns SASL_BUFOVER)
2009-05-14+ cyrus-sasl-2.1.23 [obache]obache1-1/+2
2009-05-14Remove some duplicates added in erroradrianp1-3/+1
2009-05-14Updated www/drupal6 to 6.12adrianp1-1/+2
2009-05-14Updated www/drupal6 to 6.12adrianp1-1/+2
2009-05-146.12adrianp2-6/+6
The twelfth maintenance and security release of the Drupal 6 series. Only fixes for security vulnerabilities and other bugs have been committed. New features are only being added to the forthcoming Drupal 7.0 release. This release fixes security vulnerabilities. Sites are urged to upgrade immediately after reading the security announcement: * SA-CORE-2009-006 - Drupal core - Cross site scripting In addition to this security vulnerability, the following bugs have been fixed since the 6.11 release: * #353328 by catch, BrianV: When a new commment is added, the redirection path should point to page, where the new comment is. * #239945 by Xano, JeremyFrench, Damien Tournoud, andypost: Should not iterate over the children in taxonomy_get_tree() anymore if we reached max_depth. * #292565 by grendzy, John Morahan, Jody Linn: remove path munging on 403/404 pages, which caused problems for login redirects * #448268 by dww: Make sure that submitting the themes admin form clears out the update status cache, just like the modules admin form does.
2009-05-14Updated www/drupal to 5.18adrianp1-1/+2
2009-05-14Updated www/drupal to 5.18adrianp1-1/+2
2009-05-145.18adrianp2-6/+6
This release fixes security vulnerabilities. Sites are urged to upgrade immediately after reading the security announcement: * SA-CORE-2009-006 Drupal core - Cross site scripting In addition to this security vulnerability, the following bugs have been fixed since the 5.15 release: * #396224 partial rollback of SA-CORE-2009-003 security hardening. * #396224 adding missing documentation comment update. By dvessel and pwolanin. * #267305 by brianV. Remove ?>. * #305544 by jsenich. Add missing clear-block to admin by modules. * #330084 by c960657: Remove unnecessary duplication of the From header value in Reply-to; standards indicate setting the From header should be sufficient.
2009-05-14postfixmartti1-1/+2
2009-05-14Added sbin/postmulti to PLIST. PKGREVISION++martti2-3/+5
2009-05-14Since iso_2022_jp.php isn't included in squirrelmail distribution,taca1-4/+1
remove extra pre-configure processing.
2009-05-14Add the recently added py-matplotlib-tk.he1-1/+2
2009-05-14Note addition of graphics/py-matplotlib-tk version 0.98.0,he1-1/+2
patterned after graphics/py-matplotlib-gtk2.
2009-05-14Import py-matplotlib-tk version 0.98.0.he6-0/+167
matplotlib is a pure python plotting library designed to bring publication quality plotting to python with a syntax familiar to matlab users. A lot progress towards this goal has been made since the first release of matplotlib, the library does produce high quality 2D plots. All of the plotting commands can be accessed either via a functional interface familiar to matlab users or an object oriented interface familiar to python users, and several high resolution output formats are supported. This package contains the Tk driver for matplotlib. Tutorial: http://matplotlib.sourceforge.net/tutorial.html
2009-05-14Note update of math/py-networkx to 0.37nb1.he1-1/+2
2009-05-14Update from version 0.37 to 0.37nb1.he2-3/+9
Pkgsrc changes: o Change from using extension.mk to egg.mk, on hints from wiz@ o Adjust PLIST so that it matches what is then installed. o Bump PKGREVISION
2009-05-14-xf86-video-intel-2.7.1.taca1-2/+1
2009-05-14Note update of x11/xf86-video-intel package to 2.7.1.taca1-1/+2