pkgsrc/textproc
rhaen 875d4c9d1d - updated to 3.32
- took maintainership
- updated DEPENDS for testing purposes (not required)

ChangeLog:
version: 3.32
date: $Date: 2007-11-13T18:10:03.393214Z $
# minor maintenance release with a bug fix
fix:  change to the regexp that parses XPath-like conditions so
      it can accept leading non-ascii letters ([^\W\d] does not
      work), not used in perl 5.005
fix:  set use utf8 (except in 5.005), which gets rid of the dreaded
      "SWASHNEW" error in 5.6. fixed things that then broke in 5.6.


version: 3.31
# minor maintenance release, fixing some tests
tests: fixes to stop tests from failing in various configurations


Changes in 3.30


      fixed a couple of bugs in namespace handling, spotted by
      Shlomo Yonas (see https://rt.cpan.org/Ticket/Display.html?id=27617
      and http://www.perlmonks.org/?node_id=624830)

      added the XML::Twig::Elt fields method which returns a list of
      fields

      added the normalize method in XML::Twig and XML::Twig::Elt,
      which merge together consecutive pcdata elements. As much as
      possible (so far after a cut, delete or erase), the twig is
      kept normalized, eg there are no consecutive #PCDATA elements
      in it. Suggestion of someone whose name (and emails) I can't
      find at the moment.

      added the indented_a / cvs format for pretty_print, that makes the
      output friendly to line-oriented version control tools, as described
      in http://tinyurl.com/2kwscq (RT #24954). Thanks to Sjur Moshagen
      for a patch that I adapted to the current version.

      fixed bug RT #25113: system entities were not properly resolved
      if the XML file was not in the current directory. Thanks to
      Dave Charness for the patch.

      Added the XML::Twig method finish_now that terminates parsing
      immediately, without checking the rest of the XML. This feature was
      half suggested by Nick Clayton

      added the -s option to xml_split, which splits when the given
      size is reached for a file, suggested by Radek Saturka.

      added the -g option to xml_split, which groups elements to be
      split, suggested and tested by Dhirendra Singh Kholia.

      added the safe_parsefile_html and safe_parseurl_html methods,
      and a --html option to xml_grep. Suggested by Bill Ricker.

      by default xml_grep now skips non well-formed files, the
      --strict option makes it die when it finds one

      fixed a bunch of bugs in xml_grep

      fixed a warning when using optional modules with a version
      number that includes an _, spotted and fix suggested by
      Bill Ricker.

      Fixed test failure on cygwin, thanks to Erik Rantapaa for the
      patch.

      Fixed a bunch of typos in docs, RT #25836, spotted and fixed by David
      Steinbrunner

      Improved re-use of XML::Twig objects for repetitive parsing. It
      looks like it should be OK now , but I am sure I haven't tested
      all cases yet (especially when DTDs and entities are involved).

      HTML parsing improved: XML::Twig now tries to find the proper
      encoding for the document (that's not done by HTML::TreeBuilder
      at the moment).

      XML::Twig::Elt purge and flush methods now only purge/flush up to
      the element, not up to the current element in the twig (duh!)

      Fixed bug in handlers of the form elt[string(subelt)="foo"] and
      elt[string(subelt)=1] which did not work at all

      fixed bug in parameter entity output, spotted by BenHopkins on
      perlmonks (see http://www.perlmonks.org/?node_id=618360)

      fixed bug in xml_string: options were not used

      improved error reporting for missing SYSTEM entities, including
      the option to set twig_expand_external_ents to -1, which makes
      missing SYSTEM entities not fatal, but reports them in
      $t->{twig_missing_system_entities} Thanks to Frank Wegmann for
      his suggestions and for testing the various versions of the feature

      fixed internals so new versions of Pod::Coverage won't barf

Changes in 3.29

      fixed a bug in the handling of handlers after an ignore (RT #24392,
      reported by Robert Eden).

Changes in 3.28

      now builds on Windows and OS2

      refactored the code that triggers handlers,
      more complex expressions can now be handled,
      such as '/doc/section[@def="1"]/title'

      COMPATIBILITY WARNING

      Up to version 3.26, you could change the attribute
      of a parent of a node on which you had a handler,
      and be able to trigger a handler on that parent node
      based on the new attribute value:
      XML::Twig->new( twig_handlers =>
        { 'sect/title'          => sub { $_->parent->set_att( has_title => 1)},
          'sect[@has_title="1"]'=> sub { ... }, # called for any sect that has
        }                                       # a title
                    );
      This won't work now. The trigger expression ('sect[@has_title="1"]')
      is evaluated strictly against the input XML. This is more logical and
      consistent (if you changed the element name, the new name was never
      used in the evaluation of the trigger).
      The only exception to that rule is if you use "private attributes":
      attributes which name starts with a '#'. By definition this in an invalid
      XML name, so it can't be in the input, and has to have been created . In
      that case the code that evaluates the trigger looks at the attribute in
      the element in the tree in memory (if it exists).
      So in the example above, if you replace 'has_title' by '#has_title',
      everything will work fine. Note that private attributes are not output
      when using the print/sprint/xml_string... methods.

      fixed xml_pp so it does not leave a tempfile
      and a broken original file all when the original
      file is not well-formed.

      added the nparse_pp method that does an nparse
      with pretty_print set to 'indented', nparse_e
      that sets error_context, and nparse_ppe that
      does both

      added XML::Twig::Elt tag_to_span and tag_to_div
      methods (turn an element into a span/div and
      set its class to the old tag name)

      added the quote option for XML::Twig new, which
      sets the output quote character for attributes
      ('single' or 'double')

      added the text_only and xml_text_only methods
      that return the text of the element, but not of
      the sub-elements.

      added outer_xml method (synonym for sprint)

      fixed bug where entity names were not matched
      properly (RT #22854, spotted by Bob Faist)

      fixed bug  on some DOCTYPE config with
      twig_print_outside_roots

      fixed bug in set_keep_encoding (the method,
      not the option).

      fixed bug in simplify: the code attempted to
      replace variables in attribute values even if no
      option required it, spotted by Klaus Rush

      clean-up and fixed bugs in ignore: the method
      can now be called from a regular handler (it
      always could but the docs did not say so,
      thanks to kudra for noticing this). It can
      also be called to ignore a parent of the current
      element. There were bugs there, and the tree
      was not built properly

      added error message when an XPath query with
      a leading / is used on a node that does not
      belong to a whole twig (because it's been cut
      or because the twig itself went out of scope)

      when parsing HTML with error_context set, the
      HTML is indented, in order to give better error
      report
2008-07-16 12:06:07 +00:00
..
aiksaurus Add DESTDIR support. 2008-06-12 02:14:13 +00:00
antiword Add DESTDIR support. 2008-06-12 02:14:13 +00:00
asciidoc Add DESTDIR support. 2008-06-20 01:09:05 +00:00
aspell Update to 0.60.6: 2008-04-29 11:40: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 Add DESTDIR support. 2008-06-12 02:14:13 +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 Update to version 0.35 2008-04-24 21:17:51 +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 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
cdif Add DESTDIR support. 2008-06-20 01:09:05 +00:00
chasen Update chasen-base and chasen pacakge to 2.4.2. 2008-01-21 13:25:47 +00:00
chasen-base Update chasen-base and chasen pacakge to 2.4.2. 2008-01-21 13:25:47 +00:00
convertlit Rename variable MAKEFILE to MAKE_FILE. 2006-09-09 02:41:53 +00:00
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 Update to 0.2.9. 2008-06-19 16:35:22 +00:00
detex Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +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 Patch out another unportable "if ! which ..." line. 2007-05-19 14:12:05 +00:00
dictem Update dictem to 0.82, per maintainer update request in PR 38339. 2008-04-05 04:45:22 +00:00
diction Update to version 1.11. While here: libtoolize, switch to gmake 2007-12-04 00:57:37 +00:00
diffsplit This script splits up a unified diff into separate patch files, 2007-03-13 16:03:08 +00:00
diffstat Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
docbook Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-14 07:59:09 +00:00
docbook-simple Don't use DESTDIR for now. 2006-10-06 15:12:58 +00:00
docbook-website Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
docbook-xml DESTDIR support. 2006-11-03 19:14:25 +00:00
docbook-xsl Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
doclifter Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
dsssl-docbook-modular Added support for installation to DESTDIR and in doing so moved 2008-01-14 23:18:12 +00:00
dtdparse
eb DESTDIR ready. 2007-12-11 14:49:25 +00:00
eblook Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ebview Need msgfmt to build. 2008-06-09 14:33:49 +00:00
emacs-dict-client
emacs-muse Initial import of emacs-muse (replacement for emacs-wiki): 2007-09-16 10:30:25 +00:00
enca Add DESTDIR support. 2008-06-12 02:14:13 +00:00
enchant Update to 1.4.2: 2008-05-21 09:39:12 +00:00
expat Update to 2.0.1: 2007-06-08 13:14:04 +00:00
expatobjc
ezxml Remove Ex-MASTER_SITE. From Zafer Aydogan. 2007-12-02 11:41:48 +00:00
flyspell Update to 1.7m: 2007-01-15 23:49:46 +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
glimpse Re-add $NetBSD$ Id in patches (removed by previous commit). 2008-06-05 17:21:48 +00:00
gnome-doc-utils PYTHON_VERSIONS_ACCEPTED+=25 2008-04-17 08:41:38 +00:00
gnome-spell Add DESTDIR support. 2008-06-20 01:09:05 +00:00
grep MIPSPro doesn't like code such as: 2008-03-11 02:18:22 +00:00
groff Yet another tmac PLIST fix. 2008-05-26 17:54:25 +00:00
gsed DESTDIR supported. 2008-04-04 15:27:03 +00:00
gtk-doc Mark as destdir ready. 2008-07-14 12:55:56 +00:00
gtkspell Update to 2.0.13: 2008-05-30 12:28:42 +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
helpdeco Reset maintainer, ben@ has resigned. 2006-12-15 14:34:18 +00:00
hevea Update textproc/hevea to 1.10 2008-01-13 19:24:49 +00:00
highlight Mark as destdir ready. 2008-07-14 12:55:56 +00:00
hre Mark as destdir ready. 2008-07-14 12:55:56 +00:00
html Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +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 Update the hugs additional modules (hugs-HUnit, hugs-unix and hugs-HaXml) 2007-03-07 12:51:16 +00:00
hunspell Supports DESTDIR. 2008-04-18 12:01:05 +00:00
hunspell-de Initial import of hunspell-de: 2007-09-11 18:37:27 +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-hu_HU Import hunspell-hu_HU-1.2.2 as textproc/hunspell. This package contains 2008-02-29 22:10:28 +00:00
hyperestraier - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 15:18:31 +00:00
icu Mark as destdir ready. 2008-07-14 12:55:56 +00:00
intltool Update to version 0.40.0. Fixes vendor bugs: 2008-06-19 16:58:40 +00:00
ipadic Support PKG_DESTDIR. 2007-08-03 01:32:06 +00:00
isearch Fixed build with g++4. 2007-12-01 16:42:26 +00:00
iso-codes Update to 3.0: 2008-06-21 18:55:06 +00:00
iso8879 Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
iso12083 Update HOMEPAGES and MASTER_SITES; from Sergey Svishchev. 2007-12-02 13:04:06 +00:00
ispell-base Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead. 2007-10-17 00:00:54 +00:00
ispell-british
ispell-catalan
ispell-emacs Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
ispell-francais
ispell-gaeilge Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ispell-german
ispell-polski
ispell-romanian
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 pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
ispell-spanish Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
ispell-svenska
itex2MML Set DIST_SUBDIR because the distfile name doesn't include the version 2007-06-29 23:08:12 +00:00
ja-grep Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
ja-groff Fixed PKGMANDIR. 2006-10-24 06:59:38 +00:00
ja-sed
jade Add DESTDIR support, fixing normal installation as well. 2008-03-15 20:29:35 +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
kakasi cannot connect ftp site now. 2008-04-19 05:43:26 +00:00
kbanner pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
kdoc Mark as destdir ready. 2008-07-14 12:55:56 +00:00
latex2html
libcroco Recursive PKGREVISION bump for gnutls-2.2.2 update with shlib major bump. 2008-03-06 14:53:47 +00:00
liblrdf Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
libpathan DESTDIR support. Fix permissions. 2008-04-04 15:27:25 +00:00
libunicode Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libxml Mark as destdir ready. 2008-07-14 12:55:56 +00:00
libxml++ update to 2.22.0 2008-05-29 11:41:13 +00:00
libxml++1 The package supports installation to DESTDIR. 2008-01-05 23:24:46 +00:00
libxml2 Add an HTTP download option to MASTER_SITES 2008-05-04 06:59:51 +00:00
libxslt update to libxslt 1.2.4 2008-05-22 16:03:10 +00:00
link-grammar Mark as destdir ready. 2008-07-14 12:55:56 +00:00
lout Fixed PKGMANDIR. 2007-04-01 19:36:08 +00:00
lq-sp
lua-expat pkglint cleanup; update HOMEPAGE/MASTER_SITES. 2007-02-22 19:01:13 +00:00
makeztxt
Markdown Add DESTDIR support. 2008-06-12 02:14:13 +00:00
mecab Make sure that meta packages set META_PACKAGE before including 2008-06-15 09:51:58 +00:00
mecab-base Update mecab to 0.97. 2008-02-04 04:58:52 +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 Import migemo-elisp version 0.40. 2008-02-10 13:10:27 +00:00
mxml import mxml-2.3, another XML parsing library 2007-10-12 17:30:04 +00:00
namazu Update namazu package to 2.0.18. 2008-03-13 16:50:40 +00:00
nbsed Add a marker for bootstrap packages to allow special cases them during 2008-06-19 18:36:51 +00:00
ndtpd Simplify PKG_SYSCONFDIR handling by assuming all packages have a consistent 2007-04-27 04:08:19 +00:00
nxml-mode Accept emacs22. 2007-01-30 23:41:40 +00:00
o3read
openjade fix up garbled sed command 2007-02-16 23:49:43 +00:00
opensp The package supports installation to DESTDIR. 2008-01-15 00:27:37 +00:00
p5-CAM-PDF Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Convert-ASCII-Armour Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Convert-ASN1 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Convert-BER Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Convert-PEM Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Cz-Cstools Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Data-FormValidator Mark as destdir ready. 2008-07-14 12:55:56 +00:00
p5-Encode Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-Encode-Detect Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Feed-Find Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-File-ReadBackwards This module reads a file backwards line by line. It is simple to use, 2007-11-13 15:58:43 +00:00
p5-Filter Add DESTDIR support. 2008-06-20 01:09:05 +00:00
p5-FormValidator-Simple This Perl module requires the Date::Calc module. Hence add a 2008-07-16 00:13:02 +00:00
p5-iCal-Parser Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-libxml Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Lingua-EN-Inflect Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Lingua-EN-Inflect-Number Import textproc/p5-Lingua-EN-Inflect-Number 1.1 2008-05-30 11:57:20 +00:00
p5-Lingua-EN-Numbers-Ordinate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Lingua-EN-Sentence Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Lingua-Preferred Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Lingua-Stem-Snowball Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-mecab Update mecab to 0.97. 2008-02-04 04:58:52 +00:00
p5-native-hyperestraier Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Net-Dict Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Number-Format Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PDF Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-PDF-API2 Updated to version 0.69. 2008-02-06 20:13:57 +00:00
p5-PDF-Create Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Pod-Coverage - updated package to 0.19 2008-02-14 19:11:40 +00:00
p5-Pod-Escapes Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Pod-POM Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Pod-Simple Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Pod-Tests Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Pod-Tree Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Regexp-Common Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-SGMLS - Added support for installation to DESTDIR. 2008-01-13 18:11:25 +00:00
p5-String-Approx Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-String-CRC32 Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-String-ShellQuote Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Template-Plugin-Number-Format Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Autoformat Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Balanced A compiler is not necessary. 2008-02-07 21:13:57 +00:00
p5-Text-BibTeX Update to version 0.37 2008-04-24 21:20:46 +00:00
p5-Text-CharWidth The packages supports installation to DESTDIR and needs a C compiler. 2008-01-13 18:22:08 +00:00
p5-Text-ChaSen Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Text-Context-EitherSide Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-CSV-Hash Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-CSV_XS Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-DelimMatch Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Diff The package needs no C compiler. 2008-01-08 20:41:00 +00:00
p5-Text-Diff-HTML Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Emoticon Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Emoticon-MSN Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Format Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Glob Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Kakasi Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-LevenshteinXS Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Markdown Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-PDF Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Quoted Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Reflow Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Reform Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-RewriteRules Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Shellwords Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-SimpleTable Import textproc/p5-Text-SimpleTable-0.03 2008-05-30 11:55:51 +00:00
p5-Text-Substitute Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Tabs+Wrap Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-Template Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Text-Textile Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-Text-Unaccent Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-vCard Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-vFile-asData Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-Text-WikiFormat - updated package to 0.79 2007-12-11 12:02:30 +00:00
p5-Text-WrapI18N The packages supports installation to DESTDIR. 2008-01-13 18:23:39 +00:00
p5-Text-Wrapper Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Atom Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Atom-SimpleFeed Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Atom-Stream Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-AutoWriter Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Checker Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Clean Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-DOM Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Dumper Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Elemental XML::Elemental is a SAX-based package for easily parsing XML documents 2008-07-15 23:07:03 +00:00
p5-XML-Encoding - updated to 2.03 2008-07-15 17:51:20 +00:00
p5-XML-Feed Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-XML-Filter-BufferText Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Filter-DetectWS Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Filter-DOMFilter-LibXML Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Filter-Reindent Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Filter-SAXT Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Grove Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Handler-Trees Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Handler-YAWriter Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-LibXML Update to 1.66: 2008-04-16 13:29:27 +00:00
p5-XML-LibXML-Common Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-LibXML-Iterator Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-LibXSLT Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-NamespaceSupport Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-XML-Node - updated to 0.11 2008-07-15 22:29:16 +00:00
p5-XML-NodeFilter Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Parser Update to 2.36: 2007-11-29 14:25:46 +00:00
p5-XML-RAI - updated to 1.3022 2008-07-16 09:47:47 +00:00
p5-XML-RegExp Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-RSS Update from 1.32 to 1.33. Changes: 2008-06-22 17:27:44 +00:00
p5-XML-RSS-Parser - added needed dependency to textproc/p5-XML-Elemental 2008-07-16 09:30:37 +00:00
p5-XML-Sablotron Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-SAX Improve handling of dynamically changed parser registry file. Instead of 2007-09-18 21:06:14 +00:00
p5-XML-SAX-Expat Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-XML-SAX-Writer Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-SemanticDiff Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Simple Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
p5-XML-Stream Update from version 1.15 to 1.22. Changes: 2008-06-22 15:21:52 +00:00
p5-XML-Twig - updated to 3.32 2008-07-16 12:06:07 +00:00
p5-XML-UM Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Writer - update to 0.604 2008-07-15 12:16:09 +00:00
p5-XML-Writer-String Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-Xerces Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-XPath Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-XQL Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-XSLT Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-XML-XUpdate-LibXML Add DESTDIR support. 2008-06-12 02:14:13 +00:00
p5-YAML The package supports installation to DESTDIR. 2008-01-08 22:49:47 +00:00
p5-YAML-Syck Updated texproc/p5-YAML-Syck to 1.04 2008-05-28 20:57:15 +00:00
p5-YAML-Tiny Import textproc/p5-YAML-Tiny-1.32 2008-05-30 11:54:14 +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 Add DESTDIR support. 2008-06-12 02:14:13 +00:00
postgresql-autodoc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
psgml-mode Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pxp
py-cmTemplate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-csv Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-docutils Passes all tests, so enable for Python 2.5. 2008-04-25 19:57:16 +00:00
py-elementtree Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-Excelerator Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-expat Python itself is supposed to be DESTDIR safe. 2008-03-15 18:11:38 +00:00
py-feedparser Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-FourSuite Add DESTDIR support. 2008-06-12 02:14:13 +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 Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-html2text Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-libxml2 sync w/ base pkg 2008-04-28 17:05:42 +00:00
py-libxslt sync with base pkg 2008-05-26 16:52:21 +00:00
py-markdown Import py-markdown-1.6a. From DESCR: 2006-10-31 22:39:18 +00:00
py-mecab Update mecab to 0.97. 2008-02-04 04:58:52 +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-textile Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-X Add DESTDIR support. 2008-06-12 02:14:13 +00:00
py-xml Explicitly include Python 2.1 as it is required by Zope 2.5. 2008-04-25 19:49:03 +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 Update raptor to version 1.4.17 2008-05-09 21:45:23 +00:00
rarian Supports DESTDIR. Make sure that share/omf exists for binary packages as 2008-04-18 12:00:13 +00:00
regexx Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rfcutil
rman
robodoc Add DESTDIR support. 2008-06-20 01:09:05 +00:00
rtf-tools Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
rtfm Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
rubber Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
ruby-amrita - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:52:11 +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 Mark as destdir ready. 2008-07-14 12:55:56 +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 - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:55:41 +00:00
ruby-htree - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:55:41 +00:00
ruby-itex2MML - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:14 +00:00
ruby-json Initial import of ruby18-json-1.1.2 as textproc/ruby-json. 2008-04-04 15:21:43 +00:00
ruby-json-pure Initial import of ruby18-json-pure-1.1.2 as textproc/ruby-json-pure. 2008-04-04 15:21:50 +00:00
ruby-libxml Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +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 version 0.5.8. Chanages from version 0.5.6 include: 2008-04-04 15:22:09 +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 - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +00:00
ruby-pure-hyperestraier Add DESTDIR support. 2008-06-20 01:09:05 +00:00
ruby-rdtool - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +00:00
ruby-redcloth Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-rison Initial import of ruby18-rison-1.2.1 as textproc/ruby-rison. 2008-04-04 15:22:14 +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 - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +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-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 - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 14:56:39 +00:00
ruby-xslt Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
sablotron Add DESTDIR support. 2008-06-20 01:09:05 +00:00
sary Import sary version 1.2.0. 2008-03-01 08:29:07 +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
scrollkeeper move the install/deinstall templates from scrollkeeper to rarian 2007-11-12 20:41:18 +00:00
source-highlight Add DESTDIR support. 2008-06-20 01:09:05 +00:00
stardic Fixed file permissions during the build. Bumped PKGREVISION. 2006-10-02 23:30:30 +00:00
subtitleripper Add CONFLICTS line for previous PKGNAME versions. 2008-03-10 10:33:38 +00:00
suikyo use vendor_dir with Ruby 1.8.7. 2008-06-19 15:01:17 +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 Import suikyo-elisp version 2.1.0. 2008-03-02 02:41:26 +00:00
tcl-dom Update MASTER_SITES and/or HOMEPAGE, from Sergey Svishchev. 2006-10-04 21:59:34 +00:00
tcl-expat
tcl-xml Whitespace cleanup, courtesy of pkglint. 2007-02-22 19:26:05 +00:00
tei
teixsl-fo
teixsl-html
tex-xmltex Install many more files in this package and make symlinks. 2008-06-22 02:55:53 +00:00
tex2page Point at lang/guile16 instead of lang/guile in preparation for updating 2007-06-12 02:55:15 +00:00
texi2html Update to 1.78: 2007-07-30 18:58:26 +00:00
texi2roff Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
trang
troffcvt Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
unroff Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
untex Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
uriparser Update to 0.7.1. 2008-06-13 05:06:52 +00:00
urlview Fix urlview for LP64 platforms. Bump revision. 2008-04-17 08:42:39 +00:00
vis Add DESTDIR support. 2008-06-20 01:09:05 +00:00
wbxml2 Add DESTDIR support. 2008-06-20 01:09:05 +00:00
wdiff + Include termcap.buildlink3.mk instead of using a custom (wrong) termcap 2008-03-05 15:56:19 +00:00
WordNet Add DESTDIR support. 2008-06-12 02:14:13 +00:00
writer2latex
xalan-c Add DESTDIR support. 2008-06-20 01:09:05 +00:00
xalan-j Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xerces-c Fix PLIST - bump PKGREVISION 2008-04-23 20:23:47 +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 Mark as destdir ready. 2008-07-14 12:55:56 +00:00
xhtml Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
xhtmldiff Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
xml2doc
xmlcatmgr DESTDIR support. 2006-11-03 06:56:23 +00:00
xmlindent Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of 2007-01-07 09:13:46 +00:00
xmlrpc-c The package supports installation to DESTDIR. 2008-02-02 13:38:53 +00:00
xmlstarlet
xmlto The package supports installation to DESTDIR. 2008-01-15 00:02:13 +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
xt Add DESTDIR support. 2008-06-12 02:14:13 +00:00
yodl Fix path to Python script. Upstream should fix configure... 2007-07-31 11:03:48 +00:00
Makefile - added new package p5-XML-Elemental to SUBDIR 2008-07-15 23:08:28 +00:00