DilOS: tdeaccessibility build pack

Signed-off-by: Denis Kozadaev <denis@dilos.org>
pull/47/head
Denis Kozadaev 4 years ago
parent c2cf8f6ec7
commit addf9ac33a

@ -0,0 +1 @@
Remove Section: contrib/ from kttsd-contrib-plugins

@ -0,0 +1,218 @@
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
# Copyright © 2019 TDE Team
# Description: A class for TDE packages; sets TDE environment variables, etc
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2, or (at
# your option) any later version.
#
# This program 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
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA.
ifndef _cdbs_bootstrap
_cdbs_scripts_path ?= /usr/lib/cdbs
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
_cdbs_class_path ?= /usr/share/cdbs/1/class
endif
ifndef _cdbs_class_debian-qt-kde
_cdbs_class_debian-qt-kde := 1
# for dh_icons
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
# Note: This _must_ be included before autotools.mk, or it won't work.
common-configure-arch common-configure-indep:: debian/stamp-cvs-make
debian/stamp-cvs-make:
ifndef _cdbs_class_cmake
cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
endif
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
endif
$(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
endif
touch debian/stamp-cvs-make
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
ifdef _cdbs_tarball_dir
DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
else
DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
endif
ifndef _cdbs_class_cmake
include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
endif
ifndef _cdbs_rules_patchsys_quilt
DEB_PATCHDIRS := debian/patches/common debian/patches
endif
export kde_cgidir = \$${libdir}/cgi-bin
export kde_confdir = \$${sysconfdir}/trinity
export kde_htmldir = \$${datadir}/doc/tde/HTML
DEB_KDE_ENABLE_FINAL := yes
DEB_INSTALL_DOCS_ALL :=
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib/$(DEB_HOST_MULTIARCH))
DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
else
cdbs_kde_enable_final =
endif
endif
ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
cdbs_kde_enable_final =
cdbs_kde_enable_debug = --enable-debug=yes
else
cdbs_kde_enable_debug = --disable-debug
endif
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
cdbs_kde_enable_debug = --enable-debug=full
endif
DEB_BUILD_PARALLEL ?= true
cdbs_configure_flags += \
--with-qt-dir=/usr/share/qt3 \
--disable-rpath \
--with-xinerama \
$(cdbs_kde_enable_final) \
$(cdbs_kde_enable_debug)
# This is a convenience target for calling manually.
# It's not part of the build process.
buildprep: clean apply-patches
ifndef _cdbs_class_cmake
$(MAKE) -f admin/Makefile.common dist
endif
debian/rules clean
common-build-arch:: debian/stamp-man-pages
debian/stamp-man-pages:
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
for f in $$(find debian/man -name '*.sgml'); do \
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
done
for f in $$(find debian/man -name '*.man'); do \
soelim -I debian/man $$f \
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
done
touch debian/stamp-man-pages
common-binary-indep::
( set -e; \
tmpf=`mktemp debian/versions.XXXXXX`; \
perl debian/cdbs/versions.pl >$$tmpf; \
for p in $(DEB_INDEP_PACKAGES); do \
cat $$tmpf >>debian/$$p.substvars; \
done; \
rm -f $$tmpf )
common-binary-arch::
( set -e; \
tmpf=`mktemp debian/versions.XXXXXX`; \
perl debian/cdbs/versions.pl >$$tmpf; \
for p in $(DEB_ARCH_PACKAGES); do \
cat $$tmpf >>debian/$$p.substvars; \
done; \
rm -f $$tmpf )
# update multi-arch path in install files
ls -d debian/* | \
grep -E "(install|links)$$" | \
while read a; do \
[ -d $$a ] || [ -f $$a.arch ] || \
! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
done
clean::
rm -rf debian/man/out
-rmdir debian/man
rm -f debian/stamp-man-pages
rm -rf debian/shlibs-check
# revert multi-arch path in install files
ls -d debian/* | \
grep -E "(install|links)$$" | \
while read a; do \
[ ! -f $$a.arch ] || \
mv $$a.arch $$a; \
done
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
if test -e debian/$(cdbs_curpkg).lintian; then \
install -p -D -m644 debian/$(cdbs_curpkg).lintian \
debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
fi
if test -e debian/$(cdbs_curpkg).presubj; then \
install -p -D -m644 debian/$(cdbs_curpkg).presubj \
debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
fi
binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
set -e; \
for doc in `cd $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en; find . -name index.docbook`; do \
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
echo Building $$pkg HTML docs...; \
mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
/usr/bin/meinproc $(DEB_DESTDIR)/usr/share/doc/tde/HTML/en/$$pkg/index.docbook; \
done
for pkg in $(DOC_HTML_PRUNE) ; do \
rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/usr/share/doc/tde/HTML/en/$$pkg; \
done
common-build-indep:: debian/stamp-kde-apidox
debian/stamp-kde-apidox:
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
touch $@
common-install-indep:: common-install-kde-apidox
common-install-kde-apidox::
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) install-apidox DESTDIR=$(DEB_DESTDIR))
cleanbuilddir::
-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
clean::
ifndef _cdbs_class_cmake
if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
cd $(DEB_SRCDIR); \
find . -name Makefile.in -print | \
xargs --no-run-if-empty rm -f; \
rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
configure configure.files configure.in stamp-h.in \
subdirs; \
fi
endif
rm -f debian/stamp-kde-apidox
rm -f debian/stamp-cvs-make
endif

@ -0,0 +1,19 @@
#!/usr/bin/env perl
use strict;
use warnings;
my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
my ($version3, $version3_next);
my ($version2, $version2_next);
($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
($version2 = $version3) =~ s/\.[^.]+$//;
($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
print "TDE-Version3=$version3\n";
print "TDE-Version2=$version2\n";
print "TDE-Next-Version3=$version3_next\n";
print "TDE-Next-Version2=$version2_next\n";

@ -0,0 +1,437 @@
tdeaccessibility-trinity (4:3.5.10-0ubuntu3) karmic; urgency=low
* Karmic rebuild
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 Jul 2009 16:08:00 -0600
tdeaccessibility-trinity (4:3.5.10-0ubuntu1~intrepid4) intrepid; urgency=low
* Moved Trinity to /opt/trinity
* Integrated properly with KDE4.2+
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 28 Feb 2009 16:19:00 -0600
tdeaccessibility-trinity (4:3.5.10-0ubuntu1~intrepid3) intrepid; urgency=low
* Import from SVN
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 26 Nov 2008 21:56:00 -0600
tdeaccessibility (4:3.5.10-0ubuntu1~hardy1) hardy-backports; urgency=low
* New upstream bugfix release (LP: #261366)
- Bump build-dep version of tdelibs4-dev and tdemultimedia-dev to
3.5.10
-- Scott Kitterman <scott@kitterman.com> Tue, 26 Aug 2008 00:21:01 -0400
tdeaccessibility (4:3.5.9-0ubuntu1) hardy; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 14 Feb 2008 12:27:05 +0000
tdeaccessibility (4:3.5.8-1ubuntu2) hardy; urgency=low
* Run buildprep before upload
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 15 Nov 2007 10:59:22 +0000
tdeaccessibility (4:3.5.8-1ubuntu1) hardy; urgency=low
* Merge with Debian, remaining change:
- Remove Section: contrib/ from kttsd-contrib-plugins
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Nov 2007 17:25:46 +0000
tdeaccessibility (4:3.5.8-1) unstable; urgency=low
* New upstream release.
* Implement uploaders.mk
+++ Changes by Ana Beatriz Guerrero Lopez:
* Update section in Debian menu files.
* Redo buildprep and bump version stuff to 3.5.8.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Sun, 14 Oct 2007 18:28:25 +0200
tdeaccessibility (4:3.5.8-0ubuntu1) gutsy; urgency=low
* Remove contrib section
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 09 Oct 2007 21:52:11 +0100
tdeaccessibility (4:3.5.8-0ubuntu1) gutsy; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 09 Oct 2007 11:41:27 +0100
tdeaccessibility (4:3.5.7-1ubuntu1) gutsy; urgency=low
* Merge with Debian for new upstream version
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 23 May 2007 17:00:20 +0100
tdeaccessibility (4:3.5.7-1) unstable; urgency=low
* New upstream version.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Wed, 16 May 2007 02:01:02 +0100
tdeaccessibility (4:3.5.6-2ubuntu1) gutsy; urgency=low
* Merge with Debian
* No remaining changes besides patches
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 30 Apr 2007 20:32:56 +0100
tdeaccessibility (4:3.5.6-2) unstable; urgency=low
* Upload to unstable after Etch release.
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Fri, 20 Apr 2007 17:36:39 +0100
tdeaccessibility (4:3.5.6-1) experimental; urgency=low
* New upstream release.
+++ Changes by Sune Vuorela:
* Fix some kfreebsd related problems: don't expect alsa stuff to be
installed. (Closes: 403741)
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 18 Jan 2007 00:20:08 +0100
tdeaccessibility (4:3.5.5-2) unstable; urgency=low
++ Changes by Josh Metzler:
* Make tdeaccessibility-dbg depend on tdelibs-dbg to get useful backtraces
when debugging.
++ Ana Beatriz Guerrero Lopez:
* Removed plugin for GStreamer of kttsd. (This plugin was built against
GStreamer 0.8 that is going to be removed from the archive).
* Added extras spaces to homepage pseudo header.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 7 Dec 2006 14:56:02 +0100
tdeaccessibility (4:3.5.6-0ubuntu1) feisty; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 17 Jan 2007 11:22:31 +0000
tdeaccessibility (4:3.5.5-1ubuntu1) feisty; urgency=low
* Merge with Debian
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 16 Nov 2006 22:12:42 +0000
tdeaccessibility (4:3.5.5-1) unstable; urgency=low
* New upstream release.
+ Fixes ksayit: crash with "terminate called after throwing an instance
of 'QString'" error. (Closes: #350678)
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 4 Oct 2006 20:40:37 -0400
tdeaccessibility (4:3.5.4-1) unstable; urgency=low
* New upstream release.
* KDE_3_5_BRANCH update (up to r567761).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 29 Jul 2006 21:12:52 -0400
tdeaccessibility (4:3.5.5-0ubuntu1) edgy; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 3 Oct 2006 10:56:05 +0000
tdeaccessibility (4:3.5.4-0ubuntu5) edgy; urgency=low
* Rebuild on latest cdbs to change .pot files to UTF8
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 20 Sep 2006 13:09:37 +0100
tdeaccessibility (4:3.5.4-0ubuntu4) edgy; urgency=low
* Rebuild with latest cdbs to add gettext domain to .desktop files for
langpacks-desktopfiles-kde, no source changes
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 5 Sep 2006 22:53:10 +0000
tdeaccessibility (4:3.5.4-0ubuntu3) edgy; urgency=low
* Build-dep on new akode so it doesn't bring in akode-mpeg
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 2 Aug 2006 13:35:28 +0000
tdeaccessibility (4:3.5.4-0ubuntu2) edgy; urgency=low
* Build-dep on new akode so it doesn't bring in Jack
-- Jonathan Riddell <jriddell@ubuntu.com> Sun, 30 Jul 2006 16:28:24 +0100
tdeaccessibility (4:3.5.4-0ubuntu1) edgy; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Jul 2006 10:12:17 +0000
tdeaccessibility (4:3.5.3-1ubuntu1) edgy; urgency=low
* Sync with Debian
* Don't build-dep on gstreamer0.8 and remove --with-gstreamer (it's in universe)
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 4 Jul 2006 15:12:40 +0000
tdeaccessibility (4:3.5.3-1) unstable; urgency=low
* New upstream release.
* KDE_3_5_BRANCH update (up to r548166).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 4 Jun 2006 18:34:43 -0400
tdeaccessibility (4:3.5.2-1) unstable; urgency=low
* New upstream release.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 29 Mar 2006 21:18:53 -0500
tdeaccessibility (4:3.5.1-1) unstable; urgency=low
* New upstream release.
+++ Changes by Christopher Martin:
* Upload to unstable.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 29 Jan 2006 10:44:07 -0500
tdeaccessibility (4:3.5.0-3) unstable; urgency=low
+++ Changes by Christopher Martin:
* Upload to unstable.
* KDE_3_5_BRANCH update (up to r495385).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 7 Jan 2006 17:25:45 -0500
tdeaccessibility (4:3.5.0-2) experimental; urgency=low
* Upload to experimental.
* KDE_3_5_BRANCH update (up to r492083).
+++ Changes by Christopher Martin:
* No longer build with gcc-3.4 on any architectures, since gcc-4.0 should
be fixed. (Closes: #342977)
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 28 Dec 2005 13:31:29 -0500
tdeaccessibility (4:3.5.2-0ubuntu3) dapper; urgency=low
* debian/cdbs/debian-qt-kde.mk to call dh_iconcache
-- Gauvain Pocentek <gauvainpocentek@ubuntu.com> Wed, 24 May 2006 12:55:38 +0200
tdeaccessibility (4:3.5.2-0ubuntu2) dapper; urgency=low
* Edit debian/cdbs/kde.mk to mark .po files as UTF-8
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 21 Apr 2006 19:14:27 +0100
tdeaccessibility (4:3.5.2-0ubuntu1) dapper; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 20 Mar 2006 12:06:28 +0000
tdeaccessibility (4:3.5.1-0ubuntu1) dapper; urgency=low
* New upstream release
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 23 Jan 2006 14:26:05 +0000
tdeaccessibility (4:3.5.0-0ubuntu1) dapper; urgency=low
* New upstream release
* Remove GCC 3.4 on hppa
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 6 Dec 2005 12:26:30 +0000
tdeaccessibility (4:3.5-rc2-0ubuntu1) dapper; urgency=low
* New upstream pre-release
* Sync with Debian
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 23 Nov 2005 13:33:38 +0000
tdeaccessibility (4:3.5.0-1) alioth; urgency=low
* New upstream release.
+++ Changes by Josh Metzler:
* Add libakode-dev build dependency to build akode plugin.
* Remove epos, flite, and festival build dependencies. The plugins
are still built without them installed.
+++ Changes by Christopher Martin:
* Bump DH_COMPAT to 5. No changes.
* Add tdeaccessibility-dbg, to help track down problems.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 30 Nov 2005 18:41:50 -0500
tdeaccessibility (4:3.4.3-2) unstable; urgency=low
* Upload to unstable, rebuilding against tdelibs4c2a.
* KDE_3_4_BRANCH update (up to r484426).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 30 Nov 2005 19:49:02 +0100
tdeaccessibility (4:3.4.3-1) experimental; urgency=low
* New upstream release.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 16 Oct 2005 14:19:29 -0400
tdeaccessibility (4:3.4.2-2) unstable; urgency=low
+++ Changes by Luk Claes:
* Add new files to respective debian/*.install files
* Build with g++-3.4 on arm, m68k and hppa; tdeaccessibility triggers the same
gcc 4.0 ICE as arts does.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 2 Sep 2005 20:18:02 +0200
tdeaccessibility (4:3.4.2-1) unstable; urgency=low
* New upstream release.
+++ Changes by Luk Claes:
* Added me to uploaders
* Updated FSF's address
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 1 Sep 2005 17:31:25 +0200
tdeaccessibility (4:3.4.1-1) experimental; urgency=low
* New upstream release.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Tue, 31 May 2005 15:43:52 -0400
tdeaccessibility (4:3.4.0-0pre1) alioth; urgency=low
* New upstream release.
* Converted packaging to CDBS.
+++ Changes by Pierre Habouzit:
* Bunch of new packages : kttsd*, kde-icons-mono, ksayit, kbstate.
* Wrote a README.Debian for kttsd to clarify synth-plugin state.
* Reworked package descriptions.
+++ Changes by Adeodato Simó:
* Created XPM icons for packages having a menu file. Install them in
/opt/trinity/share/pixmaps and update the menu entries to use them.
+++ Changes by Christopher Martin:
* New tdeaccessibility-doc-html package, containing doc-base registered
HTML versions of application handbooks, for users without Konqueror or
KHelpCenter.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 5 Mar 2005 21:32:41 +0100
tdeaccessibility (4:3.3.2-1) unstable; urgency=low
+++ Changes by Christopher Martin:
* KDE_3_3_BRANCH update.
* Change debian/copyright file to refer to licenses, instead of copyright,
when discussing KDE's licenses.
+++ Changes by Isaac Clerencia:
* Added myself to Uploaders
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 23 Jan 2005 23:09:07 +0100
tdeaccessibility (4:3.3.2-0pre1) experimental; urgency=low
* New upstream release.
* KDE_3_3_BRANCH update.
* Remove build-dependency on automake1.9.
-- Christopher Martin <chrsmrtn@freeshell.org> Thu, 16 Dec 2004 14:43:11 -0500
tdeaccessibility (3.3.1-1) unstable; urgency=low
* New upstream release.
* KDE_3_3_BRANCH update.
* Add libxtst-dev to Build-Depends. (Closes: #277197)
-- Christopher L Cheney <ccheney@debian.org> Thu, 4 Nov 2004 22:30:00 -0600
tdeaccessibility (3.3.0-2) unstable; urgency=low
* KDE_3_3_BRANCH update.
-- Christopher L Cheney <ccheney@debian.org> Sat, 25 Sep 2004 23:00:00 -0500
tdeaccessibility (3.3.0-1) unstable; urgency=high
* New upstream release.
-- Christopher L Cheney <ccheney@debian.org> Fri, 13 Aug 2004 22:30:00 -0500
tdeaccessibility (3.2.3-1) unstable; urgency=high
* New upstream release.
-- Christopher L Cheney <ccheney@debian.org> Tue, 3 Aug 2004 05:00:00 -0500
tdeaccessibility (3.2.2-1) unstable; urgency=low
* New upstream release.
* debian/*.menu: remove the obsolete kderemove tag.
-- Christopher L Cheney <ccheney@debian.org> Sun, 11 Apr 2004 23:00:00 -0500
tdeaccessibility (3.2.1-1) unstable; urgency=low
* New upstream release.
* Added Build-Depends: groff-base. (Closes: #235015)
-- Christopher L Cheney <ccheney@debian.org> Fri, 5 Mar 2004 17:00:00 -0600
tdeaccessibility (3.2.0-0pre1v1) unstable; urgency=low
* New upstream release.
-- Christopher L Cheney <ccheney@debian.org> Thu, 19 Feb 2004 17:00:00 -0600
tdeaccessibility (3.1.95-1) unstable; urgency=low
* Initial Release.
-- Christopher L Cheney <ccheney@debian.org> Fri, 30 Jan 2004 17:00:00 -0600

@ -0,0 +1,182 @@
Source: tdeaccessibility-trinity
Section: tde
Priority: optional
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
XSBC-Original-Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
Uploaders: Ana Beatriz Guerrero Lopez <ana@debian.org>, Christopher Martin <chrsmrtn@debian.org>, Josh Metzler <joshdeb@metzlers.org>, Sune Vuorela <debian@pusling.com>
Build-Depends: cdbs (>= 0.4.39-0.1), debhelper (>= 7.0.50~), quilt, gawk, groff-base, tdelibs14-trinity-dev, tdemultimedia-trinity-dev, libakode-dev, libxtst-dev, sharutils, libogg-dev, automake, autoconf, libtool, libltdl-dev
Standards-Version: 3.8.4
Package: tdeaccessibility-trinity
Section: tde
Architecture: all
Replaces: kdeaccessibility-trinity (<< 4:14.0.0~)
Breaks: kdeaccessibility-trinity (<< 4:14.0.0~)
Depends: kmag-trinity (>= ${source:Version}), kmousetool-trinity (>= ${source:Version}), kmouth-trinity (>= ${source:Version}), kbstate-trinity (>= ${source:Version}), ksayit-trinity (>= ${source:Version}), kttsd-trinity (>= ${source:Version})
Recommends: tde-icons-mono-trinity (>= ${source:Version})
Suggests: kttsd-contrib-plugins-trinity (>= ${source:Version}), tdeaccessibility-trinity-doc-html (>= ${source:Version})
Description: accessibility packages from the official Trinity release
TDE (the Trinity Desktop Environment) is a powerful Open Source graphical
desktop environment for Unix workstations. It combines ease of use,
contemporary functionality, and outstanding graphical design with the
technological superiority of the Unix operating system.
.
This metapackage includes a collection of programs to make TDE more
accessible, provided with the official release of TDE.
.
Homepage: http://accessibility.kde.org
Package: tdeaccessibility-trinity-doc-html
Architecture: all
Section: doc
Replaces: kdeaccessibility-trinity-doc-html (<< 4:14.0.0~)
Breaks: kdeaccessibility-trinity-doc-html (<< 4:14.0.0~)
Suggests: konqueror-trinity | www-browser, tdebase-trinity
Description: TDE accessibility documentation in HTML format
By default the modules provided by TDE only provide their documentation
in TDE docbook format, which can only be read by Konqueror or KHelpCenter.
This package provides all of the TDE accessibility documentation converted
to HTML format so it can be read with any web browser.
.
The documentation will be installed into the usual directories
/usr/share/doc/tde/HTML/<language>/<app>/, for instance
/usr/share/doc/tde/HTML/en/kmag/. Documentation is provided for most
TDE accessibility packages.
.
This package is part of Trinity, and a component of the TDE accessibility
module. See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: tde-icons-mono-trinity
Section: tde
Architecture: all
Replaces: kde-icons-mono-trinity (<< 4:14.0.0~)
Breaks: kde-icons-mono-trinity (<< 4:14.0.0~)
Description: a monochromatic icons theme for TDE
A monochromatic icon theme for TDE, designed for accessibility purposes.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: kbstate-trinity
Section: utils
Architecture: any
Replaces: kbstate-trinity (<< 4:14.0.0~)
Breaks: kbstate-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Suggests: khelpcenter-trinity
Description: a keyboard status applet for TDE
A panel applet that displays the keyboard status.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: kmag-trinity
Section: utils
Architecture: any
Replaces: kmag-trinity (<< 4:14.0.0~)
Breaks: kmag-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Suggests: khelpcenter-trinity
Description: a screen magnifier for TDE
TDE's screen magnifier tool.
.
You can use KMagnifier to magnify a part of the screen just as you would use
a lens to magnify a newspaper fine-print or a photograph. This application is
useful for a variety of people: from researchers to artists to web-designers to
people with low vision.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: kmousetool-trinity
Section: utils
Architecture: any
Replaces: kmousetool-trinity (<< 4:14.0.0~)
Breaks: kmousetool-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Suggests: khelpcenter-trinity
Description: TDE mouse manipulation tool for the disabled
KMouseTool clicks the mouse whenever the mouse cursor pauses briefly. It was
designed to help those with repetitive strain injuries, for whom pressing
buttons hurts.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: kmouth-trinity
Section: utils
Architecture: any
Replaces: kmouth-trinity (<< 4:14.0.0~)
Breaks: kmouth-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Suggests: khelpcenter-trinity
Description: a type-and-say TDE frontend for speech synthesizers
TDE's type-and-say frontend for speech synthesizers.
.
It includes a history of spoken sentences from which the user can select
sentences to be re-spoken.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: ksayit-trinity
Section: utils
Architecture: any
Replaces: ksayit-trinity (<< 4:14.0.0~)
Breaks: ksayit-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Suggests: khelpcenter-trinity
Description: a frontend for the TDE Text-to-Speech system
Text-to-speech front-end to kttsd.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: kttsd-trinity
Section: utils
Architecture: any
Replaces: kttsd-trinity (<< 4:14.0.0~)
Breaks: kttsd-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Recommends: ksayit-trinity (= ${source:Version}) | kmouth-trinity (= ${source:Version}), festival | flite | epos
Suggests: kttsd-contrib-plugins-trinity (= ${source:Version})
Description: a Text-to-Speech system for TDE
The TDE Text-to-Speech system is a plugin based service that allows any TDE
(or non-TDE) application to speak using the DCOP interface.
.
ksayit and kmouth are useful front-ends for this capability, while one of
festival, flite, and epos are essential back-ends.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
.
Homepage: http://accessibility.kde.org/developer/kttsd
Package: kttsd-contrib-plugins-trinity
Section: utils
Architecture: any
Replaces: kttsd-contrib-plugins-trinity (<< 4:14.0.0~)
Breaks: kttsd-contrib-plugins-trinity (<< 4:14.0.0~)
Depends: ${shlibs:Depends}
Description: the TDE Text-to-Speech system
kttsd synthetizer plugins that depends on non-free software :
* FreeTTS plugin.
* Hadifix (mbrola/txt2pho) plugin.
Those plugins will require manual installation of third party,
non free software to work.
.
This package is part of Trinity, as a component of the TDE accessibility module.
See the 'tde-trinity' and 'tdeaccessibility-trinity' packages for more information.
Package: tdeaccessibility-trinity-dbg
Section: libdevel
Architecture: linux-any
Replaces: kdeaccessibility-trinity-dbg (<< 4:14.0.0~)
Breaks: kdeaccessibility-trinity-dbg (<< 4:14.0.0~)
Depends: tdelibs-trinity-dbg
Priority: extra
Description: debugging symbols for tdeaccessibility-trinity
This package contains the debugging symbols associated with tdeaccessibility-trinity.
They will automatically be used by gdb for debugging tdeaccessibility-related
issues.

@ -0,0 +1,441 @@
This package was debianized by Christopher L Cheney <ccheney@debian.org> on
Fri, 30 Jan 2004 17:00:00 -0600.
It was downloaded from: http://www.kde.org/download
Upstream Authors: Jos<6F>Pablo Ezequiel Fern<72>dez <pupeno@org>
Sarang Lakare <sarang@users.sourceforge.net>
Jeff Roush <jeff@mousetool.com>
Gunnar Schmi Dt <gunnar@schmi-dt.de>
...and many others.
License:
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
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 General Public License for more details.
You should have received a copy of the GNU 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 GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
--------------------
DocBook Documentation:
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts,
and with no Back-Cover Texts.
A copy of the GNU Free Documentation License (Version 1.2) is
included below.
GNU Free Documentation License
Version 1.2, November 2002
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
0. PREAMBLE
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
1. APPLICABILITY AND DEFINITIONS
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall subject
(or to related matters) and contains nothing that could fall directly
within that overall subject. (Thus, if the Document is in part a
textbook of mathematics, a Secondary Section may not explain any
mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
2. VERBATIM COPYING
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
3. COPYING IN QUANTITY
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
4. MODIFICATIONS
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
5. COMBINING DOCUMENTS
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
In the combination, you must combine any sections Entitled "History"
in the various original documents, forming one section Entitled
"History"; likewise combine any sections Entitled "Acknowledgements",
and any sections Entitled "Dedications". You must delete all sections
Entitled "Endorsements".
6. COLLECTIONS OF DOCUMENTS
You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
7. AGGREGATION WITH INDEPENDENT WORKS
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an "aggregate" if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
8. TRANSLATION
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
If a section in the Document is Entitled "Acknowledgements",
"Dedications", or "History", the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
9. TERMINATION
You may not copy, modify, sublicense, or distribute the Document except
as expressly provided for under this License. Any other attempt to
copy, modify, sublicense or distribute the Document is void, and will
automatically terminate your rights under this License. However,
parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such
parties remain in full compliance.
10. FUTURE REVISIONS OF THIS LICENSE
The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
http://www.gnu.org/copyleft/.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation.
ADDENDUM: How to use this License for your documents
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
Copyright (c) YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. A copy of the license is included in the section entitled
"GNU Free Documentation License".
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the "with...Texts." line with this:
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.

@ -0,0 +1,96 @@
/* XPM */
static char *kmag-16[] = {
/* columns rows colors chars-per-pixel */
"16 16 74 1",
" c #1B1B1B",
". c #1D1D1D",
"X c #212121",
"o c #676767",
"O c #686868",
"+ c #6B6B6B",
"@ c #767676",
"# c #797979",
"$ c #7D7D7D",
"% c #ED3B3B",
"& c #DF6E6E",
"* c #DD7373",
"= c #DE7171",
"- c #DD7575",
"; c #DC7676",
": c #DC7979",
"> c #E65353",
", c #E35E5E",
"< c #E35F5F",
"1 c #E36060",
"2 c #E06A6A",
"3 c #828282",
"4 c #838383",
"5 c #888888",
"6 c #8A8A8A",
"7 c #8C8C8C",
"8 c #8D8D8D",
"9 c #8E8E8E",
"0 c #919191",
"q c #9B9A9A",
"w c #9B9B9B",
"e c #A6A6A6",
"r c #A7A7A7",
"t c #AAAAAA",
"y c #ABABAB",
"u c #ACACAC",
"i c #AEAEAE",
"p c #B5B5B5",
"a c #B7B7B7",
"s c #B8B8B8",
"d c #B9B9B9",
"f c #BABABA",
"g c #D98181",
"h c #D88484",
"j c #D29A9A",
"k c #D09F9F",
"l c #CBB2B2",
"z c #CBB3B3",
"x c #CBB4B4",
"c c #CCB2B2",
"v c #C9BABA",
"b c #C9BBBB",
"n c #C8BEBE",
"m c #C2C4C4",
"M c #C6C2C2",
"N c #C4C4C4",
"B c #C5C5C5",
"V c #C5C6C6",
"C c #C5C7C7",
"Z c #C6C5C5",
"A c #C6C6C6",
"S c #C7C7C7",
"D c #C4C9C9",
"F c #C5C8C8",
"G c #C5C9C9",
"H c #C8C8C8",
"J c #C9C9C9",
"K c #DFDFDF",
"L c #E0E0E0",
"P c #E2E2E2",
"I c #E4E4E4",
"U c #EEEEEE",
"Y c #FDFDFD",
"T c gray100",
/* pixels */
"BBBBBBBBBBBBBBBB",
"BBBBBBBBBBBBBBBB",
"BBBBBBBBBBBBBBBB",
"BBBBBBBfyfSBBBBB",
"BBBBBSp366yBBBBB",
"BBBBBf4SKP$pSBBB",
"BBBBSy9UYY9wSBBB",
"BBBBSf@PYP@rSBBB",
"BBBBS4X+9@qBCCCB",
"BBBC4 +rweml**zC",
"BBS0.+fBSSn,g1&C",
"BBBe#pCBBBBlC;=C",
"BBBSmBBBBBCCh>zC",
"BBBBBBBBBCb1%jbC",
"BBBBBBBBBBb&=:kC",
"BBBBBBBBBBCCCCCB"
};

@ -0,0 +1,44 @@
/* XPM */
static char *kmag[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c black",
". c red",
"X c gray60",
"o c #C6C6C6",
"O c gray80",
"+ c gray100",
/* pixels */
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"ooooooooooooooo ooooooooooooo",
"oooooooooooooX O+++ Xooooooooooo",
"ooooooooooooo ++XX++ Xoooooooooo",
"oooooooooooo O+X++++O oooooooooo",
"oooooooooooo +X++++++ Xooooooooo",
"oooooooooooo ++++++++ Xooooooooo",
"oooooooooooo O++++++O Xooooooooo",
"ooooooooooooo ++++++ XXooooooooo",
"oooooooooooo O++O XXoooooooooo",
"ooooooooooo X XXooooooooooo",
"oooooooooo XXoXXXXoooooooooooo",
"ooooooooo XXoooooooooo....oooo",
"oooooooo XXoooooooooo..oo..ooo",
"ooooooo XXoooooooooo..ooo..ooo",
"oooooooX XXooooooooooooooooo.ooo",
"ooooooooXXooooooooooooooooo..ooo",
"oooooooooooooooooooooooooo..oooo",
"ooooooooooooooooooooooooo..ooooo",
"oooooooooooooooooooooooo..oooooo",
"oooooooooooooooooooooo...ooooooo",
"oooooooooooooooooooooo.......ooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo",
"oooooooooooooooooooooooooooooooo"
};

@ -0,0 +1,35 @@
/* XPM */
static char *kmousetool-16[] = {
/* columns rows colors chars-per-pixel */
"16 16 13 1",
" c black",
". c gray19",
"X c #606060",
"o c #616061",
"O c #626162",
"+ c #6F6F6F",
"@ c gray44",
"# c #717071",
"$ c #909090",
"% c #A2A0A2",
"& c #C0C0C0",
"* c #E2E0E2",
"= c None",
/* pixels */
"================",
"================",
"================",
"=X=$XXX=$X======",
"=$X$===X%*X=====",
"======$%O*%X====",
"======X**O%*X===",
"=======X%%***X==",
"========X*****O=",
"=========O****#=",
"==========O***#=",
"===========O#+==",
"==$+OX==========",
"===. $==========",
"==$O.XXXXXXXX$==",
"================"
};

@ -0,0 +1,43 @@
/* XPM */
static char *kmousetool[] = {
/* columns rows colors chars-per-pixel */
"32 32 5 1",
" c black",
". c #C0C0C0",
"X c #C5C2C5",
"o c gray100",
"O c None",
/* pixels */
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"O OOOOO OOOOOOOOOOOOOOOOOOOO",
"O OOOO OOOOO OOOOOOOOOOOOOOOOOOO",
"OO OOOOOOO OOO OOOOOOOOOOOO",
"OOOOOOOOOOOOOO O oXo OOOOOOOOOOO",
"OOOOOOOOOOOOOOO oXoXo OOOOOOOOOO",
"OOOOOOOOOOOOOO o oXoXo OOOOOOOOO",
"OOOOOOOOOOOOO oXo oXo o OOOOOOOO",
"OOOOOOOOOOOOO XoXo o oXo OOOOOOO",
"OOOOOOOOOOOOO oXoXo oXoXo OOOOOO",
"OOOOOOOOOOOOOO oXo oXoXoXo OOOOO",
"OOOOOOOOOOOOOOO o oXoXoXoXo OOOO",
"OOOOOOOOOOOOOOOO oXoXoXoXoXo OOO",
"OOOOOOOOOOOOOOOOO oXoXoXoXoXo OO",
"OOOOOOOOOOOOOOOOOO oXoXoXoXoX OO",
"OOOOOOOOOOOOOOOOOOO oXoXoXoXo OO",
"OOOOOOOOOOOOOOOOOOOO oXoXoXoX OO",
"OOOOOOOOOOOOOOOOOOOOO oXoXoXo OO",
"OOOOOOOOOOOOOOOOOOOOOO oXoXo OOO",
"OOOOOOOOOOOOOOOOOOOOOOO OOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOO OOOOOOOOOOOOOOOOOOOO",
"OOOOOO OOOOOOOOOOOOOOOOOOOOO",
"OOOOOOO OOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOO OOOOOOOOOOOOOOOOOOOOOOO",
"OOOOO OOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
"OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO"
};

@ -0,0 +1,28 @@
/* XPM */
static char *kmouth-16[] = {
/* columns rows colors chars-per-pixel */
"16 16 6 1",
" c black",
". c #585858",
"X c red",
"o c gainsboro",
"O c gray100",
"+ c None",
/* pixels */
"++++++++++++++++",
"++++++++++++++++",
"++++++++++++++++",
"+ ++++ +",
" XXXXX XXXXX ",
" XOOXXXXXXXXOOX ",
" X..OOOOOOOO..X ",
"+ XO..OOOO..OX +",
"+ XXOO....OOXX +",
"++ XXXOOOOXXX ++",
"+++ XXXXXXXX +++",
"++++ XXXX ++++",
"++++++ ++++++",
"++++++++++++++++",
"++++++++++++++++",
"++++++++++++++++"
};

@ -0,0 +1,44 @@
/* XPM */
static char *kmouth[] = {
/* columns rows colors chars-per-pixel */
"32 32 6 1",
" c black",
". c red",
"X c #A0A0A0",
"o c gainsboro",
"O c gray100",
"+ c None",
/* pixels */
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"+++ ++++++++++++++++ +++",
"++ ..... ++++++++++ ..... ++",
"+ ......... ++++ ......... +",
"+ .. ......... ......... .. +",
"+ . O .................. O . +",
"+ . OXO .......... OXO . +",
"+ .. XOXOOX OXOXOX .. +",
"++ . OXOOXOOXOOXOOXOOXOXO . ++",
"++ .. OOXOOXOOXOOXOOXO .. ++",
"+++ . OX OXOOXOOX XO . +++",
"+++ .. XOOXO OOXOX .. +++",
"++++ .. OOXOOXOOXOOXOOXO .. ++++",
"+++++ .. XOOXOOXOOXOO .. +++++",
"++++++ ... OXOOXOOX ... ++++++",
"+++++++ .... .... +++++++",
"++++++++ .............. ++++++++",
"+++++++++ .......... +++++++++",
"+++++++++++ .... +++++++++++",
"++++++++++++++ ++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++",
"++++++++++++++++++++++++++++++++"
};

@ -0,0 +1,210 @@
/* XPM */
static char *ksayit-16[] = {
/* columns rows colors chars-per-pixel */
"16 16 188 2",
" c #000000",
". c #000101",
"X c #010000",
"o c #020000",
"O c #020202",
"+ c #030303",
"@ c #040000",
"# c #050101",
"$ c #040202",
"% c #050303",
"& c #060202",
"* c #070202",
"= c #070303",
"- c #040404",
"; c #050504",
": c #050707",
"> c #060505",
", c #070707",
"< c #090202",
"1 c #0B0607",
"2 c #0A0909",
"3 c #0D0C0C",
"4 c #0E0D0D",
"5 c #0D1010",
"6 c #110A0A",
"7 c #120D0D",
"8 c #130E0F",
"9 c #150E0F",
"0 c #1B0202",
"q c #190505",
"w c #1B0606",
"e c #1E0E0E",
"r c #141313",
"t c #1B1D1D",
"y c #240000",
"u c #240101",
"i c #270304",
"p c #240404",
"a c #240505",
"s c #250606",
"d c #260606",
"f c #250808",
"g c #270B0B",
"h c #280202",
"j c #2D0A0A",
"k c #251415",
"l c #261717",
"z c #330000",
"x c #320B0C",
"c c #330D0D",
"v c #330E0F",
"b c #370B0B",
"n c #3B0A0A",
"m c #3E0D0D",
"M c #311212",
"N c #371213",
"B c #321D1F",
"V c #381314",
"C c #3D1011",
"Z c #3D1212",
"A c #2B2C2C",
"S c #440303",
"D c #400A0A",
"F c #400B0B",
"G c #410A0A",
"H c #460B0C",
"J c #460C0D",
"K c #460D0D",
"L c #480000",
"P c #480C0C",
"I c #4E1011",
"U c #4B1C1D",
"Y c #590C0C",
"T c #561A1A",
"R c #581111",
"E c #4E2020",
"W c #493F3F",
"Q c #512A2B",
"! c #5F2323",
"~ c #610000",
"^ c #600708",
"/ c #680101",
"( c #6C0404",
") c #691011",
"_ c #6C1415",
"` c #6A2C2C",
"' c #7F3132",
"] c #594747",
"[ c #594E4E",
"{ c #797373",
"} c #860101",
"| c #880202",
" . c #880203",
".. c #8B0001",
"X. c #8E0101",
"o. c #960303",
"O. c #9B0505",
"+. c #9D0101",
"@. c #921516",
"#. c #961A1A",
"$. c #8F1F20",
"%. c #9C3232",
"&. c #A00000",
"*. c #A30201",
"=. c #A40101",
"-. c #A40202",
";. c #A30808",
":. c #A30A0B",
">. c #AB0000",
",. c #AD0D0E",
"<. c #AF0D0F",
"1. c #A21213",
"2. c #A31D1D",
"3. c #A71C1D",
"4. c #AC1213",
"5. c #AF1213",
"6. c #A81A1C",
"7. c #A91B1C",
"8. c #AD1E1F",
"9. c #B00001",
"0. c #B10202",
"q. c #B70001",
"w. c #B00708",
"e. c #BF0304",
"r. c #BE0808",
"t. c #B21112",
"y. c #B61717",
"u. c #B7191A",
"i. c #B81010",
"p. c #B91414",
"a. c #B91616",
"s. c #8B5E5E",
"d. c #B45354",
"f. c #C60F0F",
"g. c #CB0303",
"h. c #CD0101",
"j. c #CD0303",
"k. c #CF0001",
"l. c #CE0506",
"z. c #C80708",
"x. c #CE0809",
"c. c #C50F10",
"v. c #C51111",
"b. c #C51313",
"n. c #C91414",
"m. c #CF1313",
"M. c #CD1414",
"N. c #C81718",
"B. c #CB1919",
"V. c #D70404",
"C. c #D20D0D",
"Z. c #D90303",
"A. c #DB0001",
"S. c #D80505",
"D. c #DB0506",
"F. c #D31314",
"G. c #D91515",
"H. c #DA1415",
"J. c #C72728",
"K. c #E20203",
"L. c #E10607",
"P. c #E30707",
"I. c #E70000",
"U. c #E80101",
"Y. c #E80202",
"T. c #EB0606",
"R. c #EC0101",
"E. c #ED0000",
"W. c #EC0505",
"Q. c #EC1A1A",
"!. c #F30000",
"~. c #F50001",
"^. c #F90000",
"/. c #FA0000",
"(. c #F80505",
"). c #FC0000",
"_. c #E22425",
"`. c #E43939",
"'. c #C44C4C",
"]. c #D15455",
"[. c #C07171",
"{. c #D46161",
"}. c #E94040",
"|. c #AB8181",
" X c #AB8888",
".X c #CAB0B0",
"XX c #E39090",
"oX c None",
/* pixels */
"oXoXoXoXoXoXoXoXoXoXoXoXw w oX",
"oXoXoXoXoXoXw M Xj d R 3.6.d oX",
"oXoXU ' ` ` @.i.b.b.a.1.:.,.h oX",
"oXd u.C.r.w.S.R.W._.].d.8.7.f oX",
"oXh z.~./.^./.(.}.XX.X[.J.%.oXoX",
"oXd t.D.W.Q.`.{.|.{ ] #.N.T oXoX",
"oXoXP 4.B.'.s.[ A 5 u +.F.G oXoX",
"oXoXoXY M.a.Z > z 0.H.G oXoX",
"oXoXoXZ y.g.L # 0 S } k.H.F oXoX",
"oXoXoXoX$.V.~ y / } &.k.M.n oXoX",
"oXoXoXoX_ z.} ( O.=.>.k.n.b oXoX",
"oXoXoXoX2.S.e.<.c.S.A.U.b.E oXoX",
"oXoXoXm 5.K.U.P.L.U.~.R.;.Q oXoX",
"oXoXoXg ) o.q.0.X.} =.&.^ B oXoX",
"oXoXoX9 l x I K x b K K N W oXoX",
"oXoXoXoX> # = > > < # > 4 oXoX"
};

@ -0,0 +1,242 @@
/* XPM */
static char *ksayit[] = {
/* columns rows colors chars-per-pixel */
"32 32 204 2",
" c #000000",
". c #0D0303",
"X c #0C0B0B",
"o c #130000",
"O c #1A0404",
"+ c #1B090A",
"@ c #171112",
"# c #1C1C1C",
"$ c #210102",
"% c #240708",
"& c #270E0F",
"* c #2A0101",
"= c #231C1D",
"- c #291212",
"; c #2A1C1D",
": c #300000",
"> c #320809",
", c #3B0405",
"< c #331212",
"1 c #301718",
"2 c #3C1110",
"3 c #3B1819",
"4 c #241F20",
"5 c #232222",
"6 c #2E2223",
"7 c #2D2B2C",
"8 c #302D2E",
"9 c #392A2B",
"0 c #353333",
"q c #3B3435",
"w c #3C3B3B",
"e c #400101",
"r c #470708",
"t c #420E0F",
"y c #4A0001",
"u c #480708",
"i c #4D0D0E",
"p c #520101",
"a c #590001",
"s c #5E0808",
"d c #5B1B1B",
"f c #431F20",
"g c #581F21",
"h c #433434",
"j c #4C3B3D",
"k c #532829",
"l c #5E3232",
"z c #5D3D3D",
"x c #640001",
"c c #62090A",
"v c #6B0001",
"b c #6F1415",
"n c #740203",
"m c #7B0101",
"M c #731213",
"N c #7C1B1B",
"B c #632626",
"V c #662E2E",
"C c #6D2224",
"Z c #69282A",
"A c #613D3E",
"S c #693333",
"D c #6D3D3E",
"F c #772324",
"G c #792425",
"H c #7A2B2D",
"J c #713031",
"K c #733C3D",
"L c #793233",
"P c #783837",
"I c #783F3E",
"U c #434343",
"Y c #4F4444",
"T c #4C4C4C",
"R c #534A4A",
"E c #5B4241",
"W c #5F484D",
"Q c #525152",
"! c #5B5A5B",
"~ c #63494A",
"^ c #6C4042",
"/ c #655455",
"( c #6B5656",
") c #6D5C5C",
"_ c #764245",
"` c #704648",
"' c #734B4D",
"] c #794748",
"[ c #7E4C4D",
"{ c #755958",
"} c #7B5253",
"| c #6C5F61",
" . c #6C6667",
".. c #686868",
"X. c #746362",
"o. c #7B6B6C",
"O. c #840000",
"+. c #8C0203",
"@. c #8B0A0B",
"#. c #881717",
"$. c #8A181A",
"%. c #940102",
"&. c #900909",
"*. c #990000",
"=. c #9D0E0E",
"-. c #94191A",
";. c #9F1214",
":. c #9A1819",
">. c #802728",
",. c #8A2324",
"<. c #8D2728",
"1. c #843333",
"2. c #8D3A3A",
"3. c #942122",
"4. c #9C2627",
"5. c #A20303",
"6. c #A50D0E",
"7. c #AC0202",
"8. c #AE0B0C",
"9. c #AC0F11",
"0. c #A61011",
"q. c #A41819",
"w. c #AE1010",
"e. c #AA191A",
"r. c #B40102",
"t. c #B50B0B",
"y. c #BC0101",
"u. c #BE0A0A",
"i. c #B41212",
"p. c #B21A1B",
"a. c #BB1313",
"s. c #BC1718",
"d. c #B91B1C",
"f. c #A32525",
"g. c #AB2020",
"h. c #AD2F33",
"j. c #A33233",
"k. c #B52226",
"l. c #B82F30",
"z. c #B63237",
"x. c #BB3338",
"c. c #854345",
"v. c #824B4D",
"b. c #836464",
"n. c #886364",
"m. c #8A6B6B",
"M. c #817678",
"N. c #877979",
"B. c #946D6E",
"V. c #B55050",
"C. c #AF7172",
"Z. c #C40000",
"A. c #C40A0B",
"S. c #CB0001",
"D. c #CB090A",
"F. c #CE1011",
"G. c #D50101",
"H. c #D30708",
"J. c #D50A0A",
"K. c #DA0203",
"L. c #DA0C0C",
"P. c #D21414",
"I. c #DD1414",
"U. c #DB1D1D",
"Y. c #C82B2C",
"T. c #C73131",
"R. c #CD3132",
"E. c #D62929",
"W. c #E30102",
"Q. c #EB0202",
"!. c #EA0909",
"~. c #F30000",
"^. c #FB0000",
"/. c #C64F4F",
"(. c #C35757",
"). c #C46060",
"_. c #C96969",
"`. c #858181",
"'. c #8B8383",
"]. c #9C9498",
"[. c #9B9A9A",
"{. c #A09B9B",
"}. c #BD8181",
"|. c #A3A2A2",
" X c #AAA7A7",
".X c #B3AFAF",
"XX c gray69",
"oX c #BABABA",
"OX c #CF8B8B",
"+X c #D08787",
"@X c #CEAEAE",
"#X c #C5BFBF",
"$X c #D2B9B9",
"%X c #DAB9BA",
"&X c #C3C2C2",
"*X c #D8C1C1",
"=X c #DFCFCF",
"-X c gray83",
";X c #DEDDDD",
":X c #E2E2E2",
">X c #ECE8E8",
",X c #F3F2F2",
"<X c #FBFBFB",
"1X c None",
/* pixels */
"1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X:X1X1X1X1X1X1X1X1X1X1XXX&X1X1X1X",
"1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X;X1X1X1X1X1X1X1X1X1Xv.1.] 1X1X1X",
"1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X1X-X1X1XD <.s.K.=.d 1X1X",
"1X1X1X1X1X1X1X1X1X1X1X1X! .h E ( M.|.oX1XoXo.^ :.D.*.S.6.g 1X1X",
"1X1X1X1X| ~ S k R T 0 f N ;.t.D.A.a.d.a.i.s.i.A.y.n x 8.P 1X1X1X",
"1X1X1XW 2.e.A.A.M - t &.K.~.^.^.^.^.~.~.~.W.t.$.k i S.p.X.1X1X1X",
"1X1XV G J.^.^.^.~.K.W.^.^.^.^.^.^.^.^.Q.T.C.#X:X*XE.L.j.1X1X1X1X",
"1X1X2 &.~.^.^.^.^.^.^.^.^.^.^.^.^.~.I._.=X,X<X<X+X!.a.I 1X1X1X1X",
"1X1X3 @.^.^.^.^.^.^.^.^.^.^.^.^.Q.z.$X<X<X<X;X[.d.~.f.{ 1X1X1X1X",
"1X1Xz G K.^.^.^.^.^.^.^.^.^.^.!.(.$X<X<X:X|.Y - K.!.2.o.1X1X1X1X",
"1X1X1X) :.H.~.^.^.^.^.^.!.U.).@X,X:XXX..5 p ^.L.v.1X1X1X1X1X",
"1X1X1X1XZ $.w.S.K.J.Y.(.OX%X>X:X[.Q # O.^.J.' 1X1X1X1X1X",
"1X1X1X1X1X1XK 0.H.}.:X;X&X[.! # O r.^.P.m.1X1X1X1X1X",
"1X1X1X1X1X1X' ,.K.R.V.z 5 @ $ S.^.D.^ 1X1X1X1X1X",
"1X1X1X1X1X1X1Xn.A.~.~.v * G.^.F.m.1X1X1X1X1X",
"1X1X1X1X1X1X1X'.e.Q.^.*. e K.^.F.b.1X1X1X1X1X",
"1X1X1X1X1X1X1X1X-.K.^.Z. . r n &.K.^.P.B.1X1X1X1X1X",
"1X1X1X1X1X1X1X1XH A.^.K.O . + s +.%.*.K.^.L.c.1X1X1X1X1X",
"1X1X1X1X1X1X1X1X} w.^.Q.* * c n *.*.*.*.K.^.J.K 1X1X1X1X1X",
"1X1X1X1X1X1X1X1X( -.~.^.y O O.+.*.*.*.*.%.K.^.L.[ 1X1X1X1X1X",
"1X1X1X1X1X1X1X1X1XG !.^.n $ n %.*.*.*.*.*.%.S.^.L.S 1X1X1X1X1X",
"1X1X1X1X1X1X1X1X1XL K.^.O.. x *.*.*.*.*.*.*.+.y.^.K.] 1X1X1X1X1X",
"1X1X1X1X1X1X1X1X1XB H.^.7.p +.%.5.5.5.5.%.%.+.Z.^.K.S 1X1X1X1X1X",
"1X1X1X1X1X1X1X1X1XC K.^.r.m 7.9.k.g.Q.~.W.G.Z.W.^.~.G ].1X1X1X1X",
"1X1X1X1X1X1X1X1XJ i.^.~.r.;.h.z.x.d.^.^.^.^.^.^.^.^.f.N.1X1X1X1X",
"1X1X1X1X1X1X1X1X3.K.^.^.K.K.!.~.~.~.^.^.^.^.^.^.^.Q.M Y 1X1X1X1X",
"1X1X1X1X1X1X1XX.q.K.^.^.^.^.^.^.^.^.^.~.^.^.^.^.~.S.c 9 1X1X1X1X",
"1X1X1X1X1X1X1X{.#.Z.Q.^.^.^.^.^.K.K.Z.S.W.~.^.^.W.r.u 4 1X1X1X1X",
"1X1X1X1X1X1X1X`.3 a 5.G.K.S.S.7.*.v a v m *.y.S.5.v $ = 1X1X1X1X",
"1X1X1X1X1X1X1X1X= X * x O.m n p e $ O % > , , p y $ < 0 ;X1X1X1X",
"1X1X1X1X1X1X1X1Xw # X X & + + + @ = 0 w w h 6 8 ; 4 j X:X1X1X1X",
"1X1X1X1X1X1X1X1X1Xq 5 0 / q 7 7 w Q 1X1X1X1X1X1XQ Q 1X1X1X1X1X1X"
};

@ -0,0 +1,129 @@
debian/tmp/usr/lib/*/trinity/kbstate_panelapplet.la
debian/tmp/usr/lib/*/trinity/kbstate_panelapplet.so
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/altkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/capskey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/controlkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/hyperkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_left.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_left_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_mid.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_mid_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_right.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_mouse_right_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_slowkeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/kbstate_stickykeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/key.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/keypressno.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/keypressok.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/lockkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/metakey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/shiftkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/superkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/16x16/actions/unlatched.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/altkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/capskey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/controlkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/hyperkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_left.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_left_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_mid.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_mid_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_right.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_mouse_right_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_slowkeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/kbstate_stickykeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/key.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/keypressno.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/keypressok.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/lockkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/metakey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/shiftkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/superkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/22x22/actions/unlatched.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/altkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/capskey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/controlkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/hyperkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_left.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_left_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_mid.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_mid_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_right.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_mouse_right_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_slowkeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/kbstate_stickykeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/key.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/keypressno.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/keypressok.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/lockkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/metakey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/shiftkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/superkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/32x32/actions/unlatched.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/altkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/capskey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/controlkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/hyperkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_left.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_left_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_mid.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_mid_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_right.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_mouse_right_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_slowkeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/kbstate_stickykeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/key.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/keypressno.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/keypressok.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/lockkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/metakey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/shiftkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/superkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/48x48/actions/unlatched.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/altkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/capskey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/controlkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/hyperkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_left.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_left_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_mid.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_mid_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_right.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_mouse_right_selected.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_slowkeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/kbstate_stickykeys.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/key.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/keypressno.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/keypressok.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/lockkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/metakey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/shiftkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/superkey.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/64x64/actions/unlatched.png
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/altkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/capskey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/controlkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/hyperkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_left.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_left_selected.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_mid.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_mid_selected.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_right.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_mouse_right_selected.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_slowkeys.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/kbstate_stickykeys.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/key.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/keypressno.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/keypressok.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/lockkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/metakey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/shiftkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/superkey.svg
debian/tmp/usr/share/apps/kbstateapplet/icons/crystalsvg/scalable/actions/unlatched.svg
debian/tmp/usr/share/apps/kicker/applets/kbstateapplet.desktop

@ -0,0 +1,18 @@
debian/tmp/usr/bin/kmag
debian/tmp/usr/share/applications/tde/kmag.desktop
debian/tmp/usr/share/apps/kmag/icons/hicolor/16x16/actions/followmouse.png
debian/tmp/usr/share/apps/kmag/icons/hicolor/16x16/actions/hidemouse.png
debian/tmp/usr/share/apps/kmag/icons/hicolor/16x16/actions/window.png
debian/tmp/usr/share/apps/kmag/kmagui.rc
debian/tmp/usr/share/doc/tde/HTML/en/kmag/common
debian/tmp/usr/share/doc/tde/HTML/en/kmag/index.cache.bz2
debian/tmp/usr/share/doc/tde/HTML/en/kmag/index.docbook
debian/tmp/usr/share/doc/tde/HTML/en/kmag/man-kmag.1.docbook
debian/tmp/usr/share/doc/tde/HTML/en/kmag/screenshot.png
debian/tmp/usr/share/icons/hicolor/16x16/apps/kmag.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/kmag.png
debian/tmp/usr/share/icons/locolor/16x16/apps/kmag.png
debian/tmp/usr/share/icons/locolor/32x32/apps/kmag.png
debian/icons/kmag.xpm /usr/share/pixmaps
debian/icons/kmag-16.xpm /usr/share/pixmaps

@ -0,0 +1,8 @@
?package(kmag-trinity):\
needs="x11"\
section="Applications/Accessibility"\
hints="TDE"\
title="KMag"\
icon32x32="/usr/share/pixmaps/kmag.xpm"\
icon16x16="/usr/share/pixmaps/kmag-16.xpm"\
command="/usr/bin/kmag"

@ -0,0 +1,18 @@
debian/tmp/usr/bin/kmousetool
debian/tmp/usr/share/applications/tde/kmousetool.desktop
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/16x16/actions/kmousetool_off.png
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/16x16/actions/kmousetool_on.png
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/16x16/apps/kmousetool.png
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/32x32/actions/kmousetool_off.png
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/32x32/actions/kmousetool_on.png
debian/tmp/usr/share/apps/kmousetool/icons/hicolor/32x32/apps/kmousetool.png
debian/tmp/usr/share/apps/kmousetool/sounds/mousetool_tap.wav
debian/tmp/usr/share/doc/tde/HTML/en/kmousetool/common
debian/tmp/usr/share/doc/tde/HTML/en/kmousetool/index.cache.bz2
debian/tmp/usr/share/doc/tde/HTML/en/kmousetool/index.docbook
debian/tmp/usr/share/doc/tde/HTML/en/kmousetool/man-kmousetool.1.docbook
debian/tmp/usr/share/icons/hicolor/16x16/apps/kmousetool.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/kmousetool.png
debian/icons/kmousetool.xpm /usr/share/pixmaps
debian/icons/kmousetool-16.xpm /usr/share/pixmaps

@ -0,0 +1 @@
debian/man/out/kmousetool-trinity.1

@ -0,0 +1,8 @@
?package(kmousetool-trinity):\
needs="x11"\
section="Applications/Accessibility"\
hints="TDE"\
title="KMousetool"\
icon32x32="/usr/share/pixmaps/kmousetool.xpm"\
icon16x16="/usr/share/pixmaps/kmousetool-16.xpm"\
command="/usr/bin/kmousetool"

@ -0,0 +1,97 @@
debian/tmp/etc/trinity/kmouthrc
debian/tmp/usr/bin/kmouth
debian/tmp/usr/share/applications/tde/kmouth.desktop
debian/tmp/usr/share/apps/kmouth/books/de/de-courteousness.phrasebook
debian/tmp/usr/share/apps/kmouth/books/de/de-greetings.phrasebook
debian/tmp/usr/share/apps/kmouth/books/de/de-howareyou.phrasebook
debian/tmp/usr/share/apps/kmouth/books/de/de-personal.phrasebook
debian/tmp/usr/share/apps/kmouth/books/de/de.desktop
debian/tmp/usr/share/apps/kmouth/books/en/en-courteousness.phrasebook
debian/tmp/usr/share/apps/kmouth/books/en/en-greetings.phrasebook
debian/tmp/usr/share/apps/kmouth/books/en/en-howareyou.phrasebook
debian/tmp/usr/share/apps/kmouth/books/en/en-personal.phrasebook
debian/tmp/usr/share/apps/kmouth/books/en/en.desktop
debian/tmp/usr/share/apps/kmouth/books/sv/sv-courteousness.phrasebook
debian/tmp/usr/share/apps/kmouth/books/sv/sv-greetings.phrasebook
debian/tmp/usr/share/apps/kmouth/books/sv/sv-howareyou.phrasebook
debian/tmp/usr/share/apps/kmouth/books/sv/sv-personal.phrasebook
debian/tmp/usr/share/apps/kmouth/books/sv/sv.desktop
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrase.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrase_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrase_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrase_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasebook.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasebook_closed.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasebook_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasebook_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasebook_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasehistory_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasehistory_print.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/phrasehistory_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/16x16/actions/speak.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrase.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrase_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrase_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrase_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasebook.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasebook_closed.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasebook_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasebook_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasebook_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasehistory_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasehistory_print.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/phrasehistory_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/22x22/actions/speak.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrase.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrase_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrase_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrase_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasebook.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasebook_closed.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasebook_new.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasebook_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasebook_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasehistory_open.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasehistory_print.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/phrasehistory_save.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/32x32/actions/speak.png
debian/tmp/usr/share/apps/kmouth/icons/hicolor/48x48/actions/speak.png
debian/tmp/usr/share/apps/kmouth/kmouthui.rc
debian/tmp/usr/share/apps/kmouth/phrasebookdialogui.rc
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/common
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/index.cache.bz2
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/index.docbook
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthcpref.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthcpref.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthctts.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthctts.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthcwcp.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthcwcp.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthedit.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthedit.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthmain.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthmain.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthwizard.eps
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/kmouthwizard.png
debian/tmp/usr/share/doc/tde/HTML/en/kmouth/man-kmouth.1.docbook
debian/tmp/usr/share/icons/hicolor/16x16/actions/speak.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/nospeak.png
debian/tmp/usr/share/icons/hicolor/22x22/actions/speak.png
debian/tmp/usr/share/icons/hicolor/22x22/actions/nospeak.png
debian/tmp/usr/share/icons/hicolor/32x32/actions/nospeak.png
debian/tmp/usr/share/icons/hicolor/32x32/actions/speak.png
debian/tmp/usr/share/icons/hicolor/48x48/actions/nospeak.png
debian/tmp/usr/share/icons/hicolor/48x48/actions/speak.png
debian/tmp/usr/share/icons/hicolor/16x16/apps/kmouth.png
debian/tmp/usr/share/icons/hicolor/22x22/apps/kmouth.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/kmouth.png
debian/tmp/usr/share/icons/hicolor/48x48/apps/kmouth.png
debian/tmp/usr/share/icons/locolor/16x16/actions/speak.png
debian/tmp/usr/share/icons/locolor/32x32/actions/speak.png
debian/tmp/usr/share/icons/locolor/22x22/actions/speak.png
debian/tmp/usr/share/icons/locolor/16x16/apps/kmouth.png
debian/tmp/usr/share/icons/locolor/22x22/apps/kmouth.png
debian/tmp/usr/share/icons/locolor/32x32/apps/kmouth.png
debian/icons/kmouth.xpm /usr/share/pixmaps
debian/icons/kmouth-16.xpm /usr/share/pixmaps

@ -0,0 +1,8 @@
?package(kmouth-trinity):\
needs="x11"\
section="Applications/Accessibility"\
hints="TDE"\
title="KMouth"\
icon32x32="/usr/share/pixmaps/kmouth.xpm"\
icon16x16="/usr/share/pixmaps/kmouth-16.xpm"\
command="/usr/bin/kmouth"

@ -0,0 +1,20 @@
debian/tmp/usr/bin/ksayit
debian/tmp/usr/include/tde/ksayit_fxplugin.h
debian/tmp/usr/lib/*/trinity/libFreeverb_plugin.la
debian/tmp/usr/lib/*/trinity/libFreeverb_plugin.so
debian/tmp/usr/lib/*/libKTTSD_Lib.la
debian/tmp/usr/lib/*/libKTTSD_Lib.so
debian/tmp/usr/lib/*/libKTTSD_Lib.so.0
debian/tmp/usr/lib/*/libKTTSD_Lib.so.0.0.1
debian/tmp/usr/share/applications/tde/ksayit.desktop
debian/tmp/usr/share/apps/ksayit/ContextMenus.xml
debian/tmp/usr/share/apps/ksayit/ksayitui.rc
debian/tmp/usr/share/icons/hicolor/16x16/apps/ksayit.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/ksayit.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/ksayit_clipempty.png
debian/tmp/usr/share/icons/hicolor/32x32/apps/ksayit_talking.png
debian/tmp/usr/share/services/ksayit_libFreeverb.desktop
debian/tmp/usr/share/servicetypes/ksayit_libFreeverb_service.desktop
debian/icons/ksayit.xpm /usr/share/pixmaps
debian/icons/ksayit-16.xpm /usr/share/pixmaps

@ -0,0 +1,8 @@
?package(ksayit-trinity):\
needs="x11"\
section="Applications/Accessibility"\
hints="TDE"\
title="KSayIt"\
icon32x32="/usr/share/pixmaps/ksayit.xpm"\
icon16x16="/usr/share/pixmaps/ksayit-16.xpm"\
command="/usr/bin/ksayit"

@ -0,0 +1,7 @@
debian/tmp/usr/lib/*/trinity/libkttsd_freettsplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_freettsplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_hadifixplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_hadifixplugin.so
debian/tmp/usr/share/apps/kttsd/hadifix/xslt/SSMLtoTxt2pho.xsl
debian/tmp/usr/share/services/kttsd_freettsplugin.desktop
debian/tmp/usr/share/services/kttsd_hadifixplugin.desktop

@ -0,0 +1,91 @@
debian/tmp/usr/bin/kttsd
debian/tmp/usr/bin/kttsmgr
debian/tmp/usr/lib/*/trinity/kcm_kttsd.la
debian/tmp/usr/lib/*/trinity/kcm_kttsd.so
debian/tmp/usr/lib/*/trinity/tdetexteditor_kttsd.la
debian/tmp/usr/lib/*/trinity/tdetexteditor_kttsd.so
debian/tmp/usr/lib/*/trinity/libkttsd_akodeplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_akodeplugin.so
#debian/tmp/usr/lib/*/trinity/libkttsd_alsaplugin.la
#debian/tmp/usr/lib/*/trinity/libkttsd_alsaplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_artsplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_artsplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_commandplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_commandplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_eposplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_eposplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_festivalintplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_festivalintplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_fliteplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_fliteplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_sbdplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_sbdplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_stringreplacerplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_stringreplacerplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_talkerchooserplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_talkerchooserplugin.so
debian/tmp/usr/lib/*/trinity/libkttsd_xmltransformerplugin.la
debian/tmp/usr/lib/*/trinity/libkttsd_xmltransformerplugin.so
debian/tmp/usr/lib/*/trinity/libkttsjobmgrpart.la
debian/tmp/usr/lib/*/trinity/libkttsjobmgrpart.so
debian/tmp/usr/lib/*/libkttsd.la
debian/tmp/usr/lib/*/libkttsd.so
debian/tmp/usr/lib/*/libkttsd.so.1
debian/tmp/usr/lib/*/libkttsd.so.1.0.0
debian/tmp/usr/share/applications/tde/kcmkttsd.desktop
debian/tmp/usr/share/applications/tde/kttsmgr.desktop
debian/tmp/usr/share/apps/tdetexteditor_kttsd/tdetexteditor_kttsdui.rc
debian/tmp/usr/share/apps/kttsd/festivalint/sabletowave.scm
debian/tmp/usr/share/apps/kttsd/festivalint/voices
debian/tmp/usr/share/apps/kttsd/festivalint/xslt/SSMLtoSable.xsl
debian/tmp/usr/share/apps/kttsd/kcmkttsd_testmessage.desktop
debian/tmp/usr/share/apps/kttsd/sbd/polish_festival_sbdrc
debian/tmp/usr/share/apps/kttsd/sbd/standard_sbdrc
debian/tmp/usr/share/apps/kttsd/stringreplacer/abbreviations.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat-de.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/emoticons.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/festival_unspeakable_chars.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/kmail.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_fixes.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_unspeakables.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/qt2plaintext.xml
debian/tmp/usr/share/apps/kttsd/talkerchooser/female_notifications_rc
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml.xsl
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml_simple.xsl
debian/tmp/usr/share/apps/kttsd/xslt/SSMLtoPlainText.xsl
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/addtalker.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/audio.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/common
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/festivalintconf.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/filters.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/general.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/index.cache.bz2
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/index.docbook
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/interruption.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/jobs.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/notifications.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/selecttalker.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/stringreplacer.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/talkerchooser.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/talkers.png
debian/tmp/usr/share/doc/tde/HTML/en/kttsd/xmltransformer.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/female.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/male.png
debian/tmp/usr/share/services/tdetexteditor_kttsd.desktop
debian/tmp/usr/share/services/kttsd.desktop
debian/tmp/usr/share/services/kttsd_akodeplugin.desktop
#debian/tmp/usr/share/services/kttsd_alsaplugin.desktop
debian/tmp/usr/share/services/kttsd_artsplugin.desktop
debian/tmp/usr/share/services/kttsd_commandplugin.desktop
debian/tmp/usr/share/services/kttsd_eposplugin.desktop
debian/tmp/usr/share/services/kttsd_festivalintplugin.desktop
debian/tmp/usr/share/services/kttsd_fliteplugin.desktop
debian/tmp/usr/share/services/kttsd_sbdplugin.desktop
debian/tmp/usr/share/services/kttsd_stringreplacerplugin.desktop
debian/tmp/usr/share/services/kttsd_talkerchooserplugin.desktop
debian/tmp/usr/share/services/kttsd_xmltransformerplugin.desktop
debian/tmp/usr/share/services/kttsjobmgr.desktop
debian/tmp/usr/share/servicetypes/kttsd_audioplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_filterplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_synthplugin.desktop

@ -0,0 +1,88 @@
debian/tmp/opt/trinity/bin/kttsd
debian/tmp/opt/trinity/bin/kttsmgr
debian/tmp/opt/trinity/lib/trinity/kcm_kttsd.la
debian/tmp/opt/trinity/lib/trinity/kcm_kttsd.so
debian/tmp/opt/trinity/lib/trinity/tdetexteditor_kttsd.la
debian/tmp/opt/trinity/lib/trinity/tdetexteditor_kttsd.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_akodeplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_akodeplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_artsplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_artsplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_commandplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_commandplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_eposplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_eposplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_festivalintplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_festivalintplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_fliteplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_fliteplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_sbdplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_sbdplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_stringreplacerplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_stringreplacerplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_talkerchooserplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_talkerchooserplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_xmltransformerplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_xmltransformerplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsjobmgrpart.la
debian/tmp/opt/trinity/lib/trinity/libkttsjobmgrpart.so
debian/tmp/opt/trinity/lib/libkttsd.la
debian/tmp/opt/trinity/lib/libkttsd.so
debian/tmp/opt/trinity/lib/libkttsd.so.1
debian/tmp/opt/trinity/lib/libkttsd.so.1.0.0
debian/tmp/usr/share/applications/tde/kcmkttsd.desktop
debian/tmp/usr/share/applications/tde/kttsmgr.desktop
debian/tmp/usr/share/apps/tdetexteditor_kttsd/tdetexteditor_kttsdui.rc
debian/tmp/usr/share/apps/kttsd/festivalint/sabletowave.scm
debian/tmp/usr/share/apps/kttsd/festivalint/voices
debian/tmp/usr/share/apps/kttsd/festivalint/xslt/SSMLtoSable.xsl
debian/tmp/usr/share/apps/kttsd/kcmkttsd_testmessage.desktop
debian/tmp/usr/share/apps/kttsd/sbd/polish_festival_sbdrc
debian/tmp/usr/share/apps/kttsd/sbd/standard_sbdrc
debian/tmp/usr/share/apps/kttsd/stringreplacer/abbreviations.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat-de.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/emoticons.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/festival_unspeakable_chars.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/kmail.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_fixes.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_unspeakables.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/qt2plaintext.xml
debian/tmp/usr/share/apps/kttsd/talkerchooser/female_notifications_rc
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml.xsl
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml_simple.xsl
debian/tmp/usr/share/apps/kttsd/xslt/SSMLtoPlainText.xsl
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/addtalker.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/audio.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/common
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/festivalintconf.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/filters.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/general.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/index.cache.bz2
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/index.docbook
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/interruption.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/jobs.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/notifications.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/selecttalker.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/stringreplacer.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/talkerchooser.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/talkers.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/xmltransformer.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/female.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/male.png
debian/tmp/usr/share/services/tdetexteditor_kttsd.desktop
debian/tmp/usr/share/services/kttsd.desktop
debian/tmp/usr/share/services/kttsd_akodeplugin.desktop
debian/tmp/usr/share/services/kttsd_artsplugin.desktop
debian/tmp/usr/share/services/kttsd_commandplugin.desktop
debian/tmp/usr/share/services/kttsd_eposplugin.desktop
debian/tmp/usr/share/services/kttsd_festivalintplugin.desktop
debian/tmp/usr/share/services/kttsd_fliteplugin.desktop
debian/tmp/usr/share/services/kttsd_sbdplugin.desktop
debian/tmp/usr/share/services/kttsd_stringreplacerplugin.desktop
debian/tmp/usr/share/services/kttsd_talkerchooserplugin.desktop
debian/tmp/usr/share/services/kttsd_xmltransformerplugin.desktop
debian/tmp/usr/share/services/kttsjobmgr.desktop
debian/tmp/usr/share/servicetypes/kttsd_audioplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_filterplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_synthplugin.desktop

@ -0,0 +1,88 @@
debian/tmp/opt/trinity/bin/kttsd
debian/tmp/opt/trinity/bin/kttsmgr
debian/tmp/opt/trinity/lib/trinity/kcm_kttsd.la
debian/tmp/opt/trinity/lib/trinity/kcm_kttsd.so
debian/tmp/opt/trinity/lib/trinity/tdetexteditor_kttsd.la
debian/tmp/opt/trinity/lib/trinity/tdetexteditor_kttsd.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_akodeplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_akodeplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_artsplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_artsplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_commandplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_commandplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_eposplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_eposplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_festivalintplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_festivalintplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_fliteplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_fliteplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_sbdplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_sbdplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_stringreplacerplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_stringreplacerplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_talkerchooserplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_talkerchooserplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsd_xmltransformerplugin.la
debian/tmp/opt/trinity/lib/trinity/libkttsd_xmltransformerplugin.so
debian/tmp/opt/trinity/lib/trinity/libkttsjobmgrpart.la
debian/tmp/opt/trinity/lib/trinity/libkttsjobmgrpart.so
debian/tmp/opt/trinity/lib/libkttsd.la
debian/tmp/opt/trinity/lib/libkttsd.so
debian/tmp/opt/trinity/lib/libkttsd.so.1
debian/tmp/opt/trinity/lib/libkttsd.so.1.0.0
debian/tmp/usr/share/applications/tde/kcmkttsd.desktop
debian/tmp/usr/share/applications/tde/kttsmgr.desktop
debian/tmp/usr/share/apps/tdetexteditor_kttsd/tdetexteditor_kttsdui.rc
debian/tmp/usr/share/apps/kttsd/festivalint/sabletowave.scm
debian/tmp/usr/share/apps/kttsd/festivalint/voices
debian/tmp/usr/share/apps/kttsd/festivalint/xslt/SSMLtoSable.xsl
debian/tmp/usr/share/apps/kttsd/kcmkttsd_testmessage.desktop
debian/tmp/usr/share/apps/kttsd/sbd/polish_festival_sbdrc
debian/tmp/usr/share/apps/kttsd/sbd/standard_sbdrc
debian/tmp/usr/share/apps/kttsd/stringreplacer/abbreviations.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/chat-de.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/emoticons.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/festival_unspeakable_chars.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/kmail.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_fixes.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/polish_festival_unspeakables.xml
debian/tmp/usr/share/apps/kttsd/stringreplacer/qt2plaintext.xml
debian/tmp/usr/share/apps/kttsd/talkerchooser/female_notifications_rc
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml.xsl
debian/tmp/usr/share/apps/kttsd/xmltransformer/xhtml2ssml_simple.xsl
debian/tmp/usr/share/apps/kttsd/xslt/SSMLtoPlainText.xsl
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/addtalker.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/audio.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/common
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/festivalintconf.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/filters.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/general.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/index.cache.bz2
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/index.docbook
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/interruption.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/jobs.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/notifications.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/selecttalker.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/stringreplacer.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/talkerchooser.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/talkers.png
debian/tmp/opt/trinity/share/doc/tde/HTML/en/kttsd/xmltransformer.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/female.png
debian/tmp/usr/share/icons/hicolor/16x16/actions/male.png
debian/tmp/usr/share/services/tdetexteditor_kttsd.desktop
debian/tmp/usr/share/services/kttsd.desktop
debian/tmp/usr/share/services/kttsd_akodeplugin.desktop
debian/tmp/usr/share/services/kttsd_artsplugin.desktop
debian/tmp/usr/share/services/kttsd_commandplugin.desktop
debian/tmp/usr/share/services/kttsd_eposplugin.desktop
debian/tmp/usr/share/services/kttsd_festivalintplugin.desktop
debian/tmp/usr/share/services/kttsd_fliteplugin.desktop
debian/tmp/usr/share/services/kttsd_sbdplugin.desktop
debian/tmp/usr/share/services/kttsd_stringreplacerplugin.desktop
debian/tmp/usr/share/services/kttsd_talkerchooserplugin.desktop
debian/tmp/usr/share/services/kttsd_xmltransformerplugin.desktop
debian/tmp/usr/share/services/kttsjobmgr.desktop
debian/tmp/usr/share/servicetypes/kttsd_audioplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_filterplugin.desktop
debian/tmp/usr/share/servicetypes/kttsd_synthplugin.desktop

@ -0,0 +1,47 @@
kttsd for Debian
================
ktts is the TDE Text-to-Speech System.
more information may be found on the web page of the project:
http://accessibility.kde.org/developer/kttsd/
---------------------------------------------------------------------------------
kttsd plugins
=============
kttsd comes with 3 kind of plugins:
o AudioPlugins
o FilterPlugins
o SynthPlugins
The synthetizer plugins rely on third party software, that you have to
install in order to make them fully functional (see kttsd Recommends:
field).
That software are :
o festival for the Festival Plugin.
o epos for the epos plugin.
o filte for the FLite plugin.
They all are packaged in debian.
There is a Command Plugin also, that allow you to use any TTS synthetizer
that has a command line interface.
kttsd contrib plugins
=====================
kttsd comes also with free Synthetizer plugins, but depends upon non free
software :
o FreeTTS plugin.
o Hadifix (mbrola/txt2pho) plugin.
You can find these plugins in the contrib section, in the package
kttsd-contrib-plugins.
For additional instructions on downloading and configuring these engines for
use in KTTS, please read the Appendix A of the kttsd handbook (either type
help:/kttsd in konqueror, or run khelpcenter help:/kttsd).
-- Pierre Habouzit <madcoder@debian.org> Thu, 03 Mar 2005 13:17:20 +0100

@ -0,0 +1,110 @@
.\" This portion of the manual page is from kdeopt.man, from the
.\" tdeaccessibility Debian package.
.SH GENERIC OPTIONS
.TP
.B \-\-help
Show help about options.
.TP
.B \-\-help-qt
Show Qt specific options.
.TP
.B \-\-help-tde
Show TDE specific options.
.TP
.B \-\-help-all
Show all options.
.TP
.B \-\-author
Show author information.
.TP
.B \-v, \-\-version
Show version information.
.TP
.B \-\-license
Show license information.
.TP
.B \-\-
End of options.
.SH QT OPTIONS
.TP
.B \-\-display \fI<displayname>\fB
Use the X-server display `displayname'.
.TP
.B \-\-session \fI<sessionId>\fB
Restore the application for the given `sessionId'.
.TP
.B \-\-cmap
Causes the application to install a private color map on an 8\-bit
display.
.TP
.B \-\-ncols \fI<count>\fB
Limits the number of colors allocated in the color cube on an 8\-bit
display, if the application is using the QApplication::ManyColor color
specification.
.TP
.B \-\-nograb
Tells Qt to never grab the mouse or the keyboard.
.TP
.B \-\-dograb
Running under a debugger can cause an implicit \-nograb, use \-dograb
to override.
.TP
.B \-\-sync
Switches to synchronous mode for debugging.
.TP
.B \-\-fn, \-\-font \fI<fontname>\fB
Defines the application font.
.TP
.B \-\-bg, \-\-background \fI<color>\fB
Sets the default background color and an application palette (light
and dark shades are calculated).
.TP
.B \-\-fg, \-\-foreground \fI<color>\fB
Sets the default foreground color.
.TP
.B \-\-btn, \-\-button \fI<color>\fB
Sets the default button color.
.TP
.B \-\-name \fI<name>\fB
Sets the application name.
.TP
.B \-\-title \fI<title>\fB
Sets the application title (caption).
.TP
.B \-\-visual TrueColor
Forces the application to use a TrueColor visual on an 8-bit display.
.TP
.B \-\-inputstyle \fI<inputstyle>\fB
Sets XIM (X Input Method) input style. Possible values are
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
.TP
.B \-\-im \fI<XIM server>\fB
Set XIM server.
.TP
.B \-\-noxim
Disable XIM.
.SH TDE OPTIONS
.TP
.B \-\-caption \fI<caption>\fB
Use `caption' as name in the titlebar.
.TP
.B \-\-icon \fI<icon>\fB
Use `icon' as the application icon.
.TP
.B \-\-miniicon \fI<icon>\fB
Use `icon' as the icon in the titlebar.
.TP
.B \-\-dcopserver \fI<server>\fB
Use the DCOP Server specified by `server'.
.TP
.B \-\-nocrashhandler
Disable crash handler, to get core dumps.
.TP
.B \-\-waitforwm
Waits for a WM_NET compatible windowmanager.
.TP
.B \-\-style \fI<style>\fB
Sets the application GUI style.
.TP
.B \-\-geometry \fI<geometry>\fB
Sets the client geometry of the main widget.

@ -0,0 +1,15 @@
.TH KMAG 1
.SH NAME
kmag \- A screen magnifier for TDE
.SH SYNOPSIS
.B kmag [file]
.I [Qt-options] [TDE-options]
.SH DESCRIPTION
.B kmag
Kmag is a TDE screen magnifier for the visually impaired.
.so kdeopt.part
.SH SEE ALSO
More detailed user documentation is available from
.BR help:/kmag
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
help:/kmag').

@ -0,0 +1,18 @@
.TH KMOUSETOOL 1
.SH NAME
kmousetool \- TDE mouse manipulation tool
.SH SYNOPSIS
.B kmousetool
.I [Qt-options] [TDE-options]
.SH DESCRIPTION
.B kmousetool
Kmousetool is a TDE mouse manipulation tool aimed to help aid
disabled people but useful for many. It includes features
and options that provide artificial intelligence on common
mouse gestures to perform actions.
.so kdeopt.part
.SH SEE ALSO
More detailed user documentation is available from
.BR help:/kmousetool
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
help:/kmousetool').

@ -0,0 +1,15 @@
.TH KMOUTH 1
.SH NAME
kmouth \- A type and say TDE front end for speech synthesizers
.SH SYNOPSIS
.B kmouth [file]
.I [Qt-options] [TDE-options]
.SH DESCRIPTION
.B kmouth
Kmouth is a type and say TDE front end for speech synthesizers.
.so kdeopt.part
.SH SEE ALSO
More detailed user documentation is available from
.BR help:/kmouth
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
help:/kmouth').

@ -0,0 +1,11 @@
--- a/admin/configure.in.min
+++ b/admin/configure.in.min
@@ -38,6 +38,8 @@
dnl Automake doc recommends to do this only here. (Janos)
AM_INIT_AUTOMAKE(@MODULENAME@, @VERSION@) dnl searches for some needed programs
+AM_MAINTAINER_MODE
+
KDE_SET_PREFIX
dnl generate the config header

@ -0,0 +1,18 @@
--- a/admin/acinclude.m4.in
+++ b/admin/acinclude.m4.in
@@ -1689,15 +1689,6 @@
KDE_USE_CLOSURE_TRUE="#"
KDE_USE_CLOSURE_FALSE=""
KDE_NO_UNDEFINED=""
- case $host in
- *-*-linux-gnu)
- KDE_CHECK_COMPILER_FLAG([Wl,--no-undefined],
- [KDE_CHECK_COMPILER_FLAG([Wl,--allow-shlib-undefined],
- [KDE_NO_UNDEFINED="-Wl,--no-undefined -Wl,--allow-shlib-undefined"],
- [KDE_NO_UNDEFINED=""])],
- [KDE_NO_UNDEFINED=""])
- ;;
- esac
fi
AC_SUBST(KDE_USE_CLOSURE_TRUE)
AC_SUBST(KDE_USE_CLOSURE_FALSE)

