pkgsrc/textproc
wiz 61abe133e7 Update to 1.76:
1.76 (February  3 2005)

* BUG FIXES
  ---------

* Perl no longer needs to be installed at build time, but when it is not, the
  path to `perl' that will be used at run time must be passed to the
  `configure' script.

1.74 (January 31 2005)

* COMPATIBILITY
  -------------

* The argument on def like commands line (@deffn and friends) may be
  bracketed, therefore there is no difference between this element and
  others. There is no need of items with { in front in the %def_map
  anymore.

* NEW FEATURES
  ------------

* More @-commands are available to the user, that were ignored before.
  Most of these @-commands are those related with structure or printed
  output.

* BUG FIXES
  ---------

* many deffn and friends line parsing bugs fixed.

1.72 (December 29 2004)

* NEW FEATURES
  ------------

* Handle texinfo 4.7 constructs:
  @caption, @shortcaption, @ordf, @ordm, @registeredsymbol, @deftypecv,
  @LaTeX, @indicateurl, @docbook, @ifdocbook, @ifnotdocbook, @comma,
  @headitem, @quotation second arg, @acronym second arg.
  @url is now a synonym for @uref. @ at the end of a @def* line continues the
  line.
  Handle texinfo 4.8 constructs:
  @abbr, @slanted, @euro and @sansserif.
* Cross refs are done according to the specification presented in the texinfo
  manual in the node HTML Xref.

* BUG FIXES
  ---------

* Re enable compatibility with perl older that 5.6.

1.70 (March 24 2004)

* BUG FIXES
  ---------

* use i18n files even when translations.pl is not included. Include
  translations.pl.

* COMPATIBILITY
  -------------

* install html manual in $datadir/texinfo/html.

[changed in pkgsrc to $datadir/doc/texi2html]

* NEW FEATURES
  ------------

* Add a spec file, usefull to build a rpm.

* FOR DEVELOPERS
  --------------

* Standardized on Autoconf 2.59 & Automake 1.8.3

1.68 (March 20 2004)

* COMPATIBILITY
  -------------

* When the manual is split the default is to put resulting files in a
  directory with name the manual file basename (previously they were left in
  the current directory). To avoid that, call texi2html with '-output .'.

*  The main configuration files are now ./Config, ~/.texi2html/Config,
  $sysconfdir/texi2html/Config and last $datadir/texi2html/Config. They are
  sourced in that order.
  In the future `/etc/texi2htmlrc' and `~/.texi2htmlrc' will no longer be
  sourced and any existing site or user configuration should be moved to the
  new locations if you wish it to be used by newer versions of Texi2HTML.

* Translation files are now stored in $datadir/texi2html/i18n/*,
  $sysconfdir/texi2html/i18n/*, ~/.texi2html/i18n/*, and sourced in that order.
  The translated strings are now associated with the english strings.
  Please see the documentation for the format of the new translation files.

* First index page is the first page with a non empty index (with @printindex).

* The glossary and bibliography terms aren't searched anymore. You should use
  @macro to simulate these features (look at Tests/macros/glossary.texi for
  an example).

* We've standardized on GNU-style `--' prefixed long options, rather than the
  old single-dash prefixed long options in the help, but the single-dash style
  is still accepted on the command line for the time being.
  We also changed `_' to `-' in option names.

* @setref handling is removed as the right corresponding @-command is @anchor.

* No more global variables outside of namespaces.
  Global variables are now in the Texi2HTML namespace.
  leading T2H_ is stripped from variable, hashes and array names. You should
  change your variable names for the new release. As the global variables
  (%THISDOC, $THIS_SECTION...) are in the Texi2HTML namespace you should use,
  for example, $Texi2HTML::THISDOC{'fulltitle'} now.
  functions from the main program should now be qualified in the main
  namespace. t2h_ is stripped from the function names too.
  t2h_anchor is now a function reference in init file, and thus should
  be called like &$anchor(...).
  toc file and main file are arguments for print_frame, overview lines are
  arguments for print_toc_frame (instead of global variables).

* $THISPROG, $T2H_HOMEPAGE, $T2H_AUTHORS, $T2H_TODAY, $T2H_USER are now
  values associated with the following keys in %Texi2HTML::THISDOC:
  `program', `program_homepage', `today', `user'.

* Changes in the function reference used for the page layout:
  print_section don't do the end of page or section anymore (except when
  split at node), end_section does the end of a section, and print_*_footer
  does the end of page.
  the print_*_header, print_*_footer... functions take a ref on the buttons
  array as argument, instead of using the $T2H_BUTTONS global variable.
  Have a look at the texi2html.init file to update your configuration files.

* T2H_InitGlobals is not used anymore. Use the function reference init_out
  to define $BODYTEXT dynamically and %Texi2HTML::THISDOC values in
  print_page_foot and about_body to recreate the address instead of the
  $T2H_ADDRESS.
  You can have a look at program_string in texi2html.init which recreates
  the address. $T2H_ADDRESS isn't used anymore.

* variables for latex2html are not in texi2html init file anymore but in
  l2h.init.

* don't expand @ifinfo regions by default.

* option --output obsoletes -out_file and -subdir. It is the same than
  --out_file when output is not split, and the same than --subdir when it is
  split.

* If not split, the resulting file has a leading directory, and the directory
  doesn't exist, it is created.

* If a directory creation fails the program aborts.

* Don't use T2H_CENTER_IMAGE, @center should be used.

* the init_out function redefines dynamically %NAVIGATION_TEXT, %BUTTONS_GOTO
  and $BODYTEXT. You should redefine the hash values in that function. If you
  want to reuse the values of the default values set by init_out,
  you could do something like:

  my $default_init_out = $init_out;
  $init_out = \&makeinfo_like_init_out;
  sub makeinfo_like_init_out()
  {
     my $encoding = &$default_init_out();
     $NAVIGATION_TEXT{'Following'} = ' > ';
     return $encoding;
  }

* NEW FEATURES
  ------------

* Many changes towards output of stricter HTML.

* initialization files for html 3.2, xhtml, html 4.0 with inline style,
  no header, utf8 characters outputted, makeinfo style, book style, conversion
  to chm files and conversion to roff. Initialization files are searched
  in ./, ~/.texi2html, $sysconfdir/texi2html and last $datadir/texi2html.
  The file names are html32.init, xhtml.init, inlinestyle.init,
  noheaders.init, utf8.init, makeinfo.init, book.init, chm.init and roff.init.

* The test suite is much more comprehensive and uses validate and tidy to
  assess the correctness of the HTML.

* Handling of @html, @verbatim, @verb, @sp, @=, @copying, @insertcopying,
  @cartouche, @titlefont, @dircategory, @direntry, @shorttitlepage, @\,
  @afourlatex, @afourwide, @firstparagraphindent, @exampleindent, @novalidate,
  @definfoenclose, @kbdinputstyle, @centerchap, @documentdescription,
  @documentencoding, @contents, @shortcontents, @verbatiminclude.

* With --no-validate node cross-reference validation is suppressed (like
  @novalidate).

* --expand may be specified more than once such that more than one additional
  region could be expanded. --noexpand does the reverse. --iftex, --ifinfo...
  and --no-ifinfo... can be used instead.

* add http-equiv="Content-Type" tag for the charset declaration.

* HTML formatting is isolated in customizable functions located in the
  initialization files.

* menu comments are in a preformatted context.

* Any combination of caps for `top' leads to the top node.

* @ref{(perl)Top} leads to a ref to the info manual.

* References to external manual in @ref and menus are links to the html
  pages (with the same convention than makeinfo --html use).
  --html-xref-prefix is the base dir for external manual references.

* With --node-files do a file per node which can be used as a target for
  cross references from other manuals (including manuals generated with
  makeinfo --html).

* With --use-nodes nodes are sectionning commands whe they are not associated
  with a structuring command.

* With --toc-links create links from headings to toc entries.

* distinct directions (next, prev...) for nodes and sections, more directions.

* split at chapter, section or for every node.

* new possibilities for buttons. If this is a ref to a scalar, the text
  appears in navigation. If it is an array, the first element is a direction
  used for the href, the second element is a scalar ref for the text.

* With --noseparated-footnotes the footnotes are in the same page than the
  text.

* %NO_TEXI hash similar with %HREF but without texinfo commands,
  %THISDOC{'title_no_texi'}

* "-U value" does the same than "@clear value".

* -P option prepends directory for include files before the document directory.

* -macro-expand generates a file with expanded macros and @include.

* pass $L2H_HTML_VERSION for the html version to latex2html.

* support for css. The --css-include option does the same than in makeinfo
  (parse the file, and echo the @import part before the texi2html css rules,
  the rules part after the texi2html css rules).
  The texi2html css commands may be customized too.

* Text before the first @node or sectionning command is part of the first
  section unless -ignore-preamble-text is set.

* if `-' is given to the -output option, output on STDOUT.

* Add images from the Singular project.

* All the strings appearing in the HTML are internationalized.

* centering and flushing is really handled.

* Format titlepage (even though the formatted text isn't used by default).

* Handle all the encodings perl knows about.

* BUG FIXES
  ---------

* @multitable size determination, out of bounds columns ignored.

* In @table and @itemize, @item is replaced by the @-command argument.

* nested @-commands are better handled.

* in index keys @-commands are replaced by the right symbols.

* files are omitted in hrefs when they points to the same file.

* $value{_title}... are expanded during HTML generation.

* @H{a} leads to a'' and not á

* cedilla are accepted in node names.

* Any characters are accepted in menu comments.

* frame target is the top file, and not the toc file.

* rewriting of the @macro code completely. This likely fixed some bugs but
  this hasn't been verified by running the new, more complex test cases
  against the old code.

* rewriting of the document structure resolution.
  unnumbered regions are at the right level and splitted indices don't break
  the document structure anymore.
  index entries and footnotes are more precisely located.

* @-commands ignored are ignored with the line, the arg or following spaces
  like makeinfo does.

* FOR DEVELOPERS
  --------------

* Standardized on Autoconf 2.59 & Automake 1.8.2

* The --enable-maintainer-mode option is now required by configure to enable
  what is considered the maintainer-specific portions of Makefiles.  This
  includes the portions which automatically rebuild the configure and build
  files (configure, aclocal, Makefile.in, etc) when configure.in or other
  dependencies are changed.

* The config is in the Texi2HTML::Config namespace. The latex2html related
  functions are in the Texi2HTML::LaTeX2HTML namespace. The
  internationalization functions are in the Texi2HTML::I18n namespace in
  T2h_i18n.pm.

1.66 (June 8 2002)
* Many bug fixes.

1.65 (August 26 2001)
* Many bug fixes.
* The operation of the previously broken << (FastBack) and >> (FastForward)
  buttons has changed slightly.  FastBack now returns to the beginning of the
  current chapter and FastForward now jumps to the beginning of the next
  chapter.
2005-02-07 13:30:11 +00:00
..
aiksaurus update to 1.2.1 2004-12-29 09:18:20 +00:00
antiword Update to 0.36.1: 2005-01-01 03:57:21 +00:00
aspell Buildlink tools used by aspell language packages, so that those 2004-12-31 14:26:47 +00:00
aspell-breton Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-catalan Update to 20040130 version: adapt to aspell-0.60 series. 2004-12-24 03:03:46 +00:00
aspell-czech Update to 20040614: adapt to aspell-0.60 series. 2004-12-24 03:05:04 +00:00
aspell-danish Update to 1.4.42.1: changes unknown. 2004-12-24 03:05:55 +00:00
aspell-dutch Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-english Update to 6.0.0: adapt to aspell-0.60 series. 2004-12-24 03:06:43 +00:00
aspell-esperanto Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-faroese Update to 0.2.16.1: changes unknown. 2004-12-24 03:07:34 +00:00
aspell-francais Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-gaeilge Update to 3.5.0: changes unknown. 2004-12-24 03:08:39 +00:00
aspell-german Update to 20030222.1: adapt to aspell-0.60 series. 2004-12-24 03:09:17 +00:00
aspell-greek Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-italian Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-norwegian Update to 0.50.1.0: use nb instead of no language code; probably some other changes too. 2004-12-24 03:11:36 +00:00
aspell-polish Update to 0.51.0: changes unknown. 2004-12-24 03:12:16 +00:00
aspell-portuguese Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-romanian Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-russian Update to 0.99f7.1: adapt to aspell-0.60 series. 2004-12-24 03:13:38 +00:00
aspell-slovak Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-spanish Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
aspell-svenska Update to 0.51.0: changes unknown. 2004-12-24 03:15:29 +00:00
aspell-ukrainian Update to 0.51.0: changes unknown. 2004-12-24 03:15:29 +00:00
aspell-welsh Remove paths to aspell tools from CONFIGURE_ENV. They are handled by 2004-12-31 14:28:24 +00:00
awf nb1: Mainly Interix fix, but to add portability: Kill explicit PATH 2005-01-18 22:20:08 +00:00
bibclean bl3ify and enable pkgviews installation. 2004-03-07 06:33:40 +00:00
biblook malloc.h fixes for darwin, plus a handful of other small fixes for 2004-05-23 23:28:29 +00:00
bibparse Update to version 1.06. 2004-12-23 16:30:10 +00:00
bsdgrep-devel Cast arguments to ctype macros to "unsigned char" - fixes -current build 2004-12-21 16:09:44 +00:00
btparse Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
catdoc Update HOMEPAGE. 2004-11-01 00:27:41 +00:00
catdoc-tk This package works fine with tk-8.4.8. 2004-12-29 17:27:36 +00:00
cawf Finally, add summarized TODO notes from Jeremy Reed's pkgsrc-wip incarnation. 2005-01-20 19:04:15 +00:00
cdif
chasen Update chasen (meta-package) to 2.3.3; chasen-base-2.3.3 and ipadic-2.7.0. 2004-05-06 13:35:19 +00:00
chasen-base Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
crimson Set USE_JAVA2, so we can use sun-jre* packages, USE_BUILDLINK3 must be 2004-07-07 11:39:30 +00:00
db2latex Remove an install command that doesn't install anything. Should have 2004-12-10 21:55:40 +00:00
detex This does not seem to need to link against libl, so leave it out to allow 2004-06-04 18:34:17 +00:00
dict-client Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
dict-dictionaries Re: PR 25725 Syntax errors prevent compilation of with gcc 3.4.0 2004-06-01 15:36:50 +00:00
dict-server Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
diction
diffstat Make this build on FreeBSD (stop fussing about with malloc.h). 2004-11-10 16:18:29 +00:00
docbook Enable pkgviews installation. 2004-06-04 23:58:12 +00:00
docbook-simple Update docbook-simple to 1.1rc2. 2004-10-30 06:31:02 +00:00
docbook-website Fails to build site unless align and valign options are on the same line. 2005-01-01 15:26:29 +00:00
docbook-xml Enable pkgviews installation. 2004-06-04 23:46:08 +00:00
docbook-xsl Add manpages/docbook.xsl to catalog; bump PKGREVISION to 1. 2004-12-26 15:43:01 +00:00
doclifter Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
dsssl-docbook-modular Use cp -r instead of cp -R, for Irix 5.3. Reported by Georg Schwarz. 2004-09-24 13:09:11 +00:00
dtdparse Update my email address. 2004-11-25 19:11:58 +00:00
eb Define PKGSYSCONFDIR.eb as a shell command sequence, so that it 2004-12-17 01:14:19 +00:00
eblook Update eblook to 1.6.1. 2004-11-20 16:06:21 +00:00
emacs-dict-client
enchant Update to 1.1.5: 2005-01-06 16:50:39 +00:00
eperl Convert to buildlink3. 2004-05-04 23:46:36 +00:00
expat Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
expatobjc Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
flyspell Correct path to DISTFILES. 2004-12-27 03:09:18 +00:00
fop Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
freepwing
gdome2 Gnome DOM (Document Object Model) engine 2005-01-19 09:32:40 +00:00
glimpse
gnome-spell Update to 1.0.6: 2005-01-26 19:28:11 +00:00
gocr Convert to buildlink3. 2004-04-16 21:46:02 +00:00
grep Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
groff Temporarily mark as NOT_FOR_PLATFORM=Interix due to endless loop in build. 2005-01-18 12:54:59 +00:00
gsed Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtk-doc Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
gtkspell Bump PKGREVISION for aspell dependency update. 2004-12-24 04:32:54 +00:00
GutenMark Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
GutenMark-words
helpdeco The nbcompat library is not ready for general use in packages, remove the 2004-09-22 17:38:30 +00:00
hevea - Update of hevea from 1.06 to 1.07 2005-02-04 22:23:23 +00:00
hre Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
html Update to HTML 4.01. Borrow an archive maintained by FreeBSD. 2004-12-25 14:46:06 +00:00
html2text
html2wml Fix some bad roff in the man page. Closes PR 25950. Bump PKGREVISION. 2004-06-21 08:58:59 +00:00
icu fix PLIST substitution for Darwin 2004-11-01 10:51:30 +00:00
intltool Use DEPENDS+= by default, not DEPENDS=. 2005-02-04 14:21:00 +00:00
ipadic Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
isearch Make this compile when using gcc 3.3. 2004-05-23 22:33:17 +00:00
iso8879 Get ISOEnts.zip from oasis-open instead of isoENTS from a master site 2004-11-23 14:15:29 +00:00
iso12083 bl3ify 2004-04-26 10:34:09 +00:00
ispell-base Update ispell-base to 3.2.06 (only took 3 years :-) 2004-12-01 12:18:21 +00:00
ispell-british Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
ispell-catalan
ispell-emacs
ispell-francais
ispell-gaeilge Reset maintainer to tech-pkg@ (from ad@, since he is not working on them 2004-05-07 11:54:35 +00:00
ispell-german Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
ispell-polski
ispell-romanian Update ispell-romanian to 20031216. 2004-12-07 21:14:09 +00:00
ispell-russian
ispell-russian-io
ispell-slovak Update to version 0.2.2. 2004-09-12 20:57:41 +00:00
ispell-spanish Use 'echo y' instead of 'yes' to accept a question asked by the installation 2004-09-12 21:47:46 +00:00
ispell-svenska
ja-grep Merge two patches modifying the same file. As a side effect, this 2004-12-11 08:04:25 +00:00
ja-groff
ja-sed Remove info files entries from PLIST. 2004-03-11 13:28:37 +00:00
jade Add GCC_REQD for Interix -- it's currently generating broken C++ global 2005-01-25 20:26:06 +00:00
kakasi Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
kbanner Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
kdoc USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00
latex2html Bump PKGREVISION, because some versions were broken recently during the 2005-01-06 03:59:31 +00:00
libcroco Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libpathan Honor CFLAGS and CXXFLAGS. This makes the package build with pkgviews 2005-01-03 00:37:42 +00:00
libunicode Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
libxml Enable pkgviews installation. 2004-11-27 18:48:25 +00:00
libxml2 update to 2.6.17 2005-01-16 22:28:34 +00:00
libxslt Backout last change because the check in "buildlink3.mk" doesn't work 2004-12-30 16:42:22 +00:00
lout
lq-sp
lua-expat Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
makeztxt
namazu1
namazu2 Update namazu2 package to 2.0.14 fixing XSS security problem. 2004-12-15 13:09:58 +00:00
nbsed Don't "cp -p" for *source* files. Builds are usually done as an unprivileged 2005-01-06 05:32:29 +00:00
ndtpd The default location of the pkgsrc-installed rc.d scripts is now 2004-12-28 02:47:40 +00:00
openjade Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
opensp Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
p5-Convert-ASCII-Armour since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Convert-ASN1 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Convert-BER since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Convert-PEM since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Cz-Cstools since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Data-FormValidator since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Filter Update textproc/p5-Filter to 1.30. Changes from version 1.16 are mostly 2004-12-25 02:06:55 +00:00
p5-libxml since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-PDF since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-PDF-API2 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-PDF-Create since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Pod-Escapes since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Pod-POM since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Pod-Simple since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Regexp-Common since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-String-Approx since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-String-CRC32 since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-String-ShellQuote since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Autoformat since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Balanced since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-BibTeX since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-ChaSen since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-CSV-Hash since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-CSV_XS since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-DelimMatch since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Diff since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Format since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Kakasi since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Quoted since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Reform since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Shellwords Remove redundant target. 2005-01-08 13:25:03 +00:00
p5-Text-Substitute since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Tabs+Wrap since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Template since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-WikiFormat since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-Text-Wrapper since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Checker since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-DOM since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Encoding since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Filter-BufferText since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Filter-DetectWS since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Filter-Reindent since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Filter-SAXT since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Grove since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-LibXML since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-LibXML-Common since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-LibXML-Iterator since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-LibXML-XPathContext since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-LibXSLT since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-NamespaceSupport since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Node since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-NodeFilter since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Parser since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-RAI since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-RegExp since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-RSS since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-RSS-Parser since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Sablotron since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-SAX since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-SAX-Expat since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Simple since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Stream since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Twig since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-UM since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Writer since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Writer-String since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-Xerces since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-XPath since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-XQL since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-XSLT since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-XUpdate-LibXML since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-XML-YAWriter since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
p5-YAML since perl is now built with threads on most platforms, the perl archlib 2004-12-20 11:30:55 +00:00
par Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
php-wddx now that PHP 5.x Makefile.common doesn't pollute CONFIGURE_ARGS, it safe 2004-11-05 17:11:39 +00:00
php4-domxml it safe to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS 2004-11-05 21:44:44 +00:00
php4-xslt it safe to include "../../lang/php/ext.mk" after extension CONFIGURE_ARGS 2004-11-05 21:44:44 +00:00
php5-dom Add php5-dom 5.0.2 - PHP extension to access XML documents using DOM API. 2004-11-05 21:13:00 +00:00
php5-xsl Add php5-xsl 5.0.2 - PHP5 extension implementing XSL standard, performing 2004-11-05 21:36:08 +00:00
postgresql-autodoc Update postgresql-autodoc to 1.24 2005-01-29 10:17:07 +00:00
psgml-mode Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
py-csv Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
py-docutils Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
py-dtml add python as category 2004-07-22 09:15:59 +00:00
py-expat Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-feedparser Accept Python 2.4. 2005-01-27 03:46:30 +00:00
py-FourSuite add python as category 2004-07-22 09:15:59 +00:00
py-gdick Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-gnosis-utils Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
py-HappyDoc add python as category 2004-07-22 09:15:59 +00:00
py-libxml2 Update py-libxml2 to 2.6.16. 2004-11-25 18:37:43 +00:00
py-libxslt Sync with libxslt-1.1.12. No Python-specific change. 2004-11-03 16:47:44 +00:00
py-Lupy Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
py-Reverend Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
py-SimpleParse Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
py-textile add python as category 2004-07-22 09:15:59 +00:00
py-xml update to 0.8.4 2005-01-13 19:20:59 +00:00
py-xmltools Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
pyDict Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
qsubst Add patch to make this build on -current. 2004-12-04 12:03:42 +00:00
raptor Bump PKGREVISION because of curl dependency bump. 2005-01-03 15:59:12 +00:00
regexx Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
rfcutil PKGREVISION bump after openssl-security-fix-update to 0.9.6m. 2004-03-26 02:27:34 +00:00
rman
robodoc
rtf-tools
rtfm
rubber Build Python with thread support by default and turn the existing 2005-01-23 20:41:45 +00:00
ruby-amrita Migrate ruby-amrita to use new framework for Ruby packages. 2004-11-28 04:22:48 +00:00
ruby-erb Update ruby-erb package to 2.0.4 migrating to use new framework 2004-11-28 04:27:13 +00:00
ruby-eruby Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries. 2005-01-28 14:08:01 +00:00
ruby-html-parser Migrate ruby-html-parser to use new framework for Ruby packages. 2004-11-28 04:31:45 +00:00
ruby-nqxml Migrate ruby-nqxml to use new framework for Ruby packages. 2004-11-28 04:36:05 +00:00
ruby-rdoc Migrate ruby-rdoc to use new framework for Ruby packages. 2004-11-28 04:38:37 +00:00
ruby-rdtool Correct some syntax of buildlink3.mk, may improve bulk build problem. 2004-12-16 13:20:37 +00:00
ruby-rexml Fix broken DEPENDS line noted by PR pkg/29156, Thanks to OBATA Akio who 2005-01-30 04:51:10 +00:00
ruby-rttool Update ruby-rttool to 0.1.8 migrating to use new framework 2004-11-28 04:48:25 +00:00
ruby-xmlparser Add RUBY_HAS_ARCHLIB which have machine dependent extention libraries. 2005-01-28 14:08:01 +00:00
sablotron Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
saxon Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
scew Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
scrollkeeper Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
source-highlight Fix build on NetBSD 1.6.2 (with gcc 2.95.3). 2004-10-23 17:47:16 +00:00
stardic USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00
subtitleripper Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
tcl-dom
tcl-expat Switch to Tcl 8.4. Bump PKGREVISION. 2004-03-09 01:16:59 +00:00
tcl-xml Switch to Tcl 8.4. 2004-03-09 01:22:58 +00:00
tei Bump PKGREVISION and set DIST_SUBDIR=${PKGNAME} because the distfile 2004-08-03 14:04:09 +00:00
teixsl-fo Update teixsl-html and teixsl-fo to 3.3, because their old distfiles 2004-09-11 03:36:54 +00:00
teixsl-html Update teixsl-html and teixsl-fo to 3.3, because their old distfiles 2004-09-11 03:36:54 +00:00
texi2html Update to 1.76: 2005-02-07 13:30:11 +00:00
texi2roff Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs. 2004-12-03 15:14:50 +00:00
troffcvt
unroff Use PATCHFILES rather than trying to do the same itself. 2004-09-08 13:38:50 +00:00
untex
urlview Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
wdiff Add "CONFIGURE_HAS_INFODIR=no" to get this package building. 2004-05-25 04:21:29 +00:00
xalan-c Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xalan-j Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
xerces-c Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xerces-j Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
xhtml
xml2doc Bump PKGREVISIONs due to libtiff update. 2004-12-28 23:18:15 +00:00
xmlcatmgr Increase BUILDLINK_DEPENDS.xmlcatmgr to xmlcatmgr>=2.0beta1 2004-10-09 23:16:14 +00:00
xmlindent This is a C99 program, so require gcc3. 2004-06-28 00:28:07 +00:00
xmlstarlet Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
xmlto The installed bin/xmlto need bin/xsltproc from textproc/libxslt in order 2005-01-22 22:33:45 +00:00
xp Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
xslide Convert to bl3. 2004-04-18 19:34:05 +00:00
xt Update to bl3. All test built with jdk or sun-jdk14. 2004-06-28 17:28:56 +00:00
yodl Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10 2004-10-03 00:12:51 +00:00
Makefile +cawf 2005-01-20 18:00:43 +00:00