debian/0000775000000000000000000000000012253307737007201 5ustar debian/rules0000775000000000000000000000744412253307733010266 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) build_flags = --build=$(DEB_BUILD_GNU_TYPE) else build_flags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) endif dpkg-buildflags = DEB_BUILD_MAINT_OPTIONS="hardening=+all" dpkg-buildflags build_flags += $(shell $(dpkg-buildflags) --export=configure) ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif # shared library versions, option 1 version=2.0.5 major=2 # option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so #version=`ls src/.libs/lib*.so.* | \ # awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'` #major=`ls src/.libs/lib*.so.* | \ # awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` configure-stamp: dh_testdir dh_autoreconf # Add here commands to configure the package. ./configure --host=$(DEB_HOST_GNU_TYPE) \ --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr \ --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \ --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ --with-ispell-dir=/usr/lib/$(DEB_HOST_MULTIARCH)/ispell \ --with-myspell-dir=/usr/share/hunspell \ --disable-zemberek $(build_flags) touch configure-stamp build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(MAKE) touch build-stamp clean: dh_testdir dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. [ ! -f Makefile ] || $(MAKE) distclean dh_autoreconf_clean dh_clean install: build dh_testdir dh_testroot dh_clean dh_installdirs # Add here commands to install the package into debian/tmp $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp # remove bogus RPATHs on /usr/lib chrpath -d debian/tmp/usr/bin/* chrpath -d debian/tmp/usr/lib/*/*.so* chrpath -d debian/tmp/usr/lib/*/enchant/*.so # clean .la references out of dependency_libs, so libtool doesn't # go walking the filesystem for irrelevant information on every # build for file in debian/tmp/usr/lib/*/*.la debian/tmp/usr/lib/*/enchant/*.la; do \ sed -i "/dependency_libs/ s/'.*'/''/" $$file ; \ done # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_movefiles -plibenchant-voikko dh_movefiles -Nlibenchant-voikko dh_installchangelogs ChangeLog dh_installdocs install -m 644 $(CURDIR)/src/aspell/README $(CURDIR)/debian/libenchant1c2a/usr/share/doc/libenchant1c2a/aspell install -m 644 $(CURDIR)/src/ispell/README $(CURDIR)/debian/libenchant1c2a/usr/share/doc/libenchant1c2a/ispell install -m 644 $(CURDIR)/src/uspell/README $(CURDIR)/debian/libenchant1c2a/usr/share/doc/libenchant1c2a/uspell install -m 644 $(CURDIR)/debian/enchant.ordering $(CURDIR)/debian/libenchant1c2a/usr/share/enchant/enchant.ordering dh_installexamples dh_install dh_installman -penchant doc/enchant.1 debian/enchant-lsmod.1 dh_link dh_strip dh_lintian dh_compress dh_fixperms dh_makeshlibs -V dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install debian/watch0000664000000000000000000000011712145440071010216 0ustar version=3 http://www.abisource.com/downloads/enchant/1.6.0 enchant-(.+).tar.gz debian/copyright0000664000000000000000000001004312145440071011117 0ustar This package was debianized by Masayuki Hatta on Tue, 30 Sep 2003 16:46:51 +0900. It was downloaded from http://www.abisource.com/projects/enchant/ Upstream Authors: Dom Lachowicz et. al. Copyright: Copyright (c) 2003- Dom Lachowicz, All Rights Reserved. This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this package; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA On Debian systems, the complete text of the GNU Lesser General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. The mspell backend is released under the following license: /* * Copyright 2002 Kevin B. Hendricks, Stratford, Ontario, Canada * And Contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All modifications to the source code must be clearly marked as * such. Binary redistributions based on modified source code * must be clearly marked as modified versions in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * KEVIN B. HENDRICKS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * * NOTE: A special thanks and credit goes to Geoff Kuenning * the creator of ispell. MySpell's affix algorithms were * based on those of ispell which should be noted is * copyright Geoff Kuenning et.al. and now available * under a BSD style license. For more information on ispell * and affix compression in general, please see: * http://www.cs.ucla.edu/ficus-members/geoff/ispell.html * (the home page for ispell) * * An almost complete rewrite of MySpell for use by * the Mozilla project has been developed by David Einstein * (Deinst@world.std.com). David and I are now * working on parallel development tracks to help * our respective projects (Mozilla and OpenOffice.org * and we will maintain full affix file and dictionary * file compatibility and work on merging our versions * of MySpell back into a single tree. David has been * a significant help in improving MySpell. * * Special thanks also go to La'szlo' Ne'meth * who is the author of the * Hungarian dictionary and who developed and contributed * the code to support compound words in MySpell * and fixed numerous problems with the encoding * case conversion tables. * */ debian/libenchant1c2a.docs0000664000000000000000000000001012145440071012605 0ustar README debian/libenchant-voikko.files0000664000000000000000000000004712145440071013622 0ustar usr/lib/*/enchant/libenchant_voikko.so debian/gbp.conf0000664000000000000000000000015512145440071010606 0ustar [DEFAULT] upstream-branch = upstream debian-branch = master [git-buildpackage] export-dir = ../build-area/ debian/source/0000775000000000000000000000000012145440071010466 5ustar debian/source/format0000664000000000000000000000001412145440071011674 0ustar 3.0 (quilt) debian/source/options0000664000000000000000000000024312145440071012103 0ustar extend-diff-ignore = "(^|/)(configure|aclocal\.m4|dbus\-c\+\+\/aclocal\.m4|dbus\-c\+\+\/configure|config\.sub|config\.guess|config\.status|config\.log|Makefile)$" debian/libenchant1c2a.dirs0000664000000000000000000000020612145440071012625 0ustar usr/lib usr/share/doc/libenchant1c2a/aspell usr/share/doc/libenchant1c2a/ispell usr/share/doc/libenchant1c2a/uspell usr/share/enchant debian/libenchant-dev.dirs0000664000000000000000000000002412145440071012730 0ustar usr/lib usr/include debian/patches/0000775000000000000000000000000012145440071010615 5ustar debian/patches/02-new-ispell-format.diff0000664000000000000000000000112212145440071015227 0ustar Description: Use recent (>=3.3.02) ispell hash format Author: Agustin Martin Domingo Forwarded: no Bug-Debian: http://bugs.debian.org/640788 Index: enchant-1.6.0/src/ispell/ispell.h =================================================================== --- enchant-1.6.0.orig/src/ispell/ispell.h 2011-09-07 18:32:36.212371501 +0200 +++ enchant-1.6.0/src/ispell/ispell.h 2011-09-07 18:33:55.152091750 +0200 @@ -297,7 +297,7 @@ ** character counts as two! */ #ifndef MAXSTRINGCHARS -#define MAXSTRINGCHARS 128 +#define MAXSTRINGCHARS 512 #endif /* MAXSTRINGCHARS */ /* debian/patches/02_Requires-Private.diff0000664000000000000000000000136512145440071015164 0ustar Description: Move glib-2.0 Requires in upstream enchant.pc.in to Requires.private. While enchant depends on glib-2.0, API it exposes to other programs doesn't require glib. This makes life easier for packages depending on enchant Author: Agustin Martin Domingo Index: enchant/enchant.pc.in =================================================================== --- enchant.orig/enchant.pc.in 2011-12-14 15:36:23.000000000 +0100 +++ enchant/enchant.pc.in 2011-12-20 17:11:31.434860468 +0100 @@ -6,6 +6,6 @@ Name: libenchant Description: A spell checking library Version: @VERSION@ -Requires: glib-2.0 gmodule-no-export-2.0 +Requires.private: glib-2.0 gmodule-no-export-2.0 Libs: -L${libdir} -lenchant Cflags: -I${includedir}/enchant debian/patches/10_enchant.1_remove-PU-macro.diff0000664000000000000000000000106712145440071016530 0ustar Description: Fix lintian manpage-has-errors-from-man: .../enchant.1.gz 1: warning: macro `PU' not defined Author: Agustin Martin Domingo Forwarded: http://bugzilla.abisource.com/show_bug.cgi?id=13163 Index: enchant/doc/enchant.1 =================================================================== --- enchant.orig/doc/enchant.1 2011-10-19 21:58:21.715302260 +0200 +++ enchant/doc/enchant.1 2011-10-19 21:58:58.595483852 +0200 @@ -1,4 +1,3 @@ -.PU .TH ENCHANT 1 "July 2006" enchant "Enchant Mini Help File" .SH NAME Enchant \- a spellchecker debian/patches/series0000664000000000000000000000020312145440071012025 0ustar 01-fixminus.diff 03_improve-options-info.diff 10_enchant.1_remove-PU-macro.diff 02-new-ispell-format.diff 02_Requires-Private.diff debian/patches/01-fixminus.diff0000664000000000000000000000167012145440071013533 0ustar Description: Fix hyphen-used-as-minus-sign lintian message Author: Fabrizio Regalli Forwarded: http://bugzilla.abisource.com/show_bug.cgi?id=13163 Last-Update: 2011-08-25 --- a/doc/enchant.1 +++ b/doc/enchant.1 @@ -57,7 +57,7 @@ Enchant looks for Ispell dictionaries in \fI$(datadir)/enchant/ispell\fR and \fI~/.enchant/ispell\fR. Enchant looks for Uspell dictionaries in \fI$(datadir)/enchant/uspell\fR and \fI~/.enchant/uspell\fR. .PP -Packagers and users may wish to make symbolic links to the system-wide dictionary directories. Or, preferably, use the --with-myspell-dir, --with-ispell-dir, and --with-uspell-dir 'configure' arguments. +Packagers and users may wish to make symbolic links to the system\-wide dictionary directories. Or, preferably, use the \-\-with-myspell-dir, \-\-with\-ispell\-dir, and \-\-with\-uspell\-dir 'configure' arguments. .SH MORE INFORMATION http://www.abisource.com/enchant/ .SH "SEE ALSO" debian/patches/03_improve-options-info.diff0000664000000000000000000000347112145440071016061 0ustar Description: Some improvements in options info Author: Agustin Martin Domingo Forwarded: http://bugzilla.abisource.com/show_bug.cgi?id=13163 Bug: http://bugzilla.abisource.com/show_bug.cgi?id=13163 Bug-Debian: http://bugs.debian.org/546418 Bug-Debian: http://bugs.debian.org/647281 * Improve wording for -a option. * Add info about -d option to man page. * Add info about -h option to man page and usage. Index: enchant/doc/enchant.1 =================================================================== --- enchant.orig/doc/enchant.1 2011-10-29 08:49:27.000000000 +0200 +++ enchant/doc/enchant.1 2011-10-29 08:51:46.000000000 +0200 @@ -5,7 +5,7 @@ .SH SYNOPSIS .ll +8 .B enchant -[\fB\-a\fR] [\fB\-l\fR] [\fB\-L\fR] [\fB\-v\fR] +[\fB\-a\fR] [\fB\-d dict\fR] [\fB\-h\fR] [\fB\-l\fR] [\fB\-L\fR] [\fB\-v\fR] .ll -8 .br .SH DESCRIPTION @@ -14,7 +14,13 @@ .SS OPTIONS .TP .B "\-a" -List alternatives. +List suggestions in ispell pipe mode format. +.TP +.B "\-d dict" +Use dictionary . +.TP +.B "\-h" +Show short help. .TP .B "\-l" List only the misspellings. Index: enchant/tests/enchant-ispell.c =================================================================== --- enchant.orig/tests/enchant-ispell.c 2011-10-29 08:49:13.000000000 +0200 +++ enchant/tests/enchant-ispell.c 2011-10-29 08:52:29.000000000 +0200 @@ -71,8 +71,9 @@ print_help (FILE * to, const char * prog) { fprintf (to, "Usage: %s [options] -a|-d dict|-l|-L|-m|-v[v]|\n", prog); - fprintf (to, "\t-a lists alternatives.\n"); + fprintf (to, "\t-a lists suggestions in ispell pipe mode format.\n"); fprintf (to, "\t-d dict uses dictionary .\n"); + fprintf (to, "\t-h Show this help message.\n"); fprintf (to, "\t-l lists misspellings.\n"); fprintf (to, "\t-m is ignored.\n"); fprintf (to, "\t-L displays line numbers.\n"); debian/libenchant1c2a.files0000664000000000000000000000011212145440071012762 0ustar usr/lib/*/lib*.so.* usr/lib/*/enchant/lib*.so usr/lib/*/enchant/lib*.so.* debian/compat0000664000000000000000000000000212145440071010364 0ustar 9 debian/docs0000664000000000000000000000003712145440071010041 0ustar BUGS NEWS README TODO HACKING debian/libenchant1c2a.lintian-overrides0000664000000000000000000000035112145440071015323 0ustar # Hardening compiler flags are correctly passed (bug #695319,#685299) libenchant1c2a: hardening-no-fortify-functions usr/lib/*/enchant/libenchant_hspell.so libenchant1c2a: hardening-no-fortify-functions usr/lib/*/libenchant.so.1.6.0 debian/changelog0000664000000000000000000003716412253307327011061 0ustar enchant (1.6.0-10ubuntu1) trusty; urgency=medium * Build using dh-autoreconf. -- Matthias Klose Sun, 15 Dec 2013 12:13:02 +0100 enchant (1.6.0-10) unstable; urgency=low * Upload to unstable -- Prach Pongpanich Fri, 17 May 2013 21:35:14 +0700 enchant (1.6.0-9) experimental; urgency=low * Fix FTBFS on non-amd64 architectures: (Closes: #703820) - Use the (c++) syntax in libenchant1c2a.symbols * Add Vcs-* fields in debian/control * Add debian/gbp.conf -- Prach Pongpanich Sun, 24 Mar 2013 23:46:45 +0700 enchant (1.6.0-8) experimental; urgency=low * New maintainer. (Closes: #580680) * Build with hardening flags: - Bump debhelper compat to level 9. - Add debhelper (>= 9). - Replace FLAGS,CPPFLAGS,LDFLAGS with dpkg-buildflags. - Override false positive hardening-no-fortify-functions lintian warnings. * Multiarch support: - Add "Pre-Depends: ${misc:Pre-Depends}" for libenchant1c2a, libenchant-voikko. - Add DEB_HOST_MULTIARCH and pass it to --libdir in configure. - Replace /usr/lib/ with /usr/lib/*/ in {libenchant1c2a, libenchant-dev,libenchant-voikko}.files and debian/rules. - Add "Multi-Arch: same" for libenchant1c2a,libenchant-voikko. * Use symbols file: - Add libenchant1c2a.symbols. - Add "dh_makeshlibs -V" in debian/rules. - Drop libenchant1c2a.shlibs. - Drop TODO.debian file. * Update 02_Requires-Private.diff to DEP-3 format. * Bump to Standards-Version 3.9.4, no changes needed. -- Prach Pongpanich Mon, 11 Feb 2013 18:29:04 +0700 enchant (1.6.0-7) unstable; urgency=low * QA upload. * debian/control: - Prefix libenchant1c2a depends with a non-virtual package. * 02_Requires-Private.diff: - Move glib-2.0 Requires in upstream enchant.pc.in to Requires.private. While enchant depends on glib-2.0, API it exposes to other programs doesn't require glib. This makes life easier for packages depending on enchant (Closes: #651819). -- Agustin Martin Domingo Wed, 21 Dec 2011 11:37:41 +0100 enchant (1.6.0-6) unstable; urgency=low * QA upload. * debian/patches: Add/update DEP-3 headers. * debian/enchant-lsmod.1: Some fixes and improvements. -- Agustin Martin Domingo Wed, 02 Nov 2011 12:50:29 +0100 enchant (1.6.0-5) unstable; urgency=low * QA upload. * debian/control: - Make libenchant1c2a depend on (myspell|aspell|ispell|hunspell)-dictionary (Closes: #646555). - Fix wording of libenchant1c2a description (Closes: #647284). * 03_improve-options-info.diff: New quilt patch with some improvements in options info (Closes: #647281). * debian/enchant-lsmod.1: Fix typo (Closes: #647279). -- Agustin Martin Domingo Wed, 02 Nov 2011 09:43:39 +0100 enchant (1.6.0-4) unstable; urgency=low [ Fabrizio Regalli ] * QA upload. * Fixed format-3.0-but-debian-changes-patch lintian message * Bump to 3.9.2 Standards-Version * Bump debhelper to (>= 8.0.0) * Update d/compat to 8 * Replaced 'Conflicts' with 'Breaks' in d/rules * Added d/watch * Added build-{arch,indep} rules * Added 01-fixminus.diff patch [ Agustin Martin Domingo ] * debian/rules: - Do not change upstream config.{guess,sub} for anything than building (Closes: #643107). - Set compile/link flags to those provided by dpkg-buildflags. Needs a recent enough dpkg-dev. * 02-new-ispell-format.diff. New patch to make enchant use new ispell 3.3 format (Closes: #640788). Break old ispell. * Create a minimal man page for enchant-lsmod. * Move binary programs from library package to new binary package enchant (Closes: #219436, #532873). * 10_enchant.1_remove-PU-macro.diff: New patch to no longer use unavailable .PU nroff macro . -- Agustin Martin Domingo Fri, 21 Oct 2011 09:58:13 +0200 enchant (1.6.0-3) unstable; urgency=low * QA upload. * Finish emptying dependency_libs in .la files. Closes: #633320. * Fix short description to not start with an article. -- Regis Boudin Thu, 18 Aug 2011 20:08:27 +0100 enchant (1.6.0-2) unstable; urgency=low * QA upload. * debian/rules: clean the dependency_libs out of libenchant.la at build time, per Policy 10.2. -- Steve Langasek Mon, 21 Mar 2011 17:30:19 -0700 enchant (1.6.0-1) unstable; urgency=low * QA upload. * Orphaned package, set Debian QA Group as the maintainer * New upstream release (Closes: #531457) * Drop patches, merged upstream * Merge with 1.6.0 packaging from Ubuntu, which diverged after 1.4.2-3.3 - Main difference splitting libenchant-voikko (Closes: #567408) - Does not always show Turkish (Closes: #584783) - Merge changelogs * Bring in 1.4.2-3.4 - 3.6 fixes not in Ubuntu - myspell-dir to hunspell - dependency in -dev package to libglib2.0-dev - removing RPATHs * Add vcs urls, now in collab-maint git * Zemberek disabled by default as recommended by upstream (crashes) * Update debhelper dependency to 7 * Switch to 3.0 (quilt) source format * Add ${misc:Depends} and other lintian fixes * Refer to LGPL-2.1 instead of symlink * Update Standards-Version -- Timo Jyrinki Thu, 03 Jun 2010 20:33:44 +0300 enchant (1.6.0-0ubuntu1) lucid; urgency=low * New upstream version, clean debian changes which are in the new version * debian/libenchant1c2a.shlibs: - updated since enchant_get_version() is new -- Sebastien Bacher Tue, 13 Apr 2010 13:45:11 +0200 enchant (1.5.0-0ubuntu5) lucid; urgency=low * debian/patches/91_upstream_kmail_crash.dpatch: - upstream change to fix a kmail crash issue, thank Kjetil Kjernsmo (lp: #474062) -- Sebastien Bacher Mon, 29 Mar 2010 14:41:08 +0200 enchant (1.5.0-0ubuntu4) lucid; urgency=low * debian/rules: Disable backend zemberek by passing --disable-zemberek flag This option makes sylpheed crash if zemberek is not installed, which have a lot of java depends. (LP: #413994) -- Julien Lavergne Thu, 19 Nov 2009 11:29:06 -0600 enchant (1.5.0-0ubuntu3) karmic-proposed; urgency=low * debian/patches/90_upstream_change_dont_truncated_custom_dictionnary.dpatch: - upstream change to fix incorrect dictionnary checking leading to clear the custom dictionnary entries on start (lp: #446230) -- Sebastien Bacher Mon, 02 Nov 2009 12:29:56 +0100 enchant (1.5.0-0ubuntu2) karmic; urgency=low * debian/patches/03_turkish_list_only_when_zemberek_installed.patch.dpatch: - correctly check if zemberek is installed to list the turkish dictionary (lp: #276118) -- Sebastien Bacher Thu, 08 Oct 2009 14:24:28 +0200 enchant (1.5.0-0ubuntu1) karmic; urgency=low * New upstream version * debian/libenchant1c2a.shlibs: - updated shlibs version -- Sebastien Bacher Tue, 28 Jul 2009 17:03:53 +0200 enchant (1.4.2-3.6) unstable; urgency=medium * Non-maintainer upload. * Fix crash on ispell code when building with gcc >= 4.4 (Closes: #567961) + Bump severity to not to delay the two fixes any longer. -- Raphael Geissert Mon, 08 Feb 2010 00:06:10 -0600 enchant (1.4.2-3.5) unstable; urgency=low * Non-maintainer upload. * Add missing dependency to -dev package (Closes: #565932) -- Raphael Geissert Fri, 29 Jan 2010 18:14:14 -0600 enchant (1.4.2-3.4) unstable; urgency=low * Non-maintainer upload. * --with-myspell-dir=/usr/share/hunspell (closes: #549877) * remove RPATHs on /usr/lib... -- Rene Engelhard Sun, 15 Nov 2009 22:57:41 +0100 enchant (1.4.2-3.3ubuntu1) jaunty; urgency=low * Merge with Debian; remaining changes: - Split libenchant_voikko.so into a separate package to avoid pulling in the copious voikko dependencies, lifting the package description from the previous libenchant-voikko binary from tmispell-voikko. - Make libenchant1c2a Suggest: libenchant-voikko. -- Matthias Klose Fri, 28 Nov 2008 09:21:11 +0100 enchant (1.4.2-3.3) unstable; urgency=low * Non-maintainer upload. * added debian/patches/02_fix_non_matching_dicts_crasher.dpatch: - don't close the directory before returning a dictionary otherwise the code listing the next entries will crash. Closes: #492212 -- James A. Treacy Wed, 08 Oct 2008 23:58:33 -0400 enchant (1.4.2-3.2) unstable; urgency=low * Non-maintainer upload. * Bump shlibs to the current upstream (Closes: #499710) -- Paul Wise Tue, 30 Sep 2008 14:52:05 +0800 enchant (1.4.2-3.1ubuntu2) intrepid; urgency=low * debian/patches/02_fix_non_matching_dicts_crasher.dpatch: - don't close the directory before returning a dictionnary otherwise the code listing the next entries will crash (lp: #261596) -- Sebastien Bacher Tue, 07 Oct 2008 15:32:37 +0200 enchant (1.4.2-3.1ubuntu1) intrepid; urgency=low * Merge from debian unstable, remaining changes (LP: #261075): - Split libenchant_voikko.so into a separate package to avoid pulling in the copious voikko dependencies, lifting the package description from the previous libenchant-voikko binary from tmispell-voikko. - Make libenchant1c2a Suggest: libenchant-voikko. -- Laurent Bigonville Tue, 02 Sep 2008 19:20:35 +0200 enchant (1.4.2-3.1) unstable; urgency=low * Non-maintainer upload. * Re-add lost patch for using gmodule-no-export-2.0 so that libraries linkin to enchant don't have all their symbols exported. Closes:#484463. -- Dafydd Harries Sun, 24 Aug 2008 21:46:43 +0100 enchant (1.4.2-3ubuntu1) intrepid; urgency=low * Split libenchant_voikko.so into a separate package to avoid pulling in the copious voikko dependencies, lifting the package description from the previous libenchant-voikko binary from tmispell-voikko. * Make libenchant1c2a Suggest: libenchant-voikko. -- Steve Langasek Wed, 06 Aug 2008 22:13:23 +0000 enchant (1.4.2-3) unstable; urgency=low * Really added Zemberek support, thanks Mert - closes: #491023 -- Masayuki Hatta (mhatta) Wed, 16 Jul 2008 12:42:19 +0900 enchant (1.4.2-2) unstable; urgency=low * Fixed a typo in control. -- Masayuki Hatta (mhatta) Wed, 16 Jul 2008 05:04:42 +0900 enchant (1.4.2-1) unstable; urgency=low * New upstream release - closes: #479487 * Bumped to Standards-Version: 3.8.0. * Added libvoikko-dev to build-dep. * Now conflicts with libenchant-voikko (Thanks Timo Jyrinki for suggestion). -- Masayuki Hatta (mhatta) Tue, 15 Jul 2008 02:41:17 +0900 enchant (1.3.0-5.1) unstable; urgency=medium * NMU * debian/patches/04_enchant.pc.dpatch - Added. Require gmodule-no-export-2.0 instead of gmodule-2.0 so --export-dynamic isn't added to the linker flags, which breaks libraries using linker script building against libenchant (Closes: #484463) -- Sjoerd Simons Wed, 04 Jun 2008 22:42:56 +0100 enchant (1.3.0-5) unstable; urgency=low * Bumped to Standards-Version: 3.7.3. * Fixed various lintian warnings. -- Masayuki Hatta (mhatta) Thu, 06 Dec 2007 22:58:44 +0900 enchant (1.3.0-4) unstable; urgency=low * Now excludes hyphenation dictionaries from myspell, thanks Harri Pitkanen for patch - closes: #425407 -- Masayuki Hatta (mhatta) Wed, 05 Dec 2007 03:08:37 +0900 enchant (1.3.0-3) unstable; urgency=low * Maintainer upload. * Acknowledged NMU, thanks Rene! - closes: #418262, #403834, #419543 -- Masayuki Hatta (mhatta) Tue, 01 May 2007 19:06:51 +0900 enchant (1.3.0-2.1) unstable; urgency=low * NMU * fix FTBFS wiith new hunspell (closes: #418262) * --with-myspell-dir=/usr/share/myspell/dicts (closes: #403834) * remove obsolete libmyspell-dev build-dep (closes: #419543) -- Rene Engelhard Mon, 16 Apr 2007 15:54:27 +0200 enchant (1.3.0-2) unstable; urgency=low * Install enchant.ordering - closes: #393147 -- Masayuki Hatta (mhatta) Mon, 16 Oct 2006 02:29:42 +0900 enchant (1.3.0-1) unstable; urgency=low * New upstream release - closes: #377933 * Acknowledged NMUs - closes: #321083, #339161 * Revised description - closes: #341902 * Specify --with-ispell-dir in build - closes: #320255 * Bumped to Standards-Version: 3.7.2. * Fixed FSF's address. -- Masayuki Hatta (mhatta) Sat, 14 Oct 2006 23:21:37 +0900 enchant (1.1.6-1.2) unstable; urgency=medium * Non-maintainer upload. * Medium-urgency upload for RC bugfix. * Change package name from libenchant1c2 to libenchant1c2a for the C++ mt allocator ABI change, and conflict/replace libenchant1c2 accordingly. Closes: #339161. -- Steve Langasek Mon, 28 Nov 2005 06:28:05 -0800 enchant (1.1.6-1.1) unstable; urgency=medium * Non-maintainer upload. * Tighten build-deps on myspell. closes: #321083 -- Joshua Kwan Thu, 29 Sep 2005 22:34:39 -0700 enchant (1.1.6-1) unstable; urgency=low * New upstream release - closes: #302637 * Made changes for GCC 4.0 transition. * Added Build-Dep: libz-dev, closes: #301315 * Made Standards-Version: 3.6.2.1 (no physical changes). -- Masayuki Hatta (mhatta) Tue, 12 Jul 2005 03:12:38 +0900 enchant (1.1.4+cvs.2004.08.10-1) unstable; urgency=low * New upstream release (CVS snapshot). -- Masayuki Hatta (mhatta) Tue, 10 Aug 2004 09:01:33 +0900 enchant (1.1.4+cvs.2004.04.07-1) unstable; urgency=low * New upstream release (CVS snapshot). * Linked with hspell. -- Masayuki Hatta (mhatta) Wed, 7 Apr 2004 21:16:38 +0900 enchant (1.1.4+cvs.2004.02.14-1) unstable; urgency=low * New upstream release (CVS snapshot). -- Masayuki Hatta (mhatta) Sat, 14 Feb 2004 16:32:48 +0900 enchant (1.1.4+cvs.2004.02.07-3) unstable; urgency=low * [control] changed Maintainer field. * Temporarily disabled hspell support due to build problem. -- Masayuki Hatta (mhatta) Sun, 8 Feb 2004 02:51:54 +0900 enchant (1.1.4+cvs.2004.02.07-2) unstable; urgency=low * Oops, forgot to apply Rene Engelhard's "use external libmyspell" patch. Sorry rene - closes: #227689 -- Masayuki Hatta (mhatta) Sun, 8 Feb 2004 00:48:15 +0900 enchant (1.1.4+cvs.2004.02.07-1) unstable; urgency=low * New upstream release (CVS snapshot). * Added hspell support. -- Masayuki Hatta (mhatta) Sat, 7 Feb 2004 19:11:01 +0900 enchant (1.1.1+cvs.2003.11.08-1) unstable; urgency=low * New upstream release (CVS snapshot). * Moved /usr/lib/enchant/lib*.so to libenchant1 - closes: #219616 * Include several READMEs (by request) - closes: #219617 * Revised copyright. * Include the upstream manpage - closes: #219435 -- Masayuki Hatta Sat, 8 Nov 2003 13:24:20 +0900 enchant (1.1.1+cvs.2003.10.26-1) unstable; urgency=low * New upstream release (CVS snapshot). -- Masayuki Hatta Sun, 26 Oct 2003 12:05:50 +0900 enchant (0.4.0+cvs.2003.10.23-1) unstable; urgency=low * New upstream release (CVS snapshot). * Build-Depends: libpspell-dev instead of libaspell-dev. -- Masayuki Hatta Thu, 23 Oct 2003 00:03:55 +0900 enchant (0.4.0+cvs.2003.09.30-1) unstable; urgency=low * Initial Release. * aspell, ispell and myspell are supported. uspell is not yet. -- Masayuki Hatta Tue, 30 Sep 2003 16:46:51 +0900 debian/control0000664000000000000000000000637412253307273010611 0ustar Source: enchant Section: devel Priority: optional Maintainer: Prach Pongpanich Build-Depends: autotools-dev, dh-autoreconf, chrpath, debhelper (>= 9), hspell (>= 0.7-2), libdbus-1-dev, libdbus-glib-1-dev, libglib2.0-dev, libhunspell-dev (>= 1.1.5-2), libpspell-dev (>= 0.60.3-3), libvoikko-dev, libz-dev Standards-Version: 3.9.4 Vcs-Git: git://github.com/prachpub/enchant.git Vcs-Browser: https://github.com/prachpub/enchant Homepage: http://www.abisource.com/projects/enchant/ Package: libenchant-dev Section: libdevel Architecture: any Depends: libenchant1c2a (= ${binary:Version}), libglib2.0-dev, ${misc:Depends} Description: Wrapper library for various spell checker engines (development) Enchant is a generic spell checking library which uses existing spell checker engines such as ispell, aspell and myspell as its backends. . Enchant steps in to provide uniformity and conformity on top of these libraries, and implement certain features that may be lacking in any individual provider library. . This package contains files needed for development with Enchant. Package: libenchant1c2a Section: libs Architecture: any Multi-Arch: same Depends: aspell-en | myspell-dictionary | aspell-dictionary | ispell-dictionary | hunspell-dictionary, ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Breaks: ispell (<< 3.3.02), libenchant1, libenchant1c2 Recommends: enchant Replaces: libenchant-dev (<< 1.1.1++cvs.2003.11.08), libenchant1, libenchant1c2 Suggests: libenchant-voikko Description: Wrapper library for various spell checker engines (runtime libs) Enchant is a generic spell checking library which uses existing spell checker engines such as ispell, aspell and myspell as its backends. . Enchant steps in to provide uniformity and conformity on top of these libraries, and implement certain features that may be lacking in any individual provider library. . This package contains the shared library and non-Voikko enchant plugins. Package: libenchant-voikko Section: libs Architecture: any Multi-Arch: same Depends: ${misc:Depends}, ${shlibs:Depends} Pre-Depends: ${misc:Pre-Depends} Breaks: libenchant1c2a (= 1.4.2-3) Replaces: libenchant1c2a (= 1.4.2-3) Description: Voikko spell-checker libenchant plugin Voikko is a Finnish spell-checker and hyphenator based on Malaga and Suomi-Malaga. . This package contains a libenchant provider plugin that allows using Voikko in any application that uses enchant library for spell-checking, such as Abiword. Package: enchant Section: text Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Breaks: libenchant1c2a (<< 1.6.0-4) Replaces: libenchant1c2a (<< 1.6.0-4) Description: Wrapper for various spell checker engines (binary programs) Enchant is a generic spell checking library which uses existing spell checker engines such as ispell, aspell and myspell as its backends. . Enchant steps in to provide uniformity and conformity on top of these libraries, and implement certain features that may be lacking in any individual provider library. . This package contains standalone runtime binary programs. debian/libenchant1c2a.postinst0000664000000000000000000000172012145440071013551 0ustar #!/bin/sh # postinst script for libenchant1c2a # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) ldconfig ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/libenchant1c2a.symbols0000664000000000000000000002133112145440071013356 0ustar libenchant.so.1 libenchant1c2a #MINVER# enchant_broker_describe@Base 1.6.0 enchant_broker_dict_exists@Base 1.6.0 enchant_broker_free@Base 1.6.0 enchant_broker_free_dict@Base 1.6.0 enchant_broker_get_error@Base 1.6.0 enchant_broker_get_param@Base 1.6.0 enchant_broker_init@Base 1.6.0 enchant_broker_list_dicts@Base 1.6.0 enchant_broker_request_dict@Base 1.6.0 enchant_broker_request_pwl_dict@Base 1.6.0 enchant_broker_set_ordering@Base 1.6.0 enchant_broker_set_param@Base 1.6.0 enchant_dict_add@Base 1.6.0 enchant_dict_add_to_personal@Base 1.6.0 enchant_dict_add_to_pwl@Base 1.6.0 enchant_dict_add_to_session@Base 1.6.0 enchant_dict_check@Base 1.6.0 enchant_dict_describe@Base 1.6.0 enchant_dict_free_string_list@Base 1.6.0 enchant_dict_free_suggestions@Base 1.6.0 enchant_dict_get_error@Base 1.6.0 enchant_dict_is_added@Base 1.6.0 enchant_dict_is_in_session@Base 1.6.0 enchant_dict_is_removed@Base 1.6.0 enchant_dict_remove@Base 1.6.0 enchant_dict_remove_from_session@Base 1.6.0 enchant_dict_set_error@Base 1.6.0 enchant_dict_store_replacement@Base 1.6.0 enchant_dict_suggest@Base 1.6.0 enchant_fopen@Base 1.6.0 enchant_get_dirs_from_param@Base 1.6.0 enchant_get_prefix_dir@Base 1.6.0 enchant_get_registry_value@Base 1.6.0 enchant_get_user_config_dirs@Base 1.6.0 enchant_get_user_language@Base 1.6.0 enchant_get_version@Base 1.6.0 enchant_provider_set_error@Base 1.6.0 enchant_pwl_add@Base 1.6.0 enchant_pwl_check@Base 1.6.0 enchant_pwl_free@Base 1.6.0 enchant_pwl_free_string_list@Base 1.6.0 enchant_pwl_init@Base 1.6.0 enchant_pwl_init_with_file@Base 1.6.0 enchant_pwl_remove@Base 1.6.0 enchant_pwl_suggest@Base 1.6.0 gbr_init@Base 1.6.0 gbr_init_lib@Base 1.6.0 qYFU3719188448765_gbr_find_bin_dir@Base 1.6.0 qYFU3719188448765_gbr_find_data_dir@Base 1.6.0 qYFU3719188448765_gbr_find_etc_dir@Base 1.6.0 qYFU3719188448765_gbr_find_exe@Base 1.6.0 qYFU3719188448765_gbr_find_exe_dir@Base 1.6.0 qYFU3719188448765_gbr_find_lib_dir@Base 1.6.0 qYFU3719188448765_gbr_find_libexec_dir@Base 1.6.0 qYFU3719188448765_gbr_find_locale_dir@Base 1.6.0 qYFU3719188448765_gbr_find_prefix@Base 1.6.0 qYFU3719188448765_gbr_find_sbin_dir@Base 1.6.0 libenchant_aspell.so libenchant1c2a #MINVER# configure_enchant_provider@Base 1.6.0 init_enchant_provider@Base 1.6.0 libenchant_hspell.so libenchant1c2a #MINVER# allocate_nodes@Base 1.6.0 corlist_add@Base 1.6.0 corlist_free@Base 1.6.0 corlist_init@Base 1.6.0 delete_dict_radix@Base 1.6.0 dmasks@Base 1.6.0 hspell_check_word@Base 1.6.0 hspell_debug@Base 1.6.0 hspell_enum_splits@Base 1.6.0 hspell_get_dictionary_path@Base 1.6.0 hspell_init@Base 1.6.0 hspell_is_canonic_gimatria@Base 1.6.0 hspell_set_dictionary_path@Base 1.6.0 hspell_trycorrect@Base 1.6.0 hspell_uninit@Base 1.6.0 init_enchant_provider@Base 1.6.0 linginfo_desc2ps@Base 1.6.0 linginfo_desc2text@Base 1.6.0 linginfo_free@Base 1.6.0 linginfo_init@Base 1.6.0 linginfo_lookup@Base 1.6.0 linginfo_stem2text@Base 1.6.0 lookup@Base 1.6.0 new_dict_radix@Base 1.6.0 print_sizes@Base 1.6.0 print_stats@Base 1.6.0 print_tree@Base 1.6.0 read_dict@Base 1.6.0 libenchant_ispell.so libenchant1c2a #MINVER# (c++)"myspace(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::addvheader(dent*)@Base" 1.6.0 (c++)"ISpellChecker::clearindex(flagptr*)@Base" 1.6.0 (c++)"ISpellChecker::expand_pre(char*, unsigned short*, long*, int, char*)@Base" 1.6.0 (c++)"ISpellChecker::expand_suf(char*, unsigned short*, long*, int, int, char*)@Base" 1.6.0 (c++)"ISpellChecker::ichartostr(char*, unsigned short*, int, int)@Base" 1.6.0 (c++)"ISpellChecker::printichar(int)@Base" 1.6.0 (c++)"ISpellChecker::strtoichar(unsigned short*, char*, int, int)@Base" 1.6.0 (c++)"ISpellChecker::extraletter(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::ichartosstr(unsigned short*, int)@Base" 1.6.0 (c++)"ISpellChecker::strtosichar(char*, int)@Base" 1.6.0 (optional|c++)"ISpellChecker::suggestWord(char const*, unsigned long, unsigned long*)@Base" 1.6.0 (c++)"ISpellChecker::wrongletter(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::compoundgood(unsigned short*, int)@Base" 1.6.0 (c++)"ISpellChecker::findfiletype(char const*, int, int*)@Base" 1.6.0 (c++)"ISpellChecker::ins_root_cap(unsigned short*, unsigned short*, int, int, int, int, dent*, flagent*, flagent*)@Base" 1.6.0 (c++)"ISpellChecker::isboundarych(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::missingspace(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::pfx_list_chk(unsigned short*, unsigned short*, int, int, int, flagptr*, int, int)@Base" 1.6.0 (c++)"ISpellChecker::suf_list_chk(unsigned short*, unsigned short*, int, flagptr*, int, flagent*, int, int)@Base" 1.6.0 (c++)"ISpellChecker::wrongcapital(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::ispell_lookup(unsigned short*, int)@Base" 1.6.0 (c++)"ISpellChecker::isstringstart(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::missingletter(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::save_root_cap(unsigned short*, unsigned short*, int, int, int, int, dent*, flagent*, flagent*, unsigned short (*) [120], int*)@Base" 1.6.0 (c++)"ISpellChecker::stringcharlen(char*, int)@Base" 1.6.0 (c++)"ISpellChecker::loadDictionary(char const*)@Base" 1.6.0 (c++)"ISpellChecker::pr_pre_expansion(char*, unsigned short*, flagent*, long*, int, char*)@Base" 1.6.0 (c++)"ISpellChecker::pr_suf_expansion(char*, unsigned short*, flagent*, int, char*)@Base" 1.6.0 (c++)"ISpellChecker::transposedletter(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::makepossibilities(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::requestDictionary(char const*)@Base" 1.6.0 (c++)"ISpellChecker::free_ispell_struct()@Base" 1.6.0 (c++)"ISpellChecker::alloc_ispell_struct()@Base" 1.6.0 (c++)"ISpellChecker::setDictionaryEncoding(char const*, char const*)@Base" 1.6.0 (c++)"ISpellChecker::try_autodetect_charset(char const*)@Base" 1.6.0 (c++)"ISpellChecker::loadDictionaryForLanguage(char const*)@Base" 1.6.0 (c++)"ISpellChecker::good(unsigned short*, int, int, int, int)@Base" 1.6.0 (c++)"ISpellChecker::hash(unsigned short*, int)@Base" 1.6.0 (c++)"ISpellChecker::linit(char*)@Base" 1.6.0 (c++)"ISpellChecker::cap_ok(unsigned short*, success*, int)@Base" 1.6.0 (c++)"ISpellChecker::insert(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::upcase(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::casecmp(char*, char*, int)@Base" 1.6.0 (c++)"ISpellChecker::chk_aff(unsigned short*, unsigned short*, int, int, int, int, int)@Base" 1.6.0 (c++)"ISpellChecker::chk_suf(unsigned short*, unsigned short*, int, int, flagent*, int, int)@Base" 1.6.0 (c++)"ISpellChecker::forcelc(unsigned short*, int)@Base" 1.6.0 (c++)"ISpellChecker::ins_cap(unsigned short*, unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::lowcase(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::mylower(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::myupper(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::whatcap(unsigned short*)@Base" 1.6.0 (c++)"ISpellChecker::chupcase(char*)@Base" 1.6.0 (c++)"ISpellChecker::initckch(char*)@Base" 1.6.0 (c++)"ISpellChecker::iswordch(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::save_cap(unsigned short*, unsigned short*, unsigned short (*) [120])@Base" 1.6.0 (optional|c++)"ISpellChecker::checkWord(char const*, unsigned long)@Base" 1.6.0 (c++)"ISpellChecker::mytolower(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::mytoupper(unsigned short)@Base" 1.6.0 (c++)"ISpellChecker::ISpellChecker(str_enchant_broker*)@Base" 1.6.0 (c++)"ISpellChecker::ISpellChecker(str_enchant_broker*)@Base" 1.6.0 (c++)"ISpellChecker::~ISpellChecker()@Base" 1.6.0 (c++)"ISpellChecker::~ISpellChecker()@Base" 1.6.0 (optional|c++|regex)"^std::" 1.6.0 (optional|c++|regex)"void std::" 1.6.0 (optional|c++)"ISpellChecker::suggestWord(char const*, unsigned int, unsigned int*)@Base" 1.6.0 (optional|c++)"ISpellChecker::checkWord(char const*, unsigned int)@Base" 1.6.0 gnMaskBits@Base 1.6.0 icharcmp@Base 1.6.0 icharcpy@Base 1.6.0 icharlen@Base 1.6.0 icharncmp@Base 1.6.0 init_enchant_provider@Base 1.6.0 libenchant_myspell.so libenchant1c2a #MINVER# (optional|c++)"MySpellChecker::suggestWord(char const*, unsigned long, unsigned long*)@Base" 1.6.0 (c++)"MySpellChecker::requestDictionary(char const*)@Base" 1.6.0 (optional|c++)"MySpellChecker::checkWord(char const*, unsigned long)@Base" 1.6.0 (c++)"MySpellChecker::MySpellChecker(str_enchant_broker*)@Base" 1.6.0 (c++)"MySpellChecker::MySpellChecker(str_enchant_broker*)@Base" 1.6.0 (c++)"MySpellChecker::~MySpellChecker()@Base" 1.6.0 (c++)"MySpellChecker::~MySpellChecker()@Base" 1.6.0 (optional|c++|regex)"^std::" 1.6.0 (optional|c++|regex)"void std::" 1.6.0 (optional|c++)"MySpellChecker::suggestWord(char const*, unsigned int, unsigned int*)@Base" 1.6.0 (optional|c++)"MySpellChecker::checkWord(char const*, unsigned int)@Base" 1.6.0 init_enchant_provider@Base 1.6.0 debian/enchant-lsmod.10000664000000000000000000000215412145440071012006 0ustar .TH ENCHANT-LSMOD "1" "October 2011" "enchant-lsmod" "User Commands" .SH NAME enchant-lsmod \- Show information about available spell-checking modules and dictionaries. .SH SYNOPSIS enchant\-lsmod [\-lang [language_tag]] [\-list\-dicts] [\-h] [\-v] .SH OPTIONS .IP "\fB-lang [language_tag]\fP " 10. Show dictionary to be used for given language_tag. If language_tag is not given show default dictionary for current language setting. .IP "\fB-list-dicts\fP " 10 List preferred dictionaries for language tags. .IP "\fB-h\fP " 10 Show help info and exit. .IP "\fB-v\fP " 10 Show version and exit. .SH AUTHOR \fBenchant-lsmod\fP was written by Dom Lachowicz and is distributed under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See http://www.abisource.com/enchant/ for more info. .PP This manual page was written by Agustin Martin for the Debian project (but may be used by others). It was generated with some help of help2man. .SH "SEE ALSO" enchant(1) debian/libenchant-dev.files0000664000000000000000000000021012145440071013066 0ustar usr/include/* usr/lib/*/lib*.a usr/lib/*/lib*.so usr/lib/*/enchant/lib*.a usr/lib/*/pkgconfig/* /usr/lib/*/*.la /usr/lib/*/enchant/*.la debian/enchant.install0000664000000000000000000000001012145440071012165 0ustar usr/bin debian/enchant.ordering0000664000000000000000000000024712145440071012344 0ustar *:myspell,aspell,ispell fi:voikko,ispell,myspell,aspell fi_FI:voikko,ispell,myspell,aspell he:hspell,myspell he_IL:hspell,myspell yi:uspell tr:zemberek tr_TR:zemberek