@ -0,0 +1,26 @@
--- kde/admin/cvs.sh 2005-11-26 02:42:02.000000000 +0000
+++ kde/admin/cvs.sh 2005-11-26 02:42:26.000000000 +0000
@@ -537,6 +537,8 @@
if test -z "$PREPARETIPS"; then PREPARETIPS=preparetips ; fi
export EXTRACTRC PREPARETIPS
+kdepotpath=/usr/include/tde/tde.pot
+
for subdir in $dirs; do
test -z "$VERBOSE" || echo "Making messages in $subdir"
(cd $subdir
@@ -554,10 +556,10 @@
fi
perl -e '$mes=0; while (<STDIN>) { next if (/^(if\s|else\s|endif)/); if (/^messages:/) { $mes=1; print $_; next; } if ($mes) { if (/$\\(XGETTEXT\)/ && / -o/) { s/ -o \$\(podir\)/ _translatorinfo.cpp -o \$\(podir\)/ } print $_; } else { print $_; } }' < Makefile.am | egrep -v '^include ' > _transMakefile
- kdepotpath=${includedir:-`tde-config --expandvars --install include`}/tde.pot
- if ! test -f $kdepotpath; then
- kdepotpath=`tde-config --expandvars --prefix`/include/tde.pot
- fi
+# kdepotpath=${includedir:-`tde-config --expandvars --install include`}/tde.pot
+# if ! test -f $kdepotpath; then
+# kdepotpath=`tde-config --expandvars --prefix`/include/tde.pot
+# fi
$MAKE -s -f _transMakefile podir=$podir EXTRACTRC="$EXTRACTRC" PREPARETIPS="$PREPARETIPS" srcdir=. \
XGETTEXT="${XGETTEXT:-xgettext} --foreign-user -C -ci18n -ki18n -ktr2i18n -kI18N_NOOP -kI18N_NOOP2 -kaliasLocale -x $kdepotpath" messages

@ -0,0 +1,38 @@
Index: tdeaccessibility/admin/acinclude.m4.in
===================================================================
--- tdeaccessibility.orig/admin/acinclude.m4.in
+++ tdeaccessibility/admin/acinclude.m4.in
@@ -1586,7 +1586,7 @@ if AC_TRY_EVAL(kde_line); then
# if you're trying to debug this check and think it's incorrect,
# better check your installation. The check _is_ correct - your
# installation is not.
- if test -f actest.cpp && grep klineedit actest.cpp > /dev/null; then
+ if test -f actest.cpp && grep -i klineedit actest.cpp > /dev/null; then
kde_cv_uic_plugins=yes
fi
fi
Index: tdeaccessibility/acinclude.m4
===================================================================
--- tdeaccessibility.orig/acinclude.m4
+++ tdeaccessibility/acinclude.m4
@@ -1586,7 +1586,7 @@ if AC_TRY_EVAL(kde_line); then
# if you're trying to debug this check and think it's incorrect,
# better check your installation. The check _is_ correct - your
# installation is not.
- if test -f actest.cpp && grep klineedit actest.cpp > /dev/null; then
+ if test -f actest.cpp && grep -i klineedit actest.cpp > /dev/null; then
kde_cv_uic_plugins=yes
fi
fi
Index: tdeaccessibility/ksayit/Freeverb_plugin/freeverb_setup.ui
===================================================================
--- tdeaccessibility.orig/ksayit/Freeverb_plugin/freeverb_setup.ui
+++ tdeaccessibility/ksayit/Freeverb_plugin/freeverb_setup.ui
@@ -665,4 +665,7 @@
<includehints>
<includehint>kpushbutton.h</includehint>
</includehints>
+<includes>
+ <include>kpushbutton.h</include>
+</includes>
</UI>

@ -0,0 +1,4 @@
common/04_am_maintainer_mode.diff
common/06_disable_no_undefined.diff
common/kubuntu_01_kdepot.diff
dilos.patch

@ -0,0 +1,27 @@
#! /usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include debian/cdbs/debian-tde.mk
DEB_CONFIGURE_INCLUDEDIR := /usr/include/tde
DEB_CONFIGURE_MANDIR := /usr/share/man
DEB_CONFIGURE_PREFIX := /usr
DEB_CONFIGURE_INFODIR := /usr/share/info
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
DEB_CONFIGURE_EXTRA_FLAGS := \
--enable-ksayit-audio-plugins --with-akode --prefix=/usr \
--with-extra-libs=/usr/lib/$(DEB_HOST_MULTIARCH) \
--enable-libsuffix=/$(DEB_HOST_MULTIARCH)
DEB_DH_STRIP_ARGS := --dbg-package=tdeaccessibility-trinity-dbg
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
&& echo xz || echo bzip2)
PACKAGES_WITH_LIBS := kttsd-trinity ksayit-trinity
DEB_DH_SHLIBDEPS_ARGS += --dpkg-shlibdeps-params=--ignore-missing-info
#shlibs_ver = 4:3.5.0
#$(foreach p,$(PACKAGES_WITH_LIBS),$(eval DEB_DH_MAKESHLIBS_ARGS_$(p) := -V'$(p) (>= $(shlibs_ver))'))

