pkgsrc/textproc
obache 9f431034d0 Update libxml-ruby to 1.1.3.
== 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-15 09:31:03 +00:00
..
aiksaurus Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
antiword Add DESTDIR support. 2008-06-12 02:14:13 +00:00
asciidoc Update to 8.3.3: 2009-03-06 15:17:07 +00:00
aspell Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
aspell-breton Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-catalan Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-czech Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-danish Add DESTDIR support. 2008-06-20 01:09:05 +00:00
aspell-dutch Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-english Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-esperanto Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-faroese Add DESTDIR support. 2008-06-20 01:09:05 +00:00
aspell-francais Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-gaeilge Correct email address for generic MAINTAINER. 2009-03-17 21:40:44 +00:00
aspell-german Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-greek Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-italian Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-norwegian Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-polish Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-portuguese Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-romanian Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-russian Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-slovak Add DESTDIR support. 2008-06-20 01:09:05 +00:00
aspell-spanish Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-svenska Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-ukrainian Add DESTDIR support. 2008-06-12 02:14:13 +00:00
aspell-welsh Add DESTDIR support. 2008-06-12 02:14:13 +00:00
awf
bibclean Add DESTDIR support. 2008-06-20 01:09:05 +00:00
biblook Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bibparse Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bsdgrep-devel Reduce context in diff to not cover RCS ID. Set USE_BSD_MAKEFILE. 2008-06-21 20:37:40 +00:00
btparse Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
c2html Add DESTDIR support. 2008-06-20 01:09:05 +00:00
catdoc Add destdir support to catdoc and catdoc-tk. 2008-05-01 13:51:56 +00:00
catdoc-tk Add destdir support to catdoc and catdoc-tk. 2008-05-01 13:51:56 +00:00
cawf remove dead mirror. 2009-05-01 14:54:38 +00:00
cdif remove note to add license 2008-09-12 12:00:12 +00:00
chasen Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
chasen-base Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
convertlit
crimson Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
db2latex Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
dblatex Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
detex update to detex-2.8, which has fixes for flex included (allows it 2008-11-20 02:19:26 +00:00
dict-client Add DESTDIR support. 2008-06-12 02:14:13 +00:00
dict-dictionaries Some packages need lex and yacc. Patch by Aleksey Cheusov via 2007-11-17 12:04:11 +00:00
dict-server
dictem Update to 1.0.2, provided by Aleksey Cheusov in PR 41149. 2009-04-06 10:34:55 +00:00
diction Update to version 1.11. While here: libtoolize, switch to gmake 2007-12-04 00:57:37 +00:00
diffsplit
diffstat Update to 1.46. 2008-10-30 19:33:47 +00:00
docbook ${DESTDIR} shouldn't be included in ${SGML_CATALOGS}. 2009-04-12 07:19:22 +00:00
docbook-simple Add PKG_DESTDIR_SUPPORT. 2009-03-04 16:44:28 +00:00
docbook-website Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
docbook-xml
docbook-xsl Add a missing entry to PLIST. 2008-10-22 11:01:59 +00:00
doclifter Drop maintainership. 2009-02-24 16:15:22 +00:00
dsssl-docbook-modular ${DESTDIR} shouldn't be included in ${SGML_CATALOGS}. 2009-04-12 07:19:22 +00:00
dtdparse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
eb Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
eblook Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ebook-tools Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ebview DESTDIR support 2009-02-19 16:43:13 +00:00
emacs-dict-client Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
emacs-muse Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
enca Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
enchant Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
expat Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
expatobjc Add DESTDIR support. Bump PKGREVISION. 2009-04-19 07:11:26 +00:00
ezxml DESTDIR support. 2009-02-16 13:59:42 +00:00
flyspell Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
fop Explicitly add pax dependency in those Makefiles that use it (or have 2008-05-25 21:42:20 +00:00
freepwing Add DESTDIR support. 2008-06-12 02:14:13 +00:00
gdome2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
glimpse clarify restriction - "restrictive copyright" is nonsensical. 2008-09-12 12:06:06 +00:00
gnome-doc-utils Update to 0.16.1: 2009-05-13 21:32:37 +00:00
gnome-spell Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gnome-subtitles Bump PKGREVISION following the update of textproc/icu, and the 2009-03-25 22:37:12 +00:00
grep MIPSPro doesn't like code such as: 2008-03-11 02:18:22 +00:00
groff Update to 1.20.1: 2009-02-24 20:41:45 +00:00
gsed DESTDIR supported. 2008-04-04 15:27:03 +00:00
gtk-doc Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
gtkspell Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
GutenMark Add DESTDIR support. 2008-06-12 02:14:13 +00:00
GutenMark-words Add DESTDIR support. 2008-06-12 02:14:13 +00:00
harmony Let harmony depend on dvipsk because teTeX-bin no longer provides dvips. 2009-02-25 18:02:01 +00:00
helpdeco
hevea Update textproc/hevea to 1.10 2008-01-13 19:24:49 +00:00
highlight Update highlight to 2.7. Changes include tons of language updates, new 2009-03-02 22:10:26 +00:00
hre Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
html Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
html2text This pacakge also available via SUNSITE, 2008-01-03 14:05:38 +00:00
html2wml This package available from SourceForge now, 2008-01-03 14:15:01 +00:00
hugs-HaXml
hunspell Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
hunspell-af_ZA Import hunspell-af_ZA-20060117 as textproc/hunspell-af_ZA. 2008-07-19 15:14:45 +00:00
hunspell-bg_BG Import hunspell-bg_BG-20040405 as textproc/hunspell-bg_BG. 2008-07-19 15:19:46 +00:00
hunspell-ca_ES Import hunspell-ca_ES-20080427 as textproc/hunspell-ca_ES. 2008-07-19 15:28:57 +00:00
hunspell-cs_CZ Import hunspell-cs_CZ-20061030 as textproc/hunspell-cs_CZ. 2008-07-19 17:08:35 +00:00
hunspell-da_DK Import hunspell-da_DK-20070106 as textproc/hunspell-da_DK. 2008-07-19 17:48:04 +00:00
hunspell-de Remove unneeded patch. 2009-01-09 11:35:07 +00:00
hunspell-en_GB Initial import of hunspell-en_GB: 2007-09-11 18:37:53 +00:00
hunspell-en_US Initial import of hunspell-en_US: 2007-09-11 18:38:15 +00:00
hunspell-es_ES Import hunspell-es_ES-20050510 as textproc/hunspell-es_ES. 2008-07-19 18:00:51 +00:00
hunspell-es_MX Import hunspell-es_MX-20050505 as textproc/hunspell-es_MX. 2008-07-19 18:06:15 +00:00
hunspell-fo_FO Import hunspell-fo_FO-20050307 as textproc/hunspell-fo_FO. 2008-07-19 18:23:46 +00:00
hunspell-fr_FR Import hunspell-fr_FR-2.3.2 as textproc/hunspell-fr_FR. 2008-07-19 15:02:06 +00:00
hunspell-hu_HU Change my email address. 2008-08-13 13:20:14 +00:00
hunspell-id_ID Import hunspell-id_ID-20040410 as textproc/hunspell-id_ID. 2008-07-20 12:49:47 +00:00
hunspell-sv_SE Import hunspell-sv_SE-1.27 as textproc/hunspell-sv_SE. 2008-07-19 14:46:43 +00:00
hyperestraier Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
icu Update from version 3.6nb2 to 4.0.1. 2009-03-25 22:30:19 +00:00
intltool Update to 0.40.6: 2009-03-22 09:37:03 +00:00
ipadic MAKE_JOBS_SAFE=no, per PR 39782. 2008-10-22 02:37:21 +00:00
isearch Fixed build with g++4. 2007-12-01 16:42:26 +00:00
iso-codes Update to 3.9: 2009-05-13 12:22:11 +00:00
iso8879 Add a missing file name to the entry in SGML_CATALOGS. It should have 2009-04-12 07:17:15 +00:00
iso12083 Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
ispell-base Fix patchsum. 2009-02-14 16:20:54 +00:00
ispell-british +MAKE_JOBS_SAFE=no 2009-03-09 21:37:17 +00:00
ispell-catalan +PKG_DESTDIR_SUPPORT=user-destdir 2009-02-17 14:43:05 +00:00
ispell-emacs Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
ispell-francais
ispell-gaeilge
ispell-german +PKG_DESTDIR_SUPPORT=user-destdir 2009-02-17 14:43:05 +00:00
ispell-polski +PKG_DESTDIR_SUPPORT=user-destdir 2009-02-17 14:43:05 +00:00
ispell-romanian +PKG_DESTDIR_SUPPORT=user-destdir 2009-02-17 14:43:05 +00:00
ispell-russian Use my NetBSD.org email - I read it much more regulary than any others. 2008-07-15 15:33:45 +00:00
ispell-russian-io Introduce RUS_ISPELL_VERSION variable to simplify ispell-russian* 2007-08-22 15:46:49 +00:00
ispell-slovak
ispell-spanish Add user-destdir support; per joerg@'s request. 2009-03-05 11:56:00 +00:00
ispell-svenska
itex2MML
ja-grep
ja-groff
ja-sed
jade only openjade is mirrored at u-aizu. removed. 2009-05-01 14:56:45 +00:00
java-mecab Update mecab to 0.97. 2008-02-04 04:58:52 +00:00
jdom Mark as destdir ready. 2008-07-14 12:55:56 +00:00
jing Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
json-glib Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
kakasi no ftp service at namazu.org. removed. 2009-05-01 14:59:30 +00:00
kbanner
kdoc Mark as destdir ready. 2008-07-14 12:55:56 +00:00
latex2html Let latex2html depend on dvipsk because teTeX-bin no-longer provides dvips. 2009-02-25 17:18:08 +00:00
libclucene Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libcroco Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
liblinebreak Update to 1.2: 2009-05-03 13:03:37 +00:00
liblrdf Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libpathan Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libunicode Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libxml Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libxml++ Update to 2.26.0: 2009-03-22 12:20:08 +00:00
libxml++1 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libxml2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libxslt Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libyaml Import libyaml-0.1.1 as textproc/libyaml. 2008-10-20 01:10:16 +00:00
link-grammar Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
lout
lq-sp
lua-expat Add -fPIC to CFLAGS. Fixes broken build on amd64 and probably others. 2008-08-17 07:08:24 +00:00
makeindexk Import makeindexk-2.15 as textproc/makeindexk. 2009-04-17 21:40:25 +00:00
makeztxt
Markdown Add DESTDIR support. 2008-06-12 02:14:13 +00:00
markdown-mode Import markdown-mode-1.6 as textproc/markdown-mode. 2009-05-14 06:09:13 +00:00
mdoclint Update to 1.2: 2009-04-13 22:18:13 +00:00
mdocml Update to mdocml-1.7.12. Biggest change is the start of a man(7) parser. 2009-04-09 01:57:48 +00:00
mecab Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
mecab-base Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
mecab-ipadic Introduce variable MECAB_CHARSET for default charset of MeCab. 2008-04-10 16:43:58 +00:00
mecab-jumandic Introduce variable MECAB_CHARSET for default charset of MeCab. 2008-04-10 16:43:58 +00:00
metauml Import textproc/metauml version 0.2.5 2008-02-01 20:41:37 +00:00
migemo Fix PLIST and really bump PKGREVISION. 2008-07-03 08:12:20 +00:00
migemo-elisp Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
mxml Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
namazu Update namazu package to 2.0.19. 2009-03-14 15:04:39 +00:00
nbsed Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
ndtpd
nxml-mode Accept emacs22nox too. 2008-10-14 00:19:30 +00:00
o3read
OdfConverter Initial import of OdfConverter-1.1, packaged by myself for wip, with 2009-04-14 18:33:30 +00:00
oniguruma Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
openjade Do not add "-lintl" to Makefile dependencies. 2009-01-11 09:09:09 +00:00
opensp Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
p5-CAM-PDF - updated to 1.52 2008-11-11 09:22:10 +00:00
p5-Convert-ASCII-Armour Fix a dependency. 2009-05-05 09:05:10 +00:00
p5-Convert-ASN1 Update from version 0.21nb1 to 0.22. 2008-11-18 17:09:00 +00:00
p5-Convert-BER Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Convert-PEM Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Convert-Translit Initial import of the Convert-Translit Perl package version 1.03. 2009-02-24 12:25:35 +00:00
p5-Cz-Cstools Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Data-FormValidator Update distinfo for p5-Data-FormValidator-4.63. 2009-01-12 05:20:42 +00:00
p5-Data-HexDump NAME 2009-01-04 00:29:26 +00:00
p5-Encode PkgSrc changes: 2009-04-12 00:42:50 +00:00
p5-Encode-Detect Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Feed-Find Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-File-ReadBackwards Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Filter PkgSrc changes: 2009-03-10 17:50:22 +00:00
p5-FormValidator-Simple Modify dependencies to perl-modules which are deployed with the perl-core, 2009-04-24 17:15:21 +00:00
p5-iCal-Parser Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwalify Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-libxml Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-EN-Inflect Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-EN-Inflect-Number Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-EN-Numbers-Ordinate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-EN-Sentence Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-Preferred Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Lingua-Stem-Snowball Update from version 0.941nb1 to 0.952. 2008-11-18 17:14:42 +00:00
p5-mecab Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-native-hyperestraier Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Net-Dict Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Number-Format Update from version 1.61 to 1.70. 2009-02-22 16:10:04 +00:00
p5-Number-Spell Import p5-Number-Spell version 0.04. 2008-11-17 20:11:04 +00:00
p5-PDF Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-PDF-API2 PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-PDF-Create Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Pod-Coverage Update to 0.20: 2009-02-22 15:51:45 +00:00
p5-Pod-Escapes Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Pod-Parser Importing package for perl-module Pod::Parser-1.38 2009-03-22 22:02:59 +00:00
p5-Pod-POM PkgSrc changes: 2009-04-24 07:06:05 +00:00
p5-Pod-Readme Import p5-Pod-Readme-0.09 as textproc/p5-Pod-Readme. 2008-11-09 13:05:37 +00:00
p5-Pod-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Pod-Spell Import p5-Pod-Spell-1.01 as textproc/p5-Pod-Spell. 2008-11-09 13:28:53 +00:00
p5-Pod-Strip Import p5-Pod-Strip version 1.02. 2008-10-30 23:01:47 +00:00
p5-Pod-Tests Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Pod-Tree PkgSrc changes: 2009-04-24 07:20:45 +00:00
p5-podlators Import p5-podlators version 2.2.1. 2009-01-05 09:40:18 +00:00
p5-PPI-HTML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Regexp-Common Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Search-Xapian Update to 1.0.12.0. From the changelog: 2009-04-20 22:35:17 +00:00
p5-SGMLS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-String-Approx Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-String-BufferStack PkgSrc changes: 2009-05-01 20:58:38 +00:00
p5-String-CRC32 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-String-Koremutake Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-String-ShellQuote Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Declare Update from version 0.38 to version 0.39. 2009-03-07 05:38:37 +00:00
p5-Template-Plugin-Number-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Aspell Update distinfo. 2008-12-09 05:42:00 +00:00
p5-Text-Autoformat PkgSrc changes: 2009-05-01 20:08:36 +00:00
p5-Text-Balanced Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-BibTeX Add commented-out HOMEPAGE using search.cpan.org. 2008-11-22 00:07:12 +00:00
p5-Text-CharWidth Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-ChaSen Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Context-EitherSide Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-CSV-Hash Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-CSV_XS PkgSrc changes: 2009-04-12 00:50:49 +00:00
p5-Text-DelimMatch Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-DHCPLeases Update from version 0.7 to .08. 2009-01-11 16:26:31 +00:00
p5-Text-Diff Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Diff-HTML PkgSrc changes: 2009-05-01 22:27:49 +00:00
p5-Text-Diff-Parser PkgSrc changes: 2009-04-14 07:43:07 +00:00
p5-Text-DoubleMetaphone Import p5-Text-DoubleMetaphone version 0.07: 2008-10-24 00:30:59 +00:00
p5-Text-Emoticon Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Emoticon-MSN Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Glob Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Kakasi Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-LevenshteinXS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Markdown Update from version 1.0.21nb1 to 1.0.24. 2008-11-22 00:15:22 +00:00
p5-Text-PDF PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-Text-Quoted Drop MAINTAINERSIP at MAINTAINER's request. 2009-03-24 13:35:47 +00:00
p5-Text-Reflow Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Reform Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-RewriteRules Update p5-Text-RewriteRules from version 0.17 to version 0.18. 2009-04-23 23:58:09 +00:00
p5-Text-Shellwords Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-SimpleTable Update from version 0.03nb1 to 0.05. 2008-11-22 00:19:17 +00:00
p5-Text-SpellChecker Update from version 0.03 to 0.05. 2009-01-11 16:42:01 +00:00
p5-Text-Substitute Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Tabs+Wrap PkgSrc changes: 2009-05-01 21:28:16 +00:00
p5-Text-Template Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Textile Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Unaccent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-Unidecode Initial import of Text::Unidecode version 0.04. 2009-02-24 11:59:08 +00:00
p5-Text-vCard Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-vFile-asData Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-WikiCreole Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Text-WikiFormat Modify dependencies to perl-modules which are deployed with the perl-core, 2009-04-24 17:15:21 +00:00
p5-Text-WrapI18N Update from version 0.06nb1 to 0.06nb2. 2009-01-02 21:45:45 +00:00
p5-Text-Wrapper Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Atom Update textproc/p5-XML-Atom to 0.35; changes since 0.34: 2009-05-02 11:39:48 +00:00
p5-XML-Atom-SimpleFeed Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Atom-Stream Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-AutoWriter Update from version 0.39nb1 to 0.39nb2. 2008-11-22 00:20:58 +00:00
p5-XML-Checker Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Clean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-DOM Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Dumper Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Elemental Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Encoding 2.07 29 Jan 2009 2009-02-10 16:43:38 +00:00
p5-XML-Feed PkgSrc changes: 2009-04-24 17:38:51 +00:00
p5-XML-Filter-BufferText Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Filter-DetectWS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Filter-DOMFilter-LibXML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Filter-Reindent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Filter-SAXT Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Generator Initial import of p5-XML-Generator version 1.01 in the NetBSD 2009-05-08 14:08:13 +00:00
p5-XML-Grove Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Handler-Trees Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Handler-YAWriter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-LibXML Updated from version 1.68 to 1.69. 2008-11-22 00:41:19 +00:00
p5-XML-LibXML-Common Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-LibXML-Iterator Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-LibXSLT Update to 1.68: 2008-11-10 16:49:49 +00:00
p5-XML-NamespaceSupport Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Node Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-NodeFilter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Parser Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-RAI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-RegExp Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-RSS PkgSrc changes: 2009-04-24 19:22:57 +00:00
p5-XML-RSS-Parser Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Sablotron Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-SAX Add PREV_PKGPATH and/or SUPERSEDES for various packages that 2009-05-02 16:21:43 +00:00
p5-XML-SAX-Expat Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-SAX-Writer The package textproc/p5-XML-SAX-Base is at version 1.02, on CPAN 2009-03-08 13:30:46 +00:00
p5-XML-SemanticDiff Update from versio n0.97nb1 to 0.99. 2008-11-28 14:44:25 +00:00
p5-XML-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Stream Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Tidy Added textproc/p5-XML-Tidy version 1.2.54 2008-10-26 19:12:56 +00:00
p5-XML-Twig Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-UM Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Writer updated to 0.606 2008-12-11 15:57:22 +00:00
p5-XML-Writer-String Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-Xerces Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-XPath Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-XQL Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-XSLT Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-XML-XUpdate-LibXML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-YAML Update from version 0.66nb1 to 0.68. 2008-12-12 21:05:25 +00:00
p5-YAML-LibYAML PkgSrc changes: 2009-04-12 01:30:41 +00:00
p5-YAML-Syck PkgSrc changes: 2009-04-30 21:00:18 +00:00
p5-YAML-Tiny Update from version 1.32 to 1.36. 2009-01-11 17:05:58 +00:00
par Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pear-Console_Table Provides methods such as addRow(), insertRow(), addCol() etc. to build console 2008-07-08 20:46:54 +00:00
pear-File_Find File_Find, created as a replacement for its Perl counterpart, also named 2008-07-08 20:36:16 +00:00
php-json Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-pspell Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-wddx Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php4-domxml Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php4-xslt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php5-dom Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php5-xsl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
po4a Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
postgresql-autodoc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
psgml-mode Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
pxp
py-cmTemplate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-docutils add 26 to PYTHON_VERSIONS_ACCEPTED. 2009-05-10 10:28:50 +00:00
py-elementtree Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
py-enchant Supports DESTDIR 2009-02-16 19:38:27 +00:00
py-Excelerator Sort PYTHON_VERSIONS_ACCEPTED. 2009-02-11 14:23:31 +00:00
py-expat Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-feedparser Update to a prerelease 4.2 snapshot, as 4.1 no longer copes 2008-08-07 14:56:11 +00:00
py-FourSuite Fix build with Python 2.5. 2009-02-11 22:52:42 +00:00
py-gdick Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-gnosis-utils Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-HappyDoc Remove Python 2.1 support. 2009-02-09 21:09:20 +00:00
py-html2text Update to 2.35. From the changelog: 2009-04-07 04:43:23 +00:00
py-html5lib Import py-html5lib-0.11: 2009-01-27 17:27:07 +00:00
py-jinja Import of py-jinja 1.2 2009-02-02 09:35:45 +00:00
py-libxml2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
py-libxslt Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-lxml Fix native_libs.txt issue. Bump revision. 2009-02-17 15:35:45 +00:00
py-markdown
py-mecab Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-pygments Update Pygments to 1.0. 2009-05-12 13:45:01 +00:00
py-Reverend Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-SimpleParse Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-sphinx Note py-jinja dependency. 2009-02-02 09:44:44 +00:00
py-textile Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-vobject Handle in-situ update of distfile, which fixes the remaining py24 2009-02-27 00:05:02 +00:00
py-X Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-xml Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
py-yaml Supports DESTDIR 2008-05-08 18:32:19 +00:00
qprint
qsubst Needs GNU nroff to format catpages with -mandoc. 2008-02-07 13:24:36 +00:00
raptor Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
rarian Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
rasqal Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
redland Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
regexx Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rfcutil DESTDIR support 2009-02-16 18:44:40 +00:00
rman
robodoc Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rtf-tools
rtfm DESTDIR support 2009-02-16 19:03:18 +00:00
rubber Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
ruby-amrita Enable DESTDIR support with devel/ruby-setup. 2009-02-15 03:33:02 +00:00
ruby-bluecloth Initial import of ruby18-bluecloth-1.0.0 as textproc/ruby-bluecloth. 2008-04-04 15:21:00 +00:00
ruby-builder Initial import of ruby18-builder-2.1.2 as textproc/ruby-builder. 2008-04-04 15:21:06 +00:00
ruby-coderay Initial import of ruby18-coderay-0.7.4.215 as textproc/ruby-coderay. 2008-04-04 15:21:13 +00:00
ruby-diff-lcs Add HOMEPAGE. 2008-06-22 16:10:51 +00:00
ruby-eruby Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ruby-fastercsv Initial import of ruby-fastercsv as version 1.2.3 into the NetBSD 2008-04-07 18:03:35 +00:00
ruby-feed-normalizer Update ruby-feed-normalizer to version 1.5.1. Changes from version 1.3.0 2008-04-04 15:21:25 +00:00
ruby-ferret Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
ruby-haml Initial import of ruby18-haml-1.8.2 as textproc/ruby-haml. 2008-04-04 15:21:33 +00:00
ruby-hpricot Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
ruby-html-parser Enable DESTDIR support with stop using install.rb script. 2009-02-15 03:33:59 +00:00
ruby-htree Add DESTDIR support. 2008-10-29 04:16:15 +00:00
ruby-itex2MML - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:14 +00:00
ruby-json Update ruby-json pacakge to 1.1.3. 2008-09-15 08:38:01 +00:00
ruby-json-pure Update ruby-json-pure pacakge to 1.1.3. 2008-09-15 08:39:10 +00:00
ruby-libxml Update libxml-ruby to 1.1.3. 2009-05-15 09:31:03 +00:00
ruby-markaby Initial import of ruby18-markaby-0.5 as textproc/ruby-markaby. 2008-04-04 15:22:02 +00:00
ruby-maruku Update ruby-maruku to 0.5.9. 2008-09-15 06:05:47 +00:00
ruby-mecab - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +00:00
ruby-native-hyperestraier Add DESTDIR support. 2008-06-20 01:09:05 +00:00
ruby-nqxml Enable DESTDIR support. (No other functional change.) 2009-02-15 08:24:43 +00:00
ruby-oniguruma It looks like it needs pax in the install phase. 2008-08-31 21:46:40 +00:00
ruby-plist Import ruby18-plist-3.0.0 as textproc/ruby-plist. 2008-08-22 15:39:43 +00:00
ruby-pure-hyperestraier Add DESTDIR support. 2008-06-20 01:09:05 +00:00
ruby-rdtool Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ruby-redcloth Update ruby-redcloth to 4.0.4. 2008-10-03 01:31:12 +00:00
ruby-rison Fix permission of a file to pass CHECK_PERMS. 2008-09-25 12:04:16 +00:00
ruby-rttool Update ruby-rttool to version 1.0.2.0. Changes from version 1.0.2 2008-04-04 15:22:20 +00:00
ruby-sary Added missing DESTDIR suppoted mark. 2008-10-29 02:20:31 +00:00
ruby-simple-rss Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-suikyo - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +00:00
ruby-syntax Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-textpow Import ruby18-textpow-0.10.1 as textproc/ruby-textpow. 2008-08-22 15:41:23 +00:00
ruby-ultraviolet Import ruby18-ultraviolet-0.10.2 as textproc/ruby-ultraviolet. 2008-08-22 15:43:34 +00:00
ruby-will-paginate Initial import of ruby18-will-paginate-2.2.2 as 2008-04-29 18:02:05 +00:00
ruby-xmlparser Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
ruby-xmlscan Add DESTDIR support. 2008-10-29 04:16:15 +00:00
ruby-xslt Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
sablotron Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
sary Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
saxon Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
scew Add DESTDIR support. 2008-06-20 01:09:05 +00:00
soprano Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
source-highlight Add DESTDIR support. 2008-06-20 01:09:05 +00:00
stardic Don't try to make the pkgsrc tree writeable. 2008-08-12 17:20:19 +00:00
sub2srt Initial import of sub2srt 0.5.2, a small perl script that converts 2009-01-05 20:02:44 +00:00
sublib Bump PKGREVISION following the update of textproc/icu, and the 2009-03-25 22:37:12 +00:00
subtitleripper Update to 0.3.4. Changes unknown. 2008-09-06 09:19:02 +00:00
suikyo Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
suikyo-conv-table Import suikyo-conv-table version 2.1.0. 2008-03-02 02:39:54 +00:00
suikyo-docs Import suikyo-docs version 2.1.0. 2008-03-02 02:40:40 +00:00
suikyo-elisp Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
tcl-dom
tcl-expat
tcl-xml
tei Add PKG_DESTDIR_SUPPORT. 2009-03-06 22:27:36 +00:00
tei-p5-schema user-destdir support, for dillo. 2008-11-18 16:14:33 +00:00
tei-xsl Support user-destdir. 2008-11-18 16:08:12 +00:00
tex-xmltex Install many more files in this package and make symlinks. 2008-06-22 02:55:53 +00:00
tex-xmltex-doc Import tex-xmltex-doc-0.8 as textproc/tex-xmltex-doc. 2009-04-29 06:19:37 +00:00
tex2page Let tex2page depend on dvipsk because teTeX-bin no longer provides dvips. 2009-02-25 18:07:40 +00:00
texi2html Update to 1.82: 2009-03-06 14:34:43 +00:00
texi2roff DESTDIR support 2009-03-23 00:32:10 +00:00
tokyodystopia Update tokyodystopia to 0.9.11. 2009-05-07 11:01:09 +00:00
trang
troffcvt
unroff Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
untex
uriparser Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
urlview Fix urlview for LP64 platforms. Bump revision. 2008-04-17 08:42:39 +00:00
vis Fix build on newer NetBSD. 2009-02-07 21:38:01 +00:00
wbxml2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
wdiff + Include termcap.buildlink3.mk instead of using a custom (wrong) termcap 2008-03-05 15:56:19 +00:00
WordNet Drop maintainership. 2009-02-24 16:15:22 +00:00
writer2latex
xalan-c Make it build on DragonFly. 2009-05-08 12:30:47 +00:00
xalan-j Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xapian Update to 1.0.12. From the changelog: 2009-04-20 22:25:12 +00:00
xapian-omega Needs zlib. 2009-05-01 23:38:38 +00:00
xerces-c Update to 2.8.0. It is interface-compatible with Xerces-C++ 2.7.0 and 2009-05-10 11:24:26 +00:00
xerces-j Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xfce4-dict-plugin Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
xhtml Remove the remaining NO_MTREE definitions, it has been a nop for a 2009-04-08 22:43:23 +00:00
xhtmldiff Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
xml2 Initial import of xml2-0.4, a set of tools to convert XML and HTML to and 2009-04-25 12:36:01 +00:00
xml2doc
xmlcatmgr Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
xmlindent
xmlrpc-c Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
xmlstarlet
xmlto Use TOOLS_PATH.bash for bash. Might fix build on Linux while hopefully not 2008-11-18 15:20:54 +00:00
xmltoman Update to xmlman-0.4. While here, add a missing RCS tag to 2008-04-18 17:37:10 +00:00
xp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
xslide Move mk/emacs.mk to editors/emacs/modules.mk. 2008-10-11 09:31:54 +00:00
xt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
yodl Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
Makefile Add markdown-mode. 2009-05-14 06:10:40 +00:00