Signed-off-by: Denis Kozadaev <denis@dilos.org>
(cherry picked from commit 152db2820b
)
pull/92/head
parent
2d6d189ad7
commit
38471bcdd8
@ -0,0 +1,8 @@
|
|||||||
|
AMOR for Debian
|
||||||
|
---------------
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Mon, 12 May 2003 12:29:39 +1000
|
@ -0,0 +1 @@
|
|||||||
|
amor/TODO
|
@ -0,0 +1,15 @@
|
|||||||
|
debian/tmp/usr/bin/amor
|
||||||
|
debian/tmp/usr/include/AmorIface.h
|
||||||
|
debian/tmp/usr/share/apps/amor
|
||||||
|
debian/tmp/usr/share/applications/tde/amor.desktop
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/amor/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/amor/*.docbook
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/amor/*.png
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/amor/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/amor.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/22x22/apps/amor.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/amor.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/amor.png
|
||||||
|
debian/tmp/usr/share/man/man1/amor.1
|
||||||
|
|
||||||
|
debian/icons/amor.xpm usr/share/pixmaps
|
@ -0,0 +1,9 @@
|
|||||||
|
?package(amor-trinity):\
|
||||||
|
needs="x11"\
|
||||||
|
section="Games/Toys"\
|
||||||
|
hints="TDE"\
|
||||||
|
title="AMOR"\
|
||||||
|
longtitle="AMOR (Amusing Misuse Of Resources)"\
|
||||||
|
icon="/usr/share/pixmaps/amor.xpm"\
|
||||||
|
command="/usr/bin/amor"
|
||||||
|
|
@ -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,947 @@
|
|||||||
|
tdetoys-trinity (4:3.5.10-0ubuntu2) karmic; urgency=low
|
||||||
|
|
||||||
|
* Karmic rebuild
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 02 Jul 2009 16:08:00 -0600
|
||||||
|
|
||||||
|
tdetoys-trinity (4:3.5.10-0ubuntu1~intrepid2) intrepid; urgency=low
|
||||||
|
|
||||||
|
* Moved Trinity to /opt/trinity
|
||||||
|
* Integrated properly with KDE4.2+
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Wed, 01 March 2009 13:35:00 -0600
|
||||||
|
|
||||||
|
tdetoys-trinity (4:3.5.10-0ubuntu1~intrepid1) intrepid; urgency=low
|
||||||
|
|
||||||
|
* Import from SVN
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Thu, 27 Nov 2008 20:01:00 -0600
|
||||||
|
|
||||||
|
tdetoys (4:3.5.10-0ubuntu1~hardy1) hardy-backports; urgency=low
|
||||||
|
|
||||||
|
* New upstream bugfix release (LP: #261366)
|
||||||
|
- Bump version of build-dep on tdelibs4-dev to 3.5.10
|
||||||
|
|
||||||
|
-- Scott Kitterman <scott@kitterman.com> Tue, 26 Aug 2008 00:53:15 -0400
|
||||||
|
|
||||||
|
tdetoys (4:3.5.9-0ubuntu1) hardy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 14 Feb 2008 12:27:08 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.8-1ubuntu2) hardy; urgency=low
|
||||||
|
|
||||||
|
* Run buildprep before upload
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 15 Nov 2007 09:43:07 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.8-1ubuntu1) hardy; urgency=low
|
||||||
|
|
||||||
|
* Merge with Debian, no changes except LP translations patch in debian/patches/common
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 14 Nov 2007 17:25:39 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.8-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Implement the use of uploaders.mk and update uploaders.
|
||||||
|
|
||||||
|
+++ Changes by Ana Beatriz Guerrero Lopez:
|
||||||
|
|
||||||
|
* Update section in Debian menu files (Hello Bill!)
|
||||||
|
* Redo buildprep and dump build-dependencies to 3.5.8.
|
||||||
|
|
||||||
|
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Thu, 11 Oct 2007 07:31:15 +0200
|
||||||
|
|
||||||
|
tdetoys (4:3.5.7-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Fixing typo in amor menu. Thanks to Bill Allombert for his hard work in
|
||||||
|
Debian menus file. (Closes: #428528)
|
||||||
|
* Updating kodo's description. It is not defined as useless anymore.
|
||||||
|
(Closes: #379912)
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 13 Jun 2007 01:32:10 +0200
|
||||||
|
|
||||||
|
tdetoys (4:3.5.8-0ubuntu1) gutsy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 09 Oct 2007 11:41:22 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.5.7-1ubuntu1) gutsy; urgency=low
|
||||||
|
|
||||||
|
* New Upstream Version
|
||||||
|
* Modify Maintainer value to match Debian-Maintainer-Field Spec
|
||||||
|
|
||||||
|
-- Sarah Hobbs <hobbsee@ubuntu.com> Wed, 23 May 2007 15:28:10 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.7-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
+++ Changes by Ana Beatriz Guerrero Lopez:
|
||||||
|
|
||||||
|
* Remove patches 02_kweather_readd_latvia_station.diff and
|
||||||
|
03_kweather_canada_station_update.diff, merged upstream.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 16 May 2007 00:58:34 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.5.6-2ubuntu1) gutsy; urgency=low
|
||||||
|
|
||||||
|
* Merge with Debian
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 30 Apr 2007 15:56:21 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.5.6-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Upload to unstable after Etch release.
|
||||||
|
|
||||||
|
-- Ana Beatriz Guerrero Lopez <ana@debian.org> Wed, 18 Apr 2007 15:21:25 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.5.6-1) experimental; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
+++ Changes by Modestas Vainius:
|
||||||
|
|
||||||
|
* Remove patches 01, 04. Applied upstream.
|
||||||
|
* Add myself to Uploaders.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 17 Jan 2007 18:16:41 +0200
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-3) unstable; urgency=medium
|
||||||
|
|
||||||
|
+++ Changes by Modestas Vainius:
|
||||||
|
* Previous revision didn't add Lithuania to the country list as it was
|
||||||
|
supposed to. So sync weather_stations.desktop and station.dat with KDE
|
||||||
|
3.5 branch, which include Lithuanian stations in addition to other
|
||||||
|
station updates.
|
||||||
|
* Fix Latvia country code (LA -> LV) and add Latvian Liepaja station.
|
||||||
|
* Add/update Canadian weather stations. The patch based on the one in the
|
||||||
|
bug report, but with all dead stations removed. (Closes: #400291)
|
||||||
|
* Add patch from upstream svn (commit 616273) to fix occasional station
|
||||||
|
selection breakage. (Closes: #348459)
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 30 Dec 2006 20:28:47 +0200
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Add Lithuania to the country list of kweather. Add weather stations
|
||||||
|
that are available in Lithuania:
|
||||||
|
- Vilnius (EYVI) as "Vilnius"
|
||||||
|
- Kaunas (EYKA) as "Kaunas"
|
||||||
|
- Siauliai Intl./Mil. (EYSA) as "Siauliai"
|
||||||
|
- Palanga Intl. (EYPA) as "Palanga"
|
||||||
|
Thanks to Modestas Vainius.
|
||||||
|
* Make tdetoys-dbg depend on tdelibs-dbg to get useful backtraces when
|
||||||
|
debugging.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 07 Dec 2006 19:03:17 +0100
|
||||||
|
|
||||||
|
|
||||||
|
tdetoys (4:3.5.6-0ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 17 Jan 2007 11:22:29 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-1ubuntu2) feisty; urgency=low
|
||||||
|
|
||||||
|
* rebuild with --enable-gcc-hidden-visibility
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 16 Nov 2006 19:39:17 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-1ubuntu1) feisty; urgency=low
|
||||||
|
|
||||||
|
* Merge with Debian
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 15 Nov 2006 22:31:57 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 4 Oct 2006 20:13:46 -0400
|
||||||
|
|
||||||
|
tdetoys (4:3.5.4-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
* KDE_3_5_BRANCH update (up to r567758).
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 29 Jul 2006 20:57:12 -0400
|
||||||
|
|
||||||
|
tdetoys (4:3.5.5-0ubuntu1) edgy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 3 Oct 2006 10:56:08 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.4-0ubuntu2) 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:13 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.4-0ubuntu1) edgy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Jul 2006 10:12:19 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.3-1ubuntu2) edgy; urgency=low
|
||||||
|
|
||||||
|
* Rebuild on latest tdelibs, fix Qt binary compatibility break
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 28 Jun 2006 16:39:33 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.3-1ubuntu1) edgy; urgency=low
|
||||||
|
|
||||||
|
* Merge with Debian
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 27 Jun 2006 16:59:57 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.3-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
* KDE_3_5_BRANCH update (up to r548151).
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sun, 4 Jun 2006 17:30:43 -0400
|
||||||
|
|
||||||
|
tdetoys (4:3.5.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
* KDE_3_5_BRANCH update (up to r524057).
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 29 Mar 2006 13:02:24 -0500
|
||||||
|
|
||||||
|
tdetoys (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:23:36 -0500
|
||||||
|
|
||||||
|
tdetoys (4:3.5.0-3) unstable; urgency=low
|
||||||
|
|
||||||
|
+++ Changes by Christopher Martin:
|
||||||
|
|
||||||
|
* Upload to unstable.
|
||||||
|
|
||||||
|
* KDE_3_5_BRANCH update (up to r495374).
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 7 Jan 2006 17:22:51 -0500
|
||||||
|
|
||||||
|
tdetoys (4:3.5.0-2) experimental; urgency=low
|
||||||
|
|
||||||
|
* Upload to experimental.
|
||||||
|
|
||||||
|
* KDE_3_5_BRANCH update (up to r488948).
|
||||||
|
|
||||||
|
+++ Changes by Christopher Martin:
|
||||||
|
|
||||||
|
* No longer build with gcc-3.4 on any architectures, since gcc-4.0 should
|
||||||
|
be fixed. (Closes: #342989)
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Fri, 16 Dec 2005 10:26:27 -0500
|
||||||
|
|
||||||
|
tdetoys (4:3.5.2-0ubuntu3) dapper; urgency=low
|
||||||
|
|
||||||
|
* debian/cdbs/kde.mk:
|
||||||
|
- added dh_iconcache.
|
||||||
|
|
||||||
|
-- Daniel Holbach <daniel.holbach@ubuntu.com> Sun, 21 May 2006 16:40:00 +0200
|
||||||
|
|
||||||
|
tdetoys (4:3.5.2-0ubuntu2) dapper; urgency=low
|
||||||
|
|
||||||
|
* Edit kde.mk to mark .po files as UTF-8
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 21 Apr 2006 19:04:06 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.5.2-0ubuntu1) dapper; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 20 Mar 2006 12:06:29 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.1-0ubuntu1) dapper; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 23 Jan 2006 14:26:07 +0000
|
||||||
|
|
||||||
|
tdetoys (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:29:12 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5-rc2-0ubuntu2) dapper; urgency=low
|
||||||
|
|
||||||
|
* Ensure patches are not applies before upload
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Sat, 26 Nov 2005 16:38:57 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5-rc2-0ubuntu1) dapper; urgency=low
|
||||||
|
|
||||||
|
* New upstream pre-release
|
||||||
|
* Generate .pot files
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 22 Nov 2005 15:23:19 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5-rc1-1ubuntu1) dapper; urgency=low
|
||||||
|
|
||||||
|
* Sync with Debian
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Sun, 13 Nov 2005 16:02:53 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.5.0-1) alioth; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
+++ Changes by Christopher Martin:
|
||||||
|
|
||||||
|
* Change doc-base section for all documentation to Games/Toys.
|
||||||
|
(Closes: #335068)
|
||||||
|
|
||||||
|
* Bump DH_COMPAT to 5. No changes.
|
||||||
|
|
||||||
|
* Add tdetoys-dbg, to help track down problems.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 30 Nov 2005 14:13:02 -0500
|
||||||
|
|
||||||
|
tdetoys (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:12:55 -0400
|
||||||
|
|
||||||
|
tdetoys (4:3.4.2-2) unstable; urgency=low
|
||||||
|
|
||||||
|
+++ Changes by Luk Claes:
|
||||||
|
|
||||||
|
* Build with g++-3.4 on arm, m68k and hppa; tdetoys 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
|
||||||
|
|
||||||
|
tdetoys (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 16:40:50 +0200
|
||||||
|
|
||||||
|
tdetoys (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
|
||||||
|
|
||||||
|
tdetoys (4:3.4.3-0ubuntu2) breezy; urgency=low
|
||||||
|
|
||||||
|
* Do not try to install missing man pages
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Sun, 9 Oct 2005 17:28:15 +0100
|
||||||
|
|
||||||
|
tdetoys (4:3.4.3-0ubuntu1) breezy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
* Build with GCC 3.4 on hppa etc
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 7 Oct 2005 20:03:45 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.4.2-0ubuntu1) breezy; urgency=low
|
||||||
|
|
||||||
|
* New upstream release
|
||||||
|
* Build using unsermake
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 26 Jul 2005 16:25:41 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.4.1-0ubuntu1) breezy; urgency=low
|
||||||
|
|
||||||
|
* Update version number following KDE 3.4.1 release
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jr@jriddell.org> Wed, 1 Jun 2005 00:58:08 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.4.1-0pre1ubuntu1) breezy; urgency=low
|
||||||
|
|
||||||
|
* Sync with Debian
|
||||||
|
|
||||||
|
-- Jonathan Riddell <jr@jriddell.org> Thu, 26 May 2005 13:05:48 +0000
|
||||||
|
|
||||||
|
tdetoys (4:3.4.0-0pre1) alioth; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
+++ Changes by Christopher Martin:
|
||||||
|
|
||||||
|
* Converted packaging to CDBS.
|
||||||
|
|
||||||
|
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 5 Mar 2005 22:58:44 -0500
|
||||||
|
|
||||||
|
tdetoys (4:3.3.2-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Added the full text of the GFDL to debian/copyright, since all of the
|
||||||
|
docbook documentation is under this license.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Fri, 25 Mar 2005 19:07:39 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.3.2-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Changed kteatime to depend on kicker instead of just recommending it.
|
||||||
|
* Made it clearer that kteatime is a KDE systray applet that will probably
|
||||||
|
not work under non-KDE window managers / desktop environments. This is
|
||||||
|
now explained in both the long package description and kteatime's
|
||||||
|
README.Debian.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 6 Feb 2005 17:51:59 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.3.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New upstream bugfix release.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Mon, 17 Jan 2005 08:53:18 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.3.1-2) unstable; urgency=medium
|
||||||
|
|
||||||
|
* Build-conflicts with autoconf2.13, which does not play well with
|
||||||
|
Makefile.common (closes: #277629).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Thu, 28 Oct 2004 19:03:02 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.3.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New upstream bugfix release.
|
||||||
|
* KWorldClock applet unbroken (closes: #276891). This required a further
|
||||||
|
update from BRANCH (mapwidget.cpp), since the fix was made after 3.3.1.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Thu, 21 Oct 2004 09:23:15 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.3.0-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Fixed incorrect kweather sunset time (closes: #243840).
|
||||||
|
* Mention in the docs that kworldclock can be used as a desktop background.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sat, 16 Oct 2004 14:09:26 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.2.3-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Patched kweather so that the correct timezone is used for "last updated"
|
||||||
|
when the network is down (closes: #254159).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Tue, 6 Jul 2004 22:54:39 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.2.3-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Patched ktux so that it always uses the entire window / screen, not just
|
||||||
|
the top left corner (closes: #234850).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Tue, 6 Jul 2004 09:20:47 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.2.3-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream bugfix release.
|
||||||
|
* Don't abuse conflicts (use replaces instead where this is more proper).
|
||||||
|
* Suggests (konqueror | www-browser) for tdetoys-doc-html instead of
|
||||||
|
just www-browser.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Tue, 15 Jun 2004 08:38:18 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.2.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream bugfix release.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sat, 24 Apr 2004 08:53:43 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.2.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* First KDE 3.2 upload to sid.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 7 Mar 2004 17:42:59 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.2.0-2) experimental; urgency=low
|
||||||
|
|
||||||
|
* First KDE 3.2 upload to experimental.
|
||||||
|
* Sync from KDE_3_2_BRANCH for recent bugfixes.
|
||||||
|
* Using versioned dependencies for the tdetoys metapackage.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Mon, 23 Feb 2004 08:14:22 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.2.0-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Many thanks to Ralf Nolden for all his help with packaging KDE 3.2.
|
||||||
|
* Binary package kaphorism no longer exists.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sat, 31 Jan 2004 12:08:48 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.1.5-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Revert unintentional maintainer change that appeared in 4:3.1.5-1.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 18 Jan 2004 21:48:10 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.1.5-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 18 Jan 2004 12:55:12 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.1.4-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Backported kteatime tooltip fix from HEAD (closes: #202206).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Wed, 15 Oct 2003 11:45:08 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.1.4-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Updated amor description and man page to note that it works with window
|
||||||
|
managers other than twin (closes: #213488).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Mon, 13 Oct 2003 00:55:42 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.1.4-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Bumped standards-version to 3.6.1.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Mon, 29 Sep 2003 15:08:53 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.1.3-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Split debian menu titles into title/longtitle.
|
||||||
|
* Bumped standards-version to 3.6.0.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Wed, 13 Aug 2003 11:02:26 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.1.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Debian menu pixmaps no longer use a restricted colour map.
|
||||||
|
* Man page overhaul.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 1 Jun 2003 14:15:47 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.1.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Removed alpha compile flags.
|
||||||
|
* Time display for kworldclock fixed (closes: #185787).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sat, 22 Mar 2003 16:18:51 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.1.0-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* First Trinity upload to debian!
|
||||||
|
* KTeaTime now supports custom tasks (closes: #141942).
|
||||||
|
* Fixed kscore manpage directory (closes: #156881).
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Sun, 2 Feb 2003 19:40:16 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.1.0-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org> Mon, 18 Nov 2002 14:15:59 +1100
|
||||||
|
|
||||||
|
tdetoys (4:3.0.9-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Built with g++-3.2.
|
||||||
|
* Build-depends on automake1.7.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Tue, 22 Oct 2002 11:57:39 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.0.8-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Moved to Chris Cheney's style of debian/rules.
|
||||||
|
* Build-depends on automake1.6.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sun, 22 Sep 2002 17:57:55 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.0.3-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Build-depends on automake1.5.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Thu, 15 Aug 2002 13:22:22 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.0.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Thu, 4 Jul 2002 19:36:49 +1000
|
||||||
|
|
||||||
|
tdetoys (4:3.0.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Tue, 14 May 2002 00:09:38 +1000
|
||||||
|
|
||||||
|
tdetoys (4:2.2.2-4) unstable; urgency=low
|
||||||
|
|
||||||
|
* Fixed HTML documentation conflicts.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Tue, 2 Apr 2002 00:26:51 +1000
|
||||||
|
|
||||||
|
tdetoys (4:2.2.2-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Incorporated new KDE_2_2_BRANCH patches.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sat, 23 Feb 2002 16:42:17 +1100
|
||||||
|
|
||||||
|
tdetoys (4:2.2.2-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Moved AmorIface.h to /usr/include/tde (closes: Bug#122447).
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sun, 9 Dec 2001 09:07:02 -0600
|
||||||
|
|
||||||
|
tdetoys (4:2.2.2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Wed, 7 Nov 2001 10:49:53 -0600
|
||||||
|
|
||||||
|
tdetoys (4:2.2.1-4) unstable; urgency=low
|
||||||
|
|
||||||
|
* Uses automake again to solve new alpha problems.
|
||||||
|
* Removed redundant uic from build-depends.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Tue, 6 Nov 2001 23:51:27 -0600
|
||||||
|
|
||||||
|
tdetoys (4:2.2.1-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Builds with automake 1.5.
|
||||||
|
* tdetoys-doc-html now conflicts with old tdetoys binaries that provided
|
||||||
|
their own HTML docs (closes: Bug#115104).
|
||||||
|
* Installs .pl.1 man pages in the correct locations (requires newer
|
||||||
|
debhelper).
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Thu, 11 Oct 2001 15:31:32 -0500
|
||||||
|
|
||||||
|
tdetoys (4:2.2.1-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Updated parameters for alpha build (closes: Bug#113126).
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sat, 22 Sep 2001 12:00:37 -0500
|
||||||
|
|
||||||
|
tdetoys (4:2.2.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Fixed doc-base entries to refer to real directories instead of symlinks.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Fri, 31 Aug 2001 21:08:56 -0500
|
||||||
|
|
||||||
|
tdetoys (4:2.2.0-final-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream release.
|
||||||
|
* Added package tdetoys-doc-html.
|
||||||
|
* Added suggests: konqueror to packages including docbook documentation.
|
||||||
|
* Build-Depends: requires newer tdelibs-dev for working meinproc; added uic.
|
||||||
|
* Linking /usr/share/apps/kworldwatch to /usr/share/apps/kworldclock.
|
||||||
|
* Ensures .bz2 files are not being compressed.
|
||||||
|
* Bumped standards-version to 3.5.6.
|
||||||
|
* Cleaned up debian/rules.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sun, 29 Jul 2001 17:48:59 +1000
|
||||||
|
|
||||||
|
tdetoys (4:2.2-beta1-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* Rebuilt with newer tdelibs (closes: #107001).
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Tue, 31 Jul 2001 01:17:51 +1000
|
||||||
|
|
||||||
|
tdetoys (4:2.2-beta1-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Builds on alpha.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sun, 29 Jul 2001 00:20:23 +1000
|
||||||
|
|
||||||
|
tdetoys (4:2.2-beta1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream version (closes: #88610, #99059, #99060).
|
||||||
|
* Adopted by Ben Burton <benb@acm.org> (closes: #89596).
|
||||||
|
* Added package fifteenapplet.
|
||||||
|
* Renamed package kworldwatch to kworldclock.
|
||||||
|
* Removed redundancies in build-depends.
|
||||||
|
* Changed Depends: tdebase to Recommends: tdebase for panel and systray
|
||||||
|
applets.
|
||||||
|
* Updated descriptions (closes: #93817, #93818, #93820, #93821).
|
||||||
|
* Added man pages.
|
||||||
|
* Added pixmaps for debian menu items.
|
||||||
|
* General overhaul of debian/.
|
||||||
|
|
||||||
|
-- Ben Burton <benb@acm.org> Sat, 23 Jun 2001 12:32:11 -0500
|
||||||
|
|
||||||
|
tdetoys (4:2.1.1-2.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* NMU
|
||||||
|
* Fixing build-depends
|
||||||
|
* Update config.* files for hppa/ia64 archs
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sat, 28 Apr 2001 03:34:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1.1-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* NMU
|
||||||
|
* Update menu entries with new kde menu tag
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 09 Apr 2001 02:40:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1.1-1.0.1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Rebuild with older libc
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 26 Mar 2001 02:31:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 19 Mar 2001 02:31:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1-final-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream version
|
||||||
|
* Upping standards version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 19 Feb 2001 02:31:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1-beta2-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream beta
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 22 Jan 2001 06:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1-20010106-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream cvs version
|
||||||
|
* build-depends and depends updates
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sat, 06 Jan 2001 23:30:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1-20010101-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream cvs version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 01 Jan 2001 15:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.1-20001221-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* New upstream cvs version
|
||||||
|
* Adding in missing conflicts for tdetoys
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 21 Dec 2000 02:44:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-7) unstable; urgency=low
|
||||||
|
|
||||||
|
* Fixing problem with eyesapplet's so link (Closes: #77709)
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Wed, 22 Nov 2000 05:10:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-6) unstable; urgency=low
|
||||||
|
|
||||||
|
* More dependency cleanup
|
||||||
|
* rebuild rules script
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Tue, 21 Nov 2000 07:44:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-5) unstable; urgency=low
|
||||||
|
|
||||||
|
* Upstream documentation updates
|
||||||
|
* More dependency cleanup
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sat, 18 Nov 2000 04:20:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-4) unstable; urgency=low
|
||||||
|
|
||||||
|
* more upstream fixes
|
||||||
|
* adding in menu hints
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 09 Nov 2000 22:45:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-3) unstable; urgency=low
|
||||||
|
|
||||||
|
* more upstream fixes
|
||||||
|
* build against new xlibs
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sat, 04 Nov 2000 23:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* more upstream fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 02 Nov 2000 18:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-final-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* KDE 2.0
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 23 Oct 2000 00:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20001011-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* KDE 2.0 RC2
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 12 Oct 2000 06:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20001006-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 06 Oct 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20001005-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Compiling against non-versioned tdelibs again
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Thu, 05 Oct 2000 15:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20001002-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* KDE 2.0 RC1
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 02 Oct 2000 01:30:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000925-2) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Clean build against new libc package
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Tue, 26 Sep 2000 22:30:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000925-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Build-Depends fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 25 Sep 2000 15:30:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000920-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Breaking down into individual packages
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Wed, 20 Sep 2000 23:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000918-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Fixing odd description (Closes: #71542)
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 18 Sep 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000909-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sat, 09 Sep 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000901-0) unstable; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
* Merging package fixes with upstream cvs
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 01 Sep 2000 17:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000825-0) experimental; urgency=low
|
||||||
|
|
||||||
|
* KDE 2.0 beta 4
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 25 Aug 2000 22:30:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000820-1.0) experimental; urgency=low
|
||||||
|
|
||||||
|
* New upstream beta version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sun, 20 Aug 2000 17:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys (4:2.0-20000524-1.0) experimental; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Wed, 24 May 2000 04:15:00 -0700
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-20000521-1.0) experimental; urgency=low
|
||||||
|
|
||||||
|
* More upstream fixes
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sun, 21 May 2000 18:15:00 -0700
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-20000512-1.1) experimental; urgency=low
|
||||||
|
|
||||||
|
* new cvs version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 12 May 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-20000308-1.0) experimental; urgency=low
|
||||||
|
|
||||||
|
* new cvs version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Wed, 08 Mar 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-20000302-1.0) experimental; urgency=low
|
||||||
|
|
||||||
|
* new cvs version
|
||||||
|
* Adding in build-depends
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Tue, 29 Feb 2000 22:00:00 -0700
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-19991001-1) experimental; urgency=low
|
||||||
|
|
||||||
|
* new version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Fri, 01 Oct 1999 14:30:31 -0400
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-19990822-1) experimental; urgency=low
|
||||||
|
|
||||||
|
* new version
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Sun, 22 Aug 1999 08:52:31 -0400
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-19990626) experimental; urgency=low
|
||||||
|
|
||||||
|
* new version
|
||||||
|
* install into /opt/kde
|
||||||
|
|
||||||
|
-- Stephan Kulow <coolo@kde.org> Sat, 26 Jun 1999 18:52:31 +0200
|
||||||
|
|
||||||
|
tdetoys-cvs (4:2.0-19990524-1) experimental; urgency=low
|
||||||
|
|
||||||
|
* migrating out of /opt to /
|
||||||
|
|
||||||
|
-- Ivan E. Moore II <rkrusty@debian.org> Mon, 24 May 1999 07:22:51 -0400
|
||||||
|
|
||||||
|
tdetoys (4:1.1-19990217-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* new upstream version
|
||||||
|
|
||||||
|
-- Stephan Kulow <coolo@kde.org> Wed, 17 Feb 1999 19:09:43 +0100
|
||||||
|
|
||||||
|
tdetoys (4:1.1_19990207-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* new upstream version 1.1 and new epoche
|
||||||
|
|
||||||
|
-- Stephan Kulow <coolo@kde.org> Sun, 7 Feb 1999 12:12:58 +0100
|
||||||
|
|
||||||
|
Local variables:
|
||||||
|
mode: debian-changelog
|
||||||
|
End:
|
@ -0,0 +1 @@
|
|||||||
|
9
|
@ -0,0 +1,213 @@
|
|||||||
|
Source: tdetoys-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>, Modestas Vainius <geromanas@mailas.com>
|
||||||
|
Build-Depends: libasound2-dev [!solaris-any], cdbs (>= 0.4.39-0.1), debhelper (>= 7.0.50~), quilt, cmake, autotools-dev, tdelibs14-trinity-dev, gawk, sharutils, automake, autoconf, libtool, libltdl-dev
|
||||||
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
|
Package: tdetoys-trinity
|
||||||
|
Architecture: all
|
||||||
|
Section: tde
|
||||||
|
Replaces: kdetoys-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kdetoys-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: amor-trinity (>= ${source:Version}), eyesapplet-trinity (>= ${source:Version}), fifteenapplet-trinity (>= ${source:Version}), kmoon-trinity (>= ${source:Version}), kodo-trinity (>= ${source:Version}), kteatime-trinity (>= ${source:Version}), ktux-trinity (>= ${source:Version}), kweather-trinity (>= ${source:Version}), kworldclock-trinity (>= ${source:Version})
|
||||||
|
Suggests: tdetoys-trinity-doc-html (>= ${source:Version})
|
||||||
|
Description: toys 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 toys and fun extras provided
|
||||||
|
with the official release of Trinity.
|
||||||
|
|
||||||
|
Package: tdetoys-trinity-doc-html
|
||||||
|
Architecture: all
|
||||||
|
Section: doc
|
||||||
|
Replaces: kdetoys-trinity-doc-html (<< 4:14.0.0~)
|
||||||
|
Breaks: kdetoys-trinity-doc-html (<< 4:14.0.0~)
|
||||||
|
Suggests: konqueror-trinity | www-browser, tdetoys-trinity
|
||||||
|
Description: Trinity toys 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 toys 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/amor/. Documentation is provided for most
|
||||||
|
TDE toys packages.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: amor-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: games
|
||||||
|
Replaces: amor-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: amor-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Recommends: twin-trinity
|
||||||
|
Suggests: khelpcenter-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: a Trinity creature for your desktop
|
||||||
|
AMOR stands for Amusing Misuse Of Resources. It provides several different
|
||||||
|
characters who prance around your X screen doing tricks and giving you tips.
|
||||||
|
.
|
||||||
|
Note that AMOR will only work with some window managers. Both KWin (the
|
||||||
|
TDE window manager) and Metacity (a GTK2 window manager) are supported.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: eyesapplet-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: eyesapplet-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: eyesapplet-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Recommends: kicker-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: eyes applet for Trinity
|
||||||
|
An applet for the TDE panel containing a pair of eyes that follow your mouse
|
||||||
|
around the screen.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: fifteenapplet-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: fifteenapplet-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: fifteenapplet-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Recommends: kicker-trinity
|
||||||
|
Description: fifteen pieces puzzle for Trinity
|
||||||
|
An applet for the TDE panel that lets you play the Fifteen Pieces
|
||||||
|
sliding block puzzle. You have to order 15 pieces in a 4x4 square by
|
||||||
|
moving them around.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: kmoon-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: kmoon-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kmoon-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Recommends: kicker-trinity
|
||||||
|
Suggests: khelpcenter-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: moon phase indicator for Trinity
|
||||||
|
An applet for the TDE panel that displays the current phase of the moon.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: kodo-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: games
|
||||||
|
Replaces: kodo-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kodo-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Suggests: khelpcenter-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: mouse odometer for Trinity
|
||||||
|
KOdometer measures your desktop mileage. It tracks the movement of your mouse
|
||||||
|
pointer across your desktop and renders it in inches/feet/miles! It can
|
||||||
|
do cm/metres/km too. Its most exciting feature is the tripometer.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: kteatime-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: kteatime-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kteatime-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}, kicker-trinity
|
||||||
|
Suggests: khelpcenter-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: Trinity utility for making a fine cup of tea
|
||||||
|
KTeaTime is a handy timer for steeping tea. No longer will you have to
|
||||||
|
guess at how long it takes for your tea to be ready. Simply select the
|
||||||
|
type of tea you have, and it will alert you when the tea is ready to
|
||||||
|
drink.
|
||||||
|
.
|
||||||
|
KTeaTime sits in the Trinity system tray.
|
||||||
|
.
|
||||||
|
Please note that KTeaTime is written explicitly for Trinity. If you are
|
||||||
|
using a non-TDE window manager or desktop environment then it is quite
|
||||||
|
possible that KTeaTime will not work on your system.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: ktux-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: ktux-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: ktux-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Suggests: twin-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity
|
||||||
|
Description: Tux screensaver for Trinity
|
||||||
|
A neat Tux-in-a-spaceship screensaver for the Trinity Desktop Environment (TDE).
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: kweather-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: tde
|
||||||
|
Replaces: kweather-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kweather-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Recommends: kicker-trinity
|
||||||
|
Suggests: khelpcenter-trinity
|
||||||
|
Description: weather display applet for Trinity
|
||||||
|
An applet for the TDE panel that displays your area's current weather.
|
||||||
|
Information shown includes the temperature, wind speed, air pressure
|
||||||
|
and more. By pressing a button a full weather report can be obtained.
|
||||||
|
.
|
||||||
|
KWeather also provides a weather service that can track multiple weather
|
||||||
|
stations and provide this information to other applications, including
|
||||||
|
Konqueror's sidebar and Kontact's summary page.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: kworldclock-trinity
|
||||||
|
Architecture: any
|
||||||
|
Section: games
|
||||||
|
Replaces: kworldclock-trinity (<< 4:14.0.0~)
|
||||||
|
Breaks: kworldclock-trinity (<< 4:14.0.0~)
|
||||||
|
Depends: ${shlibs:Depends}
|
||||||
|
Suggests: tdeartwork-misc-trinity, kicker-trinity, kdesktop-trinity, khelpcenter-trinity
|
||||||
|
Conflicts: task-tdetoys-trinity, kworldwatch-trinity (<= 4:2.2-beta1-1)
|
||||||
|
Provides: kworldwatch-trinity
|
||||||
|
Description: earth watcher for Trinity
|
||||||
|
Displays where in the world it is light and dark depending on time, as
|
||||||
|
well as offering the time in all of the major cities of the world.
|
||||||
|
This can be run standalone, as an applet in the TDE panel or as a
|
||||||
|
desktop background.
|
||||||
|
.
|
||||||
|
Additional kworldclock themes are available in the tdeartwork-misc package.
|
||||||
|
.
|
||||||
|
This package is part of Trinity, and a component of the TDE toys module.
|
||||||
|
See the 'tde-trinity' and 'tdetoys-trinity' packages for more information.
|
||||||
|
|
||||||
|
Package: tdetoys-trinity-dbg
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: linux-any
|
||||||
|
Replaces: kdetoys-trinity-dbg (<< 4:14.0.0~)
|
||||||
|
Breaks: kdetoys-trinity-dbg (<< 4:14.0.0~)
|
||||||
|
Depends: tdelibs-trinity-dbg
|
||||||
|
Priority: extra
|
||||||
|
Description: debugging symbols for tdetoys-trinity
|
||||||
|
This package contains the debugging symbols associated with tdetoys-trinity.
|
||||||
|
They will automatically be used by gdb for debugging tdetoys-related
|
||||||
|
issues.
|
@ -0,0 +1,527 @@
|
|||||||
|
This package was debianized by Andreas Jellinghaus <aj@dungeon.inka.de> on
|
||||||
|
Sun, 7 Feb 1999 12:12:58 +0100.
|
||||||
|
It was brought up to date by Ivan E. Moore II <rkrusty@debian.org> on
|
||||||
|
Mon, 24 May 1999 07:22:51 -0400.
|
||||||
|
It was brought up to date by Ben Burton <bab@debian.org> on
|
||||||
|
Sat, 23 Jun 2001 12:32:11 -0500.
|
||||||
|
|
||||||
|
It was downloaded from: http://www.kde.org/download
|
||||||
|
|
||||||
|
Upstream Authors:
|
||||||
|
|
||||||
|
AMOR: Martin R. Jones <mjones@kde.org> and
|
||||||
|
Gerardo Puga <gpuga@gioia.ing.unlp.edu.ar>
|
||||||
|
Eyes Applet: Matthias Elter <elter@kde.org> and
|
||||||
|
Jerome Tollet <tollet@magic.fr>
|
||||||
|
Fifteen Pieces Applet: Matthias Elter <elter@kde.org>
|
||||||
|
KMoon: Stephan Kulow <coolo@kde.org>,
|
||||||
|
M G berberich <berberic@fmi.uni-passau.de>,
|
||||||
|
Christopher Osburn <chris@speakeasy.org>
|
||||||
|
and Tim Beauchamp <timb@googol.com>
|
||||||
|
KOdometer: Armen Nakashian <armen@tourismo.com> and
|
||||||
|
Mark H. Granoff/mhg <granoff@keptin.lkg.dec.com>
|
||||||
|
KTeaTime: Matthias Hoelzer-Kluepfel <hoelzer@kde.org> and
|
||||||
|
Martin Willers <willers@xm-arts.de>
|
||||||
|
KTux: Martin R. Jones <mjones@kde.org> and Carlos Rego
|
||||||
|
KWeather: Ian Reinhart Geiser <geiseri@kde.org>,
|
||||||
|
Nadeem Hasan <nhasan@kde.org> and Tobias Koenig <tokoe@kde.org>
|
||||||
|
KWorldClock: Matthias Hoelzer-Kluepfel <hoelzer@kde.org> and others
|
||||||
|
|
||||||
|
Copyright:
|
||||||
|
|
||||||
|
All components of this package are released under the GNU General
|
||||||
|
Public License, with the exceptions shown below.
|
||||||
|
|
||||||
|
On Debian GNU/Linux systems, the complete texts of the GNU General
|
||||||
|
Public License (GPL) and the GNU Library General Public License (LGPL)
|
||||||
|
can be found in the files `/usr/share/common-licenses/GPL' and
|
||||||
|
`/usr/share/common-licenses/LGPL'.
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Fifteen Pieces Applet:
|
||||||
|
|
||||||
|
Copyright (c) 2001 Matthias Elter <elter@kde.org>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
||||||
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
KOdometer:
|
||||||
|
|
||||||
|
Released under the GNU General Public License, with the following
|
||||||
|
addition note:
|
||||||
|
|
||||||
|
Mouspedometa
|
||||||
|
Based on the original Xodometer VMS/Motif sources.
|
||||||
|
|
||||||
|
Written by Armen Nakashian
|
||||||
|
Compaq Computer Corporation
|
||||||
|
Houston TX
|
||||||
|
22 May 1998
|
||||||
|
|
||||||
|
If you make improvements or enhancements to Mouspedometa, please send
|
||||||
|
them back to the author at any of the following addresses:
|
||||||
|
|
||||||
|
armen@nakashian.com
|
||||||
|
|
||||||
|
Thanks to Mark Granoff for writing the original Xodometer, and
|
||||||
|
the whole KDE team for making such a nice environment to write
|
||||||
|
programs in.
|
||||||
|
|
||||||
|
This software is provided as is with no warranty of any kind,
|
||||||
|
expressed or implied. Neither Digital Equipment Corporation nor
|
||||||
|
Armen Nakashian will be held accountable for your use of this
|
||||||
|
software.
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
KWeather:
|
||||||
|
|
||||||
|
Primarily under the GPL (GNU General Public License), but some sources
|
||||||
|
are under the LGPL (GNU Library General Public License).
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
KWorldClock:
|
||||||
|
|
||||||
|
GPL (GNU General Public License) with the following exception:
|
||||||
|
|
||||||
|
Sun clock. X11 version by John Mackin.
|
||||||
|
|
||||||
|
This program was derived from, and is still in part identical with, the
|
||||||
|
Suntools Sun clock program whose author's comment appears immediately
|
||||||
|
below. Please preserve both notices.
|
||||||
|
|
||||||
|
The X11R3/4 version of this program was written by John Mackin, at the
|
||||||
|
Basser Department of Computer Science, University of Sydney, Sydney,
|
||||||
|
New South Wales, Australia; <john@cs.su.oz.AU>. This program, like
|
||||||
|
the one it was derived from, is in the public domain: `Love is the
|
||||||
|
law, love under will.'
|
||||||
|
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
DocBook Documentation:
|
||||||
|
|
||||||
|
Permission is granted to copy, distribute and/or modify this
|
||||||
|
document under the terms of the GNU Free Documentation License,
|
||||||
|
Version 1.1 or any later version published by the Free Software
|
||||||
|
Foundation; with no Invariant Sections, with no Front-Cover Texts,
|
||||||
|
and with no Back-Cover Texts.
|
||||||
|
|
||||||
|
A copy of the GNU Free Documentation License (Version 1.2) is
|
||||||
|
included below.
|
||||||
|
|
||||||
|
|
||||||
|
GNU Free Documentation License
|
||||||
|
Version 1.2, November 2002
|
||||||
|
|
||||||
|
|
||||||
|
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
|
||||||
|
51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
|
||||||
|
0. PREAMBLE
|
||||||
|
|
||||||
|
The purpose of this License is to make a manual, textbook, or other
|
||||||
|
functional and useful document "free" in the sense of freedom: to
|
||||||
|
assure everyone the effective freedom to copy and redistribute it,
|
||||||
|
with or without modifying it, either commercially or noncommercially.
|
||||||
|
Secondarily, this License preserves for the author and publisher a way
|
||||||
|
to get credit for their work, while not being considered responsible
|
||||||
|
for modifications made by others.
|
||||||
|
|
||||||
|
This License is a kind of "copyleft", which means that derivative
|
||||||
|
works of the document must themselves be free in the same sense. It
|
||||||
|
complements the GNU General Public License, which is a copyleft
|
||||||
|
license designed for free software.
|
||||||
|
|
||||||
|
We have designed this License in order to use it for manuals for free
|
||||||
|
software, because free software needs free documentation: a free
|
||||||
|
program should come with manuals providing the same freedoms that the
|
||||||
|
software does. But this License is not limited to software manuals;
|
||||||
|
it can be used for any textual work, regardless of subject matter or
|
||||||
|
whether it is published as a printed book. We recommend this License
|
||||||
|
principally for works whose purpose is instruction or reference.
|
||||||
|
|
||||||
|
|
||||||
|
1. APPLICABILITY AND DEFINITIONS
|
||||||
|
|
||||||
|
This License applies to any manual or other work, in any medium, that
|
||||||
|
contains a notice placed by the copyright holder saying it can be
|
||||||
|
distributed under the terms of this License. Such a notice grants a
|
||||||
|
world-wide, royalty-free license, unlimited in duration, to use that
|
||||||
|
work under the conditions stated herein. The "Document", below,
|
||||||
|
refers to any such manual or work. Any member of the public is a
|
||||||
|
licensee, and is addressed as "you". You accept the license if you
|
||||||
|
copy, modify or distribute the work in a way requiring permission
|
||||||
|
under copyright law.
|
||||||
|
|
||||||
|
A "Modified Version" of the Document means any work containing the
|
||||||
|
Document or a portion of it, either copied verbatim, or with
|
||||||
|
modifications and/or translated into another language.
|
||||||
|
|
||||||
|
A "Secondary Section" is a named appendix or a front-matter section of
|
||||||
|
the Document that deals exclusively with the relationship of the
|
||||||
|
publishers or authors of the Document to the Document's overall subject
|
||||||
|
(or to related matters) and contains nothing that could fall directly
|
||||||
|
within that overall subject. (Thus, if the Document is in part a
|
||||||
|
textbook of mathematics, a Secondary Section may not explain any
|
||||||
|
mathematics.) The relationship could be a matter of historical
|
||||||
|
connection with the subject or with related matters, or of legal,
|
||||||
|
commercial, philosophical, ethical or political position regarding
|
||||||
|
them.
|
||||||
|
|
||||||
|
The "Invariant Sections" are certain Secondary Sections whose titles
|
||||||
|
are designated, as being those of Invariant Sections, in the notice
|
||||||
|
that says that the Document is released under this License. If a
|
||||||
|
section does not fit the above definition of Secondary then it is not
|
||||||
|
allowed to be designated as Invariant. The Document may contain zero
|
||||||
|
Invariant Sections. If the Document does not identify any Invariant
|
||||||
|
Sections then there are none.
|
||||||
|
|
||||||
|
The "Cover Texts" are certain short passages of text that are listed,
|
||||||
|
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
|
||||||
|
the Document is released under this License. A Front-Cover Text may
|
||||||
|
be at most 5 words, and a Back-Cover Text may be at most 25 words.
|
||||||
|
|
||||||
|
A "Transparent" copy of the Document means a machine-readable copy,
|
||||||
|
represented in a format whose specification is available to the
|
||||||
|
general public, that is suitable for revising the document
|
||||||
|
straightforwardly with generic text editors or (for images composed of
|
||||||
|
pixels) generic paint programs or (for drawings) some widely available
|
||||||
|
drawing editor, and that is suitable for input to text formatters or
|
||||||
|
for automatic translation to a variety of formats suitable for input
|
||||||
|
to text formatters. A copy made in an otherwise Transparent file
|
||||||
|
format whose markup, or absence of markup, has been arranged to thwart
|
||||||
|
or discourage subsequent modification by readers is not Transparent.
|
||||||
|
An image format is not Transparent if used for any substantial amount
|
||||||
|
of text. A copy that is not "Transparent" is called "Opaque".
|
||||||
|
|
||||||
|
Examples of suitable formats for Transparent copies include plain
|
||||||
|
ASCII without markup, Texinfo input format, LaTeX input format, SGML
|
||||||
|
or XML using a publicly available DTD, and standard-conforming simple
|
||||||
|
HTML, PostScript or PDF designed for human modification. Examples of
|
||||||
|
transparent image formats include PNG, XCF and JPG. Opaque formats
|
||||||
|
include proprietary formats that can be read and edited only by
|
||||||
|
proprietary word processors, SGML or XML for which the DTD and/or
|
||||||
|
processing tools are not generally available, and the
|
||||||
|
machine-generated HTML, PostScript or PDF produced by some word
|
||||||
|
processors for output purposes only.
|
||||||
|
|
||||||
|
The "Title Page" means, for a printed book, the title page itself,
|
||||||
|
plus such following pages as are needed to hold, legibly, the material
|
||||||
|
this License requires to appear in the title page. For works in
|
||||||
|
formats which do not have any title page as such, "Title Page" means
|
||||||
|
the text near the most prominent appearance of the work's title,
|
||||||
|
preceding the beginning of the body of the text.
|
||||||
|
|
||||||
|
A section "Entitled XYZ" means a named subunit of the Document whose
|
||||||
|
title either is precisely XYZ or contains XYZ in parentheses following
|
||||||
|
text that translates XYZ in another language. (Here XYZ stands for a
|
||||||
|
specific section name mentioned below, such as "Acknowledgements",
|
||||||
|
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
|
||||||
|
of such a section when you modify the Document means that it remains a
|
||||||
|
section "Entitled XYZ" according to this definition.
|
||||||
|
|
||||||
|
The Document may include Warranty Disclaimers next to the notice which
|
||||||
|
states that this License applies to the Document. These Warranty
|
||||||
|
Disclaimers are considered to be included by reference in this
|
||||||
|
License, but only as regards disclaiming warranties: any other
|
||||||
|
implication that these Warranty Disclaimers may have is void and has
|
||||||
|
no effect on the meaning of this License.
|
||||||
|
|
||||||
|
|
||||||
|
2. VERBATIM COPYING
|
||||||
|
|
||||||
|
You may copy and distribute the Document in any medium, either
|
||||||
|
commercially or noncommercially, provided that this License, the
|
||||||
|
copyright notices, and the license notice saying this License applies
|
||||||
|
to the Document are reproduced in all copies, and that you add no other
|
||||||
|
conditions whatsoever to those of this License. You may not use
|
||||||
|
technical measures to obstruct or control the reading or further
|
||||||
|
copying of the copies you make or distribute. However, you may accept
|
||||||
|
compensation in exchange for copies. If you distribute a large enough
|
||||||
|
number of copies you must also follow the conditions in section 3.
|
||||||
|
|
||||||
|
You may also lend copies, under the same conditions stated above, and
|
||||||
|
you may publicly display copies.
|
||||||
|
|
||||||
|
|
||||||
|
3. COPYING IN QUANTITY
|
||||||
|
|
||||||
|
If you publish printed copies (or copies in media that commonly have
|
||||||
|
printed covers) of the Document, numbering more than 100, and the
|
||||||
|
Document's license notice requires Cover Texts, you must enclose the
|
||||||
|
copies in covers that carry, clearly and legibly, all these Cover
|
||||||
|
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
|
||||||
|
the back cover. Both covers must also clearly and legibly identify
|
||||||
|
you as the publisher of these copies. The front cover must present
|
||||||
|
the full title with all words of the title equally prominent and
|
||||||
|
visible. You may add other material on the covers in addition.
|
||||||
|
Copying with changes limited to the covers, as long as they preserve
|
||||||
|
the title of the Document and satisfy these conditions, can be treated
|
||||||
|
as verbatim copying in other respects.
|
||||||
|
|
||||||
|
If the required texts for either cover are too voluminous to fit
|
||||||
|
legibly, you should put the first ones listed (as many as fit
|
||||||
|
reasonably) on the actual cover, and continue the rest onto adjacent
|
||||||
|
pages.
|
||||||
|
|
||||||
|
If you publish or distribute Opaque copies of the Document numbering
|
||||||
|
more than 100, you must either include a machine-readable Transparent
|
||||||
|
copy along with each Opaque copy, or state in or with each Opaque copy
|
||||||
|
a computer-network location from which the general network-using
|
||||||
|
public has access to download using public-standard network protocols
|
||||||
|
a complete Transparent copy of the Document, free of added material.
|
||||||
|
If you use the latter option, you must take reasonably prudent steps,
|
||||||
|
when you begin distribution of Opaque copies in quantity, to ensure
|
||||||
|
that this Transparent copy will remain thus accessible at the stated
|
||||||
|
location until at least one year after the last time you distribute an
|
||||||
|
Opaque copy (directly or through your agents or retailers) of that
|
||||||
|
edition to the public.
|
||||||
|
|
||||||
|
It is requested, but not required, that you contact the authors of the
|
||||||
|
Document well before redistributing any large number of copies, to give
|
||||||
|
them a chance to provide you with an updated version of the Document.
|
||||||
|
|
||||||
|
|
||||||
|
4. MODIFICATIONS
|
||||||
|
|
||||||
|
You may copy and distribute a Modified Version of the Document under
|
||||||
|
the conditions of sections 2 and 3 above, provided that you release
|
||||||
|
the Modified Version under precisely this License, with the Modified
|
||||||
|
Version filling the role of the Document, thus licensing distribution
|
||||||
|
and modification of the Modified Version to whoever possesses a copy
|
||||||
|
of it. In addition, you must do these things in the Modified Version:
|
||||||
|
|
||||||
|
A. Use in the Title Page (and on the covers, if any) a title distinct
|
||||||
|
from that of the Document, and from those of previous versions
|
||||||
|
(which should, if there were any, be listed in the History section
|
||||||
|
of the Document). You may use the same title as a previous version
|
||||||
|
if the original publisher of that version gives permission.
|
||||||
|
B. List on the Title Page, as authors, one or more persons or entities
|
||||||
|
responsible for authorship of the modifications in the Modified
|
||||||
|
Version, together with at least five of the principal authors of the
|
||||||
|
Document (all of its principal authors, if it has fewer than five),
|
||||||
|
unless they release you from this requirement.
|
||||||
|
C. State on the Title page the name of the publisher of the
|
||||||
|
Modified Version, as the publisher.
|
||||||
|
D. Preserve all the copyright notices of the Document.
|
||||||
|
E. Add an appropriate copyright notice for your modifications
|
||||||
|
adjacent to the other copyright notices.
|
||||||
|
F. Include, immediately after the copyright notices, a license notice
|
||||||
|
giving the public permission to use the Modified Version under the
|
||||||
|
terms of this License, in the form shown in the Addendum below.
|
||||||
|
G. Preserve in that license notice the full lists of Invariant Sections
|
||||||
|
and required Cover Texts given in the Document's license notice.
|
||||||
|
H. Include an unaltered copy of this License.
|
||||||
|
I. Preserve the section Entitled "History", Preserve its Title, and add
|
||||||
|
to it an item stating at least the title, year, new authors, and
|
||||||
|
publisher of the Modified Version as given on the Title Page. If
|
||||||
|
there is no section Entitled "History" in the Document, create one
|
||||||
|
stating the title, year, authors, and publisher of the Document as
|
||||||
|
given on its Title Page, then add an item describing the Modified
|
||||||
|
Version as stated in the previous sentence.
|
||||||
|
J. Preserve the network location, if any, given in the Document for
|
||||||
|
public access to a Transparent copy of the Document, and likewise
|
||||||
|
the network locations given in the Document for previous versions
|
||||||
|
it was based on. These may be placed in the "History" section.
|
||||||
|
You may omit a network location for a work that was published at
|
||||||
|
least four years before the Document itself, or if the original
|
||||||
|
publisher of the version it refers to gives permission.
|
||||||
|
K. For any section Entitled "Acknowledgements" or "Dedications",
|
||||||
|
Preserve the Title of the section, and preserve in the section all
|
||||||
|
the substance and tone of each of the contributor acknowledgements
|
||||||
|
and/or dedications given therein.
|
||||||
|
L. Preserve all the Invariant Sections of the Document,
|
||||||
|
unaltered in their text and in their titles. Section numbers
|
||||||
|
or the equivalent are not considered part of the section titles.
|
||||||
|
M. Delete any section Entitled "Endorsements". Such a section
|
||||||
|
may not be included in the Modified Version.
|
||||||
|
N. Do not retitle any existing section to be Entitled "Endorsements"
|
||||||
|
or to conflict in title with any Invariant Section.
|
||||||
|
O. Preserve any Warranty Disclaimers.
|
||||||
|
|
||||||
|
If the Modified Version includes new front-matter sections or
|
||||||
|
appendices that qualify as Secondary Sections and contain no material
|
||||||
|
copied from the Document, you may at your option designate some or all
|
||||||
|
of these sections as invariant. To do this, add their titles to the
|
||||||
|
list of Invariant Sections in the Modified Version's license notice.
|
||||||
|
These titles must be distinct from any other section titles.
|
||||||
|
|
||||||
|
You may add a section Entitled "Endorsements", provided it contains
|
||||||
|
nothing but endorsements of your Modified Version by various
|
||||||
|
parties--for example, statements of peer review or that the text has
|
||||||
|
been approved by an organization as the authoritative definition of a
|
||||||
|
standard.
|
||||||
|
|
||||||
|
You may add a passage of up to five words as a Front-Cover Text, and a
|
||||||
|
passage of up to 25 words as a Back-Cover Text, to the end of the list
|
||||||
|
of Cover Texts in the Modified Version. Only one passage of
|
||||||
|
Front-Cover Text and one of Back-Cover Text may be added by (or
|
||||||
|
through arrangements made by) any one entity. If the Document already
|
||||||
|
includes a cover text for the same cover, previously added by you or
|
||||||
|
by arrangement made by the same entity you are acting on behalf of,
|
||||||
|
you may not add another; but you may replace the old one, on explicit
|
||||||
|
permission from the previous publisher that added the old one.
|
||||||
|
|
||||||
|
The author(s) and publisher(s) of the Document do not by this License
|
||||||
|
give permission to use their names for publicity for or to assert or
|
||||||
|
imply endorsement of any Modified Version.
|
||||||
|
|
||||||
|
|
||||||
|
5. COMBINING DOCUMENTS
|
||||||
|
|
||||||
|
You may combine the Document with other documents released under this
|
||||||
|
License, under the terms defined in section 4 above for modified
|
||||||
|
versions, provided that you include in the combination all of the
|
||||||
|
Invariant Sections of all of the original documents, unmodified, and
|
||||||
|
list them all as Invariant Sections of your combined work in its
|
||||||
|
license notice, and that you preserve all their Warranty Disclaimers.
|
||||||
|
|
||||||
|
The combined work need only contain one copy of this License, and
|
||||||
|
multiple identical Invariant Sections may be replaced with a single
|
||||||
|
copy. If there are multiple Invariant Sections with the same name but
|
||||||
|
different contents, make the title of each such section unique by
|
||||||
|
adding at the end of it, in parentheses, the name of the original
|
||||||
|
author or publisher of that section if known, or else a unique number.
|
||||||
|
Make the same adjustment to the section titles in the list of
|
||||||
|
Invariant Sections in the license notice of the combined work.
|
||||||
|
|
||||||
|
In the combination, you must combine any sections Entitled "History"
|
||||||
|
in the various original documents, forming one section Entitled
|
||||||
|
"History"; likewise combine any sections Entitled "Acknowledgements",
|
||||||
|
and any sections Entitled "Dedications". You must delete all sections
|
||||||
|
Entitled "Endorsements".
|
||||||
|
|
||||||
|
|
||||||
|
6. COLLECTIONS OF DOCUMENTS
|
||||||
|
|
||||||
|
You may make a collection consisting of the Document and other documents
|
||||||
|
released under this License, and replace the individual copies of this
|
||||||
|
License in the various documents with a single copy that is included in
|
||||||
|
the collection, provided that you follow the rules of this License for
|
||||||
|
verbatim copying of each of the documents in all other respects.
|
||||||
|
|
||||||
|
You may extract a single document from such a collection, and distribute
|
||||||
|
it individually under this License, provided you insert a copy of this
|
||||||
|
License into the extracted document, and follow this License in all
|
||||||
|
other respects regarding verbatim copying of that document.
|
||||||
|
|
||||||
|
|
||||||
|
7. AGGREGATION WITH INDEPENDENT WORKS
|
||||||
|
|
||||||
|
A compilation of the Document or its derivatives with other separate
|
||||||
|
and independent documents or works, in or on a volume of a storage or
|
||||||
|
distribution medium, is called an "aggregate" if the copyright
|
||||||
|
resulting from the compilation is not used to limit the legal rights
|
||||||
|
of the compilation's users beyond what the individual works permit.
|
||||||
|
When the Document is included in an aggregate, this License does not
|
||||||
|
apply to the other works in the aggregate which are not themselves
|
||||||
|
derivative works of the Document.
|
||||||
|
|
||||||
|
If the Cover Text requirement of section 3 is applicable to these
|
||||||
|
copies of the Document, then if the Document is less than one half of
|
||||||
|
the entire aggregate, the Document's Cover Texts may be placed on
|
||||||
|
covers that bracket the Document within the aggregate, or the
|
||||||
|
electronic equivalent of covers if the Document is in electronic form.
|
||||||
|
Otherwise they must appear on printed covers that bracket the whole
|
||||||
|
aggregate.
|
||||||
|
|
||||||
|
|
||||||
|
8. TRANSLATION
|
||||||
|
|
||||||
|
Translation is considered a kind of modification, so you may
|
||||||
|
distribute translations of the Document under the terms of section 4.
|
||||||
|
Replacing Invariant Sections with translations requires special
|
||||||
|
permission from their copyright holders, but you may include
|
||||||
|
translations of some or all Invariant Sections in addition to the
|
||||||
|
original versions of these Invariant Sections. You may include a
|
||||||
|
translation of this License, and all the license notices in the
|
||||||
|
Document, and any Warranty Disclaimers, provided that you also include
|
||||||
|
the original English version of this License and the original versions
|
||||||
|
of those notices and disclaimers. In case of a disagreement between
|
||||||
|
the translation and the original version of this License or a notice
|
||||||
|
or disclaimer, the original version will prevail.
|
||||||
|
|
||||||
|
If a section in the Document is Entitled "Acknowledgements",
|
||||||
|
"Dedications", or "History", the requirement (section 4) to Preserve
|
||||||
|
its Title (section 1) will typically require changing the actual
|
||||||
|
title.
|
||||||
|
|
||||||
|
|
||||||
|
9. TERMINATION
|
||||||
|
|
||||||
|
You may not copy, modify, sublicense, or distribute the Document except
|
||||||
|
as expressly provided for under this License. Any other attempt to
|
||||||
|
copy, modify, sublicense or distribute the Document is void, and will
|
||||||
|
automatically terminate your rights under this License. However,
|
||||||
|
parties who have received copies, or rights, from you under this
|
||||||
|
License will not have their licenses terminated so long as such
|
||||||
|
parties remain in full compliance.
|
||||||
|
|
||||||
|
|
||||||
|
10. FUTURE REVISIONS OF THIS LICENSE
|
||||||
|
|
||||||
|
The Free Software Foundation may publish new, revised versions
|
||||||
|
of the GNU Free Documentation License from time to time. Such new
|
||||||
|
versions will be similar in spirit to the present version, but may
|
||||||
|
differ in detail to address new problems or concerns. See
|
||||||
|
http://www.gnu.org/copyleft/.
|
||||||
|
|
||||||
|
Each version of the License is given a distinguishing version number.
|
||||||
|
If the Document specifies that a particular numbered version of this
|
||||||
|
License "or any later version" applies to it, you have the option of
|
||||||
|
following the terms and conditions either of that specified version or
|
||||||
|
of any later version that has been published (not as a draft) by the
|
||||||
|
Free Software Foundation. If the Document does not specify a version
|
||||||
|
number of this License, you may choose any version ever published (not
|
||||||
|
as a draft) by the Free Software Foundation.
|
||||||
|
|
||||||
|
|
||||||
|
ADDENDUM: How to use this License for your documents
|
||||||
|
|
||||||
|
To use this License in a document you have written, include a copy of
|
||||||
|
the License in the document and put the following copyright and
|
||||||
|
license notices just after the title page:
|
||||||
|
|
||||||
|
Copyright (c) YEAR YOUR NAME.
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.2
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||||
|
Texts. A copy of the license is included in the section entitled
|
||||||
|
"GNU Free Documentation License".
|
||||||
|
|
||||||
|
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
|
||||||
|
replace the "with...Texts." line with this:
|
||||||
|
|
||||||
|
with the Invariant Sections being LIST THEIR TITLES, with the
|
||||||
|
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
|
||||||
|
|
||||||
|
If you have Invariant Sections without Cover Texts, or some other
|
||||||
|
combination of the three, merge those two alternatives to suit the
|
||||||
|
situation.
|
||||||
|
|
||||||
|
If your document contains nontrivial examples of program code, we
|
||||||
|
recommend releasing these examples in parallel under your choice of
|
||||||
|
free software license, such as the GNU General Public License,
|
||||||
|
to permit their use in free software.
|
@ -0,0 +1,3 @@
|
|||||||
|
debian/tmp/usr/lib/*/trinity/eyes_panelapplet.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/eyes_panelapplet.so
|
||||||
|
debian/tmp/usr/share/apps/kicker/applets/eyesapplet.desktop
|
@ -0,0 +1,3 @@
|
|||||||
|
debian/tmp/usr/lib/*/trinity/fifteen_panelapplet.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/fifteen_panelapplet.so
|
||||||
|
debian/tmp/usr/share/apps/kicker/applets/kfifteenapplet.desktop
|
@ -0,0 +1,295 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *amor[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 257 2",
|
||||||
|
" c #000000",
|
||||||
|
". c #0A0100",
|
||||||
|
"X c #0C0C0D",
|
||||||
|
"o c #120000",
|
||||||
|
"O c #1E0000",
|
||||||
|
"+ c #101010",
|
||||||
|
"@ c #1F1F24",
|
||||||
|
"# c #2D0100",
|
||||||
|
"$ c #250400",
|
||||||
|
"% c #340200",
|
||||||
|
"& c #3F0000",
|
||||||
|
"* c #350E00",
|
||||||
|
"= c #341600",
|
||||||
|
"- c #222222",
|
||||||
|
"; c #232331",
|
||||||
|
": c #3B3B3D",
|
||||||
|
"> c #3D3D53",
|
||||||
|
", c #393947",
|
||||||
|
"< c #470000",
|
||||||
|
"1 c #4B0000",
|
||||||
|
"2 c #4A0B00",
|
||||||
|
"3 c #530000",
|
||||||
|
"4 c #5B0000",
|
||||||
|
"5 c #5B2700",
|
||||||
|
"6 c #670800",
|
||||||
|
"7 c #6B0000",
|
||||||
|
"8 c #770000",
|
||||||
|
"9 c #7B0000",
|
||||||
|
"0 c #741A00",
|
||||||
|
"q c #787419",
|
||||||
|
"w c #68682A",
|
||||||
|
"e c #4C4C49",
|
||||||
|
"r c #505042",
|
||||||
|
"t c #595949",
|
||||||
|
"y c #585856",
|
||||||
|
"u c #5E5E5D",
|
||||||
|
"i c #5D5D62",
|
||||||
|
"p c #595970",
|
||||||
|
"a c #69694B",
|
||||||
|
"s c #787849",
|
||||||
|
"d c #77775B",
|
||||||
|
"f c #686869",
|
||||||
|
"g c #626260",
|
||||||
|
"h c #606071",
|
||||||
|
"j c #6B6B76",
|
||||||
|
"k c #767664",
|
||||||
|
"l c #79796D",
|
||||||
|
"z c #787874",
|
||||||
|
"x c #797987",
|
||||||
|
"c c #860000",
|
||||||
|
"v c #8A0000",
|
||||||
|
"b c #860900",
|
||||||
|
"n c #831C00",
|
||||||
|
"m c #971000",
|
||||||
|
"M c #842300",
|
||||||
|
"N c #982700",
|
||||||
|
"B c #A10000",
|
||||||
|
"V c #AA0000",
|
||||||
|
"C c #A41000",
|
||||||
|
"Z c #A31C00",
|
||||||
|
"A c #B90500",
|
||||||
|
"S c #BF1000",
|
||||||
|
"D c #B31B00",
|
||||||
|
"F c #AB2500",
|
||||||
|
"G c #857F3C",
|
||||||
|
"H c #817D40",
|
||||||
|
"J c #D31D00",
|
||||||
|
"K c #C72200",
|
||||||
|
"L c #C92C00",
|
||||||
|
"P c #CA2800",
|
||||||
|
"I c #D12A00",
|
||||||
|
"U c #DD2E00",
|
||||||
|
"Y c #D63000",
|
||||||
|
"T c #E82800",
|
||||||
|
"R c #E32600",
|
||||||
|
"E c #E73000",
|
||||||
|
"W c #E93400",
|
||||||
|
"Q c #EA3B00",
|
||||||
|
"! c #E43B00",
|
||||||
|
"~ c #F73C00",
|
||||||
|
"^ c #C65400",
|
||||||
|
"/ c #E64400",
|
||||||
|
"( c #EC4200",
|
||||||
|
") c #EC4800",
|
||||||
|
"_ c #EF5800",
|
||||||
|
"` c #EB5100",
|
||||||
|
"' c #F14500",
|
||||||
|
"] c #F24A00",
|
||||||
|
"[ c #F94700",
|
||||||
|
"{ c #F55400",
|
||||||
|
"} c #F35B00",
|
||||||
|
"| c #FA5B00",
|
||||||
|
" . c #F36100",
|
||||||
|
".. c #FC6400",
|
||||||
|
"X. c #FE6B00",
|
||||||
|
"o. c #F46C00",
|
||||||
|
"O. c #FA7200",
|
||||||
|
"+. c #FA7C00",
|
||||||
|
"@. c #F27600",
|
||||||
|
"#. c #8E8519",
|
||||||
|
"$. c #969611",
|
||||||
|
"%. c #96960C",
|
||||||
|
"&. c #98982A",
|
||||||
|
"*. c #A09D25",
|
||||||
|
"=. c #AEAE0D",
|
||||||
|
"-. c #BFAD00",
|
||||||
|
";. c #B4B403",
|
||||||
|
":. c #81814A",
|
||||||
|
">. c #8A8A4D",
|
||||||
|
",. c #888857",
|
||||||
|
"<. c #83835A",
|
||||||
|
"1. c #8C8C6C",
|
||||||
|
"2. c #878779",
|
||||||
|
"3. c #B6B65B",
|
||||||
|
"4. c #FD8B00",
|
||||||
|
"5. c #FD8400",
|
||||||
|
"6. c #FE8512",
|
||||||
|
"7. c #F79000",
|
||||||
|
"8. c #F69D05",
|
||||||
|
"9. c #FE8421",
|
||||||
|
"0. c #FE9A39",
|
||||||
|
"q. c orange",
|
||||||
|
"w. c #FFAA00",
|
||||||
|
"e. c #FEA409",
|
||||||
|
"r. c #FCA113",
|
||||||
|
"t. c #FAA319",
|
||||||
|
"y. c #FEB500",
|
||||||
|
"u. c #FEBB00",
|
||||||
|
"i. c #F8B70D",
|
||||||
|
"p. c #FEB313",
|
||||||
|
"a. c #FFBC1D",
|
||||||
|
"s. c #FEA223",
|
||||||
|
"d. c #FEB622",
|
||||||
|
"f. c #FE9945",
|
||||||
|
"g. c #EEA651",
|
||||||
|
"h. c #F7AE44",
|
||||||
|
"j. c #CDCD00",
|
||||||
|
"k. c #D4D400",
|
||||||
|
"l. c #D9D703",
|
||||||
|
"z. c #DFDF1F",
|
||||||
|
"x. c #FEC200",
|
||||||
|
"c. c #FECC00",
|
||||||
|
"v. c #FEC90C",
|
||||||
|
"b. c #FFC40D",
|
||||||
|
"n. c #FFCD14",
|
||||||
|
"m. c #FED400",
|
||||||
|
"M. c #FEDB00",
|
||||||
|
"N. c #FFD11B",
|
||||||
|
"B. c #FDC82D",
|
||||||
|
"V. c #FDC938",
|
||||||
|
"C. c #FFD422",
|
||||||
|
"Z. c #FDDB24",
|
||||||
|
"A. c #FFD62C",
|
||||||
|
"S. c #E2E200",
|
||||||
|
"D. c #EBEB00",
|
||||||
|
"F. c #EDE000",
|
||||||
|
"G. c #FEE400",
|
||||||
|
"H. c #FEEB00",
|
||||||
|
"J. c #FFE50C",
|
||||||
|
"K. c #FEE519",
|
||||||
|
"L. c #FFF301",
|
||||||
|
"P. c #FEFE00",
|
||||||
|
"I. c #FFFF0C",
|
||||||
|
"U. c #F7F714",
|
||||||
|
"Y. c #FFFE14",
|
||||||
|
"T. c #FFFF19",
|
||||||
|
"R. c #FFE52A",
|
||||||
|
"E. c #FFFF23",
|
||||||
|
"W. c #FED241",
|
||||||
|
"Q. c #FDDE5C",
|
||||||
|
"!. c #FEC467",
|
||||||
|
"~. c #FFDE61",
|
||||||
|
"^. c #FBC678",
|
||||||
|
"/. c #FFE44C",
|
||||||
|
"(. c #F0F055",
|
||||||
|
"). c #FFFF52",
|
||||||
|
"_. c #FEE363",
|
||||||
|
"`. c #FFE077",
|
||||||
|
"'. c #FEE873",
|
||||||
|
"]. c #FFFF66",
|
||||||
|
"[. c #FFFF7B",
|
||||||
|
"{. c #868684",
|
||||||
|
"}. c #8F8F93",
|
||||||
|
"|. c #858595",
|
||||||
|
" X c #9F9FAF",
|
||||||
|
".X c #9697A6",
|
||||||
|
"XX c #BDBD8C",
|
||||||
|
"oX c #A4A4B6",
|
||||||
|
"OX c #AEAEB1",
|
||||||
|
"+X c #BABAC1",
|
||||||
|
"@X c #BDBDCB",
|
||||||
|
"#X c #BEBFD6",
|
||||||
|
"$X c #E5B584",
|
||||||
|
"%X c #D0D083",
|
||||||
|
"&X c #DEC4B5",
|
||||||
|
"*X c #D8C2BD",
|
||||||
|
"=X c #DEDEA6",
|
||||||
|
"-X c #DFDFB2",
|
||||||
|
";X c #E8C197",
|
||||||
|
":X c #FFD189",
|
||||||
|
">X c #E4CABD",
|
||||||
|
",X c #E0C5B8",
|
||||||
|
"<X c #F9D7B9",
|
||||||
|
"1X c #FFFF86",
|
||||||
|
"2X c #FFFF8B",
|
||||||
|
"3X c #FFFD94",
|
||||||
|
"4X c #E9E995",
|
||||||
|
"5X c #FEFEA4",
|
||||||
|
"6X c #FFFBAD",
|
||||||
|
"7X c #F1F2AC",
|
||||||
|
"8X c #FFFFB4",
|
||||||
|
"9X c #FFFFBE",
|
||||||
|
"0X c #F5F5B8",
|
||||||
|
"qX c #CBCBCE",
|
||||||
|
"wX c #C7C7DD",
|
||||||
|
"eX c #C8C8DD",
|
||||||
|
"rX c #C2C2D2",
|
||||||
|
"tX c #D3CDD6",
|
||||||
|
"yX c #CDD7F2",
|
||||||
|
"uX c #DBDBE5",
|
||||||
|
"iX c #DBDDEB",
|
||||||
|
"pX c #D4D8E7",
|
||||||
|
"aX c #D3DBF2",
|
||||||
|
"sX c #DFDFF3",
|
||||||
|
"dX c #DDE1EF",
|
||||||
|
"fX c #DCE2F4",
|
||||||
|
"gX c #E7CFC2",
|
||||||
|
"hX c #E9D2C3",
|
||||||
|
"jX c #EED7C9",
|
||||||
|
"kX c #EBDCD4",
|
||||||
|
"lX c #EBDFDB",
|
||||||
|
"zX c #F2DCCF",
|
||||||
|
"xX c #F4DFD1",
|
||||||
|
"cX c #FEE2C5",
|
||||||
|
"vX c #F9E6D8",
|
||||||
|
"bX c #F7F7CA",
|
||||||
|
"nX c #FFFDC3",
|
||||||
|
"mX c #F8F8CB",
|
||||||
|
"MX c #FFFED3",
|
||||||
|
"NX c #FFFFDA",
|
||||||
|
"BX c #E3E3EA",
|
||||||
|
"VX c #E8E8ED",
|
||||||
|
"CX c #E1E3F1",
|
||||||
|
"ZX c #E5E9F5",
|
||||||
|
"AX c #EBECF2",
|
||||||
|
"SX c #EAEEF8",
|
||||||
|
"DX c #EDF1FC",
|
||||||
|
"FX c #FCECE3",
|
||||||
|
"GX c #FFFFE5",
|
||||||
|
"HX c #FFFFE9",
|
||||||
|
"JX c #F2F2F5",
|
||||||
|
"KX c #F3F4FB",
|
||||||
|
"LX c #F5F8FE",
|
||||||
|
"PX c #FFFFF3",
|
||||||
|
"IX c #FEFEFE",
|
||||||
|
"UX c #F8F4F4",
|
||||||
|
"YX c None",
|
||||||
|
/* pixels */
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXYX....| | ...} | ] ' ' YXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXX.| X.4.p.W._.'.'.Q.V.8.o.' ( YXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXX.X.e./.6XHXIXIXIXIXIXIXGX3XB.@.Q Q YXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYX..6.Q.nXIXIXPXPXPXPXPXPXPXPXIXPX2Xi.) E YXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXX...0.6XHXPXHXGXHXGXGXGXGXGXGXGXGXHXPXnXZ.` E YXYXYXYXYX",
|
||||||
|
"YXYXYXYX..f.MXGXMXmXNXMXMXMXMXMXMXMXMXMXMXNXbXGXnXK.] Z YXYXYXYX",
|
||||||
|
"YXYXYX..6.mXMXXXr e d 0XnX9X9X9X9X9X9XnX=Xa e t -X5Xv.L % YXYXYX",
|
||||||
|
"YXYXX.X.`.8X%Xe @XuX|.a 5X5X5X5X5X5X5X4Xt oXBX Xr 7X).4.m YXYXYX",
|
||||||
|
"YXYX| s.[.1Xs rXIXJXKX|.3.3X1X1X1X2X2X>.oXDXJXIX.X*.Y.M./ # YXYX",
|
||||||
|
"YXX...R.).(.k IXKXVXBXwXH ].].].].].(.k sXiXAXIXsXq L.H.4.b YXYX",
|
||||||
|
"YX| 5.I.E.z.{.IXJX X{.wX<.U.T.T.T.Y.l.}.@X{.+XLXDXs G.G.u.K . YX",
|
||||||
|
"YX| y.P.P.S.2.IXqXg y x 1.D.P.P.P.P.j.}.i g f VXKX&.G.M.m.) % YX",
|
||||||
|
"YX| c.P.P.P.s IXOX+ X , ,.P.P.P.P.P.l.z @ + - VXsX#.H.M.M. .4 YX",
|
||||||
|
"YX| M.P.P.P.%.eXVX+ > &.P.P.P.P.P.P.s ; : IX.X-.G.m.m.O.8 YX",
|
||||||
|
"YX .G.P.P.P.D.a CXOXh u k.P.P.P.P.P.P.=.p j uX#Xq G.M.m.c.+.9 YX",
|
||||||
|
"YX .M.P.P.P.P.k.w 2.d ;.P.P.P.P.P.P.P.P.$.l l q F.G.m.c.c.o.9 YX",
|
||||||
|
"YX{ m.P.P.P.P.P.I.k.D.P.P.P.P.P.P.P.P.P.P.S.l.L.H.M.m.c.x. .7 YX",
|
||||||
|
"YX] u.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.L.M.M.c.u.x./ < YX",
|
||||||
|
"YX' 7.P.P.P.P.K.A.C.C.C.N.N.n.n.n.n.v.b.x.x.y.y.c.m.x.x.w.J O YX",
|
||||||
|
"YX] } L.P.P.P.Z.<XFXvXvXxXzXjXjXhXgXgX>X&X&X*Xg.u.c.x.x.5.B YX",
|
||||||
|
"YXYX( u.P.P.P.N.cXIXLXLXKXDXSXZXZXdXdXiXiXpXyXg.x.x.u.y.Q 3 YXYX",
|
||||||
|
"YXYX/ .P.P.P.L.:XIXUXJXJXAXAXVXBXBXuXuXpXpXtXt.x.u.y.4.A . YXYX",
|
||||||
|
"YXYXYXQ 8.P.P.P.V.FXIXKXJXAXAXVXBXBXuXuXpXaX$Xw.x.y.w.T 1 YXYX",
|
||||||
|
"YXYXYXQ ~ x.P.P.H.!.JXLXJXAXVXVXBXdXdXuXaX&Xr.u.y.y.] c YXYXYX",
|
||||||
|
"YXYXYXYXn ! c.P.P.J.!.vXLXDXAXZXVXBXfXiX;Xr.y.u.y.{ B . YXYXYXYX",
|
||||||
|
"YXYXYXYXYX2 I w.P.P.G.B.^.<XkXlXkXhX;Xh.w.y.u.q.] B o YXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYX$ D X.c.L.H.M.b.a.d.a.p.y.y.x.y.5.R c YXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYX. 6 P o.w.c.M.M.M.c.c.x.q.O.E V & YXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXo 4 C I / _ } _ ) U S v & YXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYX o % 1 4 4 < # . YXYXYXYXYXYXYXYXYXYXYX"
|
||||||
|
};
|
@ -0,0 +1,283 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *kodo[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 245 2",
|
||||||
|
" c #000000",
|
||||||
|
". c #010101",
|
||||||
|
"X c #020202",
|
||||||
|
"o c #030303",
|
||||||
|
"O c #040404",
|
||||||
|
"+ c #050505",
|
||||||
|
"@ c #080808",
|
||||||
|
"# c #090909",
|
||||||
|
"$ c #0A0A0A",
|
||||||
|
"% c #0B0B0B",
|
||||||
|
"& c #0C0C0C",
|
||||||
|
"* c #0D0D0D",
|
||||||
|
"= c #0E0E0E",
|
||||||
|
"- c #0F0F0F",
|
||||||
|
"; c #101010",
|
||||||
|
": c #121212",
|
||||||
|
"> c #131313",
|
||||||
|
", c #141414",
|
||||||
|
"< c #151515",
|
||||||
|
"1 c #161616",
|
||||||
|
"2 c #171717",
|
||||||
|
"3 c #181818",
|
||||||
|
"4 c #191919",
|
||||||
|
"5 c #1A1A1A",
|
||||||
|
"6 c #1B1B1B",
|
||||||
|
"7 c #1C1C1C",
|
||||||
|
"8 c #1D1D1D",
|
||||||
|
"9 c #1E1E1E",
|
||||||
|
"0 c #1F1F1F",
|
||||||
|
"q c #202020",
|
||||||
|
"w c #212121",
|
||||||
|
"e c #222222",
|
||||||
|
"r c #232323",
|
||||||
|
"t c #242424",
|
||||||
|
"y c #252525",
|
||||||
|
"u c #262626",
|
||||||
|
"i c #272727",
|
||||||
|
"p c #282828",
|
||||||
|
"a c #292929",
|
||||||
|
"s c #2A2A2A",
|
||||||
|
"d c #2B2B2B",
|
||||||
|
"f c #2D2D2D",
|
||||||
|
"g c #2E2E2E",
|
||||||
|
"h c #2F2F2F",
|
||||||
|
"j c #303030",
|
||||||
|
"k c #313131",
|
||||||
|
"l c #323332",
|
||||||
|
"z c #333232",
|
||||||
|
"x c #333333",
|
||||||
|
"c c #343434",
|
||||||
|
"v c #353535",
|
||||||
|
"b c #363636",
|
||||||
|
"n c #373737",
|
||||||
|
"m c #383737",
|
||||||
|
"M c #383838",
|
||||||
|
"N c #393939",
|
||||||
|
"B c #3A3A3A",
|
||||||
|
"V c #3B3B3B",
|
||||||
|
"C c #3C3B3B",
|
||||||
|
"Z c #3C3C3C",
|
||||||
|
"A c #3D3D3D",
|
||||||
|
"S c #3E3E3E",
|
||||||
|
"D c #3F3F3E",
|
||||||
|
"F c #404040",
|
||||||
|
"G c #414141",
|
||||||
|
"H c #424242",
|
||||||
|
"J c #434343",
|
||||||
|
"K c #444444",
|
||||||
|
"L c #454545",
|
||||||
|
"P c #464646",
|
||||||
|
"I c #474747",
|
||||||
|
"U c #484848",
|
||||||
|
"Y c #494848",
|
||||||
|
"T c #494949",
|
||||||
|
"R c #4A4A4A",
|
||||||
|
"E c #4B4B4B",
|
||||||
|
"W c #4C4C4C",
|
||||||
|
"Q c #4D4D4D",
|
||||||
|
"! c #4E4E4E",
|
||||||
|
"~ c #4E4F4E",
|
||||||
|
"^ c #4F4F4F",
|
||||||
|
"/ c #50504F",
|
||||||
|
"( c #505050",
|
||||||
|
") c #515050",
|
||||||
|
"_ c #515151",
|
||||||
|
"` c #525252",
|
||||||
|
"' c #535353",
|
||||||
|
"] c #545454",
|
||||||
|
"[ c #545554",
|
||||||
|
"{ c #555555",
|
||||||
|
"} c #555655",
|
||||||
|
"| c #565555",
|
||||||
|
" . c #575757",
|
||||||
|
".. c #585858",
|
||||||
|
"X. c #595858",
|
||||||
|
"o. c #595959",
|
||||||
|
"O. c #5A5A5A",
|
||||||
|
"+. c #5B5A5A",
|
||||||
|
"@. c #5B5B5B",
|
||||||
|
"#. c #5C5C5C",
|
||||||
|
"$. c #5C5D5D",
|
||||||
|
"%. c #5D5D5D",
|
||||||
|
"&. c #5E5E5E",
|
||||||
|
"*. c #5F5E5E",
|
||||||
|
"=. c #5F5F5F",
|
||||||
|
"-. c #606060",
|
||||||
|
";. c #616161",
|
||||||
|
":. c #626161",
|
||||||
|
">. c #636363",
|
||||||
|
",. c #646363",
|
||||||
|
"<. c #646464",
|
||||||
|
"1. c #656565",
|
||||||
|
"2. c #676767",
|
||||||
|
"3. c #686868",
|
||||||
|
"4. c #6A6A6A",
|
||||||
|
"5. c #6B6A6A",
|
||||||
|
"6. c #6C6C6C",
|
||||||
|
"7. c #6E6E6E",
|
||||||
|
"8. c #6F6E6E",
|
||||||
|
"9. c #6F6F6F",
|
||||||
|
"0. c #707070",
|
||||||
|
"q. c #717171",
|
||||||
|
"w. c #727272",
|
||||||
|
"e. c #737373",
|
||||||
|
"r. c #737473",
|
||||||
|
"t. c #747373",
|
||||||
|
"y. c #747474",
|
||||||
|
"u. c #747575",
|
||||||
|
"i. c #757575",
|
||||||
|
"p. c #767575",
|
||||||
|
"a. c #767676",
|
||||||
|
"s. c #777777",
|
||||||
|
"d. c #787777",
|
||||||
|
"f. c #787878",
|
||||||
|
"g. c #797979",
|
||||||
|
"h. c #7A7A7A",
|
||||||
|
"j. c #7B7B7B",
|
||||||
|
"k. c #7C7C7C",
|
||||||
|
"l. c #7D7D7D",
|
||||||
|
"z. c #7E7E7E",
|
||||||
|
"x. c #7F7E7E",
|
||||||
|
"c. c #7F7F7F",
|
||||||
|
"v. c #808080",
|
||||||
|
"b. c #818181",
|
||||||
|
"n. c #838282",
|
||||||
|
"m. c #838383",
|
||||||
|
"M. c #848484",
|
||||||
|
"N. c #858484",
|
||||||
|
"B. c #858585",
|
||||||
|
"V. c #878686",
|
||||||
|
"C. c #878787",
|
||||||
|
"Z. c #888888",
|
||||||
|
"A. c #8A8888",
|
||||||
|
"S. c #8A8A8A",
|
||||||
|
"D. c #8B8B8B",
|
||||||
|
"F. c #8C8C8C",
|
||||||
|
"G. c #8D8D8D",
|
||||||
|
"H. c #8E8D8D",
|
||||||
|
"J. c #8E8E8E",
|
||||||
|
"K. c #8E8F8E",
|
||||||
|
"L. c #8F8F8F",
|
||||||
|
"P. c #909190",
|
||||||
|
"I. c #919090",
|
||||||
|
"U. c #919191",
|
||||||
|
"Y. c #929191",
|
||||||
|
"T. c #929292",
|
||||||
|
"R. c #939393",
|
||||||
|
"E. c #949393",
|
||||||
|
"W. c #959595",
|
||||||
|
"Q. c #969696",
|
||||||
|
"!. c #979797",
|
||||||
|
"~. c #989898",
|
||||||
|
"^. c #999999",
|
||||||
|
"/. c #999A99",
|
||||||
|
"(. c #9A9A9A",
|
||||||
|
"). c #9C9B9B",
|
||||||
|
"_. c #9C9C9C",
|
||||||
|
"`. c #9D9D9D",
|
||||||
|
"'. c #9E9E9E",
|
||||||
|
"]. c #9F9F9F",
|
||||||
|
"[. c #A0A0A0",
|
||||||
|
"{. c #A1A1A1",
|
||||||
|
"}. c #A6A6A6",
|
||||||
|
"|. c #A7A7A7",
|
||||||
|
" X c #A9A9A9",
|
||||||
|
".X c #ACACAC",
|
||||||
|
"XX c #AEAEAE",
|
||||||
|
"oX c #AFAFAF",
|
||||||
|
"OX c #B0B0B0",
|
||||||
|
"+X c #B1B1B1",
|
||||||
|
"@X c #B2B2B2",
|
||||||
|
"#X c #B3B3B3",
|
||||||
|
"$X c #B4B4B4",
|
||||||
|
"%X c #B5B4B4",
|
||||||
|
"&X c #B5B5B5",
|
||||||
|
"*X c #B6B6B6",
|
||||||
|
"=X c #B7B7B7",
|
||||||
|
"-X c #B8B8B8",
|
||||||
|
";X c #BABABA",
|
||||||
|
":X c #BABBBB",
|
||||||
|
">X c #BBBBBB",
|
||||||
|
",X c #BCBCBC",
|
||||||
|
"<X c #BDBCBC",
|
||||||
|
"1X c #BDBDBD",
|
||||||
|
"2X c #BEBEBE",
|
||||||
|
"3X c #BFBFBF",
|
||||||
|
"4X c #C0C0C0",
|
||||||
|
"5X c #C1C1C1",
|
||||||
|
"6X c #C2C2C2",
|
||||||
|
"7X c #C5C5C5",
|
||||||
|
"8X c #C6C6C6",
|
||||||
|
"9X c #C7C7C7",
|
||||||
|
"0X c #C8C8C8",
|
||||||
|
"qX c #C9C9C9",
|
||||||
|
"wX c #CAC9C9",
|
||||||
|
"eX c #CCCCCC",
|
||||||
|
"rX c #CCCDCD",
|
||||||
|
"tX c #CFCFCF",
|
||||||
|
"yX c #D1D1D1",
|
||||||
|
"uX c #D3D3D3",
|
||||||
|
"iX c #D4D4D4",
|
||||||
|
"pX c #D5D4D4",
|
||||||
|
"aX c #D5D5D5",
|
||||||
|
"sX c #D7D6D6",
|
||||||
|
"dX c #D7D7D7",
|
||||||
|
"fX c #D8D8D8",
|
||||||
|
"gX c #DBDBDB",
|
||||||
|
"hX c #DFDFDF",
|
||||||
|
"jX c #E0E0E0",
|
||||||
|
"kX c #E1E1E1",
|
||||||
|
"lX c #E2E2E2",
|
||||||
|
"zX c #E5E5E5",
|
||||||
|
"xX c #E8E8E8",
|
||||||
|
"cX c #EAE9E9",
|
||||||
|
"vX c #EDEDED",
|
||||||
|
"bX c #EEEEEE",
|
||||||
|
"nX c gray94",
|
||||||
|
"mX c #F2F2F2",
|
||||||
|
"MX c #FAFAFA",
|
||||||
|
"NX c #FBFBFB",
|
||||||
|
"BX c #FCFCFC",
|
||||||
|
"VX c #FDFDFD",
|
||||||
|
"CX c #FEFEFE",
|
||||||
|
"ZX c gray100",
|
||||||
|
"AX c None",
|
||||||
|
/* pixels */
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX8XMX",
|
||||||
|
"AXZXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXbXI bX",
|
||||||
|
"AXMX8Xe.e.j.j.e.t.c.C.K.U.U.W.t.l.e.e.e.e.e.j.j.e.e.j.e.e.tX8 bX",
|
||||||
|
"AXMX@X: I C.S.` q g e.~.'.W./ : i ; - - : - > w ~ M.v.c % 2X4 bX",
|
||||||
|
"AXMX&XS @X~.W.{.7.S e.D.W.lX,.3 S k h g g i y e.{.U.U.{.N 3X4 bX",
|
||||||
|
"AXMX2X .C.3.3.XXS.T 3.t.h.fXe.y >.e.s.e.9.%.F X@X3.3.tXe.9X6 bX",
|
||||||
|
"AXMX2X~ 2.!.uX;X#.S O.t.6X~.:.p ,.a.e.e.e.=.J e.&XiXiXbXM.rX8 bX",
|
||||||
|
"AXMX2XF ` ,.v.&Xj.c F {.uX%.I 7 ` ` ~ ` E J k ] e.M.E.iXe.9X4 bX",
|
||||||
|
"AXMX2X=.2X=.O.@Xv.d N 4X!.c k 1 F N ( @.S h d K. X .,.9X~ 3X8 bX",
|
||||||
|
"AXMX&Xy U.lXcX'.u w 8 *X2.1 1 % c w ~ 4Xd 6 6 T XXlXzXe.4 2X6 bX",
|
||||||
|
"AXMX2XN I ` ` T k h C I S N m 8 ] K K ( F N d S E ` ` I d 3X7 bX",
|
||||||
|
"AXMX#X O % + - + @ X X X O >X4 bX",
|
||||||
|
"AXMX&X- w ` %.g & 8 4 7 S 4 : + k - % - = % 3 C ^ | ] ~ 5 2X7 bX",
|
||||||
|
"AXMX;XV {.gXgXoXF d S ,.sX| m : F x d d h d u N.tXuXhXe.x 6XS mX",
|
||||||
|
"AXMX3Xl.gXj.7.3XK.F .#XbXd.2.r @.,.=.%.*.` m ( | =.8XK.g ].oXMX",
|
||||||
|
"AXMX8XL.tXe.e.@XU.O.j.v.lXE.K.k 9.S.C.N.n.9.T 6.c.'.-Xx.x *.& bX",
|
||||||
|
"AXMX3Xe.8X` | }.C.F ~ ,.fX3.` 8 ~ ~ ` | T F k I t.wXC.` x 6X7 bX",
|
||||||
|
"AXMX2X=.rX%. .@Xl.k N ` uX .C 1 H C I ` C h u C ~.6X .c y 3X4 bX",
|
||||||
|
"AXMX&XN >X&XXX2X%.r y k rXI r & c w H L.d 5 8 g !.W.d q 1 4X7 bX",
|
||||||
|
"AXMX;Xd ,.W.W.e.x y d d j.N d > x y N j.d w r g =.=.d y 8 4X4 bX",
|
||||||
|
"AXMXtX~.'.'.'.].~.~.'.).'.).'.U.'.).'.'.'.~.~.%.-.].'.'.!.iX7 bX",
|
||||||
|
"ZXrX( ^ ( ( ` ^ ^ ( ( ( ~ ^ ( ( ^ ^ ( ^ ^ ^ K.a.d / / ^ / ^ % bX",
|
||||||
|
"ZXzX$X$X$X$X$X$X$X$X$X$X$X$X$X$X$X$X$X$X$X$XtXiX$X$X$X$X&X#X&XMX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX",
|
||||||
|
"AXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAXAX"
|
||||||
|
};
|
@ -0,0 +1,260 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *kteatime[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 222 2",
|
||||||
|
" c #000000",
|
||||||
|
". c #090403",
|
||||||
|
"X c #0E0E0E",
|
||||||
|
"o c #140905",
|
||||||
|
"O c #1E0F09",
|
||||||
|
"+ c #1D1109",
|
||||||
|
"@ c gray8",
|
||||||
|
"# c #22120A",
|
||||||
|
"$ c #2D190C",
|
||||||
|
"% c #351D0C",
|
||||||
|
"& c #381F0E",
|
||||||
|
"* c #301C10",
|
||||||
|
"= c #28211D",
|
||||||
|
"- c #3A220D",
|
||||||
|
"; c #382112",
|
||||||
|
": c #2A2A2A",
|
||||||
|
"> c gray19",
|
||||||
|
", c #492A0F",
|
||||||
|
"< c #412810",
|
||||||
|
"1 c #492A13",
|
||||||
|
"2 c #56320F",
|
||||||
|
"3 c #58310C",
|
||||||
|
"4 c #553213",
|
||||||
|
"5 c #54311C",
|
||||||
|
"6 c #593511",
|
||||||
|
"7 c #6D3A1B",
|
||||||
|
"8 c #713E1C",
|
||||||
|
"9 c #633B22",
|
||||||
|
"0 c #6D3D23",
|
||||||
|
"q c #713E21",
|
||||||
|
"w c #6B4415",
|
||||||
|
"e c #73401C",
|
||||||
|
"r c #704916",
|
||||||
|
"t c #7B4816",
|
||||||
|
"y c #7E4D1F",
|
||||||
|
"u c #6F4229",
|
||||||
|
"i c #734325",
|
||||||
|
"p c #784527",
|
||||||
|
"a c #7A4728",
|
||||||
|
"s c #784825",
|
||||||
|
"d c #7A492A",
|
||||||
|
"f c #7E5223",
|
||||||
|
"g c #584C45",
|
||||||
|
"h c DimGray",
|
||||||
|
"j c #776E6C",
|
||||||
|
"k c #7A6D66",
|
||||||
|
"l c #7B7674",
|
||||||
|
"z c #83501D",
|
||||||
|
"x c #824C2A",
|
||||||
|
"c c #815020",
|
||||||
|
"v c #81572C",
|
||||||
|
"b c #8E5C22",
|
||||||
|
"n c #8F601B",
|
||||||
|
"m c #95641D",
|
||||||
|
"M c #8E602E",
|
||||||
|
"N c #91622E",
|
||||||
|
"B c #9A6B2E",
|
||||||
|
"V c #976A34",
|
||||||
|
"C c #9D713B",
|
||||||
|
"Z c #A06D28",
|
||||||
|
"A c #A4722B",
|
||||||
|
"S c #AA7523",
|
||||||
|
"D c #AD7825",
|
||||||
|
"F c #A0753E",
|
||||||
|
"G c #805D47",
|
||||||
|
"H c #826552",
|
||||||
|
"J c #876A58",
|
||||||
|
"K c #8E7557",
|
||||||
|
"L c #88766A",
|
||||||
|
"P c #897C74",
|
||||||
|
"I c #A67641",
|
||||||
|
"U c #A3754B",
|
||||||
|
"Y c #A37B44",
|
||||||
|
"T c #AA7C5A",
|
||||||
|
"R c #CE0100",
|
||||||
|
"E c #D4160B",
|
||||||
|
"W c #D51A00",
|
||||||
|
"Q c #D21B12",
|
||||||
|
"! c #DD3F00",
|
||||||
|
"~ c #D72220",
|
||||||
|
"^ c #D65607",
|
||||||
|
"/ c #D74030",
|
||||||
|
"( c #E45D00",
|
||||||
|
") c #E2542F",
|
||||||
|
"_ c #EA7600",
|
||||||
|
"` c #E76E23",
|
||||||
|
"' c #E25242",
|
||||||
|
"] c #ED7A4E",
|
||||||
|
"[ c #BC852E",
|
||||||
|
"{ c #B8883B",
|
||||||
|
"} c #8F816C",
|
||||||
|
"| c #90826D",
|
||||||
|
" . c #948773",
|
||||||
|
".. c #AA8149",
|
||||||
|
"X. c #B38B4E",
|
||||||
|
"o. c #B08853",
|
||||||
|
"O. c #BD9246",
|
||||||
|
"+. c #BD9757",
|
||||||
|
"@. c #AE9366",
|
||||||
|
"#. c #C79037",
|
||||||
|
"$. c #C99339",
|
||||||
|
"%. c #CE993F",
|
||||||
|
"&. c #DA9E34",
|
||||||
|
"*. c #EC8303",
|
||||||
|
"=. c #EE811F",
|
||||||
|
"-. c #EE8438",
|
||||||
|
";. c #E2A33C",
|
||||||
|
":. c #E9AA3C",
|
||||||
|
">. c #D29D44",
|
||||||
|
",. c #D19E4F",
|
||||||
|
"<. c #D59855",
|
||||||
|
"1. c #CAA65B",
|
||||||
|
"2. c #CDA95E",
|
||||||
|
"3. c #D4A147",
|
||||||
|
"4. c #D1A95A",
|
||||||
|
"5. c #D8A453",
|
||||||
|
"6. c #D9A95A",
|
||||||
|
"7. c #CCA266",
|
||||||
|
"8. c #CCA860",
|
||||||
|
"9. c #CAA872",
|
||||||
|
"0. c #D7AD66",
|
||||||
|
"q. c #D3B36A",
|
||||||
|
"w. c #D8B76C",
|
||||||
|
"e. c #D6B772",
|
||||||
|
"r. c #DBBA71",
|
||||||
|
"t. c #DCB87B",
|
||||||
|
"y. c #EA8A56",
|
||||||
|
"u. c #E89D5B",
|
||||||
|
"i. c #F39641",
|
||||||
|
"p. c #F59552",
|
||||||
|
"a. c #E28066",
|
||||||
|
"s. c #F19F61",
|
||||||
|
"d. c #E4A94C",
|
||||||
|
"f. c #EFB941",
|
||||||
|
"g. c #EEB759",
|
||||||
|
"h. c #F9AB50",
|
||||||
|
"j. c #F9B651",
|
||||||
|
"k. c #FCBD55",
|
||||||
|
"l. c #ECAF7C",
|
||||||
|
"z. c #EEB57A",
|
||||||
|
"x. c #EBBC74",
|
||||||
|
"c. c #F2A869",
|
||||||
|
"v. c #F0BD64",
|
||||||
|
"b. c #F7BB76",
|
||||||
|
"n. c #F0BE7E",
|
||||||
|
"m. c #F5C24B",
|
||||||
|
"M. c #F3C45F",
|
||||||
|
"N. c #FBC052",
|
||||||
|
"B. c #ECC47E",
|
||||||
|
"V. c #EECA78",
|
||||||
|
"C. c #F4C76F",
|
||||||
|
"Z. c #848484",
|
||||||
|
"A. c #8B8885",
|
||||||
|
"S. c #8B8B8C",
|
||||||
|
"D. c #8F9091",
|
||||||
|
"F. c #929292",
|
||||||
|
"G. c #949798",
|
||||||
|
"H. c #96999B",
|
||||||
|
"J. c #9B9B9B",
|
||||||
|
"K. c #9C9FA0",
|
||||||
|
"L. c #A49B83",
|
||||||
|
"P. c #AEA889",
|
||||||
|
"I. c #A3A3A3",
|
||||||
|
"U. c #A6A7A9",
|
||||||
|
"Y. c #ABACAC",
|
||||||
|
"T. c #B5B5B5",
|
||||||
|
"R. c #BBBBBB",
|
||||||
|
"E. c #DCBF89",
|
||||||
|
"W. c #ECAE85",
|
||||||
|
"Q. c #ECAA8C",
|
||||||
|
"!. c #EEB993",
|
||||||
|
"~. c #DFC28A",
|
||||||
|
"^. c #DFC390",
|
||||||
|
"/. c #EBC48B",
|
||||||
|
"(. c #E5C490",
|
||||||
|
"). c #F6CD81",
|
||||||
|
"_. c #F2C889",
|
||||||
|
"`. c #F7CF9A",
|
||||||
|
"'. c #F8D38B",
|
||||||
|
"]. c #F4D29A",
|
||||||
|
"[. c #F6D89C",
|
||||||
|
"{. c #FFDE95",
|
||||||
|
"}. c #FAD898",
|
||||||
|
"|. c #E3CDA0",
|
||||||
|
" X c #ECD5A0",
|
||||||
|
".X c #EEDFA7",
|
||||||
|
"XX c #E3D8B4",
|
||||||
|
"oX c #E5DABD",
|
||||||
|
"OX c #F2CFA7",
|
||||||
|
"+X c #F6D5A2",
|
||||||
|
"@X c #F4DAA3",
|
||||||
|
"#X c #F1DEAC",
|
||||||
|
"$X c #FBDEA2",
|
||||||
|
"%X c #F4DBB0",
|
||||||
|
"&X c #F4E1AE",
|
||||||
|
"*X c #FCE3AA",
|
||||||
|
"=X c #F5E4BB",
|
||||||
|
"-X c #FCE6B9",
|
||||||
|
";X c #FCEBBD",
|
||||||
|
":X c #FEF3B9",
|
||||||
|
">X c #FFF9BA",
|
||||||
|
",X c #C2C2C2",
|
||||||
|
"<X c #C9C9C9",
|
||||||
|
"1X c #E6DEC0",
|
||||||
|
"2X c #E8E1C2",
|
||||||
|
"3X c #F3E9C2",
|
||||||
|
"4X c #F9EDC9",
|
||||||
|
"5X c #F9EBD1",
|
||||||
|
"6X c #F5F1CF",
|
||||||
|
"7X c #FFF3CB",
|
||||||
|
"8X c #F5F1D1",
|
||||||
|
"9X c #FCF4D2",
|
||||||
|
"0X c #FDFAD3",
|
||||||
|
"qX c #FEFCDD",
|
||||||
|
"wX c #FCF7E6",
|
||||||
|
"eX c #FDF5ED",
|
||||||
|
"rX c #FEFEE3",
|
||||||
|
"tX c #FFFFEB",
|
||||||
|
"yX c #FCF5FB",
|
||||||
|
"uX c #FFFEF3",
|
||||||
|
"iX c #FFFFFE",
|
||||||
|
"pX c None",
|
||||||
|
/* pixels */
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpX<X<X<XpXpXpXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpX,X,XR.pXpXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXT.T.T.pXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXY.Y.Y.Y.Y.Y.pXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXI.I.I.I.I.I.U.I.pXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXJ.J.J.J.J.J.J.J.J.pXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXF.F.F.F.D.F.G.H.pXpXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXS.S.A.S.S.pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpX0 u j l l l l k 7 7 0 pXpXpXpXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpX7 7 y M C ..@. .| | K Y C N y e 7 0 pXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpX7 z X.E. X@X[.[.}.E.L.L.P..X>X:X&X~.1.z 0 pXpXpXpXpXpXpX",
|
||||||
|
"pXpXpX0 B #X9X/.d.;.:.f.m.m.5.<.u.s.c.b.{.>XqX;X{ $ pXpXpXpXpXpX",
|
||||||
|
"pXpXpX7 8.uX/.^ ` i.h.k.N.j.h.p.] ' ~ R E ) ].wXV.2 pXpXpXpXpX",
|
||||||
|
"pXpXpX7 1.tX5XQ.y.-.=.*.*._ ( ! W R R Q / a.%X3Xr.3 o e 7 i pXpX",
|
||||||
|
"pXpXpX7 1.tXqXrXqX4X%X]._.B.z.l.W.!.OX=X0XqX9XoXe.I T T U p 0 pX",
|
||||||
|
"pXpXpX7 1.tXqXqXrXtXuXuXuXuXuXuXuXuXuXtXrXqX6XXXoXeXyXyXeXo.* pX",
|
||||||
|
"pXpXpX7 1.tXqXrXrXrXtXtXuXuXuXuXuXtXtXrXrXqX6XXXoXeXuXuXuXE.1 pX",
|
||||||
|
"pXpXpX7 1.rXqXrXrXtXtXuXuXuXuXuXuXuXtXrXrXrX6XoX^.(.9.E.5X(.4 pX",
|
||||||
|
"pXpXpX7 1.rXqXrXtXtXuXuXuXuXiXuXuXuXtXtXrXrX6X1Xe.t f 0.+X7.& pX",
|
||||||
|
"pXpXpX7 1.rXqXtXtXtXuXuXuXiXiXuXuXuXuXrXrXqX8X1Xq.A 6./.n.v . pX",
|
||||||
|
"pXpXpX7 1.rXrXrXrXtXuXuXuXiXiXiXiXuXtXtXtXqX8X1Xe.d.x.V.V O pXpX",
|
||||||
|
"pXpXpX7 1.tXqXrXtXtXtXuXuXiXiXuXuXuXuXrXtXwX6XoXt.d.<.f O pXpXpX",
|
||||||
|
"pXpXpX7 1.tXqXrXrXtXtXuXuXuXuXuXuXuXtXtXrXqX6XoXr.Z 1 . pXpXpXpX",
|
||||||
|
"pXpXpX7 1.rXqXqXrXtXtXtXuXuXuXuXuXuXtXrXrXqX8X1Xw.2 pXpXpXpXpX",
|
||||||
|
"pXpXpX7 2.tXqXrXrXtXtXtXtXtXuXtXtXtXtXrXqXqX8X1Xr.2 pXpXpXpXpX",
|
||||||
|
"pXpXpXi O.0XtXqXqXrXrXtXtXtXtXtXtXtXrXrXqXqX8X2X4., pXpXpXpXpX",
|
||||||
|
"pXpXpX# w C.-XqXrXtXtXtXtXtXtXtXtXrXtXtXtXqX=XC.m o pXpXpXpXpX",
|
||||||
|
"pXpXpX # m &.g.V.$X;X7X9XqXqXqX0X7X4X*X'.v.;.D ; pXpXpXpXpX",
|
||||||
|
"pXpXpX . - w n S [ #.%.>.>.>.>.#.#.D m r ; o pXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpX . . # $ % - - - % $ O o . pXpXpXpXpXpXpXpXpX",
|
||||||
|
"pXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpXpX"
|
||||||
|
};
|
@ -0,0 +1,50 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *ktux[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 12 1",
|
||||||
|
" c black",
|
||||||
|
". c gray19",
|
||||||
|
"X c #585858",
|
||||||
|
"o c #FFA858",
|
||||||
|
"O c #808080",
|
||||||
|
"+ c #A0A0A0",
|
||||||
|
"@ c #FFDCA8",
|
||||||
|
"# c #C3C3C3",
|
||||||
|
"$ c gainsboro",
|
||||||
|
"% c #FFFFC0",
|
||||||
|
"& c gray100",
|
||||||
|
"* c None",
|
||||||
|
/* pixels */
|
||||||
|
"********************************",
|
||||||
|
"*************** **************",
|
||||||
|
"************** #&# *************",
|
||||||
|
"************** $&$ *************",
|
||||||
|
"******* ***. ### .*** .******",
|
||||||
|
"****** $&# X O$&&&$O X #&$ *****",
|
||||||
|
"***** +$$++$&#OXXXO#&$$+$$+ ****",
|
||||||
|
"***** X#+$&+XXOO+OOX.+&$+#X ****",
|
||||||
|
"***** XX#$OXOoooo@oo+XO$#XX ****",
|
||||||
|
"****** $OX+oo@o@o@@o+XO$ *****",
|
||||||
|
"****** $+O+oo@o@@@@%@@+X+$ *****",
|
||||||
|
"**X O$O+oo@@@X.X@@%@o+O#O X*",
|
||||||
|
"** $&$+$Ooo@o@X.+.X@@%@oO$+$&$ *",
|
||||||
|
"* #$$#+$Oo@@%@O#*#O@%@%oO&+#&$# ",
|
||||||
|
"* +$$$+$+oo%@%@O.O@%&%@o+$+$$$+ ",
|
||||||
|
"* .OO+X#$Oo@%@%@@@&&%%@+#$X+OO. ",
|
||||||
|
"** XXX.O##Oo@%%%&&&%%@O+&+.XXX *",
|
||||||
|
"*** +$+Oo@%%%&%@@O+$# **",
|
||||||
|
"****** OO#$+O+o@@@o++$&#OO *****",
|
||||||
|
"***** X#+O#$&$O+++O$&$#O+#O ****",
|
||||||
|
"*****.$&$+OO#$$&&&$$#+O+$&$ ****",
|
||||||
|
"**** $$&&$O.XO+$$$+OX.O$$&$$.***",
|
||||||
|
"**** +$$+OX ..OOOOO.. XO+$$+ ***",
|
||||||
|
"**** X+OOX **.#$$$#.** XOO+X ***",
|
||||||
|
"***** XX *** O$&&O *** XX ****",
|
||||||
|
"****** ***** O$&$O ***** *****",
|
||||||
|
"************** +++ *************",
|
||||||
|
"************** XXX *************",
|
||||||
|
"*************** **************",
|
||||||
|
"********************************",
|
||||||
|
"********************************",
|
||||||
|
"********************************"
|
||||||
|
};
|
@ -0,0 +1,295 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char *kworldclock[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"32 32 257 2",
|
||||||
|
" c #000000",
|
||||||
|
". c #00010A",
|
||||||
|
"X c #000311",
|
||||||
|
"o c #00031A",
|
||||||
|
"O c #000928",
|
||||||
|
"+ c #000831",
|
||||||
|
"@ c #00134B",
|
||||||
|
"# c #001849",
|
||||||
|
"$ c #041C5A",
|
||||||
|
"% c #031D63",
|
||||||
|
"& c #001A6D",
|
||||||
|
"* c #0B225B",
|
||||||
|
"= c #052666",
|
||||||
|
"- c #062E75",
|
||||||
|
"; c #01346A",
|
||||||
|
": c #013367",
|
||||||
|
"> c #053972",
|
||||||
|
", c #003B78",
|
||||||
|
"< c #093E79",
|
||||||
|
"1 c #0F3775",
|
||||||
|
"2 c #15316F",
|
||||||
|
"3 c #173679",
|
||||||
|
"4 c #0D427B",
|
||||||
|
"5 c #1B447B",
|
||||||
|
"6 c #13457B",
|
||||||
|
"7 c #22437D",
|
||||||
|
"8 c #0017BE",
|
||||||
|
"9 c #002992",
|
||||||
|
"0 c #003A98",
|
||||||
|
"q c #1C3F89",
|
||||||
|
"w c #163C93",
|
||||||
|
"e c #0127A2",
|
||||||
|
"r c #0031A5",
|
||||||
|
"t c #0039AA",
|
||||||
|
"y c #113CAF",
|
||||||
|
"u c #103DDE",
|
||||||
|
"i c #0E2ECB",
|
||||||
|
"p c #0B4281",
|
||||||
|
"a c #0C5098",
|
||||||
|
"s c #124982",
|
||||||
|
"d c #11498C",
|
||||||
|
"f c #194489",
|
||||||
|
"g c #144D93",
|
||||||
|
"h c #124B99",
|
||||||
|
"j c #174497",
|
||||||
|
"k c #17518F",
|
||||||
|
"l c #18539D",
|
||||||
|
"z c #1B589C",
|
||||||
|
"x c #1A5498",
|
||||||
|
"c c #0143B4",
|
||||||
|
"v c #004DB9",
|
||||||
|
"b c #0049B7",
|
||||||
|
"n c #0751BB",
|
||||||
|
"m c #164EA6",
|
||||||
|
"M c #124EB9",
|
||||||
|
"N c #1A56A4",
|
||||||
|
"B c #1D59A5",
|
||||||
|
"V c #1C5AAE",
|
||||||
|
"C c #254182",
|
||||||
|
"Z c #2E4A8C",
|
||||||
|
"A c #2C559F",
|
||||||
|
"S c #304E91",
|
||||||
|
"D c #315984",
|
||||||
|
"F c #264B9A",
|
||||||
|
"G c #2344B4",
|
||||||
|
"H c #2658A7",
|
||||||
|
"J c #235ABB",
|
||||||
|
"K c #295CBE",
|
||||||
|
"L c #285CB2",
|
||||||
|
"P c #355CAB",
|
||||||
|
"I c #2662AB",
|
||||||
|
"U c #2866B8",
|
||||||
|
"Y c #316DAD",
|
||||||
|
"T c #3569B9",
|
||||||
|
"R c #3873B8",
|
||||||
|
"E c #1F61C2",
|
||||||
|
"W c #214DDA",
|
||||||
|
"Q c #2D5DD6",
|
||||||
|
"! c #2A54D4",
|
||||||
|
"~ c #345FD0",
|
||||||
|
"^ c #256CCA",
|
||||||
|
"/ c #3066C4",
|
||||||
|
"( c #3E64C7",
|
||||||
|
") c #3B68C7",
|
||||||
|
"_ c #336FD6",
|
||||||
|
"` c #3676C7",
|
||||||
|
"' c #387DD3",
|
||||||
|
"] c #2770E9",
|
||||||
|
"[ c #2777F1",
|
||||||
|
"{ c #3065E8",
|
||||||
|
"} c #3279EC",
|
||||||
|
"| c #3975E6",
|
||||||
|
" . c #307CF0",
|
||||||
|
".. c #4C759F",
|
||||||
|
"X. c #527699",
|
||||||
|
"o. c #4C6FBB",
|
||||||
|
"O. c #4873BA",
|
||||||
|
"+. c #5B79BD",
|
||||||
|
"@. c #456BC0",
|
||||||
|
"#. c #4478C5",
|
||||||
|
"$. c #467AD6",
|
||||||
|
"%. c #457DDB",
|
||||||
|
"&. c #447FE4",
|
||||||
|
"*. c #3C80C8",
|
||||||
|
"=. c #3983D0",
|
||||||
|
"-. c #3F84EE",
|
||||||
|
";. c #4481BD",
|
||||||
|
":. c #6D88A8",
|
||||||
|
">. c #6A83B5",
|
||||||
|
",. c #4886C7",
|
||||||
|
"<. c #4B87D2",
|
||||||
|
"1. c #598BCD",
|
||||||
|
"2. c #568ECE",
|
||||||
|
"3. c #5689D6",
|
||||||
|
"4. c #5C94DB",
|
||||||
|
"5. c #5A9BDC",
|
||||||
|
"6. c #5397DF",
|
||||||
|
"7. c #4986E5",
|
||||||
|
"8. c #478BF2",
|
||||||
|
"9. c #5992E3",
|
||||||
|
"0. c #5B98E8",
|
||||||
|
"q. c #5896F2",
|
||||||
|
"w. c #568EE8",
|
||||||
|
"e. c #5EA4E6",
|
||||||
|
"r. c #5BAEFE",
|
||||||
|
"t. c #56A7F0",
|
||||||
|
"y. c #5DB0FF",
|
||||||
|
"u. c #628ED5",
|
||||||
|
"i. c #6194DB",
|
||||||
|
"p. c #649EDC",
|
||||||
|
"a. c #699CDC",
|
||||||
|
"s. c #6695D4",
|
||||||
|
"d. c #7694C4",
|
||||||
|
"f. c #7D98D8",
|
||||||
|
"g. c #6883C2",
|
||||||
|
"h. c #6597E4",
|
||||||
|
"j. c #629CF3",
|
||||||
|
"k. c #769AE3",
|
||||||
|
"l. c #74A2DE",
|
||||||
|
"z. c #65A2E5",
|
||||||
|
"x. c #65A7EA",
|
||||||
|
"c. c #6AACEB",
|
||||||
|
"v. c #69A7E7",
|
||||||
|
"b. c #6DA5F5",
|
||||||
|
"n. c #62AAF2",
|
||||||
|
"m. c #62B2FF",
|
||||||
|
"M. c #6AB5FD",
|
||||||
|
"N. c #6DB8FF",
|
||||||
|
"B. c #73A9E5",
|
||||||
|
"V. c #7CABE4",
|
||||||
|
"C. c #7EAAEB",
|
||||||
|
"Z. c #76A5E6",
|
||||||
|
"A. c #79ADF5",
|
||||||
|
"S. c #71A6F3",
|
||||||
|
"D. c #75B0EC",
|
||||||
|
"F. c #7AB3EB",
|
||||||
|
"G. c #75BBFE",
|
||||||
|
"H. c #79BDFE",
|
||||||
|
"J. c #78B5F1",
|
||||||
|
"K. c #7DC0FE",
|
||||||
|
"L. c #928F9A",
|
||||||
|
"P. c #85A1BE",
|
||||||
|
"I. c #A7A3AD",
|
||||||
|
"U. c #ACACBA",
|
||||||
|
"Y. c #B2B2BF",
|
||||||
|
"T. c #8C9FD2",
|
||||||
|
"R. c #969FC6",
|
||||||
|
"E. c #8CA0DA",
|
||||||
|
"W. c #87AFD6",
|
||||||
|
"Q. c #98A9CA",
|
||||||
|
"!. c #9DAAD8",
|
||||||
|
"~. c #9AB2CA",
|
||||||
|
"^. c #82A8E5",
|
||||||
|
"/. c #82B3EB",
|
||||||
|
"(. c #8BB2EA",
|
||||||
|
"). c #88B7E8",
|
||||||
|
"_. c #85BAF3",
|
||||||
|
"`. c #8AB9F1",
|
||||||
|
"'. c #94ADE4",
|
||||||
|
"]. c #96BAEB",
|
||||||
|
"[. c #91BEFB",
|
||||||
|
"{. c #A0ACD8",
|
||||||
|
"}. c #A0B2D5",
|
||||||
|
"|. c #A2BCD6",
|
||||||
|
" X c #ACB4D9",
|
||||||
|
".X c #ABB3D8",
|
||||||
|
"XX c #BEBECB",
|
||||||
|
"oX c #B7B6C2",
|
||||||
|
"OX c #B4B9DA",
|
||||||
|
"+X c #BABCDB",
|
||||||
|
"@X c #B9B6D4",
|
||||||
|
"#X c #ACBEE6",
|
||||||
|
"$X c #A5B8E7",
|
||||||
|
"%X c #84C3FE",
|
||||||
|
"&X c #89C6FF",
|
||||||
|
"*X c #8DC8FE",
|
||||||
|
"=X c #93CBFF",
|
||||||
|
"-X c #9AC4F4",
|
||||||
|
";X c #9ACEFD",
|
||||||
|
":X c #9CC9F7",
|
||||||
|
">X c #9DD0FF",
|
||||||
|
",X c #ABC3DB",
|
||||||
|
"<X c #AAC3EC",
|
||||||
|
"1X c #A1C3F5",
|
||||||
|
"2X c #AAC5F1",
|
||||||
|
"3X c #A7CAF5",
|
||||||
|
"4X c #A3D3FF",
|
||||||
|
"5X c #AAD5FD",
|
||||||
|
"6X c #AED8FF",
|
||||||
|
"7X c #ABD0F6",
|
||||||
|
"8X c #B1CBE5",
|
||||||
|
"9X c #B9C8EC",
|
||||||
|
"0X c #B1C6EB",
|
||||||
|
"qX c #B9CCF1",
|
||||||
|
"wX c #BAD4ED",
|
||||||
|
"eX c #B4D1F2",
|
||||||
|
"rX c #B3DBFE",
|
||||||
|
"tX c #BAD4F1",
|
||||||
|
"yX c #B9DDFE",
|
||||||
|
"uX c #B5D7FA",
|
||||||
|
"iX c #BDE0FE",
|
||||||
|
"pX c #CFB6BE",
|
||||||
|
"aX c #D2A3A8",
|
||||||
|
"sX c #EBBBBF",
|
||||||
|
"dX c #CBBDD2",
|
||||||
|
"fX c #C1C1CB",
|
||||||
|
"gX c #C4C4D2",
|
||||||
|
"hX c #C6C6DA",
|
||||||
|
"jX c #CBCBD3",
|
||||||
|
"kX c #CACADC",
|
||||||
|
"lX c #C6C9DB",
|
||||||
|
"zX c #D8D5DB",
|
||||||
|
"xX c #CCCDE1",
|
||||||
|
"cX c #C3D7EB",
|
||||||
|
"vX c #C9DFF5",
|
||||||
|
"bX c #DEDEE3",
|
||||||
|
"nX c #C2E3FE",
|
||||||
|
"mX c #CAE8FF",
|
||||||
|
"MX c #C9E3FA",
|
||||||
|
"NX c #DBE0EB",
|
||||||
|
"BX c #D4E5F7",
|
||||||
|
"VX c #E7CDD0",
|
||||||
|
"CX c #F8C4C5",
|
||||||
|
"ZX c #FCD2D2",
|
||||||
|
"AX c #F3DADD",
|
||||||
|
"SX c #E4E4EA",
|
||||||
|
"DX c #E9E9EE",
|
||||||
|
"FX c #ECE7EB",
|
||||||
|
"GX c #E3EEFA",
|
||||||
|
"HX c #EDEDF1",
|
||||||
|
"JX c #E4F3FE",
|
||||||
|
"KX c #F1F1F4",
|
||||||
|
"LX c #F6F6F8",
|
||||||
|
"PX c #FDF2F2",
|
||||||
|
"IX c #FCFCFD",
|
||||||
|
"UX c #F2F8FD",
|
||||||
|
"YX c None",
|
||||||
|
/* pixels */
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXv ^ 4.l.^.).).V.l.3.n c YXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXt M <.(.qXtX0X#X<X0XtX7Xl.O.* YXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXYXK 3.2X<X!.@XxXgXkXkX X!.eX].o.3 YXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||||
|
"YXYXy 3.-X'.OXjXDXKXSXHXHXSXgX.X'.).O./ / J t r YXYXYXYXYXYXYXYX",
|
||||||
|
"YXe @.`.E.xXDXHXLXIXIXLXIXLXHXFXOX^.C.}.tX].4.J r t YXYXYXYXYXYX",
|
||||||
|
"YXG h.Z.R.bXHXIXIXIXIXIXIXIXLXKXSXE.A.f.NXUXJXiXi.K e YXYXYXYXYX",
|
||||||
|
"YX( h.f.dXU.,XHXIXIXIXIXIXIXIXIXSXlXi.k.}.GXGXGXnX/.T r YXYXYXYX",
|
||||||
|
"YX( 8.$XDXSXjXY.jXKXIXPXPXLXKXFXKXSXT.8.d.BXBXBXBXuX_.#.9 YXYXYX",
|
||||||
|
"YX~ } hXHXLXIXDXfXoXjXaXpXXXY.jXKXSX!. .+.vXMXMXvXvX).c.L & YXYX",
|
||||||
|
"YXQ ] dXbXIXIXIXIXzXI.L.XXbXHXLXUXzXQ.] o.wXwXwXwXwXwX5.z.F YX",
|
||||||
|
"YXQ } hXHXIXIXIXIXCXVXbXKXIXIXIXUXSX{.} o.wXwX8X8X8X8XW.=.$.+ YX",
|
||||||
|
"YXQ 8.#XDXLXIXIXZXCXIXIXIXIXIXIXLXSXT. .>.cX,X,X,X,X>.z a x.j X ",
|
||||||
|
"YX! 8.T.kXDXUXZXCXIXIXIXIXIXIXIXSXhXk.7.:.P.~.~.d...s , < O.#.@ ",
|
||||||
|
"YXi &.C.@XDXAXCXPXIXIXIXIXIXLXKXSX{.S.@.:.:.:.7 6 : ; ; : s a.3 ",
|
||||||
|
"YX8 W j.'.dXsXFXLXLXIXLXIXKXHXSX@X(.7.f 6 4 4 > k 6 < p ; ; a.C ",
|
||||||
|
"YXYXi { S.$X@XjXDXHXSXDXHXSXgXOX$Xw.F < 4 < < < p k I Y Y z p.D ",
|
||||||
|
"YXYXYXu | b.<X+X+XkXfXhXhX+X+X1Xq.$.Y q p p p p p d *.,.e.*.l.Z ",
|
||||||
|
"YXYXYXYX' / _ A.2XqX9X9XqX-XA.&.9.G.5.g d d d d l 6.m.,.Y p._.Z ",
|
||||||
|
"YXYXYXYX' O.h m E ) $.$.%.&.7.t.M.N.e.z g g k d *.M.n.c.D.-X%X7 ",
|
||||||
|
"YXYXYXYX' 2.h l l l I t.y.y.y.y.m.y.t.I l l B ` N.G.5.R ;.F.l.2 ",
|
||||||
|
"YXYXYXYX^ a.N N B T <.M.m.y.y.y.r.y.y.` N N U 6.K.%Xz.B B 2.s.* ",
|
||||||
|
"YXYXYXYXv 5.` V ,.K.K.G.G.N.N.N.M.N.N.n.V U x.K.K.D.V.U U ).A O ",
|
||||||
|
"YXYXYXYXb ^ V.U D.=X%X%XK.K.K.G.G.G.G.H.x.J.%X&X_.v.;XV.a./.$ ",
|
||||||
|
"YXYXYXYXYXb 5.4.B.;X=X=X*X&X&X%X%X%X&X&X&X=X=X;X;X>X6XrX7XP . YX",
|
||||||
|
"YXYXYXYXYXv ^ F.a.;X4X;X;X;X=X=X=X=X=X=X;X;X;X4X5X6XrXiXs.* YX",
|
||||||
|
"YXYXYXYXYXYX0 U :XrXrX6X4X4X4X4X4X4X4X4X4X5X6XrXyXiXnXV.= . YXYX",
|
||||||
|
"YXYXYXYXYXYXYX- R :XiXyXrXrXrX6X6X6X6XrXrXrXrXvXnXmXV.q X YXYX",
|
||||||
|
"YXYXYXYXYXYXYXYX# m V.uXiX3X7X6XrXyXyXiXnXnXmXmX7X1.% . YXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXO g #._.A.j.q.j.b.q.b.[.rXyXV.A * . YXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYXX - I 1.4.j.h.0.0.<.#.j @ YXYXYXYXYXYX",
|
||||||
|
"YXYXYXYXYXYXYXYXYXYXYXYX. O = 1 5 7 7 3 * # X YXYXYXYXYXYXYXYX"
|
||||||
|
};
|
@ -0,0 +1,8 @@
|
|||||||
|
KMoon for Debian
|
||||||
|
----------------
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Sat, 31 Jan 2004 12:08:48 +1100
|
@ -0,0 +1 @@
|
|||||||
|
kmoon/AUTHORS
|
@ -0,0 +1,11 @@
|
|||||||
|
debian/tmp/usr/lib/*/trinity/kmoon_panelapplet.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/kmoon_panelapplet.so
|
||||||
|
debian/tmp/usr/share/apps/kicker/applets/kmoonapplet.desktop
|
||||||
|
debian/tmp/usr/share/apps/kmoon
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kmoon/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kmoon/*.docbook
|
||||||
|
#debian/tmp/usr/share/doc/tde/HTML/en/kmoon/carlosmail
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kmoon/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/kmoon.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/kmoon.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/kmoon.png
|
@ -0,0 +1,8 @@
|
|||||||
|
KOdometer for Debian
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Mon, 12 May 2003 12:29:39 +1000
|
@ -0,0 +1,13 @@
|
|||||||
|
debian/tmp/usr/bin/kodo
|
||||||
|
debian/tmp/usr/share/applications/tde/kodo.desktop
|
||||||
|
debian/tmp/usr/share/apps/kodo/numbers.png
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kodo/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kodo/*.docbook
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kodo/*.png
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kodo/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/kodo.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/kodo.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/kodo.png
|
||||||
|
debian/tmp/usr/share/man/man1/kodo.1
|
||||||
|
|
||||||
|
debian/icons/kodo.xpm usr/share/pixmaps
|
@ -0,0 +1,9 @@
|
|||||||
|
?package(kodo-trinity):\
|
||||||
|
needs="x11"\
|
||||||
|
section="Games/Toys"\
|
||||||
|
hints="TDE"\
|
||||||
|
title="KOdometer"\
|
||||||
|
longtitle="KOdometer (Measure Your Desktop Mileage)"\
|
||||||
|
icon="/usr/share/pixmaps/kodo.xpm"\
|
||||||
|
command="/usr/bin/kodo"
|
||||||
|
|
@ -0,0 +1,16 @@
|
|||||||
|
KTeaTime for Debian
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Non-TDE Users:
|
||||||
|
|
||||||
|
Please note that KTeaTime is written explicitly for TDE. If you are
|
||||||
|
using a non-TDE window manager or desktop environment then it is quite
|
||||||
|
possible that KTeaTime will not work on your system.
|
||||||
|
|
||||||
|
HTML Documentation:
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Sun, 6 Feb 2005 17:51:59 +1100
|
@ -0,0 +1 @@
|
|||||||
|
kteatime/TODO
|
@ -0,0 +1,13 @@
|
|||||||
|
debian/tmp/usr/bin/kteatime
|
||||||
|
debian/tmp/usr/share/applications/tde/kteatime.desktop
|
||||||
|
debian/tmp/usr/share/apps/kteatime
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kteatime/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kteatime/*.docbook
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kteatime/*.png
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kteatime/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/kteatime.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/kteatime.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/kteatime.png
|
||||||
|
debian/tmp/usr/share/man/man1/kteatime.1
|
||||||
|
|
||||||
|
debian/icons/kteatime.xpm usr/share/pixmaps
|
@ -0,0 +1,9 @@
|
|||||||
|
?package(kteatime-trinity):\
|
||||||
|
needs="x11"\
|
||||||
|
section="Games/Toys"\
|
||||||
|
hints="TDE"\
|
||||||
|
title="KTeaTime"\
|
||||||
|
longtitle="KTeaTime (Tea Cooker)"\
|
||||||
|
icon="/usr/share/pixmaps/kteatime.xpm"\
|
||||||
|
command="/usr/bin/kteatime"
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
ktux/AUTHORS
|
@ -0,0 +1,8 @@
|
|||||||
|
debian/tmp/usr/bin/ktux
|
||||||
|
debian/tmp/usr/share/apps/ktux
|
||||||
|
debian/tmp/usr/share/applnk/System/ScreenSavers/ktux.desktop
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/ktux.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/ktux.png
|
||||||
|
debian/tmp/usr/share/man/man1/ktux.1
|
||||||
|
|
||||||
|
debian/icons/ktux.xpm usr/share/pixmaps
|
@ -0,0 +1,8 @@
|
|||||||
|
?package(ktux-trinity):\
|
||||||
|
needs="x11"\
|
||||||
|
section="Screen/Saving"\
|
||||||
|
hints="TDE"\
|
||||||
|
title="KTux"\
|
||||||
|
icon="/usr/share/pixmaps/ktux.xpm"\
|
||||||
|
command="/usr/bin/ktux -root"
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
KWeather for Debian
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Sat, 31 Jan 2004 12:08:48 +1100
|
@ -0,0 +1 @@
|
|||||||
|
kweather/AUTHORS
|
@ -0,0 +1,27 @@
|
|||||||
|
debian/tmp/usr/bin/kweatherservice
|
||||||
|
debian/tmp/usr/bin/kweatherreport
|
||||||
|
debian/tmp/usr/lib/*/libtdeinit_kweatherreport.so
|
||||||
|
debian/tmp/usr/lib/*/libtdeinit_kweatherreport.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/kcm_weather.so
|
||||||
|
debian/tmp/usr/lib/*/trinity/kcm_weather.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/kcm_weatherservice.so
|
||||||
|
debian/tmp/usr/lib/*/trinity/kcm_weatherservice.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/kweatherreport.so
|
||||||
|
debian/tmp/usr/lib/*/trinity/kweatherreport.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/weather_panelapplet.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/weather_panelapplet.so
|
||||||
|
debian/tmp/usr/share/apps/kicker/applets/kweather.desktop
|
||||||
|
debian/tmp/usr/share/apps/kweather
|
||||||
|
debian/tmp/usr/share/apps/kweatherservice/stations.dat
|
||||||
|
debian/tmp/usr/share/apps/kweatherservice/weather_stations.desktop
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kweather/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kweather/*.docbook
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kweather/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/kweather.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/kweather.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/kweather.png
|
||||||
|
debian/tmp/usr/share/man/man1/kweatherreport.1
|
||||||
|
debian/tmp/usr/share/man/man1/kweatherservice.1
|
||||||
|
debian/tmp/usr/share/services/kweatherservice.desktop
|
||||||
|
debian/tmp/usr/share/services/kcmweather.desktop
|
||||||
|
debian/tmp/usr/share/services/kcmweatherservice.desktop
|
@ -0,0 +1,2 @@
|
|||||||
|
kweather-trinity: no-shlibs-control-file usr/lib/*/trinity/libtdeinit_kweatherreport.so
|
||||||
|
kweather-trinity: package-name-doesnt-match-sonames libtdeinit-kweatherreport
|
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# postinst script for kweather-trinity
|
||||||
|
|
||||||
|
set -e
|
||||||
|
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||||
|
BASEDIR=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
#if [ "$1" = "configure" ] ; then
|
||||||
|
# force ldconfig due to tdeinit library
|
||||||
|
# ldconfig
|
||||||
|
#fi
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,8 @@
|
|||||||
|
KWorldClock for Debian
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
This application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Sat, 16 Oct 2004 14:09:26 +1000
|
@ -0,0 +1,18 @@
|
|||||||
|
debian/tmp/usr/bin/kworldclock
|
||||||
|
debian/tmp/usr/lib/*/trinity/ww_panelapplet.la
|
||||||
|
debian/tmp/usr/lib/*/trinity/ww_panelapplet.so
|
||||||
|
debian/tmp/usr/share/applications/tde/kworldclock.desktop
|
||||||
|
debian/tmp/usr/share/apps/kdesktop/programs/kdeworld.desktop
|
||||||
|
debian/tmp/usr/share/apps/kicker/applets/kwwapplet.desktop
|
||||||
|
debian/tmp/usr/share/apps/kworldclock
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kworldclock/*.bz2
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kworldclock/*.docbook
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kworldclock/*.png
|
||||||
|
debian/tmp/usr/share/doc/tde/HTML/en/kworldclock/common
|
||||||
|
debian/tmp/usr/share/icons/hicolor/16x16/apps/kworldclock.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/22x22/apps/kworldclock.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/32x32/apps/kworldclock.png
|
||||||
|
debian/tmp/usr/share/icons/hicolor/48x48/apps/kworldclock.png
|
||||||
|
debian/tmp/usr/share/man/man1/kworldclock.1
|
||||||
|
|
||||||
|
debian/icons/kworldclock.xpm usr/share/pixmaps
|
@ -0,0 +1,8 @@
|
|||||||
|
?package(kworldclock-trinity):\
|
||||||
|
needs="x11"\
|
||||||
|
section="Games/Toys"\
|
||||||
|
hints="TDE"\
|
||||||
|
title="KWorldClock"\
|
||||||
|
icon="/usr/share/pixmaps/kworldclock.xpm"\
|
||||||
|
command="/usr/bin/kworldclock"
|
||||||
|
|
@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||||
|
BASEDIR=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Link /usr/share/apps/kworldwatch to /usr/share/apps/kworldclock.
|
||||||
|
if [ "$1" = "configure" ]; then
|
||||||
|
if [ -d ${BASEDIR}/usr/share/apps -a ! -e ${BASEDIR}/usr/share/apps/kworldwatch -a -d ${BASEDIR}/usr/share/apps/kworldclock ]; then
|
||||||
|
ln -sf kworldclock ${BASEDIR}/usr/share/apps/kworldwatch
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||||
|
BASEDIR=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Remove the link /usr/share/apps/kworldwatch.
|
||||||
|
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L ${BASEDIR}/usr/share/apps/kworldwatch ]; then
|
||||||
|
rm -f ${BASEDIR}/usr/share/apps/kworldwatch
|
||||||
|
fi
|
||||||
|
|
||||||
|
#DEBHELPER#
|
||||||
|
exit 0
|
@ -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,3 @@
|
|||||||
|
common/04_am_maintainer_mode.diff
|
||||||
|
common/06_disable_no_undefined.diff
|
||||||
|
common/kubuntu_01_kdepot.diff
|
@ -0,0 +1,34 @@
|
|||||||
|
#! /usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
include /usr/share/cdbs/1/class/cmake.mk
|
||||||
|
include debian/cdbs/debian-tde.mk
|
||||||
|
|
||||||
|
DEB_CONFIGURE_INCLUDEDIR := /usr/include
|
||||||
|
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 := --prefix=/usr --with-extra-libs=/usr/lib --includedir="/usr/include" --mandir="/usr/share/man" --infodir="/usr/share/info"
|
||||||
|
|
||||||
|
DEB_CMAKE_EXTRA_FLAGS := \
|
||||||
|
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||||
|
-DCONFIG_INSTALL_DIR="/etc/trinity" \
|
||||||
|
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
|
||||||
|
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
|
||||||
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||||
|
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
||||||
|
-DCMAKE_SKIP_RPATH="OFF" \
|
||||||
|
-DBUILD_ALL="ON" \
|
||||||
|
-DCMAKE_C_COMPILER=gcc \
|
||||||
|
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||||
|
|
||||||
|
DEB_DH_STRIP_ARGS := --dbg-package=tdetoys-trinity-dbg
|
||||||
|
|
||||||
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||||
|
&& echo xz || echo bzip2)
|
||||||
|
|
||||||
|
DEB_INSTALL_CHANGELOGS_kodo-trinity := kodo/ChangeLog
|
||||||
|
DEB_INSTALL_CHANGELOGS_kteatime-trinity := kteatime/ChangeLog
|
@ -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,10 @@
|
|||||||
|
Document: tdetoys-doc-html-amor
|
||||||
|
Title: AMOR Handbook
|
||||||
|
Author: Karl Garrison <karl@indy.rr.com>
|
||||||
|
Abstract: AMOR is a small animation which sits on top of your active window.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/amor/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/amor/*.html
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
Document: tdetoys-doc-html-kmoon
|
||||||
|
Title: KMoon Handbook
|
||||||
|
Author: Pam Roberts <pamroberts@blueyonde.co.uk>
|
||||||
|
Abstract: KMoon is an applet that shows the current phase of the moon.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/kmoon/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/kmoon/*.html
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
Document: tdetoys-doc-html-kodo
|
||||||
|
Title: KOdometer Handbook
|
||||||
|
Author: Armen Nakashian <armen@tourismo.com>
|
||||||
|
Abstract: KOdometer is a little gadget to measure your desktop mileage.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/kodo/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/kodo/*.html
|
||||||
|
|
@ -0,0 +1,10 @@
|
|||||||
|
Document: tdetoys-doc-html-kteatime
|
||||||
|
Title: KTeaTime Handbook
|
||||||
|
Author: Michael Korman <michael.korman@uconn.edu>
|
||||||
|
Abstract: This Handbook describes KTeaTime, the TDE Tea Cooker.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/kteatime/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/kteatime/*.html
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
Document: tdetoys-doc-html-kweather
|
||||||
|
Title: KWeather Handbook
|
||||||
|
Abstract: KWeather is an application that can display your area's current
|
||||||
|
weather. It provides a panel applet as well as a weather service that
|
||||||
|
can supply information to other applications.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/kweather/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/kweather/*.html
|
||||||
|
|
@ -0,0 +1,12 @@
|
|||||||
|
Document: tdetoys-doc-html-kworldclock
|
||||||
|
Title: KWorldClock Handbook
|
||||||
|
Author: Brad Hards
|
||||||
|
Abstract: KWorldClock is an application that shows which parts of the world
|
||||||
|
are currently experiencing daylight, and which parts are currently in night.
|
||||||
|
It also shows the current time in a range of cities around the world.
|
||||||
|
Section: Games/Toys
|
||||||
|
|
||||||
|
Format: HTML
|
||||||
|
Index: /usr/share/doc/tde/HTML/en/kworldclock/index.html
|
||||||
|
Files: /usr/share/doc/tde/HTML/en/kworldclock/*.html
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
TDE Toys for Debian
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
Package tdetoys is a metapackage that depends on the full set of toys
|
||||||
|
provided with the official release of TDE.
|
||||||
|
|
||||||
|
Each application provides documentation in a docbook format that the TDE
|
||||||
|
Help Centre can display. For HTML documentation that can be read in any
|
||||||
|
web browser, see the package tdetoys-doc-html.
|
||||||
|
|
||||||
|
-- Ben Burton <bab@debian.org>, Mon, 12 May 2003 12:29:39 +1000
|
Loading…
Reference in new issue