Signed-off-by: Denis Kozadaev <denis@dilos.org>
(cherry picked from commit 9de3a997a6
)
pull/92/head
parent
b937338391
commit
b61eb14b7d
@ -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 @@
|
|||||||
|
9
|
@ -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,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 @@
|
|||||||
|
debian/man/out/kmag-trinity.1
|
@ -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 @@
|
|||||||
|
debian/man/out/kmouth-trinity.1
|
@ -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 @@
|
|||||||
|
3.0 (quilt)
|
@ -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…
Reference in new issue