summaryrefslogtreecommitdiff
path: root/textproc/aspell/patches
AgeCommit message (Collapse)AuthorFilesLines
2008-09-22Add patch fixing problem checking html files, reported by Chris Rosswiz1-0/+15
and Uwe Klaus on pkgsrc-users; using upstream patch. Bump PKGREVISION.
2008-04-29Update to 0.60.6:wiz6-170/+3
Complete list of changes from 0.60.5: * Compile fixes for Gcc 4.3. * Updated to Libtool 2.2.2 and Automake 1.10.1 * Minor tweak to suggestion code which improved suggestion results in certain cases. * Always line buffer stdout and stderr in the Aspell utility when there is the potential for it to be used interactively through a pipe. * Removed debug output in `aspell munch-list'. * Other minor updates and bug fixes.
2007-01-06Update to 0.60.5:wiz5-30/+17
* Compile fix for gcc 4.1 * Updated to Gettext 0.16.1, Libtool 1.5.22, Automake 1.10, Autoconf 2.61 * Documentation improvements, including an updated `man' page. * Complain if more than one file is specified when checking files using the `aspell check' command, rather than ignoring the other files. * Large number of bug fixes.
2006-11-24Made the package work on Solaris. It needed an obscure patch andrillig1-1/+16
USE_PKGLOCALEDIR.
2006-10-01added support for IRIX 5schwarz5-4/+118
2006-06-15Welcome to the brave new world of gettext-0.14.5 -- if a source filejlam1-0/+16
includes <libintl.h>, then it may also pull in macro redefintions for all of the *printf() functions. Unfortunately, macros do not mix well with C++ code which expects to be able to partition names, e.g. printf and vprintf, into the class namespace. (Mostly) fix this problem by undefining printf and vprintf after <libintl.h> is included. This addresses PR pkg/33577.
2006-06-14Fix buildling for gcc4adam1-0/+13
2005-10-27Added two more patches for Solaris, which makes the package build.rillig2-0/+103
Removed the extra LIBS for the SunPro compiler from the Makefile, as they made the build fail for me.
2005-10-27Added four patches that are required for the SunPro compiler. Therillig4-0/+113
package still does not build on Solaris, but at least it's making progress.
2005-06-28Update to 0.60.3.wiz3-29/+3
Complete list of changes from 0.60.2: * Fixed bugs involving several of the C API functions. * Fixed bug where `ultra' or `fast' mode will not return any suggestions when soundslike lookup is not used. * Made a minor, yet significant, optimization to the suggestion code. This speed things up by an order of magnitude in some cases. * Avoid using the slow ngram scan except when the `sug-mode' is `slow' or `bad-speller'. * Fixed a bug in curses mode which causes word-wrap to not work correctly in some cases. * Fixed a bug in pipe mode with a missing newline. * Fixed the `spell' compatibility script. * Several other minor bugs fixed. * Made note about the change in behavior of the `-l' command line switch. * Other manual update/fixes. * Updated to Libtool 1.5.18, Automake 1.9.6, and Makeinfo 4.8.
2005-06-26Add patch from program's author that fixes aspell-cz build.wiz1-0/+13
Bump PKGREVISION to 1.
2005-02-20Add patch from Matthew Luckie in PR 29297 to make this compile on 1.6.1.wiz1-0/+13
Will be in next aspell release.
2004-12-24Update to 0.60.2.wiz7-138/+9
New in 0.60.2: * Added the `munch-list' command to the aspell utility. The `munch' program in the `myspell/' directory will disappear in Aspell 0.61. The `munchlist' script will also likely disappear or be replaced when Aspell 0.61 is released since it doesn't work correctly anyway. * Several important bug fixes some of which rendered some non-English languages unusable. * Other minor changes. New in 0.60.1.1: * Fix bug involving checking of capitalized word when affix compression is used. * Compile fixes. * Added an option to disable using the "wide" curses version in case it causes compile problems. * Minor manual updates * Avoided including some unnecessary files in the distribution. New in 0.60.1: * Lots of compile fixes for various platforms. * Miscellaneous bug fixes. * Added Nroff filter thanks to Sergey Poznyakoff. * The default filter mode when in pipe mode is now nroff for compatibility with Ispell. * Added Texinfo filter. * Added a section detailing the differences between Ispell and Aspell. * Updated the section on thread safety. * Other miscellaneous manual changes such as updating the To Do and Authors section. Changes since 0.50.5: * Added support for Affix Compression. Affix compression stores the root word and then a list of prefixes and suffixes that the word can take, and thus saves a lot of space. The codebase comes from MySpell found in OpenOffice. It uses the same affix file that OpenOffice (and Mozilla) use. Affix compression will even work with soundslike lookup to a limited extent. * Added support for accepting all input and printing all output in UTF-8 or some other encoding different from the one Aspell uses. This includes support for Unicode normalization. Aspell can now support any language with no more than 210 distinct characters, including different capitalizations and accents, _even if_ there is not an existing 8-bit encoding that supports the language. * Added support for loadable filters and customizable filter modes thanks to Christoph Hintermüller. * Enhanced SGML filter to also support skipping sgml tags such as "script" blocks thanks to Tom Snyder. * Added gettext support thanks to Sergey Poznyakoff * Reworked the compiled dictionary format. Compiled dictionaries now take up less space (less than 80% for the English language) and creating them is significantly faster (over 4 times for the English language). * Reworked suggestion code. It is significantly faster when dealing with short words (up to 10 times). Also added support for MySpell Replacement Tables and n-gram lookup. In addition, added basic support for compound words. * Manual has has been converted to texinfo format thanks to the work of Chris Martin. * Reworked the build system so that a single Makefile is used for most of the code. * All data, by default, is now included in `LIBDIR/aspell-0.60'. Also added a built time option to increment the major version number of the shared library. This should allow both Aspell version 0.50 and 0.60 to coexist. The major version number is _not_ incremented by default as Aspell 0.60 is binary compatible with Aspell 0.50. NOTE: this is not true for pkgsrc. * The code to handle dictionaries has been rewritten. Because of this support for the dictionary option `strip-accents' has been removed. In addition the `ignore-accents' option is currently unimplemented. * Lots of other minor changes due to massive overhaul of the source code.
2004-07-24Make it compile with SunPro C++salo5-0/+123
2003-12-03update to 0.50.4.1recht1-12/+0
changes since 0.50.2: # Fixed major bug in pipe mode which caused the last character to be chopped off words before they were stored. # Minor formating fixes in the manual. # Minor changes in URL filter to avoid treating the double quote character as part of the URL, and to avoid treating words ending in more than one period as a URL. # Document fixes in Aspell API # Small compile fixes, including one for GCC 3.3 # Updated Win32 section since a port now exists thanks to Thorsten Maerz. # Complain instead of doing nothing or aborting for unimplemented functions in Aspell utility. # Portability bug fixes. # Upgraded to Autoconf 2.57, Automake 1.7.7, Libtool 1.5 (no longer use CVS version of libtool). ok'ed by wiz@
2003-10-02work around to remove dependency to ncurses on netbsd. PR pkg/22992itojun1-0/+14
2003-09-30I don't pretend to understand this layer of the C++ template abyss, but I foundmycroft1-0/+19
this patch on the web that purports to make it work with GCC 3/libstdc++ 3.
2003-07-14Fix build.jmmv1-0/+12
2002-10-05Convert to buildlink2.wiz5-80/+0
2002-01-15Initial import of aspell:wiz5-0/+80
Aspell is an Open Source spell checker designed to eventually replace Ispell. Its main feature is that it does a much better job of coming up with possible suggestions than Ispell does. In fact recent tests shows that it even does better than Microsoft Word 97's spell checker in some cases. In addition it has both compile time and run time support for other non English languages. Aspell is also a library however the recommend way to use aspell is through the Pspell library as the actual interface to the aspell library is constantly changing.