--- gtkspell-2.0.13.orig/debian/libgtkspell0.symbols +++ gtkspell-2.0.13/debian/libgtkspell0.symbols @@ -0,0 +1,9 @@ +libgtkspell.so.0 libgtkspell0 #MINVER# + gtkspell_attach@Base 2.0.10 + gtkspell_detach@Base 2.0.10 + gtkspell_error_quark@Base 2.0.10 + gtkspell_get_from_text_view@Base 2.0.10 + gtkspell_init@Base 2.0.10 + gtkspell_new_attach@Base 2.0.10 + gtkspell_recheck_all@Base 2.0.10 + gtkspell_set_language@Base 2.0.10 --- gtkspell-2.0.13.orig/debian/control +++ gtkspell-2.0.13/debian/control @@ -0,0 +1,24 @@ +Source: gtkspell +Section: libs +Priority: optional +Maintainer: Ari Pollak +Build-Depends: debhelper (>> 4.0.0), libenchant-dev, libgtk2.0-dev (>= 2.4.0), libltdl3-dev, libxml-parser-perl +Standards-Version: 3.7.3 + +Package: libgtkspell0 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: a spell-checking addon for GTK's TextView widget + GtkSpell provides MSWord/MacOSX-style highlighting of misspelled words in a + GtkTextView widget. Right-clicking a misspelled word pops up a menu of + suggested replacements. + +Package: libgtkspell-dev +Section: libdevel +Architecture: any +Depends: libenchant-dev, libgtk2.0-dev, libgtkspell0 (= ${Source-Version}) +Description: Development files for GtkSpell + This package contains the headers and static libraries for developing + applications with GtkSpell support. Also included are documentation and + example code for developing GtkSpell applications. --- gtkspell-2.0.13.orig/debian/rules +++ gtkspell-2.0.13/debian/rules @@ -0,0 +1,115 @@ +#!/usr/bin/make -f +# 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 + +# 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) + +CFLAGS= -g -Wall + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +# shared library versions, option 1 +# Change this whenever a forward-compatible change is made +version=2.0.2 +# Change this whenever the major number in the library is changed +major=0 +# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so +#version=`ls gtkspell/.libs/lib*.so.* | \ +# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'` +#major=`ls gtkspell/.libs/lib*.so.* | \ +# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'` + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --disable-gtk-doc --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + +build: build-stamp +build-stamp: config.status + 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. + -$(MAKE) distclean + -test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub config.sub + -test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess config.guess + + rm -f docs/html/gtkspell.devhelp docs/gtkspell-decl.txt \ + docs/gtkspell-decl-list.txt docs/gtkspell-undocumented.txt + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp + $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr + + rm debian/tmp/usr/lib/*.la + +# 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 + +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit + dh_installcron + dh_installman + dh_installinfo + dh_installchangelogs ChangeLog + dh_link + dh_strip + dh_compress + dh_fixperms + dh_makeshlibs -Nlibgtkspell$(major) + dh_makeshlibs -plibgtkspell$(major) -V "libgtkspell${major} (>= ${version})" + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gtkspell-2.0.13.orig/debian/libgtkspell-dev.files +++ gtkspell-2.0.13/debian/libgtkspell-dev.files @@ -0,0 +1,7 @@ +usr/include/* +usr/lib/lib*.a +usr/lib/lib*.la +usr/lib/lib*.so +usr/lib/pkgconfig/* +usr/share/gtk-doc/html/gtkspell/* + --- gtkspell-2.0.13.orig/debian/libgtkspell0.files +++ gtkspell-2.0.13/debian/libgtkspell0.files @@ -0,0 +1,2 @@ +usr/lib/lib*.so.* +usr/share/locale --- gtkspell-2.0.13.orig/debian/libgtkspell-dev.dirs +++ gtkspell-2.0.13/debian/libgtkspell-dev.dirs @@ -0,0 +1,2 @@ +usr/lib +usr/include --- gtkspell-2.0.13.orig/debian/compat +++ gtkspell-2.0.13/debian/compat @@ -0,0 +1 @@ +4 --- gtkspell-2.0.13.orig/debian/libgtkspell-dev.docs +++ gtkspell-2.0.13/debian/libgtkspell-dev.docs @@ -0,0 +1 @@ +README --- gtkspell-2.0.13.orig/debian/changelog +++ gtkspell-2.0.13/debian/changelog @@ -0,0 +1,222 @@ +gtkspell (2.0.13-1) unstable; urgency=low + + * New upstream release + - Switch to Enchant (Closes: #473536) + + -- Ari Pollak Wed, 21 May 2008 19:30:47 -0400 + +gtkspell (2.0.10-4) unstable; urgency=low + + * Seed symbols file for libgtkspell0 + * Move spell-checking library from Libs to Libs.private in aspell.pc + * Remove .la files since we provide a pkg-config .pc file + + -- Ari Pollak Sun, 20 Jan 2008 16:16:25 -0500 + +gtkspell (2.0.10-3) unstable; urgency=low + + * Update build-depends for libaspell-dev >= 0.60.3-3 for the C++ ABI + transition + + -- Ari Pollak Sat, 9 Jul 2005 20:12:45 -0400 + +gtkspell (2.0.10-2) unstable; urgency=low + + * Re-enable word-breaking workarounds, it's still broken in Pango + (Closes: #302799) + + -- Ari Pollak Thu, 19 May 2005 23:08:32 -0400 + +gtkspell (2.0.10-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Sun, 27 Feb 2005 15:32:50 -0500 + +gtkspell (2.0.9-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Sat, 26 Feb 2005 13:48:13 -0500 + +gtkspell (2.0.8-1) unstable; urgency=low + + * New upstream release, contains some minor bugfixes and a new translation + + -- Ari Pollak Fri, 8 Oct 2004 14:14:49 -0400 + +gtkspell (2.0.7-1) unstable; urgency=low + + * New upstream release, conveniently with no changes since yesterday. + * Actually include the LC_MESSAGES files in libgtkspell0 since + it's now localized + + -- Ari Pollak Sun, 22 Aug 2004 22:59:02 -0400 + +gtkspell (2.0.6+cvs20040821-1) unstable; urgency=low + + * Update to latest upstream CVS, fixes spellchecking under gaim with a non-C + locale, and fixes clobbering other programs' locales (Closes: #266380) + + -- Ari Pollak Sat, 21 Aug 2004 17:59:55 -0400 + +gtkspell (2.0.6-2) unstable; urgency=low + + * I just realized the -dev depdencies were incorrectly depending on + libpspell-dev. Change it to libaspell-dev. + + -- Ari Pollak Sun, 8 Aug 2004 07:08:31 -0400 + +gtkspell (2.0.6-1) unstable; urgency=low + + * New upstream release (wow, I'm slow.) + + -- Ari Pollak Sat, 7 Aug 2004 23:54:47 -0400 + +gtkspell (2.0.5-3) unstable; urgency=low + + * Don't depend on aspell + * Remove Recommends: aspell-dictionary, since libaspell15 provides that + + -- Ari Pollak Mon, 23 Feb 2004 07:24:53 -0500 + +gtkspell (2.0.5-2) unstable; urgency=low + + * Bump standards-version; no changes necessary + + -- Ari Pollak Sun, 1 Feb 2004 11:05:16 -0500 + +gtkspell (2.0.5-1) unstable; urgency=low + + * New upstream release + + -- Ari Pollak Mon, 26 Jan 2004 16:12:36 -0500 + +gtkspell (2.0.4-7) unstable; urgency=low + + * Versioned dependency on libaspell-dev + + -- Ari Pollak Tue, 19 Aug 2003 12:32:51 -0400 + +gtkspell (2.0.4-6) unstable; urgency=low + + * Move -dev package to libdevel + * Add versioned shlib + + -- Ari Pollak Wed, 4 Jun 2003 14:48:12 -0500 + +gtkspell (2.0.4-5) unstable; urgency=low + + * Don't build documentation, built docs already come in the + distribution. (Closes: #178143) + + -- Ari Pollak Thu, 23 Jan 2003 22:40:48 -0500 + +gtkspell (2.0.4-4) unstable; urgency=low + + * Don't specify -laspell in the pkg-config file. Will solve weird + aspell dependency problems in the future. + + -- Ari Pollak Mon, 20 Jan 2003 18:06:00 -0500 + +gtkspell (2.0.4-3) unstable; urgency=low + + * Add xsltproc to build-depends + + -- Ari Pollak Sat, 18 Jan 2003 22:40:29 -0500 + +gtkspell (2.0.4-2) unstable; urgency=low + + * Clean up docs/xml and docs/html/*.png since 'make clean' doesn't do + it properly itself. + * Build-depends on gtk-doc-tools + + -- Ari Pollak Sat, 18 Jan 2003 19:57:11 -0500 + +gtkspell (2.0.4-1) unstable; urgency=low + + * New upstream release + * Use aspell instead of pspell (Closes: #177299) + * Includes documentation in the -dev package + + -- Ari Pollak Fri, 17 Jan 2003 18:05:36 -0500 + +gtkspell (2.0.3-5) unstable; urgency=low + + * Make sure to include libgtkspell.la (Thanks Robert McQueen) + + -- Ari Pollak Sun, 15 Dec 2002 23:31:43 -0500 + +gtkspell (2.0.3-4) unstable; urgency=low + + * Depend on aspell. No reason people should be using ispell. + + -- Ari Pollak Thu, 12 Dec 2002 02:32:22 -0500 + +gtkspell (2.0.3-3) unstable; urgency=low + + * Recommends: aspell and aspell-dictionary, make a note in README.Debian. + + -- Ari Pollak Fri, 29 Nov 2002 22:15:28 -0500 + +gtkspell (2.0.3-2) unstable; urgency=low + + * Check for noopt in DEB_BUILD_OPTIONS correctly + + -- Ari Pollak Thu, 14 Nov 2002 19:09:51 -0500 + +gtkspell (2.0.3-1) unstable; urgency=low + + * New upstream release + - Hack around Pango word-breaking bug: + http://bugzilla.gnome.org/show_bug.cgi?id=97545 + so we no longer incorrectly flag words with apostrophes as + misspellings. + + -- Ari Pollak Wed, 13 Nov 2002 22:46:43 -0500 + +gtkspell (2.0.2-3) unstable; urgency=low + + * Unreleased + * Bump standards to 3.5.7 + - Don't check for debug, default to "-O2 -g -Wall" for CFLAGS and + check for noopt, as policy suggests + + -- Ari Pollak Fri, 11 Oct 2002 20:42:40 -0400 + +gtkspell (2.0.2-2) unstable; urgency=low + + * Updated -dev description + * Recompile against libgtk2.0-0, not -0png3 (ugh) + + -- Ari Pollak Wed, 2 Oct 2002 20:26:55 -0400 + +gtkspell (2.0.2-1) unstable; urgency=low + + * New upstream release + - Fixes a crash if the LANG env variable isn't set (which isn't the + case on almost all Debian systems) + + -- Ari Pollak Tue, 13 Aug 2002 17:08:04 -0400 + +gtkspell (2.0.1-2) unstable; urgency=low + + * Recompile against libgtk2.0-0png3 + * New upstream release + + -- Ari Pollak Thu, 11 Aug 2002 15:59:05 -0400 + +gtkspell (2.0.0-2) unstable; urgency=low + + * Add dependencies to the -dev package + * Add debian/watch file + * Debhelper v4 + + -- Ari Pollak Tue, 30 Jul 2002 13:44:37 -0400 + +gtkspell (2.0.0-1) unstable; urgency=low + + * Initial Debian release. (Closes: #153160) + + -- Ari Pollak Sun, 5 May 2002 16:12:31 -0400 + --- gtkspell-2.0.13.orig/debian/copyright +++ gtkspell-2.0.13/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Ari Pollak on +Sun, 5 May 2002 16:12:31 -0400. + +It was downloaded from + +Upstream Author: Evan Martin + +Copyright: + +Its license is GPLv2, which, on Debian systems, is available at: +/usr/share/common-licenses/GPL. + --- gtkspell-2.0.13.orig/debian/libgtkspell-dev.examples +++ gtkspell-2.0.13/debian/libgtkspell-dev.examples @@ -0,0 +1,3 @@ +examples/Makefile +examples/advanced.c +examples/simple.c --- gtkspell-2.0.13.orig/debian/libgtkspell0.dirs +++ gtkspell-2.0.13/debian/libgtkspell0.dirs @@ -0,0 +1 @@ +usr/lib --- gtkspell-2.0.13.orig/debian/watch +++ gtkspell-2.0.13/debian/watch @@ -0,0 +1,3 @@ +# Site Directory Pattern Version Script +version=2 +http://gtkspell.sourceforge.net/download/gtkspell-(.*)\.tar\.gz debian uupdate