@ -0,0 +1,6 @@
# Use xz instead of gzip
compression = "xz"
compression-level = 9
# Don't run differences
diff-ignore = .*

@ -0,0 +1,2 @@
debian/tmp/usr/share/icons/mono/index.theme
debian/tmp/usr/share/icons/mono/scalable/*/*.svgz

@ -0,0 +1,10 @@
Document: tdeaccessibility-doc-html-kmag
Title: KMag Handbook
Author: Sarang Lakare
Abstract: KMag is a screen magnifier.
Section: Apps/Utils
Format: HTML
Index: /usr/share/doc/tde/HTML/en/kmag/index.html
Files: /usr/share/doc/tde/HTML/en/kmag/*.html

@ -0,0 +1,10 @@
Document: tdeaccessibility-doc-html-kmousetool
Title: KMouseTool Handbook
Author: Jeff Roush
Abstract: KMouseTool clicks the mouse whenever the mouse cursor pauses briefly.
Section: Apps/Utils
Format: HTML
Index: /usr/share/doc/tde/HTML/en/kmousetool/index.html
Files: /usr/share/doc/tde/HTML/en/kmousetool/*.html

@ -0,0 +1,11 @@
Document: tdeaccessibility-doc-html-kmouth
Title: KMouth Handbook
Author: Gunnar Schmidt
Abstract: KMouth is an application that allows people that cannot speak
to have their computers speak.
Section: Apps/Text
Format: HTML
Index: /usr/share/doc/tde/HTML/en/kmouth/index.html
Files: /usr/share/doc/tde/HTML/en/kmouth/*.html

@ -0,0 +1,11 @@
Document: tdeaccessibility-doc-html-kttsd
Title: Kttsd Handbook
Author: Gary R. Cramblitt
Abstract: The TDE Text-to-Speech system is a plugin based service that
allows any application to speak using the DCOP interface.
Section: Apps/Text
Format: HTML
Index: /usr/share/doc/tde/HTML/en/kttsd/index.html
Files: /usr/share/doc/tde/HTML/en/kttsd/*.html
Loading…
Cancel
Save