Signed-off-by: Denis Kozadaev <denis@dilos.org>
(cherry picked from commit 0b92bb9645
)
pull/92/head
parent
ae1fcbd1a7
commit
90ba3e7b14
@ -0,0 +1,2 @@
|
||||
Uncomment noauth in debian/kppp-options
|
||||
don't build-dep on libgsmme-dev, failed main inclusion
|
@ -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";
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
||||
9
|
@ -0,0 +1,359 @@
|
||||
Source: tdenetwork-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>, Sarah Hobbs <hobbsee@ubuntu.com>, Sune Vuorela <debian@pusling.com>
|
||||
Build-Depends: libasound2-dev [!solaris-any], cdbs (>= 0.4.39-0.1), debhelper (>= 7.0.50~), quilt, cmake, autotools-dev, docbook-to-man, doxygen, gawk, tdelibs14-trinity-dev, libgnutls-dev | libgadu-dev (>> 1:1.12.0-3), libgcrypt-dev, libgadu-dev, libiw-dev (>> 27+28pre8) [!solaris-any], libmeanwhile-dev (>= 1.0.2), libslp-dev, libspeex-dev, libsqlite3-dev, libtiff-dev, libxml2-dev, libxslt1-dev, libxtst-dev, libtqtinterface-doc, sharutils, valgrind [!armel !mips !mipsel !solaris-any], libxxf86vm-dev, libv4l-dev [!solaris-any], automake, autoconf, libtool, libltdl-dev, libssl-dev
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: tdenetwork-trinity
|
||||
Section: tde
|
||||
Architecture: all
|
||||
Replaces: kdenetwork-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-trinity (<< 4:14.0.0~)
|
||||
Depends: dcoprss-trinity (>= ${source:Version}), tdenetwork-tdefile-plugins-trinity (>= ${source:Version}), kdict-trinity (>= ${source:Version}), tdednssd-trinity (>= ${source:Version}), kget-trinity (>= ${source:Version}), knewsticker-trinity (>= ${source:Version}), kopete-trinity (>= ${source:Version}), kpf-trinity (>= ${source:Version}), kppp-trinity (>= ${source:Version}), krdc-trinity (>= ${source:Version}), krfb-trinity (>= ${source:Version}), ksirc-trinity (>= ${source:Version}), kwifimanager-trinity (>= ${source:Version}), librss1-trinity (>= ${source:Version})
|
||||
Recommends: tdenetwork-filesharing-trinity (>= ${source:Version}), ktalkd-trinity (>= ${source:Version}), lisa-trinity (>= ${source:Version})
|
||||
Suggests: tdenetwork-trinity-doc-html (>= ${source:Version})
|
||||
Description: network-related apps 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 network and networking related
|
||||
applications provided with the official release of Trinity.
|
||||
|
||||
Package: dcoprss-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: dcoprss-trinity (<< 4:14.0.0~)
|
||||
Breaks: dcoprss-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: RSS utilities for Trinity
|
||||
tdenetwork-dcoprss is a RSS to DCOP bridge, allowing all
|
||||
DCOP aware applications to access RSS news feeds. There is also
|
||||
a few sample utilities provided.
|
||||
.
|
||||
RSS is a standard for publishing news headlines.
|
||||
DCOP is the TDE interprocess communication protocol.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdenetwork-trinity-doc-html
|
||||
Architecture: all
|
||||
Section: doc
|
||||
Replaces: kdenetwork-trinity-doc-html (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-trinity-doc-html (<< 4:14.0.0~)
|
||||
Suggests: konqueror-trinity | www-browser, tdebase-trinity
|
||||
Description: Trinity network 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 network 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/kdict/. Documentation is provided for most
|
||||
TDE network packages.
|
||||
.
|
||||
This package is part of TDE, and a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdenetwork-tdefile-plugins-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdenetwork-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Enhances: konqueror-trinity
|
||||
Description: torrent metainfo plugin for Trinity
|
||||
This package provides a metainformation plugin for bittorrent files.
|
||||
.
|
||||
Kde uses tdefile-plugins to provide metainfo tab in the files properties
|
||||
dialog in konqueror and other file-handling applications.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdenetwork-filesharing-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kdenetwork-filesharing-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-filesharing-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: perl-suid
|
||||
Description: network filesharing configuration module for Trinity
|
||||
This package provides a Trinity Control Center module to configure
|
||||
NFS and Samba.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: kdict-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kdict-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdict-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Provides: dict-client-trinity
|
||||
Description: dictionary client for Trinity
|
||||
KDict is an advanced TDE graphical client for the DICT Protocol, with full
|
||||
Unicode support. It enables you to search through dictionary databases for a
|
||||
word or phrase, then displays suitable definitions. KDict tries to ease
|
||||
basic as well as advanced queries.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: kget-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kget-trinity (<< 4:14.0.0~)
|
||||
Breaks: kget-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: download manager for Trinity
|
||||
KGet is a a download manager similar to GetRight or Go!zilla. It keeps
|
||||
all your downloads in one dialog and you can add and remove transfers.
|
||||
Transfers can be paused, resumed, queued or scheduled.
|
||||
Dialogs display info about status of transfers - progress, size, speed
|
||||
and remaining time. Program supports drag & drop from TDE
|
||||
applications and Netscape.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: knewsticker-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: knewsticker-trinity (<< 4:14.0.0~)
|
||||
Breaks: knewsticker-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, kicker-trinity
|
||||
Suggests: khelpcenter-trinity, knewsticker-scripts-trinity
|
||||
Description: news ticker applet for Trinity
|
||||
This is a news ticker applet for the Trinity panel. It can scroll news from
|
||||
your favorite news sites, such as lwn.net, /. and freshmeat.net.
|
||||
To achieve this, KNewsTicker requires the news sites to provide a
|
||||
RSS feed to newsitems. KNewsTicker already comes with a selection of
|
||||
good news sources which provide such files.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: kopete-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kopete-trinity (<< 4:14.0.0~)
|
||||
Breaks: kopete-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: tqca-tls
|
||||
Suggests: tdeartwork-emoticons-trinity, khelpcenter-trinity, imagemagick, gnupg, gnomemeeting
|
||||
Description: instant messenger for Trinity
|
||||
Kopete is an instant messenger program which can communicate with a variety
|
||||
of IM systems, such as Yahoo, ICQ, MSN, IRC and Jabber.
|
||||
.
|
||||
Kopete includes the "Now Listening" plug-in that can report what music you
|
||||
are currently listening to, in a number of different players, including
|
||||
noatun, kscd, juk, kaffeine and amarok.
|
||||
.
|
||||
Support for more IM protocols can be added through a plugin system.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
.
|
||||
Homepage: http://kopete.kde.org
|
||||
|
||||
Package: kpf-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kpf-trinity (<< 4:14.0.0~)
|
||||
Breaks: kpf-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: public fileserver for Trinity
|
||||
kpf provides simple file sharing using HTTP. kpf is strictly a public
|
||||
fileserver, which means that there are no access restrictions to shared
|
||||
files. Whatever you select for sharing is available to anyone. kpf is
|
||||
designed to be used for sharing files with friends.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: kppp-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kppp-trinity (<< 4:14.0.0~)
|
||||
Breaks: kppp-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, ppp [!solaris-any]
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: modem dialer and ppp frontend for Trinity
|
||||
KPPP is a dialer and front end for pppd. It allows for interactive
|
||||
script generation and network setup. It will automate the dialing in
|
||||
process to your ISP while letting you conveniently monitor the entire
|
||||
process.
|
||||
.
|
||||
Once connected KPPP will provide a rich set of statistics and keep
|
||||
track of the time spent online for you.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: krdc-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: krdc-trinity (<< 4:14.0.0~)
|
||||
Breaks: krdc-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Recommends: rdesktop, libjpeg-turbo62
|
||||
Description: Remote Desktop Connection for Trinity
|
||||
krdc is an TDE graphical client for the rfb protocol, used by VNC,
|
||||
and if rdesktop is installed, krdc can connect to Windows Terminal
|
||||
Servers using RDP.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: krfb-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: krfb-trinity (<< 4:14.0.0~)
|
||||
Breaks: krfb-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Recommends: libjpeg-turbo62
|
||||
Description: Desktop Sharing for Trinity
|
||||
Desktop Sharing (krfb) is a server application that allows you to share
|
||||
your current session with a user on another machine, who can use a
|
||||
VNC client like krdc to view or even control the desktop. It doesn't
|
||||
require you to start a new X session - it can share the current session.
|
||||
This makes it very useful when you want someone to help you perform a
|
||||
task.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: ksirc-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: ksirc-trinity (<< 4:14.0.0~)
|
||||
Breaks: ksirc-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, ${perl:Depends}
|
||||
Recommends: libio-socket-ssl-perl
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: IRC client for Trinity
|
||||
KSirc is an IRC chat client for TDE. It supports scripting with Perl and has a
|
||||
lot of compatibility with mIRC for general use.
|
||||
.
|
||||
If you want to connect to an IRC server via SSL, you will need to install the
|
||||
recommended package libio-socket-ssl-perl.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: ktalkd-trinity
|
||||
Section: net
|
||||
Priority: extra
|
||||
Replaces: ktalkd-trinity (<< 4:14.0.0~)
|
||||
Breaks: ktalkd-trinity (<< 4:14.0.0~)
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, netbase, update-inetd
|
||||
Recommends: talk, ytalk
|
||||
Suggests: khelpcenter-trinity
|
||||
Provides: talkd-trinity
|
||||
Description: talk daemon for Trinity
|
||||
KTalkd is an enhanced talk daemon - a program to handle incoming talk
|
||||
requests, announce them and allow you to respond to it using a talk
|
||||
client. Note that KTalkd is designed to run on a single-user workstation,
|
||||
and shouldn't be run on a multi-user machine.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: kwifimanager-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kwifimanager-trinity (<< 4:14.0.0~)
|
||||
Breaks: kwifimanager-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, wireless-tools [!solaris-any]
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: wireless lan manager for Trinity
|
||||
KWiFiManager suite is a set of tools which allows you to manage your
|
||||
wireless LAN connection under the Trinity Desktop Environment. It provides
|
||||
information about your current connection. KWiFiManager supports every
|
||||
wavelan card that uses the wireless extensions interface.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: librss1-trinity
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Replaces: librss1-trinity (<< 4:14.0.0~)
|
||||
Breaks: librss1-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: RSS library for Trinity
|
||||
This is the runtime package for programs that use the TDE RSS library.
|
||||
End users should not need to install this, it should get installed
|
||||
automatically when needed.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdenetwork-trinity-dev
|
||||
Section: devel
|
||||
Architecture: any
|
||||
Replaces: kdenetwork-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-trinity-dev (<< 4:14.0.0~)
|
||||
Depends: kdict-trinity (= ${source:Version}), kopete-trinity (= ${source:Version}), ksirc-trinity (= ${source:Version}), librss1-trinity (= ${source:Version}), tdelibs14-trinity-dev
|
||||
Description: development files for the Trinity network module
|
||||
This is the development package which contains the headers for the TDE RSS
|
||||
library as well as the Kopete chat client, as well as miscellaneous
|
||||
development-related files for the TDE network module.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: lisa-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: lisa-trinity (<< 4:14.0.0~)
|
||||
Breaks: lisa-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity, samba-common
|
||||
Description: LAN information server for Trinity
|
||||
LISa is intended to provide TDE with a kind of "network neighborhood"
|
||||
but relying only on the TCP/IP protocol.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdednssd-trinity
|
||||
Section: net
|
||||
Architecture: any
|
||||
Replaces: kdnssd-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdnssd-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: avahi-daemon
|
||||
Suggests: avahi-autoipd | zeroconf
|
||||
Description: Zeroconf support for TDE
|
||||
A tdeioslave and kded module that provide Zeroconf support. Try
|
||||
"zeroconf:/" in Konqueror.
|
||||
.
|
||||
This package is part of TDE, as a component of the TDE network module.
|
||||
See the 'tde-trinity' and 'tdenetwork-trinity' packages for more information.
|
||||
|
||||
Package: tdenetwork-trinity-dbg
|
||||
Section: libdevel
|
||||
Architecture: linux-any
|
||||
Replaces: kdenetwork-trinity-dbg (<< 4:14.0.0~)
|
||||
Breaks: kdenetwork-trinity-dbg (<< 4:14.0.0~)
|
||||
Priority: extra
|
||||
Depends: librss1-trinity (= ${source:Version}), tdelibs-trinity-dbg
|
||||
Description: debugging symbols for tdenetwork-trinity
|
||||
This package contains the debugging symbols associated with tdenetwork-trinity.
|
||||
They will automatically be used by gdb for debugging tdenetwork-related
|
||||
issues.
|
@ -0,0 +1,525 @@
|
||||
This package was debianized by Christopher L Cheney <ccheney@debian.org> on
|
||||
Tue, 16 Apr 2002 22:00:00 -0500.
|
||||
|
||||
It was downloaded from: http://www.kde.org/download
|
||||
|
||||
Upstream Authors: Stephan Kulow <coolo@kde.org> and many others.
|
||||
|
||||
|
||||
License:
|
||||
|
||||
All programs are either under the GPL, Artistic or BSD licenses, see below
|
||||
for details on the respective applications and additions to BSD-derivative
|
||||
licenses.
|
||||
|
||||
On Debian systems, the complete text of these licenses can be found in:
|
||||
|
||||
/usr/share/common-licenses/GPL
|
||||
/usr/share/common-licenses/Artistic
|
||||
/usr/share/common-licenses/BSD
|
||||
|
||||
When in doubt, check the individual file, they should all have license
|
||||
headings and other identifying marks.
|
||||
|
||||
|
||||
kit, kmail, kmailcvt, knode, korn, kppp, kcmtalkd,
|
||||
ktalkdlg, lisa, libtdenetwork, mimelib
|
||||
--------------------------------------------------
|
||||
GPL
|
||||
|
||||
|
||||
kdict, ksirc
|
||||
------------
|
||||
Artistic
|
||||
|
||||
|
||||
knewsticker, kpf, ktalkd, kotalkd, mail.local, kxmlrpc
|
||||
------------------------------------------------------
|
||||
various bsd derivative licenses - see below
|
||||
|
||||
|
||||
knewsticker
|
||||
-----------
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
|
||||
kpf, kxmlrpc
|
||||
------------
|
||||
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.
|
||||
|
||||
|
||||
ktalkd, kotalkd, mail.local
|
||||
---------------------------
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
3. All advertising materials mentioning features or use of this software
|
||||
must display the following acknowledgement:
|
||||
This product includes software developed by the University of
|
||||
California, Berkeley and its contributors.
|
||||
4. Neither the name of the University nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
--------------------
|
||||
|
||||
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,4 @@
|
||||
debian/tmp/usr/bin/feedbrowser
|
||||
debian/tmp/usr/bin/rssclient
|
||||
debian/tmp/usr/bin/rssservice
|
||||
debian/tmp/usr/share/services/rssservice.desktop
|
@ -0,0 +1,194 @@
|
||||
/* XPM */
|
||||
static char *kdict-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 172 2",
|
||||
" c black",
|
||||
". c #000005",
|
||||
"X c #000006",
|
||||
"o c #00000C",
|
||||
"O c #00000D",
|
||||
"+ c #00091F",
|
||||
"@ c #060C1B",
|
||||
"# c #1C0E00",
|
||||
"$ c #000D23",
|
||||
"% c #09192F",
|
||||
"& c #051C39",
|
||||
"* c #091A33",
|
||||
"= c #0E233D",
|
||||
"- c #13243C",
|
||||
"; c #3A270D",
|
||||
": c #3B260C",
|
||||
"> c #202020",
|
||||
", c #272727",
|
||||
"< c #2F2F3A",
|
||||
"1 c #0B2341",
|
||||
"2 c #0B2342",
|
||||
"3 c #0A2244",
|
||||
"4 c #0D2344",
|
||||
"5 c #0C2442",
|
||||
"6 c #0F2544",
|
||||
"7 c #0E2446",
|
||||
"8 c #122645",
|
||||
"9 c #132747",
|
||||
"0 c #172A4A",
|
||||
"q c #13325A",
|
||||
"w c #1F3A61",
|
||||
"e c #2A476E",
|
||||
"r c #2A4F7E",
|
||||
"t c #324B6F",
|
||||
"y c #37517B",
|
||||
"u c #3E5576",
|
||||
"i c #3B577E",
|
||||
"p c #422C0C",
|
||||
"a c #41382E",
|
||||
"s c #705333",
|
||||
"d c #4C4C4C",
|
||||
"f c #6F6F6F",
|
||||
"g c #66717D",
|
||||
"h c gray48",
|
||||
"j c #495D80",
|
||||
"k c #5B718A",
|
||||
"l c #5B779C",
|
||||
"z c #67798E",
|
||||
"x c #63789F",
|
||||
"c c #6B7A9B",
|
||||
"v c #78889C",
|
||||
"b c #768FAD",
|
||||
"n c #7D90B0",
|
||||
"m c #7E95B1",
|
||||
"M c #BA7B19",
|
||||
"N c #8A765F",
|
||||
"B c #C5913C",
|
||||
"V c #E0A039",
|
||||
"C c #E9C27F",
|
||||
"Z c #E9C976",
|
||||
"A c #FFD97B",
|
||||
"S c #8F8E8E",
|
||||
"D c #909292",
|
||||
"F c #8D9BAD",
|
||||
"G c #8395B5",
|
||||
"H c #8A9EB3",
|
||||
"J c #8F9BB2",
|
||||
"K c #9C9FAB",
|
||||
"L c #90A3BA",
|
||||
"P c #9BAABD",
|
||||
"I c #A5A5BA",
|
||||
"U c #A2ACB7",
|
||||
"Y c #A3AFBF",
|
||||
"T c #A2B2CA",
|
||||
"R c #ACB6C1",
|
||||
"E c #9ED8FA",
|
||||
"W c #BFC0C3",
|
||||
"Q c #BFC2C8",
|
||||
"! c #B8C2D0",
|
||||
"~ c #ADCBE7",
|
||||
"^ c #A1D4F7",
|
||||
"/ c #A4D0F2",
|
||||
"( c #A5D7F7",
|
||||
") c #A5DCFB",
|
||||
"_ c #AAD7F2",
|
||||
"` c #A9DCFB",
|
||||
"' c #B1C8E1",
|
||||
"] c #B0D5F4",
|
||||
"[ c #B3DAF2",
|
||||
"{ c #A7E1FC",
|
||||
"} c #BAE1F2",
|
||||
"| c #BDE1F1",
|
||||
" . c #BCE2F0",
|
||||
".. c #BAE8FB",
|
||||
"X. c #BBEBFD",
|
||||
"o. c #BFE9FA",
|
||||
"O. c #E4CA80",
|
||||
"+. c #E8CD82",
|
||||
"@. c #FFDB82",
|
||||
"#. c #FFDE80",
|
||||
"$. c gray78",
|
||||
"%. c #C2C9D4",
|
||||
"&. c #C7CCD5",
|
||||
"*. c #C5CFDE",
|
||||
"=. c #CCD0D3",
|
||||
"-. c #C9D0DD",
|
||||
";. c #DEC7C9",
|
||||
":. c #DFD5C6",
|
||||
">. c #D8D1CE",
|
||||
",. c #D2D2D2",
|
||||
"<. c #D4D3D2",
|
||||
"1. c #D3D5DC",
|
||||
"2. c #C1D5EC",
|
||||
"3. c #CDD5E2",
|
||||
"4. c #CDDBE7",
|
||||
"5. c #CDDDE8",
|
||||
"6. c #D6D9E0",
|
||||
"7. c #D8DFE9",
|
||||
"8. c #C1EBFB",
|
||||
"9. c #C2EEFC",
|
||||
"0. c #CCEDF3",
|
||||
"q. c #CAF2FA",
|
||||
"w. c #D2EEF1",
|
||||
"e. c #DEEFF2",
|
||||
"r. c #DFF0EF",
|
||||
"t. c #D2F1F1",
|
||||
"y. c #D2F7FB",
|
||||
"u. c #D3F7FA",
|
||||
"i. c #D1F5FC",
|
||||
"p. c #D4F4FD",
|
||||
"a. c #D7FAFB",
|
||||
"s. c #D7FCFF",
|
||||
"d. c #D8F5F7",
|
||||
"f. c #DCFBFA",
|
||||
"g. c #DEF9F9",
|
||||
"h. c #E5CCC8",
|
||||
"j. c #EDDFDF",
|
||||
"k. c #F7CDCC",
|
||||
"l. c #FBD7D6",
|
||||
"z. c #E4E3E2",
|
||||
"x. c #E1E2E8",
|
||||
"c. c #E3E4E9",
|
||||
"v. c #E0E5EE",
|
||||
"b. c #EEE7E5",
|
||||
"n. c #E9EAEA",
|
||||
"m. c #EDEDEC",
|
||||
"M. c #E0EBF4",
|
||||
"N. c #E5EAF1",
|
||||
"B. c #E5EBF4",
|
||||
"V. c #E9EFF7",
|
||||
"C. c #EDEEF3",
|
||||
"Z. c #E1F0ED",
|
||||
"A. c #E4FEFE",
|
||||
"S. c #E9F9F9",
|
||||
"D. c #FBEFED",
|
||||
"F. c #FDEEEE",
|
||||
"G. c #F0F1EF",
|
||||
"H. c #F8F2EF",
|
||||
"J. c #FAF3EF",
|
||||
"K. c #F5F4F7",
|
||||
"L. c #F8F6F2",
|
||||
"P. c #FAF5F0",
|
||||
"I. c #F8F9FA",
|
||||
"U. c #F9F9FA",
|
||||
"Y. c #FBFDFD",
|
||||
"T. c #FBFEFE",
|
||||
"R. c #FCFAFB",
|
||||
"E. c #FFFCF8",
|
||||
"W. c #FFFDFA",
|
||||
"Q. c #FDFDFC",
|
||||
"!. c gray100",
|
||||
"~. c None",
|
||||
/* pixels */
|
||||
"~. y Q <.,.$.D f S h d , ~.~.",
|
||||
"~.O n !.!.!.!.T.j.F.!.!.z.F % ~.",
|
||||
"~.$ T !.!.!.!.T.h.l.!.!.!.v.0 ~.",
|
||||
"~.7 *.!.!.I.V.M.;.k.!.!.!.7.9 ~.",
|
||||
"~.w N.!.B.] ^ ( [ 4.K.!.!.3.9 ~.",
|
||||
" i I.C./ { X... . .5.!.!.! 7 ~.",
|
||||
"O l J.2.E 9.p.q.w.t.0.c.!.Y 4 ~.",
|
||||
"+ b J.~ ) 8.i.a.r.Z.d.1.W.F 2 ~.",
|
||||
"& L K.! ` o.y.f.n.b.e.1.J.v 2 ~.",
|
||||
"q R W.*._ 9.a.g.G.F.%.x.m.z 2 ~.",
|
||||
"r U ,.$.P } s.A.S.&.I >.:.k = ~.",
|
||||
"- e t u i x m H G c K C V g 3 ~.",
|
||||
"~. X X @ * a Z A B > ~.",
|
||||
"~.~.~.~.~.~.~.~.~.~.~.p +.#.M # ",
|
||||
"~.~.~.~.~.~.~.~.~.~.~.~.; O.@.s ",
|
||||
"~.~.~.~.~.~.~.~.~.~.~.~.~.; N < "
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kdict[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #00020C",
|
||||
"X c #010612",
|
||||
"o c #000C18",
|
||||
"O c #070A13",
|
||||
"+ c #120700",
|
||||
"@ c #140A02",
|
||||
"# c #190C03",
|
||||
"$ c #1D1003",
|
||||
"% c gray12",
|
||||
"& c #151515",
|
||||
"* c #041221",
|
||||
"= c #09162A",
|
||||
"- c #03122E",
|
||||
"; c #0B1B35",
|
||||
": c #161620",
|
||||
"> c #211507",
|
||||
", c #282828",
|
||||
"< c #292B32",
|
||||
"1 c gray22",
|
||||
"2 c #071E40",
|
||||
"3 c #09244B",
|
||||
"4 c #0D2243",
|
||||
"5 c #0D2B58",
|
||||
"6 c #132646",
|
||||
"7 c #182F53",
|
||||
"8 c #122D53",
|
||||
"9 c #1D3356",
|
||||
"0 c #0B2C60",
|
||||
"q c #133368",
|
||||
"w c #113973",
|
||||
"e c #133D7C",
|
||||
"r c #3D3E4D",
|
||||
"t c #213B64",
|
||||
"y c #16407E",
|
||||
"u c #1C437E",
|
||||
"i c #2A446F",
|
||||
"p c #294876",
|
||||
"a c #20447E",
|
||||
"s c #402918",
|
||||
"d c #5C3A12",
|
||||
"f c #593F22",
|
||||
"g c #484A4A",
|
||||
"h c gray34",
|
||||
"j c #4F587B",
|
||||
"k c #605F71",
|
||||
"l c #636364",
|
||||
"z c #6B6762",
|
||||
"x c #6D747E",
|
||||
"c c #77736E",
|
||||
"v c #797C7E",
|
||||
"b c #164482",
|
||||
"n c #164588",
|
||||
"m c #1B4381",
|
||||
"M c #1A4886",
|
||||
"N c #1B4A8A",
|
||||
"B c #1E4688",
|
||||
"V c #1B5197",
|
||||
"C c #214780",
|
||||
"Z c #214980",
|
||||
"A c #2B4D88",
|
||||
"S c #20579C",
|
||||
"D c #265395",
|
||||
"F c #335181",
|
||||
"G c #3B5B8C",
|
||||
"H c #305590",
|
||||
"J c #2B5FA1",
|
||||
"K c #37619C",
|
||||
"L c #2A62A6",
|
||||
"P c #3668A9",
|
||||
"I c #3867A0",
|
||||
"U c #3A6CAB",
|
||||
"Y c #4A5B8C",
|
||||
"T c #505F8C",
|
||||
"R c #4B6B8E",
|
||||
"E c #446499",
|
||||
"W c #4D6D94",
|
||||
"Q c #466798",
|
||||
"! c #52608A",
|
||||
"~ c #557292",
|
||||
"^ c #5A7597",
|
||||
"/ c #4673AC",
|
||||
"( c #4E77AE",
|
||||
") c #4A72A3",
|
||||
"_ c #4274B4",
|
||||
"` c #5777A3",
|
||||
"' c #5479AA",
|
||||
"] c #6D7B8D",
|
||||
"[ c #627897",
|
||||
"{ c #647C9B",
|
||||
"} c #6A7B9A",
|
||||
"| c #667FA6",
|
||||
" . c #6176AA",
|
||||
".. c #6C819A",
|
||||
"X. c #7D8185",
|
||||
"o. c #6983A7",
|
||||
"O. c #6884B7",
|
||||
"+. c #6F89B1",
|
||||
"@. c #7989A8",
|
||||
"#. c #7F90A6",
|
||||
"$. c #A57426",
|
||||
"%. c #A97F3E",
|
||||
"&. c #B27D27",
|
||||
"*. c #8F6F42",
|
||||
"=. c #C47E1A",
|
||||
"-. c #807E88",
|
||||
";. c #BA8328",
|
||||
":. c #85817C",
|
||||
">. c #AA8C73",
|
||||
",. c #DF8E0F",
|
||||
"<. c #DD8D14",
|
||||
"1. c #C08929",
|
||||
"2. c #DB9B36",
|
||||
"3. c #E08E10",
|
||||
"4. c #E79613",
|
||||
"5. c #F2AD32",
|
||||
"6. c #F7B337",
|
||||
"7. c #C6A87D",
|
||||
"8. c #DBAE62",
|
||||
"9. c #E4BA6B",
|
||||
"0. c #EAC17C",
|
||||
"q. c #F6CE79",
|
||||
"w. c gray51",
|
||||
"e. c gray56",
|
||||
"r. c #898587",
|
||||
"t. c #898997",
|
||||
"y. c #8F908F",
|
||||
"u. c #93908B",
|
||||
"i. c #9C9B9B",
|
||||
"p. c #9C9590",
|
||||
"a. c #8C8DA5",
|
||||
"s. c #8692A8",
|
||||
"d. c #899AB1",
|
||||
"f. c #9393AA",
|
||||
"g. c #969EA8",
|
||||
"h. c #97A4BA",
|
||||
"j. c #A19E9A",
|
||||
"k. c #A6A39F",
|
||||
"l. c #BEA89B",
|
||||
"z. c #A3A3A4",
|
||||
"x. c #AAACAF",
|
||||
"c. c #ABACBE",
|
||||
"v. c #A9B2BE",
|
||||
"b. c #B2AFAB",
|
||||
"n. c #B0B0BF",
|
||||
"m. c #BEBDBC",
|
||||
"M. c #BAB3B3",
|
||||
"N. c #A2A8C0",
|
||||
"B. c #AFAFC0",
|
||||
"V. c #AEB1C1",
|
||||
"C. c #A4B0C0",
|
||||
"Z. c #A0B4D0",
|
||||
"A. c #B3B5C5",
|
||||
"S. c #B4BDC9",
|
||||
"D. c #B9BBCB",
|
||||
"F. c #B9BCC4",
|
||||
"G. c #95CDF8",
|
||||
"H. c #9BCBF4",
|
||||
"J. c #96CBF6",
|
||||
"K. c #9CD4F9",
|
||||
"L. c #96D2FA",
|
||||
"P. c #ACC7D8",
|
||||
"I. c #B9C1C9",
|
||||
"U. c #BBC1D2",
|
||||
"Y. c #A0C6E8",
|
||||
"T. c #A6C7E7",
|
||||
"R. c #ACD5EF",
|
||||
"E. c #A3D6F9",
|
||||
"W. c #A4DBFA",
|
||||
"Q. c #ACDCF5",
|
||||
"!. c #ACDCF9",
|
||||
"~. c #BCD3EA",
|
||||
"^. c #B9DCEB",
|
||||
"/. c #B1DFF8",
|
||||
"(. c #B5D9F3",
|
||||
"). c #ADE2FA",
|
||||
"_. c #B4E3FA",
|
||||
"`. c #B5E8FC",
|
||||
"'. c #BAE5F8",
|
||||
"]. c #BBEAFB",
|
||||
"[. c #BCE4F7",
|
||||
"{. c #C3BDBA",
|
||||
"}. c #CCBDB3",
|
||||
"|. c #DEBEBF",
|
||||
" X c #F79C9C",
|
||||
".X c #EFA09F",
|
||||
"XX c #E5B8AF",
|
||||
"oX c #F8BCBC",
|
||||
"OX c #F6AAAA",
|
||||
"+X c #DFCEB8",
|
||||
"@X c #F6D182",
|
||||
"#X c #E8C5BE",
|
||||
"$X c #EBD0A8",
|
||||
"%X c #FFE68B",
|
||||
"&X c #FFE587",
|
||||
"*X c #C0C2CD",
|
||||
"=X c #C5C8CE",
|
||||
"-X c #CDCCC9",
|
||||
";X c #CEC9C5",
|
||||
":X c #C1C5D4",
|
||||
">X c #C1CCDB",
|
||||
",X c #CBCAD3",
|
||||
"<X c #CAD0D9",
|
||||
"1X c #D6D2CE",
|
||||
"2X c #D4D4DD",
|
||||
"3X c #DCDBDB",
|
||||
"4X c #D4D4D7",
|
||||
"5X c #C2D4E2",
|
||||
"6X c #C3DBE4",
|
||||
"7X c #CFDDEE",
|
||||
"8X c #C9D8E3",
|
||||
"9X c #D2DBE3",
|
||||
"0X c #D2DDEC",
|
||||
"qX c #DEDCE1",
|
||||
"wX c #C9E4E7",
|
||||
"eX c #C5EEF7",
|
||||
"rX c #C3EDFA",
|
||||
"tX c #CFEEF2",
|
||||
"yX c #CCF2FB",
|
||||
"uX c #C9F4FB",
|
||||
"iX c #DBE3E1",
|
||||
"pX c #DCEBEB",
|
||||
"aX c #D7E5E9",
|
||||
"sX c #D5F4F4",
|
||||
"dX c #D1F5FB",
|
||||
"fX c #D3FBFC",
|
||||
"gX c #DCF4F5",
|
||||
"hX c #DAF5FB",
|
||||
"jX c #DAFBFB",
|
||||
"kX c #EECEC9",
|
||||
"lX c #EED0CF",
|
||||
"zX c #F4C5C4",
|
||||
"xX c #F7DADA",
|
||||
"cX c #E8D9D7",
|
||||
"vX c #E1DFE5",
|
||||
"bX c #E0E0DE",
|
||||
"nX c #FDF5C3",
|
||||
"mX c #FFFAC3",
|
||||
"MX c #E3E3E4",
|
||||
"NX c #E5E5EA",
|
||||
"BX c #EBE3E2",
|
||||
"VX c #ECEBEC",
|
||||
"CX c #ECEAE7",
|
||||
"ZX c #E2FBFB",
|
||||
"AX c #EBF6F5",
|
||||
"SX c #EAFCFC",
|
||||
"DX c #F5E7E6",
|
||||
"FX c #F0EFEF",
|
||||
"GX c #F8E8E7",
|
||||
"HX c #F4F2EE",
|
||||
"JX c #F4F3F3",
|
||||
"KX c #F5FCFC",
|
||||
"LX c #FAF5F3",
|
||||
"PX c #FAF8F6",
|
||||
"IX c #FEFEFE",
|
||||
"UX c #F3F7FC",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYX5 e ] i.z.z.z.z.i.w.l , 1 g g , % YXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYX e s.IXIXIXIXIXIXIXIXIX1Xe.M.{.-X*Xz.w.h 1 & YXYXYXYXYXYX",
|
||||
"YXYXYXo C I.IXIXIXIXIXIXIXIXIXPXvXLXGXIXIXIXIXIXCXm.x A ; YXYXYX",
|
||||
"YXYXYX- H 3XIXIXIXIXIXIXIXIXIXUXbXxXxXPXIXIXIXIXIXIXIXF.u YXYX",
|
||||
"YXYXYX2 E JXIXIXIXIXIXIXIXIXIXJXbXkXoXPXIXIXIXIXIXIXIX<Xa YXYX",
|
||||
"YXYXYX0 | IXIXIXIXIXIXIXIXIXIXJXMX#XOXIXIXIXIXIXIXIXIX=Xe YXYX",
|
||||
"YXYX w d.IXIXIXIXIXIXIXIXIXIXNXVXXX XPXIXIXIXIXIXIXIX*Xu YXYX",
|
||||
"YXYX. n v.IXIXIXIXIXIXJXNX0X7X0XNX|..XPXIXIXIXIXIXIXIXD.m YXYX",
|
||||
"YXYX* D =XIXIXIXIXJX0XR.H.K.E.E./.(.<XNXIXIXIXIXIXIXIXS.y YXYX",
|
||||
"YXYX2 K bXIXIXIXVX~.G.K.W.W.).Q._._.(.5XqXIXIXIXIXIXPXv.e YXYX",
|
||||
"YXYX5 ) FXIXIXVX~.G.W.).`.`.].(.(.~.^.].U.NXIXIXIXIXJXh.e YXYX",
|
||||
"YXYXw | LXIXJX8XJ.W.).].rXrX].].rX7X^.uXuX:XJXIXIXIXCXd.y YXYX",
|
||||
"YX n #.PXIXMXT.G.)._.rXyXdXeXeXdXtXwXdXfX~.3XIXIXIX3X#.y YXYX",
|
||||
"YXX V g.PXUX2XH.K.).].yXhXhXuXyXfXpXaXjXjXtXI.PXPXPX;X@.b YXYX",
|
||||
"YX; J x.PXJX>XJ.W.!.].yXhXdXdXsXjXNXiXjXjXjXS.JXIXUX{...b YXYX",
|
||||
"YX3 I m.PXJXU.H.W.)._.rXrXdXfXhXjXbX3XZXSXhXA.JXPXJXb.[ b YXYX",
|
||||
"YXw Q ;XLXFXD.H.E._.].rXdXjXjXgXSXBXcXAXSXgXV.JXPXJXk.~ u YXYX",
|
||||
" N ~ 1XJXJX*XY.!./.[.rXdXjXsXgXSXBXlXAXKX9XV.JXUXVXu.~ M YXYX",
|
||||
" V ] 3XJXJX4XZ.W._.[.eXuXjXsXAXSXxXzXJXKXV.,XPXJXNX:.R M YXYX",
|
||||
"= L X.MXVXVXVXc.Y._.].eXdXfXtXZXSXVXDXIX9Xa.MXHXJXbXc R N YXYX",
|
||||
"4 U y.HXJXFXLXqXc.R.`.rXuXjXsXZXSXSXKXpXf.f.,XKXKX2Xz R u YXYX",
|
||||
"8 / v z.j.g.i.k.w.t.P.].fXfXsXjXZXSX<Xf.B.A.>X#X$X3Xz W a YXYX",
|
||||
"= P U ( ( ' ` ^ [ | #.h.P.6XwX8XI.f.k -.t.D.}.2.4.7.l W a YXYX",
|
||||
" X = 4 6 7 t p F G E E Y ! j T ' O.+.o.} p.0.q.5.,.*.' a YXYX",
|
||||
"YXYXYX . O O ; 6 9 p p %.&XnX@X5.,.X.q YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX > 1.%XnX@X5.<.f YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX$ ;.%XnX@X5.<.d YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX# &.%XnX@X6.<.d YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX# $.%XnX@X6.=.> ",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX+ $.%XmX8.>.< ",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX+ $.9.l.s.O ",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX+ s g : "
|
||||
};
|
@ -0,0 +1,212 @@
|
||||
/* XPM */
|
||||
static char *kget-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 190 2",
|
||||
" c black",
|
||||
". c #000001",
|
||||
"X c #010000",
|
||||
"o c #010101",
|
||||
"O c #000005",
|
||||
"+ c #000104",
|
||||
"@ c #000006",
|
||||
"# c #000206",
|
||||
"$ c #000207",
|
||||
"% c #010407",
|
||||
"& c #010509",
|
||||
"* c #000B1A",
|
||||
"= c #000A1C",
|
||||
"- c #000B1C",
|
||||
"; c #000E1F",
|
||||
": c #1C1C1C",
|
||||
"> c #000C2A",
|
||||
", c #00132D",
|
||||
"< c #00193C",
|
||||
"1 c #011B3C",
|
||||
"2 c #1F2037",
|
||||
"3 c #000658",
|
||||
"4 c #000C5D",
|
||||
"5 c #001649",
|
||||
"6 c #00164F",
|
||||
"7 c #001F4E",
|
||||
"8 c #00105F",
|
||||
"9 c #001360",
|
||||
"0 c #071165",
|
||||
"q c #071A6E",
|
||||
"w c #08186C",
|
||||
"e c #021A70",
|
||||
"r c #02224F",
|
||||
"t c #1C204C",
|
||||
"y c #002360",
|
||||
"u c #00226F",
|
||||
"i c #052C63",
|
||||
"p c #00207B",
|
||||
"a c #093373",
|
||||
"s c #1F256C",
|
||||
"d c #444343",
|
||||
"f c #444443",
|
||||
"g c #444444",
|
||||
"h c #454545",
|
||||
"j c #444954",
|
||||
"k c #5A5A59",
|
||||
"l c #5A5A5A",
|
||||
"z c #444E61",
|
||||
"x c #444F6A",
|
||||
"c c #44547A",
|
||||
"v c #000D99",
|
||||
"b c #00159D",
|
||||
"n c #001DA1",
|
||||
"m c #002385",
|
||||
"M c #002B91",
|
||||
"N c #0E3980",
|
||||
"B c #00309D",
|
||||
"V c #0E3F92",
|
||||
"C c #1E289B",
|
||||
"Z c #0024A5",
|
||||
"A c #002CA8",
|
||||
"S c #0030A9",
|
||||
"D c #0031AA",
|
||||
"F c #0032AB",
|
||||
"G c #0034B8",
|
||||
"H c #2B38AE",
|
||||
"J c #003ACC",
|
||||
"K c #134C93",
|
||||
"L c #1355A8",
|
||||
"P c #1B5CAE",
|
||||
"I c #105ABA",
|
||||
"U c #3946B9",
|
||||
"Y c #3070BE",
|
||||
"T c #0244D2",
|
||||
"R c #0143D9",
|
||||
"E c #0759C8",
|
||||
"W c #0351D3",
|
||||
"Q c #1A56C4",
|
||||
"! c #0043EC",
|
||||
"~ c #0450EF",
|
||||
"^ c #0655F7",
|
||||
"/ c #0557F8",
|
||||
"( c #065CF5",
|
||||
") c #0761FA",
|
||||
"_ c #0867FC",
|
||||
"` c #096EFD",
|
||||
"' c #0A6DFD",
|
||||
"] c #0B6FFC",
|
||||
"[ c #1177FE",
|
||||
"{ c #157AFE",
|
||||
"} c #167AFE",
|
||||
"| c #1C7FFF",
|
||||
" . c #326FD3",
|
||||
".. c #3D7ADE",
|
||||
"X. c #2073FB",
|
||||
"o. c #3769EF",
|
||||
"O. c #445E94",
|
||||
"+. c #43619B",
|
||||
"@. c #4462A5",
|
||||
"#. c #4856C2",
|
||||
"$. c #4957C2",
|
||||
"%. c #4A58C3",
|
||||
"&. c #446BC2",
|
||||
"*. c #456EC3",
|
||||
"=. c #457BDD",
|
||||
"-. c #497BDB",
|
||||
";. c #516ACF",
|
||||
":. c #507AD9",
|
||||
">. c #597AD7",
|
||||
",. c #2382FB",
|
||||
"<. c #2484FF",
|
||||
"1. c #2785FF",
|
||||
"2. c #328CFF",
|
||||
"3. c #368DFF",
|
||||
"4. c #368FFF",
|
||||
"5. c #3890FF",
|
||||
"6. c #3D91F8",
|
||||
"7. c #3D94FF",
|
||||
"8. c #4382CF",
|
||||
"9. c #508ED9",
|
||||
"0. c #4C92EE",
|
||||
"q. c #4598FF",
|
||||
"w. c #4799FF",
|
||||
"e. c #499BFF",
|
||||
"r. c #5694E2",
|
||||
"t. c #5396EB",
|
||||
"y. c #539DF4",
|
||||
"u. c #549BFE",
|
||||
"i. c #53A1FF",
|
||||
"p. c #55A1FF",
|
||||
"a. c #59A5FF",
|
||||
"s. c #5AA5FF",
|
||||
"d. c #5CA7FF",
|
||||
"f. c #5EA8FF",
|
||||
"g. c #6D9EFB",
|
||||
"h. c #60A4FF",
|
||||
"j. c #66ADFF",
|
||||
"k. c #69AFFF",
|
||||
"l. c #6DAFF9",
|
||||
"z. c #6CB1FF",
|
||||
"x. c #6FB3FF",
|
||||
"c. c #73AEFF",
|
||||
"v. c #76B1FF",
|
||||
"b. c #75B7FF",
|
||||
"n. c #7CBBFF",
|
||||
"m. c #7EBCFF",
|
||||
"M. c #999897",
|
||||
"N. c #989898",
|
||||
"B. c #999999",
|
||||
"V. c #99999A",
|
||||
"C. c #999CA0",
|
||||
"Z. c #989FA9",
|
||||
"A. c #98A6B9",
|
||||
"S. c #B4B4B4",
|
||||
"D. c #89AAF4",
|
||||
"F. c #82B7FF",
|
||||
"G. c #81BDFB",
|
||||
"H. c #8DBDFF",
|
||||
"J. c #8FBFFF",
|
||||
"K. c #93A7ED",
|
||||
"L. c #93BEFE",
|
||||
"P. c #99B3F3",
|
||||
"I. c #85C1FE",
|
||||
"U. c #8AC3FD",
|
||||
"Y. c #A1C8FF",
|
||||
"T. c #A2C9FF",
|
||||
"R. c #A3C9FE",
|
||||
"E. c #A3CBFF",
|
||||
"W. c #B6D4FF",
|
||||
"Q. c #B6D5FF",
|
||||
"!. c #B7D5FF",
|
||||
"~. c #B7D7FF",
|
||||
"^. c #BBD9FF",
|
||||
"/. c #DDDDDD",
|
||||
"(. c #DDDDDE",
|
||||
"). c #CBDCFC",
|
||||
"_. c #CCDDFD",
|
||||
"`. c #CFDFFD",
|
||||
"'. c #DDDEE4",
|
||||
"]. c #DADBEE",
|
||||
"[. c #DBDBEE",
|
||||
"{. c #DDDEEA",
|
||||
"}. c #DCDCEF",
|
||||
"|. c #DDDEED",
|
||||
" X c #DCDDF0",
|
||||
".X c #CBE1FF",
|
||||
"XX c #CDE4FF",
|
||||
"oX c #CFE4FF",
|
||||
"OX c #E6E6E6",
|
||||
"+X c None",
|
||||
/* pixels */
|
||||
"+X+X+X X].].].].].].].|.{.+X+X+X",
|
||||
"+X+XC H $.$.$.$.$.$.$.U s +X+X+X",
|
||||
"+X+Xv ;._._.)._.).).`.K.0 +X+X",
|
||||
"+X+Xb >..X.X.X_..X.XoXP.w +X+X",
|
||||
"+X+Xn :.~.W.W.W.W.W.^.D.w +X+X",
|
||||
"+X+XZ -.E.Y.Y.Y.Y.L.g.o.e +X+X",
|
||||
"+X+XA =.J.J.J.F.u.X.^ ! p 5 +X+X",
|
||||
"&.D D ..v.c.d.3.{ ] ) ^ M B F @.",
|
||||
"&.Q .0.d.i.w.4.1.{ ] ( T J G O.",
|
||||
"O.K t.b.x.j.s.e.5.,.[ _ / R u j ",
|
||||
"+X> a r.I.n.z.s.w.2.| ] W y O +X",
|
||||
"+X+X* a 9.U.m.k.i.7.,.E 7 O +X+X",
|
||||
"+X+X+X= i 8.G.b.f.6.I 1 +X+X+X",
|
||||
"+X+X+X+X* r Y x.y.L , +X+X+X+X",
|
||||
"+X+X+X+X+X& 1 P K ; o +X+X+X+X+X",
|
||||
"+X+X+X+X+X+XV.A.Z.+X+X+X+X+X+X+X"
|
||||
};
|
@ -0,0 +1,256 @@
|
||||
/* XPM */
|
||||
static char *kget[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 218 2",
|
||||
" c #000000",
|
||||
". c #00030B",
|
||||
"X c #000514",
|
||||
"o c #00011D",
|
||||
"O c #000814",
|
||||
"+ c #000A1A",
|
||||
"@ c #171717",
|
||||
"# c #171718",
|
||||
"$ c #00042C",
|
||||
"% c #000C22",
|
||||
"& c #000630",
|
||||
"* c #000A33",
|
||||
"= c #001027",
|
||||
"- c #00122B",
|
||||
"; c #001335",
|
||||
": c #001538",
|
||||
"> c #17192B",
|
||||
", c #171A3D",
|
||||
"< c #001443",
|
||||
"1 c #001A43",
|
||||
"2 c #171A41",
|
||||
"3 c #000975",
|
||||
"4 c #00087E",
|
||||
"5 c #001E63",
|
||||
"6 c #171D65",
|
||||
"7 c #00204B",
|
||||
"8 c #002254",
|
||||
"9 c #00265C",
|
||||
"0 c #00295F",
|
||||
"q c #002565",
|
||||
"w c #002B6D",
|
||||
"e c #002573",
|
||||
"r c #002A74",
|
||||
"t c #002B7A",
|
||||
"y c #00306F",
|
||||
"u c #00337C",
|
||||
"i c #595959",
|
||||
"p c #595D63",
|
||||
"a c #596779",
|
||||
"s c #000D94",
|
||||
"d c #001296",
|
||||
"f c #001499",
|
||||
"g c #001C9C",
|
||||
"h c #171F89",
|
||||
"j c #161D9C",
|
||||
"k c #0415A2",
|
||||
"l c #031AA4",
|
||||
"z c #002781",
|
||||
"x c #002B85",
|
||||
"c c #002B8E",
|
||||
"v c #00219E",
|
||||
"b c #002B90",
|
||||
"n c #002E9A",
|
||||
"m c #003082",
|
||||
"M c #00328D",
|
||||
"N c #003882",
|
||||
"B c #003B8C",
|
||||
"V c #00349E",
|
||||
"C c #04389F",
|
||||
"Z c #17208C",
|
||||
"A c #17219D",
|
||||
"S c #0024A2",
|
||||
"D c #0123A9",
|
||||
"F c #002CA6",
|
||||
"G c #002BAC",
|
||||
"H c #0A20AD",
|
||||
"J c #0D21B1",
|
||||
"K c #0033AB",
|
||||
"L c #0039AF",
|
||||
"P c #0036B2",
|
||||
"I c #003CBE",
|
||||
"U c #0F3EBE",
|
||||
"Y c #122DB7",
|
||||
"T c #152DB9",
|
||||
"R c #1033B9",
|
||||
"E c #103ABC",
|
||||
"W c #0036D9",
|
||||
"Q c #013DE4",
|
||||
"! c #023CE9",
|
||||
"~ c #00419B",
|
||||
"^ c #0042A5",
|
||||
"/ c #034BAD",
|
||||
"( c #0043B2",
|
||||
") c #0041BC",
|
||||
"_ c #0C41B4",
|
||||
"` c #0652B8",
|
||||
"' c #0D52BA",
|
||||
"] c #1042BF",
|
||||
"[ c #0858C0",
|
||||
"{ c #095CCA",
|
||||
"} c #0353DC",
|
||||
"| c #065BD4",
|
||||
" . c #1246C1",
|
||||
".. c #154CC2",
|
||||
"X. c #115DC2",
|
||||
"o. c #1853C5",
|
||||
"O. c #1C5CC5",
|
||||
"+. c #0242E6",
|
||||
"@. c #0245EC",
|
||||
"#. c #0249E0",
|
||||
"$. c #034BEC",
|
||||
"%. c #0146F3",
|
||||
"&. c #034BF4",
|
||||
"*. c #0451EC",
|
||||
"=. c #0553F5",
|
||||
"-. c #065CF7",
|
||||
";. c #065BF8",
|
||||
":. c #114BF2",
|
||||
">. c #1966CA",
|
||||
",. c #0762FA",
|
||||
"<. c #0865FB",
|
||||
"1. c #096CFC",
|
||||
"2. c #0D74FE",
|
||||
"3. c #1364F8",
|
||||
"4. c #1074F6",
|
||||
"5. c #1474FE",
|
||||
"6. c #1479FF",
|
||||
"7. c #1E7BF3",
|
||||
"8. c #1A7DFF",
|
||||
"9. c #205FCB",
|
||||
"0. c #334CCE",
|
||||
"q. c #3952D0",
|
||||
"w. c #2564CD",
|
||||
"e. c #2A6BD1",
|
||||
"r. c #2671D0",
|
||||
"t. c #2E7CDB",
|
||||
"y. c #347BD5",
|
||||
"u. c #2B67F5",
|
||||
"i. c #277FEE",
|
||||
"p. c #596C86",
|
||||
"a. c #596E8A",
|
||||
"s. c #406DED",
|
||||
"d. c #1E80FF",
|
||||
"f. c #2F83EB",
|
||||
"g. c #2584FF",
|
||||
"h. c #2987FF",
|
||||
"j. c #2E8AFE",
|
||||
"k. c #3281E3",
|
||||
"l. c #338DFF",
|
||||
"z. c #3D86FB",
|
||||
"x. c #3B92FE",
|
||||
"c. c #4385DA",
|
||||
"v. c #508FDF",
|
||||
"b. c #478FE5",
|
||||
"n. c #4B92EB",
|
||||
"m. c #4195FF",
|
||||
"M. c #4698FF",
|
||||
"N. c #4B9CFE",
|
||||
"B. c #538CF9",
|
||||
"V. c #5399EF",
|
||||
"C. c #5D9AE3",
|
||||
"Z. c #509FFF",
|
||||
"A. c #589EF4",
|
||||
"S. c #54A1FE",
|
||||
"D. c #5AA5FE",
|
||||
"F. c #5EA9FF",
|
||||
"G. c #6782E7",
|
||||
"H. c #6A8EEF",
|
||||
"J. c #668DF0",
|
||||
"K. c #7392EF",
|
||||
"L. c #7E99EF",
|
||||
"P. c #63A2EB",
|
||||
"I. c #69A6EE",
|
||||
"U. c #65A9F6",
|
||||
"Y. c #63ABFE",
|
||||
"T. c #68A8F2",
|
||||
"R. c #6AACFE",
|
||||
"E. c #6CB1FF",
|
||||
"W. c #70AEF0",
|
||||
"Q. c #72ADFE",
|
||||
"!. c #73B5FF",
|
||||
"~. c #77B8FF",
|
||||
"^. c #7EB3FE",
|
||||
"/. c #7CBBFE",
|
||||
"(. c #9D9D9D",
|
||||
"). c #9D9FA3",
|
||||
"_. c #9DA0A7",
|
||||
"`. c #9DA1A9",
|
||||
"'. c #9DA4B4",
|
||||
"]. c #9DA7BF",
|
||||
"[. c #A6A6A6",
|
||||
"{. c #BFBFBF",
|
||||
"}. c #9DAAC8",
|
||||
"|. c #9DAFD2",
|
||||
" X c #9DB2DF",
|
||||
".X c #8FAAF2",
|
||||
"XX c #82B3FD",
|
||||
"oX c #81BBF5",
|
||||
"OX c #86BBFE",
|
||||
"+X c #8ABAFD",
|
||||
"@X c #9DB3E1",
|
||||
"#X c #92BFFE",
|
||||
"$X c #9DBEF9",
|
||||
"%X c #86C1FE",
|
||||
"&X c #8CC5FD",
|
||||
"*X c #93C2FE",
|
||||
"=X c #91C8FD",
|
||||
"-X c #9DC5FE",
|
||||
";X c #A7C3F9",
|
||||
":X c #A6CBFF",
|
||||
">X c #A9CDFE",
|
||||
",X c #B1D2FF",
|
||||
"<X c #BBD7FF",
|
||||
"1X c #BCDAFF",
|
||||
"2X c #C5DDFF",
|
||||
"3X c #CEE3FF",
|
||||
"4X c #D4E7FF",
|
||||
"5X c #D5E8FF",
|
||||
"6X c #DBE9FF",
|
||||
"7X c #E7E7E7",
|
||||
"8X c #E7E7ED",
|
||||
"9X c #E7E7F0",
|
||||
"0X c #E7E8F4",
|
||||
"qX c #E0EFFF",
|
||||
"wX c #E1F0FF",
|
||||
"eX c #F5F5F5",
|
||||
"rX c gray100",
|
||||
"tX c None",
|
||||
/* pixels */
|
||||
"tXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtX0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X9X0X0X9XtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXA j j j j j j j j j j j j j j j j A Z h tXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXs s T q.q.q.q.q.q.q.q.q.q.q.q.q.q.q.T 4 o tXtXtXtXtXtX",
|
||||
"tXtXtXtXtXs l .X6X6X6X6X6X6X6X6X6X6X6X6X6X6X4Xs.s $ tXtXtXtXtXtX",
|
||||
"tXtXtXtXtXf T ;XqX6X6X6X6X6X6X6X6X6X6X6X6X6X6X.Xk & tXtXtXtXtX",
|
||||
"tXtXtXtXtXf R -X4X3X3X3X3X3X3X3X3X3X3X3X3X3X6XK.l & tXtXtXtXtX",
|
||||
"tXtXtXtXtXf R $X3X2X2X2X2X2X2X2X2X2X2X2X2X2X2XK.l & tXtXtXtXtX",
|
||||
"tXtXtXtXtXg E #X2X<X<X<X<X<X<X<X<X<X<X<X<X<X2XH.l * tXtXtXtXtX",
|
||||
"tXtXtXtXtXg U XX,X,X,X,X,X,X,X,X,X,X,X,X,X,X<XH.D * tXtXtXtXtX",
|
||||
"tXtXtXtXtXv ] oX>X:X:X:X:X:X:X:X:X:X:X:X:X-XXXs.D * tXtXtXtXtX",
|
||||
"tXtXtXtXtXS .^.:X-X-X-X-X-X-X:X*X:X-XXXB.u.:.! D * tXtXtXtXtX",
|
||||
"tXtXtXtXtXS ] ^.#X#X#X#X#X*X#X*X#XQ.z.3.=.&.%.@.G * X tXtXtXtXtX",
|
||||
"tXtXtXtXtXF ..Q.+XOX+XXX+X+XXXQ.z.5.<.,.;.=.&.@.G < z tXtXtXtXtX",
|
||||
"tXtXtXtXtXF o.R.^.^.^.^.^.Q.N.g.6.2.1.<.,.;.=.$.P < tXtXtXtXtXtX",
|
||||
" XK K K K F o.D.R.Q.Q.R.Z.m.h.g.d.6.2.2.<.,.;.&.P 5 V K K K c tX",
|
||||
"@XL _ _ _ L w.S.S.S.S.N.m.x.l.j.g.d.6.2.1.<.,.=.I K P P P K t '.",
|
||||
"@XL O.n.V.V.A.Y.F.D.D.S.Z.N.m.x.j.h.g.6.2.1.<.;.*.$.+.Q W W e _.",
|
||||
" Xt C e.T.~.!.E.E.Y.Y.F.D.Z.N.x.x.j.g.8.6.2.<.,.-.=.%.Q W x + (.",
|
||||
"tX< 1 C w.T././.~.!.E.E.F.D.Z.N.m.l.j.g.8.2.2.<.-.=.#.) w + tX",
|
||||
"tXtX+ < M 9.I.&X%X/./.!.E.Y.F.Z.M.x.l.h.g.6.2.1.,.} ( q . tXtX",
|
||||
"tXtXtXtX- m ' I.=X%X%X/.!.E.Y.D.S.M.x.j.g.6.2.1.} ( 8 . tXtXtX",
|
||||
"tXtXtXtXtX- u ' C.=X=X%X/.!.E.F.S.N.x.j.h.d.4.| ^ 1 . tXtXtXtXtX",
|
||||
"tXtXtXtXtXtX+ w ` v.=X=X%X/.!.Y.F.S.M.x.j.7.| ~ : tXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtX- 9 / c.%X&XoX/.E.Y.S.Z.x.f.{ B = tXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtX+ 8 / c./.&X/.E.Y.D.Z.f.{ N + tXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtX- : ~ r.W.%X!.E.D.k.` r O tXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtXtXtX= N >.P./.Y.k.` q . tXtXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtXtXtXtX= u [ b.k./ 7 tXtXtXtXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtXtXtXtXtXO u / ~ ; tXtXtXtXtXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtXtXtXtXtXtXa.p.a i tXtXtXtXtXtXtXtXtXtXtXtXtXtX",
|
||||
"tXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtXtX"
|
||||
};
|
@ -0,0 +1,171 @@
|
||||
/* XPM */
|
||||
static char *knewsticker-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 149 2",
|
||||
" c black",
|
||||
". c #020202",
|
||||
"X c gray1",
|
||||
"o c gray4",
|
||||
"O c #0C0C0C",
|
||||
"+ c #0E0E0E",
|
||||
"@ c #111111",
|
||||
"# c #131313",
|
||||
"$ c gray8",
|
||||
"% c gray9",
|
||||
"& c #181818",
|
||||
"* c #191919",
|
||||
"= c gray11",
|
||||
"- c #1D1D1D",
|
||||
"; c #202020",
|
||||
": c #232323",
|
||||
"> c gray15",
|
||||
", c #282828",
|
||||
"< c gray18",
|
||||
"1 c #2F2F2F",
|
||||
"2 c gray19",
|
||||
"3 c #323232",
|
||||
"4 c #343434",
|
||||
"5 c gray21",
|
||||
"6 c #434343",
|
||||
"7 c gray27",
|
||||
"8 c gray28",
|
||||
"9 c #484848",
|
||||
"0 c #4B4B4B",
|
||||
"q c #515151",
|
||||
"w c #525151",
|
||||
"e c #535353",
|
||||
"r c #555353",
|
||||
"t c gray34",
|
||||
"y c #5A5959",
|
||||
"u c #5E5D5D",
|
||||
"i c #5F5C5C",
|
||||
"p c #5F5E5E",
|
||||
"a c gray38",
|
||||
"s c #626060",
|
||||
"d c gray39",
|
||||
"f c #656464",
|
||||
"g c gray40",
|
||||
"h c #696767",
|
||||
"j c gray42",
|
||||
"k c #6D6C6C",
|
||||
"l c #6D6D6D",
|
||||
"z c #716E6E",
|
||||
"x c #717171",
|
||||
"c c #737171",
|
||||
"v c #737272",
|
||||
"b c #747373",
|
||||
"n c #747474",
|
||||
"m c gray46",
|
||||
"M c #777676",
|
||||
"N c #797979",
|
||||
"B c #818181",
|
||||
"V c #838383",
|
||||
"C c #848484",
|
||||
"Z c #868585",
|
||||
"A c #868686",
|
||||
"S c gray53",
|
||||
"D c #888888",
|
||||
"F c gray54",
|
||||
"G c #8B8A8A",
|
||||
"H c gray55",
|
||||
"J c #8C8D8D",
|
||||
"K c #8D8D8D",
|
||||
"L c gray56",
|
||||
"P c #908F8F",
|
||||
"I c #909090",
|
||||
"U c gray57",
|
||||
"Y c #929191",
|
||||
"T c #929292",
|
||||
"R c #939393",
|
||||
"E c #949393",
|
||||
"W c gray58",
|
||||
"Q c #969595",
|
||||
"! c gray59",
|
||||
"~ c #979797",
|
||||
"^ c #989898",
|
||||
"/ c #9B9B9B",
|
||||
"( c gray61",
|
||||
") c #9D9D9D",
|
||||
"_ c #9F9F9F",
|
||||
"` c gray63",
|
||||
"' c #A2A2A2",
|
||||
"] c gray64",
|
||||
"[ c #A5A5A5",
|
||||
"{ c gray65",
|
||||
"} c #A7A7A7",
|
||||
"| c #A9A9A9",
|
||||
" . c #AAAAAA",
|
||||
".. c gray67",
|
||||
"X. c #AEAEAE",
|
||||
"o. c #AFAFAF",
|
||||
"O. c gray69",
|
||||
"+. c #B2B2B2",
|
||||
"@. c gray70",
|
||||
"#. c #B4B4B4",
|
||||
"$. c gray71",
|
||||
"%. c #B6B6B6",
|
||||
"&. c #B7B7B7",
|
||||
"*. c gray72",
|
||||
"=. c #B9B9B9",
|
||||
"-. c gray73",
|
||||
";. c #BBBBBB",
|
||||
":. c #C0C0C0",
|
||||
">. c #C0C1C1",
|
||||
",. c gray76",
|
||||
"<. c gray77",
|
||||
"1. c #C5C5C5",
|
||||
"2. c #C6C6C6",
|
||||
"3. c gray78",
|
||||
"4. c #CAC9C9",
|
||||
"5. c #CACACA",
|
||||
"6. c #CDCDCD",
|
||||
"7. c #CECECE",
|
||||
"8. c #CFD0D0",
|
||||
"9. c #D0D0D0",
|
||||
"0. c #D2D2D2",
|
||||
"q. c LightGray",
|
||||
"w. c gray83",
|
||||
"e. c #D5D5D5",
|
||||
"r. c gray84",
|
||||
"t. c #D7D7D7",
|
||||
"y. c gray85",
|
||||
"u. c #DADADA",
|
||||
"i. c gray86",
|
||||
"p. c gray87",
|
||||
"a. c gray89",
|
||||
"s. c #E4E4E4",
|
||||
"d. c #E6E6E6",
|
||||
"f. c #E7E7E7",
|
||||
"g. c #E9E9E9",
|
||||
"h. c gray92",
|
||||
"j. c #ECECEC",
|
||||
"k. c gray93",
|
||||
"l. c #EEEEEE",
|
||||
"z. c gray94",
|
||||
"x. c gray95",
|
||||
"c. c #F3F3F3",
|
||||
"v. c #F4F4F4",
|
||||
"b. c gray96",
|
||||
"n. c #F6F6F6",
|
||||
"m. c #F8F8F8",
|
||||
"M. c #FDFDFD",
|
||||
"N. c gray100",
|
||||
"B. c None",
|
||||
/* pixels */
|
||||
"B.B.B.B.B. & 3 7 l A & 4 4 B.B.",
|
||||
"= W .$.j.N.N.N.N.N.w._ N.,.*. ",
|
||||
"6 N.5.z./ $.G G o.a &.H i.$.] ",
|
||||
"+ 7.e A a *.` < N x g W $.*.] ",
|
||||
"B.+.w.a n U w.a N ,.x U ` *.+.& ",
|
||||
"B.l s.j.7.+.h.N.N.a.w._ ` ;.+.; ",
|
||||
"B.< v.N.N.N.N.N.N.z.h.G +.*.o.; ",
|
||||
"B.# y.N.N.N.N.N.v.h.w.A ,.$. .; ",
|
||||
"B.< z.N.N.N.N.m.j.s.3.B 7.o._ = ",
|
||||
"B.j N.z.z.v.v.j.s.y.#.G 7. .^ $ ",
|
||||
"B.o.v.h.j.j.j.f.i.w.] H ,.` U o ",
|
||||
" i.i.7.w.y.w.7.,.,.` U ;._ A ",
|
||||
"4 5.Y U U Y U H A A ` H $./ n ",
|
||||
"# G M b b x b z k g W _ .W 0 B.",
|
||||
"B.> e q r y i s s i h H B t B.",
|
||||
"B.B.B. B.B."
|
||||
};
|
@ -0,0 +1,77 @@
|
||||
/* XPM */
|
||||
static char *knewsticker[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 39 1",
|
||||
" c #000000",
|
||||
". c #0A0A0A",
|
||||
"X c gray8",
|
||||
"o c #1A1A1A",
|
||||
"O c #232323",
|
||||
"+ c #2C2C2C",
|
||||
"@ c #333333",
|
||||
"# c #3C3C3C",
|
||||
"$ c #444444",
|
||||
"% c #4C4C4C",
|
||||
"& c #545353",
|
||||
"* c #5A5A5A",
|
||||
"= c #605E5E",
|
||||
"- c #646262",
|
||||
"; c #686666",
|
||||
": c #6B6A6A",
|
||||
"> c #706F6F",
|
||||
", c #737272",
|
||||
"< c #787777",
|
||||
"1 c #7C7C7C",
|
||||
"2 c #838383",
|
||||
"3 c #888787",
|
||||
"4 c #8B8B8B",
|
||||
"5 c #908F8F",
|
||||
"6 c #939393",
|
||||
"7 c #9C9C9C",
|
||||
"8 c #A3A3A3",
|
||||
"9 c #ABABAB",
|
||||
"0 c #B3B3B3",
|
||||
"q c #BCBCBC",
|
||||
"w c #C3C3C3",
|
||||
"e c #CBCBCB",
|
||||
"r c #D3D3D3",
|
||||
"t c #DBDBDB",
|
||||
"y c #E3E3E3",
|
||||
"u c #EBEBEB",
|
||||
"i c #F3F3F3",
|
||||
"p c #FDFDFD",
|
||||
"a c None",
|
||||
/* pixels */
|
||||
"aaaaaaaaaaaaaaaa oO%OaaaX aaaa",
|
||||
"aaaaaaaaa.O+%&<260qrte*@-49@ +.a",
|
||||
"aOO@%%&:7qryupppppppp91eppq1q9oa",
|
||||
"a4yuippppppppuuuyyr9w917rt94e4.a",
|
||||
".6yiuprr087w1q:7r6462q32et0202 a",
|
||||
" ,qq@97q>&79&34&t7&4ww619tq204.a",
|
||||
"a&0t*+0w0$quq$9O404.:r717rw196oa",
|
||||
"a+7t0%@9y@*yp**&O7u2.2q22ee297+ ",
|
||||
"aX4eqq$%u%<tpqo9O2re7&q42we280# ",
|
||||
"aa:qrqr@e,;e0p*w76r>72w41qe480% ",
|
||||
"aa%0e4u098;49pryuruw8ew42qe470& ",
|
||||
"aa+7rtupipiippppppuuytq22we570& ",
|
||||
"aaX4eipppppppppppiuutt024we660* ",
|
||||
"aa ,quppppppppppiiuytr917ee640& ",
|
||||
"aaa*0yipppppppppiiuttr719ew640* ",
|
||||
"aaa*qyipppppppppiuyyte710ew649& ",
|
||||
"aaa,ryiipppppppiiuytrw53qew639% ",
|
||||
"aa.6tyiiiippppiiuyttrq26qwq639$ ",
|
||||
"aao9tyuiiiipiiiuuytrr917wqq529$ ",
|
||||
"aa#wytyuuuuiiuuyytree918wq0627@ ",
|
||||
"aa*ttttyuyuuuyyytrrww719w00527+ ",
|
||||
"a 2trrttyyyyyyttrrewq729009426O ",
|
||||
"ao9terrttttttttreewwq619099214X ",
|
||||
"a#wrqwwwwwwewwwqq099q628098221.a",
|
||||
"a*r07777777777766654971898712: a",
|
||||
"a:9523333343432222117916977,4& a",
|
||||
"a%6<<<<<<<<<<<,,,>,:2922774:2@ a",
|
||||
"ao1:-;::;::::::;;;;;:771771,,. a",
|
||||
"aa@>:----;---------=-,7214:<+ aa",
|
||||
"aa o####$$%%%&&&&*&***:2,*%O aa",
|
||||
"aaaa .. .....XXX. aaa",
|
||||
"aaaaaaaaaaaaaaaaaaaa aaaaa"
|
||||
};
|
@ -0,0 +1,113 @@
|
||||
/* XPM */
|
||||
static char *kopete-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 91 1",
|
||||
" c black",
|
||||
". c #090913",
|
||||
"X c #292952",
|
||||
"o c #292A56",
|
||||
"O c #2C2C59",
|
||||
"+ c #393A79",
|
||||
"@ c #2E4082",
|
||||
"# c #2F45BA",
|
||||
"$ c #2E56BB",
|
||||
"% c #3749B9",
|
||||
"& c #325EBE",
|
||||
"* c #126FF8",
|
||||
"= c #177BE3",
|
||||
"- c #1C78F8",
|
||||
"; c #2F5EC0",
|
||||
": c #3F6CC6",
|
||||
"> c #3366D0",
|
||||
", c #3F7DD9",
|
||||
"< c #2276F8",
|
||||
"1 c #2279F8",
|
||||
"2 c #327DEC",
|
||||
"3 c #474790",
|
||||
"4 c #444796",
|
||||
"5 c #434A95",
|
||||
"6 c #42499F",
|
||||
"7 c #444898",
|
||||
"8 c #464EB0",
|
||||
"9 c #5050A1",
|
||||
"0 c #575AB4",
|
||||
"q c #415DC0",
|
||||
"w c #1BD017",
|
||||
"e c #22D320",
|
||||
"r c #24D722",
|
||||
"t c #5EE065",
|
||||
"y c #198AFE",
|
||||
"u c #1991FE",
|
||||
"i c #2286F9",
|
||||
"p c #2F8CF8",
|
||||
"a c #3284F9",
|
||||
"s c #3A85F9",
|
||||
"d c #3E89F9",
|
||||
"f c #3F99F2",
|
||||
"g c #4F86D3",
|
||||
"h c #4F95DB",
|
||||
"j c #5087D3",
|
||||
"k c #5188D2",
|
||||
"l c #5388D3",
|
||||
"z c #528ED2",
|
||||
"x c #478EEF",
|
||||
"c c #428BFA",
|
||||
"v c #4889F4",
|
||||
"b c #488AF4",
|
||||
"n c #4192E5",
|
||||
"m c #4A91F9",
|
||||
"M c #539EF6",
|
||||
"N c #5D9DFA",
|
||||
"B c #67A3FB",
|
||||
"V c #68A3FA",
|
||||
"C c #6CA7FB",
|
||||
"Z c #6CA8FB",
|
||||
"A c #F96216",
|
||||
"S c #FD7732",
|
||||
"D c #FD7E3E",
|
||||
"F c #FABD0E",
|
||||
"G c #FDBD10",
|
||||
"H c #D1B969",
|
||||
"J c #FD9148",
|
||||
"K c #FDB97F",
|
||||
"L c #FDC837",
|
||||
"P c #FDCE70",
|
||||
"I c #89B2E6",
|
||||
"U c #8BBAFB",
|
||||
"Y c #9BED9A",
|
||||
"T c #A6F2A5",
|
||||
"R c #9DC1E8",
|
||||
"E c #97C3FB",
|
||||
"W c #95CFFD",
|
||||
"Q c #9AC4FC",
|
||||
"! c #A3C9FB",
|
||||
"~ c #A7CCFB",
|
||||
"^ c #AAD0FE",
|
||||
"/ c #B8D5FB",
|
||||
"( c #BAD7FB",
|
||||
") c #E9AE83",
|
||||
"_ c #EEB492",
|
||||
"` c #EEDA99",
|
||||
"' c #FDD488",
|
||||
"] c #CDF8CE",
|
||||
"[ c #CBE0F5",
|
||||
"{ c #FFFEFF",
|
||||
"} c None",
|
||||
/* pixels */
|
||||
":&&&@}}}}}}$&&&}",
|
||||
"&'PH&}}}}}}&)KJ&",
|
||||
"&GLF&}}}}}}&ASD&",
|
||||
"&H`G&}}}}}}&J_A&",
|
||||
"O&&&&&&&&&&&&&&}",
|
||||
"}}}&[/UB[Vmm&}}}",
|
||||
"}}}&/~{ZN{cs&}}}",
|
||||
"}}}&!QQZa{*-&}}}",
|
||||
"}}}&BB{1d{<2&}}}",
|
||||
"}}}&bb[i[x,&}}}}",
|
||||
"}}}&1111n&&}6}}}",
|
||||
"}&&&&&&&fR&}&&&;",
|
||||
"&YTt&}}+&&&&I^M&",
|
||||
"&erw&}}}}O4&pyu&",
|
||||
"&t]e&}}}}}}&=Wp&",
|
||||
"5&&&9}}}}}}X&&&0"
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kopete[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #050409",
|
||||
"X c #08070D",
|
||||
"o c #0C0C18",
|
||||
"O c #100F1E",
|
||||
"+ c #151429",
|
||||
"@ c #1E1C37",
|
||||
"# c #0C1E42",
|
||||
"$ c #00146F",
|
||||
"% c #001A78",
|
||||
"& c #1E265F",
|
||||
"* c #1E2146",
|
||||
"= c #062476",
|
||||
"- c #252448",
|
||||
"; c #2C2B57",
|
||||
": c #312D5C",
|
||||
"> c #31305F",
|
||||
", c #2C346E",
|
||||
"< c #322F63",
|
||||
"1 c #37356B",
|
||||
"2 c #3A3A76",
|
||||
"3 c #393570",
|
||||
"4 c #3F407F",
|
||||
"5 c #021B86",
|
||||
"6 c #092792",
|
||||
"7 c #132D96",
|
||||
"8 c #112F8B",
|
||||
"9 c #1230A9",
|
||||
"0 c #3E3F82",
|
||||
"q c #2B3791",
|
||||
"w c #1A3AC1",
|
||||
"e c #1E43A2",
|
||||
"r c #2B4589",
|
||||
"t c #274897",
|
||||
"y c #315093",
|
||||
"u c #3C58A3",
|
||||
"i c #3757BA",
|
||||
"p c #2D4CB0",
|
||||
"a c #3B7F9E",
|
||||
"s c #3466BA",
|
||||
"d c #367AB4",
|
||||
"f c #366DAE",
|
||||
"g c #1D73CD",
|
||||
"h c #176DD0",
|
||||
"j c #0C6CF8",
|
||||
"k c #0567F8",
|
||||
"l c #017DFE",
|
||||
"z c #0676F6",
|
||||
"x c #156DFA",
|
||||
"c c #1A71F8",
|
||||
"v c #1B7CFA",
|
||||
"b c #1671F7",
|
||||
"n c #067BE5",
|
||||
"m c #2645CA",
|
||||
"M c #2E5BC2",
|
||||
"N c #374BCB",
|
||||
"B c #385BC7",
|
||||
"V c #3B56D3",
|
||||
"C c #3257D4",
|
||||
"Z c #2C67C8",
|
||||
"A c #3366CD",
|
||||
"S c #3565C6",
|
||||
"D c #3567D5",
|
||||
"F c #3A75CD",
|
||||
"G c #3C77C7",
|
||||
"H c #3976DF",
|
||||
"J c #3674D3",
|
||||
"K c #2E68DE",
|
||||
"L c #2E65E5",
|
||||
"P c #2375F6",
|
||||
"I c #2478F5",
|
||||
"U c #2C7BF5",
|
||||
"Y c #2579F9",
|
||||
"T c #3268E6",
|
||||
"R c #3874E2",
|
||||
"E c #3D7AE0",
|
||||
"W c #357CF6",
|
||||
"Q c #45458B",
|
||||
"! c #424185",
|
||||
"~ c #4B4C99",
|
||||
"^ c #4C4DA4",
|
||||
"/ c #4E51A9",
|
||||
"( c #4E53B4",
|
||||
") c #4B54BC",
|
||||
"_ c #534EA6",
|
||||
"` c #5351A6",
|
||||
"' c #5958A6",
|
||||
"] c #5858B2",
|
||||
"[ c #5B5EBD",
|
||||
"{ c #5259B7",
|
||||
"} c #456799",
|
||||
"| c #4E76B0",
|
||||
" . c #6C5C9B",
|
||||
".. c #747F8F",
|
||||
"X. c #706298",
|
||||
"o. c #6473B0",
|
||||
"O. c #444FC0",
|
||||
"+. c #4659C8",
|
||||
"@. c #545AC3",
|
||||
"#. c #4455D0",
|
||||
"$. c #446BC9",
|
||||
"%. c #4668CA",
|
||||
"&. c #4863DB",
|
||||
"*. c #4765D6",
|
||||
"=. c #4673D5",
|
||||
"-. c #5363C5",
|
||||
";. c #5365D4",
|
||||
":. c #5176C9",
|
||||
">. c #407EE7",
|
||||
",. c #6563D4",
|
||||
"<. c #6363C7",
|
||||
"1. c #30A168",
|
||||
"2. c #0CC909",
|
||||
"3. c #15D403",
|
||||
"4. c #18D317",
|
||||
"5. c #0CD008",
|
||||
"6. c #0FE108",
|
||||
"7. c #23D31C",
|
||||
"8. c #23CB13",
|
||||
"9. c #34CC31",
|
||||
"0. c #26C635",
|
||||
"q. c #2FE12A",
|
||||
"w. c #41B858",
|
||||
"e. c #65F265",
|
||||
"r. c #79EE77",
|
||||
"t. c #36898A",
|
||||
"y. c #0488FE",
|
||||
"u. c #1884FB",
|
||||
"i. c #1690FF",
|
||||
"p. c #0A8CF3",
|
||||
"a. c #2A88FC",
|
||||
"s. c #3786F9",
|
||||
"d. c #3B90FB",
|
||||
"f. c #318FED",
|
||||
"g. c #3CA6FE",
|
||||
"h. c #5E83AF",
|
||||
"j. c #4580AC",
|
||||
"k. c #5AB083",
|
||||
"l. c #79849A",
|
||||
"z. c #7788A7",
|
||||
"x. c #648CBA",
|
||||
"c. c #67BD8C",
|
||||
"v. c #4C80C7",
|
||||
"b. c #4785D7",
|
||||
"n. c #578CD1",
|
||||
"m. c #4E8CE2",
|
||||
"M. c #4181E1",
|
||||
"N. c #438CF9",
|
||||
"B. c #498FF7",
|
||||
"V. c #4E9FEC",
|
||||
"C. c #4394FD",
|
||||
"Z. c #4D92F9",
|
||||
"A. c #4899FA",
|
||||
"S. c #508DE2",
|
||||
"D. c #5692E3",
|
||||
"F. c #5498FA",
|
||||
"G. c #5B9CFA",
|
||||
"H. c #5794F5",
|
||||
"J. c #4AA7FE",
|
||||
"K. c #54A1FC",
|
||||
"L. c #5CA8FC",
|
||||
"P. c #57A4ED",
|
||||
"I. c #6394CF",
|
||||
"U. c #649FF9",
|
||||
"Y. c #72A4DB",
|
||||
"T. c #69A4E5",
|
||||
"R. c #63A1FA",
|
||||
"E. c #6CABFB",
|
||||
"W. c #65A8F8",
|
||||
"Q. c #65B1FB",
|
||||
"!. c #73AAE6",
|
||||
"~. c #75ABFA",
|
||||
"^. c #7AB2FA",
|
||||
"/. c #6DC2FF",
|
||||
"(. c #7BC3FE",
|
||||
"). c #8E5876",
|
||||
"_. c #9E6D78",
|
||||
"`. c #A56171",
|
||||
"'. c #CF5F2C",
|
||||
"]. c #DB532E",
|
||||
"[. c #FD4D00",
|
||||
"{. c #FE5003",
|
||||
"}. c #FD5708",
|
||||
"|. c #E65510",
|
||||
" X c #FE6817",
|
||||
".X c #FF6B0A",
|
||||
"XX c #EF752F",
|
||||
"oX c #8D8777",
|
||||
"OX c #B08F6C",
|
||||
"+X c #DFB01B",
|
||||
"@X c #D8AC2D",
|
||||
"#X c #FC873A",
|
||||
"$X c #FDAA00",
|
||||
"%X c #FDB200",
|
||||
"&X c #FEBC00",
|
||||
"*X c #FFB708",
|
||||
"=X c #FFB71E",
|
||||
"-X c #F1B435",
|
||||
";X c #C19D51",
|
||||
":X c #C3AB71",
|
||||
">X c #FF9C4A",
|
||||
",X c #FDAA4B",
|
||||
"<X c #FFBC7C",
|
||||
"1X c #FFC300",
|
||||
"2X c #FEC91B",
|
||||
"3X c #F7C92E",
|
||||
"4X c #FDC155",
|
||||
"5X c #FFCD6C",
|
||||
"6X c #FEDB7A",
|
||||
"7X c #FDDA64",
|
||||
"8X c #FFE050",
|
||||
"9X c #A49C84",
|
||||
"0X c #81ABDA",
|
||||
"qX c #82B4FA",
|
||||
"wX c #8CBAFB",
|
||||
"eX c #84BDF8",
|
||||
"rX c #93BAF8",
|
||||
"tX c #8FBDE9",
|
||||
"yX c #94F888",
|
||||
"uX c #8CEC86",
|
||||
"iX c #AFFCAC",
|
||||
"pX c #87CF94",
|
||||
"aX c #89C5FB",
|
||||
"sX c #96C2EB",
|
||||
"dX c #95C2FC",
|
||||
"fX c #9BC3FB",
|
||||
"gX c #9CCAFD",
|
||||
"hX c #97C6F7",
|
||||
"jX c #98D7FF",
|
||||
"kX c #ABCCFB",
|
||||
"lX c #A2CCFB",
|
||||
"zX c #AFD3FD",
|
||||
"xX c #B4D4FB",
|
||||
"cX c #B8D5FC",
|
||||
"vX c #BDDBFB",
|
||||
"bX c #B2D9FA",
|
||||
"nX c #B1CEFA",
|
||||
"mX c #C09081",
|
||||
"MX c #FDB789",
|
||||
"NX c #FDC98E",
|
||||
"BX c #FED9AB",
|
||||
"VX c #FEE8AB",
|
||||
"CX c #FEE4B7",
|
||||
"ZX c #C2DCFA",
|
||||
"AX c #C7DDF4",
|
||||
"SX c #D0FFCA",
|
||||
"DX c #C8E2F9",
|
||||
"FX c #D5E7F9",
|
||||
"GX c #D7EBF6",
|
||||
"HX c #E3FFDF",
|
||||
"JX c #FFEBC6",
|
||||
"KX c #FFF8D5",
|
||||
"LX c #FFF4CB",
|
||||
"PX c #EBFFE6",
|
||||
"IX c #FFFFFE",
|
||||
"UX c #F6FBFF",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXZ | ..o.S t YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXM S ' X.{ i & YX",
|
||||
"YXA 9XCXKXVX:X:.r YXYXYXYXYXYXYXYXYXYXYXYXYXYXC ) mXJXJXNX_.D * ",
|
||||
"M oXVXLXCXVX6X;XT + YXYXYXYXYXYXYXYXYXYXYXYXYXT OXKXJXBXNX>X).i ",
|
||||
"$.-X5X4X,X=X=X$Xo.3 YXYXYXYXYXYXYXYXYXYXYXYXYX;.>XMX>X>X#X.X|.@.",
|
||||
":.$X*X%X&X%X&X&Xz.2 YXYXYXYXYXYXYXYXYXYXYXYX ..X X}.[.[.{.}.-.",
|
||||
"s @X1X2X7X6X2X&X:.2 YXYXYXYXYXYXYXYXYXYXYXYX. ;.{.{. XMXBXXX].+.",
|
||||
"u l.1XKXIXUX8XOX*.< YXYXYXYXYXYXYXYXYXYXYXYXYXD `.{.JXUXIX#X .[ ",
|
||||
"* #.l.@X3X+XoX$._ YXYXYXYXYXYXYXYXYXYXYXYXYXYX< V ).XX#X'. .;.Q ",
|
||||
"YX> @.D *.*.+.s J J H H R R R H R E E E H >.f.=.F S *.&.&.;.~ YX",
|
||||
"YXYX+ 2 3 i sXDXZXDXvXbXlXaXaX^.E.Q.W.W.L.L.G.A.d.f > 1 2 ; YXYX",
|
||||
"YXYXYXYXYXS.GXGXGXDXvXxXfX^.R.G.Z.^.s.d.B.B.N.N.C.q O.X YXYXYXYX",
|
||||
"YXYXYXYXYXS.DXDXAXAXvXnXrXqX~.R.F.kXFXZ.Z.Z.Z.F.A.8 @.X YXYXYXYX",
|
||||
"YXYXYXYXYXS.DXvXAXcXxXlXrX^.E.R.F.Z.kXfXF.G.G.G.b.9 { YXYXYXYXYX",
|
||||
"YXYXYXYXYXm.vXcXcXxXkXdXIXGXE.R.U.U.^.FXU c c x s p ! YXYXYXYXYX",
|
||||
"YXYXYXYXYXm.xXzXnXkXfXwXcXfX^.^.W.s.U cXk j j u.t V < YXYXYXYXYX",
|
||||
"YXYXYXYXYXm.gXfXfXfXhXrXwXwXqXN.j j R.wXj b c d.7 +.+ YXYXYXYXYX",
|
||||
"YXYXYXYXYXS.fXrXfXlXlXrXcXwXc b c j DXU c c c B.8 { . YXYXYXYXYX",
|
||||
"YXYXYXYXYXD.lXkXnXrX~.B.IXrXc v Y kXU.P P P Y b.9 / YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXV.B.U P P W P nXZ.v v ^.N.c W W s.C.f N 4 YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXP.T.H.H.H.H.H.qXf.a.i.i.J.E.T.n.| r % #.- YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXW.hXrXrXrXfXgXqXT.Q.y.i.| $ % 6 9 m C ( O YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXb.tX0Xz.} r = $ 5 n.g.a.!.m O.) / Q 2 @ YXYXYXYXYXYXYX",
|
||||
"YXYXR L C e & 5 9 w m V #.) u Y.(.gXsXZ # YXYXYXYXW T T D s.YXYX",
|
||||
"YXT d k.pXc.f i ( ^ ! 1 @ o ; q } 0XDXDXD.H YXYXT Z I.Y.v.D A YX",
|
||||
"D d uXPXPXHXyXt.i YXYXYXYXYXYX! ) q 8 y h.s A K F DXUXGXbXf.F t ",
|
||||
"A w.yXuXr.r.e.9.=.3 YXYXYXYXYXYX; ^ @.#.p q , S Y.ZXdXE.A.a.h %.",
|
||||
"G 7.q.7.4.4.7.3.j.` YXYXYXYXYXYXYXYXO < Q ] ( S A.G.a.u.l y.n $.",
|
||||
"F 8.2.2.4.4.5.3.:.` YXYXYXYXYXYXYXYXYXYXYXYX F z y.l y.g.i.n %.",
|
||||
"i 1.6.iXIXIXe.0.;./ YXYXYXYXYXYXYXYXYXYXYXYX. =.h y.J.IXIXjXg -.",
|
||||
", =.0.yXSXiX0.| ,.! YXYXYXYXYXYXYXYXYXYXYXYXYX( F p./.GXaXg %.{ ",
|
||||
"YX/ #.| 1.1.$.,.] + YXYXYXYXYXYXYXYXYXYXYXYXYX; [ %.Z h s ;.-.2 ",
|
||||
"YXYXQ @.@.[ [ ~ @ YXYXYXYXYXYXYXYXYXYXYXYXYXYXYX> ` [ [ [ ] 2 YX"
|
||||
};
|
@ -0,0 +1,203 @@
|
||||
/* XPM */
|
||||
static char *kppp-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 181 2",
|
||||
" c black",
|
||||
". c #000005",
|
||||
"X c #060606",
|
||||
"o c #00000A",
|
||||
"O c #00081C",
|
||||
"+ c #030A1F",
|
||||
"@ c #0F0F17",
|
||||
"# c #1B1B1E",
|
||||
"$ c #000024",
|
||||
"% c #07112D",
|
||||
"& c #0D1123",
|
||||
"* c #09122F",
|
||||
"= c #181E26",
|
||||
"- c #1A1D27",
|
||||
"; c #121A35",
|
||||
": c #19233E",
|
||||
"> c #2D2F35",
|
||||
", c #282F3C",
|
||||
"< c #2D343E",
|
||||
"1 c #042678",
|
||||
"2 c #062778",
|
||||
"3 c #08297A",
|
||||
"4 c #09297A",
|
||||
"5 c #0F2E7E",
|
||||
"6 c #112E74",
|
||||
"7 c #333B55",
|
||||
"8 c #273767",
|
||||
"9 c #273F7D",
|
||||
"0 c #394353",
|
||||
"q c #27407E",
|
||||
"w c #394670",
|
||||
"e c #424752",
|
||||
"r c #47515F",
|
||||
"t c #50555E",
|
||||
"y c #53555D",
|
||||
"u c #52575E",
|
||||
"i c #53565F",
|
||||
"p c #55555D",
|
||||
"a c #55575D",
|
||||
"s c #50585D",
|
||||
"d c #404E7E",
|
||||
"f c #4C5563",
|
||||
"g c #4D5868",
|
||||
"h c #595961",
|
||||
"j c #1B3780",
|
||||
"k c #1E3B86",
|
||||
"l c #1E3B87",
|
||||
"z c #1F3C87",
|
||||
"x c #1C3B89",
|
||||
"c c #2A458D",
|
||||
"v c #2C478F",
|
||||
"b c #304582",
|
||||
"n c #314784",
|
||||
"m c #304A90",
|
||||
"M c #344E93",
|
||||
"N c #344F92",
|
||||
"B c #39508B",
|
||||
"V c #3C5595",
|
||||
"C c #3F579B",
|
||||
"Z c #435A89",
|
||||
"A c #485683",
|
||||
"S c #445B9D",
|
||||
"D c #465D9D",
|
||||
"F c #495E9E",
|
||||
"G c #4F6199",
|
||||
"H c #516094",
|
||||
"J c #50659A",
|
||||
"K c #53659B",
|
||||
"L c #57679F",
|
||||
"P c #56689C",
|
||||
"I c #546C9F",
|
||||
"U c #5A6A92",
|
||||
"Y c #4E63A1",
|
||||
"T c #5166A1",
|
||||
"R c #556CA5",
|
||||
"E c #5C6FA9",
|
||||
"W c #5D70A9",
|
||||
"Q c #5F74AA",
|
||||
"! c #6C7485",
|
||||
"~ c #65749E",
|
||||
"^ c #6A7B91",
|
||||
"/ c #6376A7",
|
||||
"( c #6174AB",
|
||||
") c #6C7FA9",
|
||||
"_ c #6E7FAE",
|
||||
"` c #6477B2",
|
||||
"' c #6D7BB6",
|
||||
"] c #728399",
|
||||
"[ c #6F81B3",
|
||||
"{ c #7088AC",
|
||||
"} c #798EA9",
|
||||
"| c #7D8EAF",
|
||||
" . c #7B88B8",
|
||||
".. c #7C89BA",
|
||||
"X. c #7C88BE",
|
||||
"o. c #7EB69A",
|
||||
"O. c #7CA2A1",
|
||||
"+. c #C27A86",
|
||||
"@. c #C37E8F",
|
||||
"#. c #C47E8A",
|
||||
"$. c #988B9F",
|
||||
"%. c #9A899C",
|
||||
"&. c #9D8B9E",
|
||||
"*. c #808CBD",
|
||||
"=. c #808FBD",
|
||||
"-. c #8195AD",
|
||||
";. c #8191B8",
|
||||
":. c #8995B4",
|
||||
">. c #8A95BE",
|
||||
",. c #9D8EA1",
|
||||
"<. c #9D99AE",
|
||||
"1. c #8DA0B2",
|
||||
"2. c #88A0BB",
|
||||
"3. c #8DA3BD",
|
||||
"4. c #8DA4BC",
|
||||
"5. c #8FA5BF",
|
||||
"6. c #8AB4A9",
|
||||
"7. c #90A2BA",
|
||||
"8. c #90A4B9",
|
||||
"9. c #93A4BC",
|
||||
"0. c #93A8BF",
|
||||
"q. c #99A9BF",
|
||||
"w. c #8E9EC4",
|
||||
"e. c #96A4C6",
|
||||
"r. c #92ABC6",
|
||||
"t. c #97AEC8",
|
||||
"y. c #9AA3D4",
|
||||
"u. c #9CA5D7",
|
||||
"i. c #9EB4CD",
|
||||
"p. c #A0A7CC",
|
||||
"a. c #A7AFD2",
|
||||
"s. c #A3B2C4",
|
||||
"d. c #A4B7CD",
|
||||
"f. c #A8B2CF",
|
||||
"g. c #ACB5CB",
|
||||
"h. c #AFBCCA",
|
||||
"j. c #A0B3D1",
|
||||
"k. c #A6B1D0",
|
||||
"l. c #A5BCD7",
|
||||
"z. c #AFB9D5",
|
||||
"x. c #B1BFCE",
|
||||
"c. c #B6BCDB",
|
||||
"v. c #ABC1D4",
|
||||
"b. c #AEC4D6",
|
||||
"n. c #B3C8D8",
|
||||
"m. c #B3C8DC",
|
||||
"M. c #B6CADA",
|
||||
"N. c #BCCAD9",
|
||||
"B. c #BECBDA",
|
||||
"V. c #BBC3E3",
|
||||
"C. c #C3818D",
|
||||
"Z. c #C68D9B",
|
||||
"A. c #C0C5D4",
|
||||
"S. c #C3CEDF",
|
||||
"D. c #C5D1DF",
|
||||
"F. c #C6CDE2",
|
||||
"G. c #C9CDE3",
|
||||
"H. c #C8CEE0",
|
||||
"J. c #C4D1E1",
|
||||
"K. c #CBD6E2",
|
||||
"L. c #CED3E3",
|
||||
"P. c #CFD3EE",
|
||||
"I. c #CFD5E9",
|
||||
"U. c #D3D7EA",
|
||||
"Y. c #D5D8E7",
|
||||
"T. c #D8DCE9",
|
||||
"R. c #DADDEC",
|
||||
"E. c #DCDFED",
|
||||
"W. c #DCE0EF",
|
||||
"Q. c #E1E3EF",
|
||||
"!. c #E1E3F2",
|
||||
"~. c #E1E3F3",
|
||||
"^. c #E1E5F3",
|
||||
"/. c #E8EAF7",
|
||||
"(. c #EAECF5",
|
||||
"). c #F3F2F9",
|
||||
"_. c #F5F5F8",
|
||||
"`. c #F6F7FA",
|
||||
"'. c #F9FAFF",
|
||||
"]. c gray100",
|
||||
"[. c None",
|
||||
/* pixels */
|
||||
"[.[.[.[.$ 9 [ e.w.U & [.[.[.[.[.",
|
||||
"[.[.[.o ~ Q._.`.].'.F.7 [.[.[.[.",
|
||||
"[.[. A U.N.g.H.Q.R./.V.; [.[.[.",
|
||||
"[.[.* ` :.;.k.R.Y.L.U.U.H [.[.",
|
||||
"[.[.8 D J R z.).(.W.G.k.' $ [.[.",
|
||||
"[.[.d y.>.B N / T.~.c.J S % [.[.",
|
||||
"[.[.w u.p.9 1 1 k.~.P n C O [.[.",
|
||||
"[.[.: X.n 3 5 3 ( =.6 G P X [.[.",
|
||||
"[.[.- I 9 k c m v k k x Z X [.[.",
|
||||
"[.[.< { M F E ( E Y N I -.@ [.[.",
|
||||
"[.[.0 >.} ) .=..._ | h.0.- [.[.",
|
||||
"[.[.g r.3.3.4.9.q.s.x.B.d., [.[.",
|
||||
"[.[.! m.v.b.n.M.B.D.D.K.J.e [.[.",
|
||||
"[.[.^ <.%.&.$.&.1.O.4.w.t.r [.[.",
|
||||
"[.[.] Z.+.C.#.@.6.o.i.i.l.f [.[.",
|
||||
"[.[.> h a y a i s s i i i # [.[."
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kppp[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #00000B",
|
||||
"X c #0C0C0E",
|
||||
"o c #000017",
|
||||
"O c #000618",
|
||||
"+ c #090C17",
|
||||
"@ c #121217",
|
||||
"# c #12141A",
|
||||
"$ c #000023",
|
||||
"% c #010A26",
|
||||
"& c #00092D",
|
||||
"* c #010D30",
|
||||
"= c #03102E",
|
||||
"- c #071437",
|
||||
"; c #091638",
|
||||
": c #0A193F",
|
||||
"> c #07163C",
|
||||
", c #1F1F2A",
|
||||
"< c #1B1E24",
|
||||
"1 c #1F212C",
|
||||
"2 c #1D2539",
|
||||
"3 c #2A2D38",
|
||||
"4 c #2C313C",
|
||||
"5 c #051741",
|
||||
"6 c #00154B",
|
||||
"7 c #0B1941",
|
||||
"8 c #0A1D4B",
|
||||
"9 c #081D55",
|
||||
"0 c #001E66",
|
||||
"q c #09215E",
|
||||
"w c #13224E",
|
||||
"e c #122556",
|
||||
"r c #05226A",
|
||||
"t c #0A256B",
|
||||
"y c #022374",
|
||||
"u c #052877",
|
||||
"i c #07287A",
|
||||
"p c #0C2D7C",
|
||||
"a c #0F2B72",
|
||||
"s c #122E74",
|
||||
"d c #1C3064",
|
||||
"f c #11317E",
|
||||
"g c #1A3372",
|
||||
"h c #1A367B",
|
||||
"j c #373945",
|
||||
"k c #25386B",
|
||||
"l c #233B7B",
|
||||
"z c #283D7A",
|
||||
"x c #3A4252",
|
||||
"c c #444C5C",
|
||||
"v c #4B505E",
|
||||
"b c #4A5364",
|
||||
"n c #4C5769",
|
||||
"m c #555A69",
|
||||
"M c #5A6679",
|
||||
"N c #0F2F80",
|
||||
"B c #0F3186",
|
||||
"V c #133280",
|
||||
"C c #183784",
|
||||
"Z c #1C3A85",
|
||||
"A c #1E3E8A",
|
||||
"S c #213E88",
|
||||
"D c #283F80",
|
||||
"F c #274287",
|
||||
"G c #25418A",
|
||||
"H c #2D4584",
|
||||
"J c #29448C",
|
||||
"K c #2E4A8F",
|
||||
"L c #2E4990",
|
||||
"P c #2A4693",
|
||||
"I c #344B8D",
|
||||
"U c #384F8D",
|
||||
"Y c #3D4F85",
|
||||
"T c #334D92",
|
||||
"R c #375094",
|
||||
"E c #3A5293",
|
||||
"W c #3B5698",
|
||||
"Q c #3D57A1",
|
||||
"! c #465887",
|
||||
"~ c #415490",
|
||||
"^ c #405894",
|
||||
"/ c #455C9B",
|
||||
"( c #485F9E",
|
||||
") c #465DA1",
|
||||
"_ c #4B629D",
|
||||
"` c #43629A",
|
||||
"' c #576588",
|
||||
"] c #53669A",
|
||||
"[ c #546997",
|
||||
"{ c #4D62A1",
|
||||
"} c #4B62A8",
|
||||
"| c #5066A2",
|
||||
" . c #596FA6",
|
||||
".. c #596DAA",
|
||||
"X. c #5468A7",
|
||||
"o. c #566AB0",
|
||||
"O. c #596EB2",
|
||||
"+. c #5C75A7",
|
||||
"@. c #66758C",
|
||||
"#. c #64719A",
|
||||
"$. c #7E7E96",
|
||||
"%. c #787F99",
|
||||
"&. c #6174A4",
|
||||
"*. c #6174AC",
|
||||
"=. c #657AAD",
|
||||
"-. c #6171B0",
|
||||
";. c #6B7CB1",
|
||||
":. c #36AB39",
|
||||
">. c #5B997B",
|
||||
",. c #629C74",
|
||||
"<. c #658D8C",
|
||||
"1. c #6E829D",
|
||||
"2. c #6E84A3",
|
||||
"3. c #6F81B4",
|
||||
"4. c #758BAB",
|
||||
"5. c #7883AF",
|
||||
"6. c #7C88A6",
|
||||
"7. c #7A8DAA",
|
||||
"8. c #7689A2",
|
||||
"9. c #7282B3",
|
||||
"0. c #7584BD",
|
||||
"q. c #7987B9",
|
||||
"w. c #7A8BB4",
|
||||
"e. c #7C89BC",
|
||||
"r. c #7C91AA",
|
||||
"t. c #7C96B3",
|
||||
"y. c #7F97B8",
|
||||
"u. c #7F9AB7",
|
||||
"i. c #7596B5",
|
||||
"p. c #77BE85",
|
||||
"a. c #7181C1",
|
||||
"s. c #7887C4",
|
||||
"d. c #7888C6",
|
||||
"f. c #7F8CC8",
|
||||
"g. c #7CC385",
|
||||
"h. c #BA434E",
|
||||
"j. c #BB5760",
|
||||
"k. c #BD5F66",
|
||||
"l. c #A66774",
|
||||
"z. c #AD6A76",
|
||||
"x. c #B86169",
|
||||
"c. c #DA2628",
|
||||
"v. c #DA2526",
|
||||
"b. c #C33D45",
|
||||
"n. c #C05159",
|
||||
"m. c #D57277",
|
||||
"M. c #DD7174",
|
||||
"N. c #E35F5F",
|
||||
"B. c #E36666",
|
||||
"V. c #9C7180",
|
||||
"C. c #957486",
|
||||
"Z. c #907F94",
|
||||
"A. c #88909F",
|
||||
"S. c #91879E",
|
||||
"D. c #94899B",
|
||||
"F. c #8E8EA3",
|
||||
"G. c #818EBE",
|
||||
"H. c #8094AA",
|
||||
"J. c #809AAD",
|
||||
"K. c #8C96AC",
|
||||
"L. c #8F9BAE",
|
||||
"P. c #8190BC",
|
||||
"I. c #829BB5",
|
||||
"U. c #849DBA",
|
||||
"Y. c #8A9DB3",
|
||||
"T. c #8C9CBA",
|
||||
"R. c #8692B8",
|
||||
"E. c #919CB7",
|
||||
"W. c #929FBE",
|
||||
"Q. c #8CA2BB",
|
||||
"!. c #86A1BD",
|
||||
"~. c #97A0AF",
|
||||
"^. c #93A1B5",
|
||||
"/. c #94A5BA",
|
||||
"(. c #94A8BD",
|
||||
"). c #9AA3B2",
|
||||
"_. c #99AABA",
|
||||
"`. c #A1A8B5",
|
||||
"'. c #A1A9BD",
|
||||
"]. c #A4B1BF",
|
||||
"[. c #BBAEBC",
|
||||
"{. c #8492C2",
|
||||
"}. c #8B95C9",
|
||||
"|. c #8E98CB",
|
||||
" X c #8B9BC1",
|
||||
".X c #919DC5",
|
||||
"XX c #939CCB",
|
||||
"oX c #8BA5C4",
|
||||
"OX c #8AA9C5",
|
||||
"+X c #92A2C3",
|
||||
"@X c #96A0CB",
|
||||
"#X c #94AAC2",
|
||||
"$X c #98A2CC",
|
||||
"%X c #9AAEC3",
|
||||
"&X c #9AA3D1",
|
||||
"*X c #9DAAD1",
|
||||
"=X c #9CB0C5",
|
||||
"-X c #9BB1C9",
|
||||
";X c #A3ADC7",
|
||||
":X c #A3ACCB",
|
||||
">X c #A4ACD4",
|
||||
",X c #A5B3C2",
|
||||
"<X c #A2B5CA",
|
||||
"1X c #A6B8CD",
|
||||
"2X c #ABB5CF",
|
||||
"3X c #AFBAC6",
|
||||
"4X c #AABACC",
|
||||
"5X c #A7B0D9",
|
||||
"6X c #AAB3D2",
|
||||
"7X c #ACB4D9",
|
||||
"8X c #ABBDD1",
|
||||
"9X c #B0B6CA",
|
||||
"0X c #B2BAD4",
|
||||
"qX c #B8BED2",
|
||||
"wX c #B8BFDF",
|
||||
"eX c #B2BFDB",
|
||||
"rX c #AEC3D7",
|
||||
"tX c #B3C3D3",
|
||||
"yX c #BAC3D3",
|
||||
"uX c #BDC2DF",
|
||||
"iX c #B9C8D6",
|
||||
"pX c #BCCAD8",
|
||||
"aX c #ACC9E0",
|
||||
"sX c #BFC6E2",
|
||||
"dX c #B1C4E0",
|
||||
"fX c #CE969E",
|
||||
"gX c #CE9CA5",
|
||||
"hX c #C5C9D7",
|
||||
"jX c #C5CCDC",
|
||||
"kX c #C8CDDF",
|
||||
"lX c #C5D2DE",
|
||||
"zX c #C1C6E1",
|
||||
"xX c #C4CAE1",
|
||||
"cX c #C8CDE4",
|
||||
"vX c #CACFEA",
|
||||
"bX c #C6D3E0",
|
||||
"nX c #CBD3E4",
|
||||
"mX c #CED2E8",
|
||||
"MX c #CEDAE5",
|
||||
"NX c #D0D5E5",
|
||||
"BX c #D2D6E9",
|
||||
"VX c #D4DBE6",
|
||||
"CX c #D6DAEB",
|
||||
"ZX c #DADDEC",
|
||||
"AX c #DCDFF1",
|
||||
"SX c #DCE1EC",
|
||||
"DX c #DEE1F0",
|
||||
"FX c #E0E3ED",
|
||||
"GX c #E3E5F1",
|
||||
"HX c #E6E8F3",
|
||||
"JX c #EAECF5",
|
||||
"KX c #E8ECFA",
|
||||
"LX c #EEF0F6",
|
||||
"PX c #F1F2F7",
|
||||
"IX c #F3F4FA",
|
||||
"UX c #FBFBFE",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYX0 u C F E K h 9 $ YXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYX6 s +.2XZXPXIXPXJXuXy.k o YXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYX6 / cXUXUXIXLXPXIXUXUXUXKXe.- YXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYX& .HXIXJXHXFXFXJXLXJXJXJXLXIX*X7 YXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYX% ) AXHXNXhXyXqXyXFXJXGXHXGXFXGXKX{.* YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYX h 5XnX9X'.'.;X:X2XZXVXZXZXNXCXCXCXvXE . YXYXYXYXYXYX",
|
||||
"YXYXYXYXYX5 ..*XE.K.T..XT..XcXZXjXkXqXkXCXBXvXcXs.8 YXYXYXYXYX",
|
||||
"YXYXYXYX l X.&.6.w.e.w.+XNXHXGXHXFXZXZXBXmXcXhX}.I YXYXYXYXYX",
|
||||
"YXYXYXYXO ) S g &.=.=.*.0XPXHXHXHXGXAXCXvXjXcX7X}...% YXYXYXYXYX",
|
||||
"YXYXYXYX* } ;.~ ~ | | _ =.CXUXUXLXHXDXCXvX0X6X5.{.a.: YXYXYXYXYX",
|
||||
"YXYXYXYX7 a.XX*X@X[ H W T .W.T.HXLXDXCXmXhX.X] T O.w YXYXYXYX",
|
||||
"YXYXYXYX7 d.}.$X5X:X' h S Z f h qXIXAXBXvXXXz Y -.Q 8 YXYXYXYX",
|
||||
"YXYXYXYX; 0.|.XX>XwX#.t p f f y R.IXCXvXzXU a U T V 5 YXYXYXYX",
|
||||
"YXYXYXYX+ O.XXXX7XR.q p p p p y ;.JXCXxX;.r d 9...P & YXYXYXYXYX",
|
||||
"YXYXYXYX ~ |.XX#.H i p p p p u J cXCXXXF r e .X&XE . YXYXYXYXYX",
|
||||
"YXYXYXYXYXw f.0.9 u f p f f C C f ;.R.S r T D ;.s.g YXYXYXYXYX",
|
||||
"YXYXYXYXYX2 X...g a V C S S J P S S C V p J J Z A ! . YXYXYXYXYX",
|
||||
"YXYXYXYXYXc +.{ L F J J T E E ~ E E L J S A S i ` 8.X YXYXYXYXYX",
|
||||
"YXYXYXYXYXn !.` Z T ( ( ) { | | { _ ( / / T f ^ Q.r.# YXYXYXYXYX",
|
||||
"YXYXYXYX ' I.r.] T ( .=.;.;.;.;.;.*.../ J ] ,X_.u.1 YXYXYXYXYX",
|
||||
"YXYXYXYX @.U.r.J.2.X.*.0.e.{.{.G.q.;.| _ 4.,X3X%XU.4 YXYXYXYXYX",
|
||||
"YXYXYXYXX %.!.t.r.J.H.w.w.w.e.e.e.q.9.7./.,X,XyX4XU.x YXYXYXYX",
|
||||
"YXYXYXYX@ 7.oXU.Q.U.Y.L.Y.Y.Y.Y.E.^._.].,X4XtXpXtXoXb YXYXYXYX",
|
||||
"YXYXYXYX, Q.(.(.#X#X%X(.(.=X(.].,X<X4XtXqXtXiXiXiX-XM YXYXYXYX",
|
||||
"YXYXYXYX3 #X#X#X#X#X-X=X=X-X4X4X1XrX4XtXtXtXiXpXiX1X@. YXYXYXYX",
|
||||
"YXYXYXYXj jXbXbXbXpXbXlXMXMXlXMXlXVXMXSXVXVXSXSXSXMXK. YXYXYXYX",
|
||||
"YXYXYXYXb 1X-X(.(.-X^.=X(./.-X~.].=XQ.(.=X=X%X%X%X-XY.X YXYXYXYX",
|
||||
"YXYXYXYXc u.i.l.l.%.k.1.z.C.1.x.4.4.,.<.t.t.t.u.t.u.1.@ YXYXYXYX",
|
||||
"YXYXYXYXb OXS.v.D.h.n.D.v.F.b.j.OX>.:.u.U.U.U.U.U.Q.7.# YXYXYXYX",
|
||||
"YXYXYXYXm aXgXM.iXB.[.fXm.iXN.[.rXg.p.rX8X8X8X8X8XrX^.@ YXYXYXYX",
|
||||
"YXYXYXYX1 F.`.).).`.).).).).`.).).`.).).).).).).).).m YXYXYXYX",
|
||||
"YXYXYXYX . . . . . . . YXYXYXYX"
|
||||
};
|
@ -0,0 +1,196 @@
|
||||
/* XPM */
|
||||
static char *krdc-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 174 2",
|
||||
" c #000000",
|
||||
". c #000001",
|
||||
"X c #010101",
|
||||
"o c #000002",
|
||||
"O c #010002",
|
||||
"+ c #020203",
|
||||
"@ c #020204",
|
||||
"# c #030304",
|
||||
"$ c #050506",
|
||||
"% c #070607",
|
||||
"& c #060609",
|
||||
"* c #070708",
|
||||
"= c #07070D",
|
||||
"- c #09090D",
|
||||
"; c #08080F",
|
||||
": c #09090E",
|
||||
"> c #0A0A0D",
|
||||
", c #090910",
|
||||
"< c #0D0D10",
|
||||
"1 c #0E0D11",
|
||||
"2 c #0C0C16",
|
||||
"3 c #0F0F15",
|
||||
"4 c #0E0E1A",
|
||||
"5 c #101013",
|
||||
"6 c #101015",
|
||||
"7 c #121215",
|
||||
"8 c #17171D",
|
||||
"9 c #18161C",
|
||||
"0 c #1A1A1F",
|
||||
"q c #161520",
|
||||
"w c #232328",
|
||||
"e c #22222D",
|
||||
"r c #26252E",
|
||||
"t c #222335",
|
||||
"y c #2A2A36",
|
||||
"u c #2F2F37",
|
||||
"i c #2F2F42",
|
||||
"p c #343440",
|
||||
"a c #393943",
|
||||
"s c #353550",
|
||||
"d c #373750",
|
||||
"f c #393A5C",
|
||||
"g c #3D3E64",
|
||||
"h c #43434D",
|
||||
"j c #414155",
|
||||
"k c #4A4A58",
|
||||
"l c #55556F",
|
||||
"z c #57586E",
|
||||
"x c #545578",
|
||||
"c c #68677E",
|
||||
"v c #1A6FEC",
|
||||
"b c #1572EE",
|
||||
"n c #1972EC",
|
||||
"m c #1C7AEE",
|
||||
"M c #257CED",
|
||||
"N c #6A6B82",
|
||||
"B c #6E6E94",
|
||||
"V c #6B6F9D",
|
||||
"C c #777788",
|
||||
"Z c #75758D",
|
||||
"A c #7F7F90",
|
||||
"S c #7A7BA0",
|
||||
"D c #787BA7",
|
||||
"F c #7F7FA0",
|
||||
"G c #1F80F3",
|
||||
"H c #1F81F7",
|
||||
"J c #2282EF",
|
||||
"K c #2688F3",
|
||||
"L c #278CF7",
|
||||
"P c #258BFC",
|
||||
"I c #2880F3",
|
||||
"U c #288AFB",
|
||||
"Y c #2A91F7",
|
||||
"T c #2D97FE",
|
||||
"R c #2F97FC",
|
||||
"E c #3488EF",
|
||||
"W c #348BF9",
|
||||
"Q c #3198F8",
|
||||
"! c #309CFD",
|
||||
"~ c #339FFF",
|
||||
"^ c #3DA9FE",
|
||||
"/ c #3DAAFF",
|
||||
"( c #3FADFF",
|
||||
") c #7D829B",
|
||||
"_ c #7B80B3",
|
||||
"` c #4597F5",
|
||||
"' c #5192F2",
|
||||
"] c #40ABFD",
|
||||
"[ c #42AEFD",
|
||||
"{ c #4AB2FE",
|
||||
"} c #4AB8FF",
|
||||
"| c #4CBCFF",
|
||||
" . c #4FBEFE",
|
||||
".. c #4FBEFF",
|
||||
"X. c #5AA8FB",
|
||||
"o. c #799CDA",
|
||||
"O. c #679FF4",
|
||||
"+. c #61B6F5",
|
||||
"@. c #6CB0F6",
|
||||
"#. c #56C6FF",
|
||||
"$. c #5FC5FA",
|
||||
"%. c #59CBFE",
|
||||
"&. c #5ACBFF",
|
||||
"*. c #60C2FD",
|
||||
"=. c #63D3FF",
|
||||
"-. c #65D2FC",
|
||||
";. c #6AD8FE",
|
||||
":. c #7ECFFA",
|
||||
">. c #75DAFD",
|
||||
",. c #838393",
|
||||
"<. c #888BB7",
|
||||
"1. c #8891AD",
|
||||
"2. c #8E94B4",
|
||||
"3. c #8997BA",
|
||||
"4. c #9696B0",
|
||||
"5. c #999AB2",
|
||||
"6. c #9B9BB4",
|
||||
"7. c #989EBC",
|
||||
"8. c #9A9CBD",
|
||||
"9. c #819ACB",
|
||||
"0. c #89ABE7",
|
||||
"q. c #8EAFED",
|
||||
"w. c #83AEF1",
|
||||
"e. c #85ADF3",
|
||||
"r. c #96AFE3",
|
||||
"t. c #A1A0C0",
|
||||
"y. c #A4A5C0",
|
||||
"u. c #ABACCA",
|
||||
"i. c #AEAFCC",
|
||||
"p. c #AFAFCF",
|
||||
"a. c #A1A8DA",
|
||||
"s. c #A4ADDD",
|
||||
"d. c #A5ADDF",
|
||||
"f. c #B5B6C5",
|
||||
"g. c #B3B7D3",
|
||||
"h. c #B3B7DF",
|
||||
"j. c #B5BADE",
|
||||
"k. c #A8B1E1",
|
||||
"l. c #AEB5E4",
|
||||
"z. c #AABCED",
|
||||
"x. c #B1B6E2",
|
||||
"c. c #B0BFEF",
|
||||
"v. c #B9BCE1",
|
||||
"b. c #87DFFD",
|
||||
"n. c #9ECBF0",
|
||||
"m. c #98C9FB",
|
||||
"M. c #99D6F8",
|
||||
"N. c #BEC1DD",
|
||||
"B. c #A4C9F2",
|
||||
"V. c #A6D2F2",
|
||||
"C. c #AED0F9",
|
||||
"Z. c #BEC6E4",
|
||||
"A. c #B9C0E8",
|
||||
"S. c #BCC7EE",
|
||||
"D. c #B2C9F3",
|
||||
"F. c #BECCF0",
|
||||
"G. c #B0D5F5",
|
||||
"H. c #B6D3F6",
|
||||
"J. c #C0C2E3",
|
||||
"K. c #C1C5E6",
|
||||
"L. c #C6C8E5",
|
||||
"P. c #C4C8E8",
|
||||
"I. c #C4CBF3",
|
||||
"U. c #C0D0EF",
|
||||
"Y. c #CED3F1",
|
||||
"T. c #CCD3F6",
|
||||
"R. c #CED4F5",
|
||||
"E. c #D7D8E6",
|
||||
"W. c #D7DBF4",
|
||||
"Q. c #E4E6F6",
|
||||
"!. c #E3E7FA",
|
||||
"~. c #E5E8F6",
|
||||
"^. c #F2F5FF",
|
||||
"/. c None",
|
||||
/* pixels */
|
||||
"/./././.5 7 u k Z t.p.u.j /././.",
|
||||
"/./.w C 5.y.g.Z.U.H.m.C.N # /./.",
|
||||
"/./.,.R.F.G.M.:.*.{ ~ X.) * /./.",
|
||||
"/./.A R.V.b.;.%...( ! ` 1.> /./.",
|
||||
"/./.h K.n.>.=.#.} / Y E 3.< /./.",
|
||||
"/./.0 i.B.-.&. .] Q J M 9.9 /./.",
|
||||
"/./.< 4.D.$...] Q K m n o.t /./.",
|
||||
"/././.c S.+./ R U J n n 0.a /./.",
|
||||
"/././.p j.@.! P H I ' q.7.e /./.",
|
||||
"/././.6 8.e.P W O.r.2.l 8 /./.",
|
||||
"/././.> F z.e.z.A.<.x t , /././.",
|
||||
"/./././.z v.J.W.I.a.k.s.V 4 /./.",
|
||||
"/././.9 f.~.L.P.l.l.k.D g = /./.",
|
||||
"/././.y E.^.!.Y.h.D g 4 # /././.",
|
||||
"/././.6 6.Q.N.S s = /././././.",
|
||||
"/./././.i B d , /././././././."
|
||||
};
|
@ -0,0 +1,284 @@
|
||||
/* XPM */
|
||||
static char *krdc[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 246 2",
|
||||
" c #000000",
|
||||
". c #07070D",
|
||||
"X c #08080E",
|
||||
"o c #0B0B14",
|
||||
"O c #0F0F1D",
|
||||
"+ c #111116",
|
||||
"@ c #11111B",
|
||||
"# c #141423",
|
||||
"$ c #18172F",
|
||||
"% c #1A1A23",
|
||||
"& c #19192C",
|
||||
"* c #1D1D36",
|
||||
"= c #1F1F38",
|
||||
"- c #23232B",
|
||||
"; c #28282D",
|
||||
": c #26263C",
|
||||
"> c #232346",
|
||||
", c #2E2E40",
|
||||
"< c #2D2D4B",
|
||||
"1 c #353543",
|
||||
"2 c #36364E",
|
||||
"3 c #353652",
|
||||
"4 c #36365F",
|
||||
"5 c #3A3A5B",
|
||||
"6 c #3F3E73",
|
||||
"7 c #414050",
|
||||
"8 c #43435D",
|
||||
"9 c #494954",
|
||||
"0 c #4B4B58",
|
||||
"q c #51515C",
|
||||
"w c #474766",
|
||||
"e c #41416B",
|
||||
"r c #4A4A63",
|
||||
"t c #4A4A68",
|
||||
"y c #454572",
|
||||
"u c #48497F",
|
||||
"i c #5D5D6A",
|
||||
"p c #565673",
|
||||
"a c #595974",
|
||||
"s c #626270",
|
||||
"d c #67677B",
|
||||
"f c #0660E9",
|
||||
"g c #0E66E9",
|
||||
"h c #0E6AE9",
|
||||
"j c #136CEB",
|
||||
"k c #116EF0",
|
||||
"l c #1672EB",
|
||||
"z c #1A76EC",
|
||||
"x c #1C79EB",
|
||||
"c c #1576F5",
|
||||
"v c #1875F1",
|
||||
"b c #1C7CF3",
|
||||
"n c #1B7EFC",
|
||||
"m c #227DEC",
|
||||
"M c #3B7FEC",
|
||||
"N c #474685",
|
||||
"B c #555789",
|
||||
"V c #585889",
|
||||
"C c #5C5B93",
|
||||
"Z c #5B5C9C",
|
||||
"A c #5F6089",
|
||||
"S c #606083",
|
||||
"D c #6B6B8A",
|
||||
"F c #666692",
|
||||
"G c #61629B",
|
||||
"H c #6C6C98",
|
||||
"J c #727281",
|
||||
"K c #70708A",
|
||||
"L c #757490",
|
||||
"P c #71719C",
|
||||
"I c #797995",
|
||||
"U c #7F7E9F",
|
||||
"Y c #6668A8",
|
||||
"T c #767AAE",
|
||||
"R c #7D7CA6",
|
||||
"E c #7C7EB5",
|
||||
"W c #1D82FD",
|
||||
"Q c #2280EE",
|
||||
"! c #2283F2",
|
||||
"~ c #2184FA",
|
||||
"^ c #2689F6",
|
||||
"/ c #238AFC",
|
||||
"( c #298CF5",
|
||||
") c #288DFB",
|
||||
"_ c #2490FE",
|
||||
"` c #2D92F7",
|
||||
"' c #2D94FB",
|
||||
"] c #3788EC",
|
||||
"[ c #3E83ED",
|
||||
"{ c #3284F5",
|
||||
"} c #388AF5",
|
||||
"| c #3096F7",
|
||||
" . c #329CFD",
|
||||
".. c #36A2FF",
|
||||
"X. c #3BA5FC",
|
||||
"o. c #3DAAFE",
|
||||
"O. c #4B8AEE",
|
||||
"+. c #4592EF",
|
||||
"@. c #4498F2",
|
||||
"#. c #4D94F7",
|
||||
"$. c #5894E8",
|
||||
"%. c #41AFFE",
|
||||
"&. c #4BA6FE",
|
||||
"*. c #44B2FF",
|
||||
"=. c #48B6FF",
|
||||
"-. c #4BBAFF",
|
||||
";. c #5FA6F7",
|
||||
":. c #50BEFF",
|
||||
">. c #609AF0",
|
||||
",. c #6AAAE7",
|
||||
"<. c #61B2EC",
|
||||
"1. c #6AB8FD",
|
||||
"2. c #70A3F2",
|
||||
"3. c #7DA9F1",
|
||||
"4. c #7DBCFE",
|
||||
"5. c #53C2FF",
|
||||
"6. c #5AC3FB",
|
||||
"7. c #59CAFF",
|
||||
"8. c #5ED0FF",
|
||||
"9. c #62D4FF",
|
||||
"0. c #67D8FF",
|
||||
"q. c #6CD7FC",
|
||||
"w. c #6AD9FF",
|
||||
"e. c #73DBFF",
|
||||
"r. c #7CDBFC",
|
||||
"t. c #86869C",
|
||||
"y. c #88889C",
|
||||
"u. c #8181A5",
|
||||
"i. c #8585A9",
|
||||
"p. c #8988AB",
|
||||
"a. c #8585B4",
|
||||
"s. c #8C8CB4",
|
||||
"d. c #9393B5",
|
||||
"f. c #9696BD",
|
||||
"g. c #9A99B0",
|
||||
"h. c #9B9BBD",
|
||||
"j. c #8387C9",
|
||||
"k. c #8B8FC7",
|
||||
"l. c #8D91CA",
|
||||
"z. c #9395C5",
|
||||
"x. c #9195CB",
|
||||
"c. c #9798CB",
|
||||
"v. c #9E9EC5",
|
||||
"b. c #9D9ECC",
|
||||
"n. c #969BD4",
|
||||
"m. c #989CD4",
|
||||
"M. c #9EA1D3",
|
||||
"N. c #9CA2D9",
|
||||
"B. c #80AFEA",
|
||||
"V. c #80AAF1",
|
||||
"C. c #8ABDE8",
|
||||
"Z. c #88B4F4",
|
||||
"A. c #94A7E0",
|
||||
"S. c #95B4EB",
|
||||
"D. c #9DBCEA",
|
||||
"F. c #96B8F3",
|
||||
"G. c #A09FC9",
|
||||
"H. c #A4A3C4",
|
||||
"J. c #A9A8C4",
|
||||
"K. c #ABABCC",
|
||||
"L. c #A1A7D7",
|
||||
"P. c #A4AADA",
|
||||
"I. c #ACADD4",
|
||||
"U. c #A9AEDC",
|
||||
"Y. c #A5B5DF",
|
||||
"T. c #ABB1DD",
|
||||
"R. c #B0B0C8",
|
||||
"E. c #B4B4D5",
|
||||
"W. c #B3B5DA",
|
||||
"Q. c #B7B9DD",
|
||||
"!. c #BABAD4",
|
||||
"~. c #BCBEDD",
|
||||
"^. c #A0A8E2",
|
||||
"/. c #ACB5E3",
|
||||
"(. c #AEBAE7",
|
||||
"). c #AEBBEB",
|
||||
"_. c #A6BDF0",
|
||||
"`. c #B2B7E4",
|
||||
"'. c #B3BAE3",
|
||||
"]. c #B8BEE5",
|
||||
"[. c #84C0E9",
|
||||
"{. c #83CCF3",
|
||||
"}. c #81DFFF",
|
||||
"|. c #8FDAF7",
|
||||
" X c #9BCDF0",
|
||||
".X c #9FCFF9",
|
||||
"XX c #91D8F7",
|
||||
"oX c #8BE1FF",
|
||||
"OX c #92E4FF",
|
||||
"+X c #9FE5FE",
|
||||
"@X c #A6C3E6",
|
||||
"#X c #AAC0E3",
|
||||
"$X c #A8C7F6",
|
||||
"%X c #A2D0EF",
|
||||
"&X c #B1CEED",
|
||||
"*X c #BFC0E1",
|
||||
"=X c #BDC3EC",
|
||||
"-X c #B7C1F3",
|
||||
";X c #BBC5F3",
|
||||
":X c #BCD1F2",
|
||||
">X c #BBD9F7",
|
||||
",X c #A9EAFE",
|
||||
"<X c #C7C3D7",
|
||||
"1X c #C2C2DB",
|
||||
"2X c #CACADD",
|
||||
"3X c #C2C3E3",
|
||||
"4X c #C4C6E9",
|
||||
"5X c #C7C8E6",
|
||||
"6X c #C4C8EA",
|
||||
"7X c #C9CAE3",
|
||||
"8X c #C9CCEB",
|
||||
"9X c #C4CBF3",
|
||||
"0X c #C5CDF9",
|
||||
"qX c #CACEF3",
|
||||
"wX c #CFD1EE",
|
||||
"eX c #C4D2F5",
|
||||
"rX c #C6D1FF",
|
||||
"tX c #CBD2F5",
|
||||
"yX c #CBD4FA",
|
||||
"uX c #CFDCF7",
|
||||
"iX c #CED8FE",
|
||||
"pX c #D6D4E1",
|
||||
"aX c #D2D4ED",
|
||||
"sX c #DCDCEB",
|
||||
"dX c #D2D6F3",
|
||||
"fX c #D0D7F9",
|
||||
"gX c #D5DAF5",
|
||||
"hX c #D3DBFC",
|
||||
"jX c #D9DBF2",
|
||||
"kX c #DBDEF9",
|
||||
"lX c #CCE6FF",
|
||||
"zX c #DFE1EF",
|
||||
"xX c #D0E0F7",
|
||||
"cX c #DBE2F5",
|
||||
"vX c #DBE0F9",
|
||||
"bX c #DCEDFE",
|
||||
"nX c #E2E2F3",
|
||||
"mX c #E2E6FA",
|
||||
"MX c #E6E8F4",
|
||||
"NX c #E4E9FC",
|
||||
"BX c #EAEDFC",
|
||||
"VX c #EDF0FD",
|
||||
"CX c #F3F6FD",
|
||||
"ZX c #F5F8FE",
|
||||
"AX c #F9FAFE",
|
||||
"SX c None",
|
||||
/* pixels */
|
||||
"SXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSXK I u.s.s.i.u.r SXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXSXSXSXSXSXI d L d.v.K.I.W.*XjX*XR % SXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXJ t.g.J.J.R.E.~.3X8XgXNXBXVXbXbXZXf.: SXSXSXSXSXSX",
|
||||
"SXSXSXSXSXq R.!.1X*X3X8XfXkXkXvXvXuX>X%X1.&.&.lXK.2 SXSXSXSXSXSX",
|
||||
"SXSXSXSXi 7XjXtXtXyXqXtX:X&X Xr.6.-.%.o... ./ 4.<Xt SXSXSXSXSXSX",
|
||||
"SXSXSXSXs 2XhXyX].#X%XXXr.q.6.7.5.-.*.o... .) <.pXa SXSXSXSXSXSX",
|
||||
"SXSXSXSXi 1XhX0X@X,XOX}.e.0.9.7.5.-.%.o... .W @.zXD SXSXSXSXSXSX",
|
||||
"SXSXSXSX9 !.kXyX@X+X|.}.q.9.7.7.5.=.*.o... .W ] zXK SXSXSXSXSXSX",
|
||||
"SXSXSXSXSXt.aXiXY.XX}.e.0.9.7.5.5.=.o.o...` x m cXU SXSXSXSXSXSX",
|
||||
"SXSXSXSXSX0 5XhX/.{.e.w.9.9.6.5.-.=.o.o.| Q x l uXp. SXSXSXSXSX",
|
||||
"SXSXSXSXSX; E.tX=X[.w.0.9.7.5.:.=.%.o.| Q Q x h $XJ.. SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXH.gX9XC.9.8.7.5.5.-.%.o.| ( Q Q z h Z.E.o SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXd.7XiXD.7.7.5.5.-.%...` ( ( W x l h >.8X& SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXI E.hX(.6.5.5.-.o. .` ` ( Q b x l h O.jX: SXSXSXSXSX",
|
||||
"SXSXSXSXSXSX7 H.tX=X<.-.=.o. .| ` ( ! W x l j g [ NX8 SXSXSXSX",
|
||||
"SXSXSXSXSXSX- f.tXqX,.=.o...' ' ) ^ ! x v j g f O.VXa SXSXSXSX",
|
||||
"SXSXSXSXSXSXSXK 6XgX3.%. . .) ) ~ Q b z k j [ 3.VXzXw SXSXSXSX",
|
||||
"SXSXSXSXSXSXSX: E.gXS.X.' ) ) / W W c v O.F.NXmXE.H # SXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXs.qX).@.) / ~ W b { 2.eXBXaXz.G * SXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXu.=X;X$./ W n { 3.eXcX8Xa.S < O SXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXR W.fXA.} #._.gXdX].E 5 @ X SXSXSXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXS G.hXtX;XyX6XT.U.=Xl.l.l.T 3 # SXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSX+ H P.=X].I.4XvXhXiXm.U./.(.-XN.T B o SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSX@ I 3XQ.b.jXVXNXhXiXm.P.^.U.;X0X;Xj.$ SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXh.MXCXCX!.7XBXgX`.x.x./.`.;X;XA.Y N o SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSX% 2XCXBXBXwXb.W.c.M.`.=X0X;X^.Y u > o SXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSX5 MXAXVXVXBXNX6XgXkXhX=Xm.Z 6 o SXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSX3 jXAXCXCXBXBXNXNX9XM.G y = o SXSXSXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXX H.VXCXVXVXmX4Xz.C 4 SXSXSXSXSXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXF !.CXVX8Xz.C e & . SXSXSXSXSXSXSXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXo V z.a.C < SXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSX",
|
||||
"SXSXSXSXSXSXSXSXSX@ e 5 O SXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSXSX"
|
||||
};
|
@ -0,0 +1,241 @@
|
||||
/* XPM */
|
||||
static char *krfb-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 219 2",
|
||||
" c #000000",
|
||||
". c #000001",
|
||||
"X c #000002",
|
||||
"o c #010102",
|
||||
"O c #010103",
|
||||
"+ c #020202",
|
||||
"@ c #020203",
|
||||
"# c #050707",
|
||||
"$ c #07060A",
|
||||
"% c #04090D",
|
||||
"& c #0B0B0C",
|
||||
"* c #090912",
|
||||
"= c #0A0A11",
|
||||
"- c #0A0A12",
|
||||
"; c #080D12",
|
||||
": c #0C0B10",
|
||||
"> c #0C0C12",
|
||||
", c #0F0F11",
|
||||
"< c #0C0C16",
|
||||
"1 c #0F0E14",
|
||||
"2 c #0C151C",
|
||||
"3 c #101010",
|
||||
"4 c #111013",
|
||||
"5 c #111313",
|
||||
"6 c #131317",
|
||||
"7 c #141B1F",
|
||||
"8 c #161520",
|
||||
"9 c #171829",
|
||||
"0 c #191721",
|
||||
"q c #1E1E24",
|
||||
"w c #102338",
|
||||
"e c #282734",
|
||||
"r c #303037",
|
||||
"t c #293642",
|
||||
"y c #233550",
|
||||
"u c #263C54",
|
||||
"i c #302F40",
|
||||
"p c #3E3E4A",
|
||||
"a c #3F3F4D",
|
||||
"s c #353751",
|
||||
"d c #3D3D56",
|
||||
"f c #383959",
|
||||
"g c #3A3B58",
|
||||
"h c #3D3F64",
|
||||
"j c #374148",
|
||||
"k c #234878",
|
||||
"l c #254B7A",
|
||||
"z c #494952",
|
||||
"x c #555566",
|
||||
"c c #56556C",
|
||||
"v c #555570",
|
||||
"b c #61626E",
|
||||
"n c #2A6ADF",
|
||||
"m c #3069DF",
|
||||
"M c #3A6DD4",
|
||||
"N c #306FE3",
|
||||
"B c #337BE9",
|
||||
"V c #446D9D",
|
||||
"C c #5E6186",
|
||||
"Z c #567C9B",
|
||||
"A c #4F79A9",
|
||||
"S c #6D6C85",
|
||||
"D c #686C92",
|
||||
"F c #657E86",
|
||||
"G c #7579A9",
|
||||
"H c #7C7FAB",
|
||||
"J c #1C930C",
|
||||
"K c #1B9803",
|
||||
"L c #1B9C00",
|
||||
"P c #24A600",
|
||||
"I c #25A008",
|
||||
"U c #26AB00",
|
||||
"Y c #26AE00",
|
||||
"T c #2AAE00",
|
||||
"R c #2CA611",
|
||||
"E c #30A911",
|
||||
"W c #30B600",
|
||||
"Q c #31BA00",
|
||||
"! c #36BA00",
|
||||
"~ c #32AE37",
|
||||
"^ c #3DC300",
|
||||
"/ c #3DC700",
|
||||
"( c #3EC705",
|
||||
") c #42B61E",
|
||||
"_ c #54AE4B",
|
||||
"` c #4BBA76",
|
||||
"' c #68B863",
|
||||
"] c #7CAB7F",
|
||||
"[ c #77B177",
|
||||
"{ c #40C500",
|
||||
"} c #4BD000",
|
||||
"| c #4FD400",
|
||||
" . c #51D700",
|
||||
".. c #56D709",
|
||||
"X. c #50D800",
|
||||
"o. c #53C02F",
|
||||
"O. c #5BE000",
|
||||
"+. c #5FE500",
|
||||
"@. c #61E600",
|
||||
"#. c #60E409",
|
||||
"$. c #6AEF00",
|
||||
"%. c #6FE61B",
|
||||
"&. c #6DF400",
|
||||
"*. c #6EF600",
|
||||
"=. c #78FC04",
|
||||
"-. c #7DF21D",
|
||||
";. c #6ED270",
|
||||
":. c #338F84",
|
||||
">. c #7E8290",
|
||||
",. c #788E9B",
|
||||
"<. c #658AA3",
|
||||
"1. c #628FBA",
|
||||
"2. c #7B80B2",
|
||||
"3. c #4096DF",
|
||||
"4. c #458CEE",
|
||||
"5. c #4B80E4",
|
||||
"6. c #4C95ED",
|
||||
"7. c #5899EE",
|
||||
"8. c #55A2F9",
|
||||
"9. c #58ACFE",
|
||||
"0. c #5AADFE",
|
||||
"q. c #6495E1",
|
||||
"w. c #639BEE",
|
||||
"e. c #67B6F1",
|
||||
"r. c #63B3FF",
|
||||
"t. c #76C1FF",
|
||||
"y. c #82FE10",
|
||||
"u. c #8BFA27",
|
||||
"i. c #87F037",
|
||||
"p. c #9CFA46",
|
||||
"a. c #A1EB6D",
|
||||
"s. c #899498",
|
||||
"d. c #8A9B98",
|
||||
"f. c #8283A6",
|
||||
"g. c #8B8CA2",
|
||||
"h. c #8F9AB9",
|
||||
"j. c #9098AB",
|
||||
"k. c #9291B1",
|
||||
"l. c #83A48C",
|
||||
"z. c #86BB89",
|
||||
"x. c #90BD98",
|
||||
"c. c #9CA4B1",
|
||||
"v. c #97BAA7",
|
||||
"b. c #9699C7",
|
||||
"n. c #80A9DB",
|
||||
"m. c #8CBCE7",
|
||||
"M. c #87B5F2",
|
||||
"N. c #81BDF6",
|
||||
"B. c #85BEF8",
|
||||
"V. c #8CB3F5",
|
||||
"C. c #8EB9F1",
|
||||
"Z. c #91B3ED",
|
||||
"A. c #92BFF5",
|
||||
"S. c #9DBFF1",
|
||||
"D. c #A3A4C0",
|
||||
"F. c #A8A8C6",
|
||||
"G. c #A5ABDE",
|
||||
"H. c #A6ADDF",
|
||||
"J. c #AAB0C6",
|
||||
"K. c #B5B5D3",
|
||||
"L. c #BDBDD9",
|
||||
"P. c #A0B6EA",
|
||||
"I. c #AAB3E2",
|
||||
"U. c #AFB5E3",
|
||||
"Y. c #ACB5E7",
|
||||
"T. c #B5B9E2",
|
||||
"R. c #B8BDE3",
|
||||
"E. c #99D982",
|
||||
"W. c #A4DA98",
|
||||
"Q. c #AFDBA4",
|
||||
"!. c #B3D6B6",
|
||||
"~. c #B3D5BA",
|
||||
"^. c #B7E0AB",
|
||||
"/. c #9EC3D6",
|
||||
"(. c #83C7FF",
|
||||
"). c #85C8FA",
|
||||
"_. c #90C5F1",
|
||||
"`. c #93D3FF",
|
||||
"'. c #95D3FF",
|
||||
"]. c #94D5FF",
|
||||
"[. c #B4CFCF",
|
||||
"{. c #BBC6D0",
|
||||
"}. c #A0C8EA",
|
||||
"|. c #A4CCE9",
|
||||
" X c #A1CCF2",
|
||||
".X c #A5CCFB",
|
||||
"XX c #A9CAF1",
|
||||
"oX c #A5D2F7",
|
||||
"OX c #A4D3FB",
|
||||
"+X c #BAC2E1",
|
||||
"@X c #BBC4E6",
|
||||
"#X c #BCC0E1",
|
||||
"$X c #B5D5F7",
|
||||
"%X c #B4DFFC",
|
||||
"&X c #ABE2FF",
|
||||
"*X c #B0E1F8",
|
||||
"=X c #BCE6FF",
|
||||
"-X c #BBECFF",
|
||||
";X c #C1D7CB",
|
||||
":X c #CCCFED",
|
||||
">X c #C2D1E2",
|
||||
",X c #CAD1F7",
|
||||
"<X c #CFD6F5",
|
||||
"1X c #C7EDFE",
|
||||
"2X c #C8ECFF",
|
||||
"3X c #CAECFE",
|
||||
"4X c #CBEEFE",
|
||||
"5X c #C4F1FE",
|
||||
"6X c #D0F0FE",
|
||||
"7X c #D5F2FF",
|
||||
"8X c #D7F3FF",
|
||||
"9X c #D6F8FF",
|
||||
"0X c #DCF5FF",
|
||||
"qX c #DDF7FF",
|
||||
"wX c #E6F8FF",
|
||||
"eX c #EBFAFF",
|
||||
"rX c #EAFEFF",
|
||||
"tX c #EFFAFE",
|
||||
"yX c None",
|
||||
/* pixels */
|
||||
"yXyXyXyXyXyX& 6 q z S k.K.L.v yX",
|
||||
"yXyXyXyX3 b g.D.F.{.;XQ.E.W.>.$ ",
|
||||
"yXyXyXyXz :X>X^.a.i.%...{ o.s.> ",
|
||||
"yXyXyXyXr #X!.p.=.*.@. .^ ) d.1 ",
|
||||
"yXyXyXyX5 F.~.u.=.&...} ! E l.0 ",
|
||||
"yXyX# 0 t h.[.-.*.@. .^ T I ,.e ",
|
||||
"yX3 F /.|. X_.;.#. .{ W P K ;.p ",
|
||||
"3 ,.*X9XrX5X`.e.` ( ! T K K z.x ",
|
||||
"j m.3XwXqX-X'.r.3.~ T R _ x.c.t ",
|
||||
"<.N.6X7X&X'.t.9.B :.' v.j.v 7 + ",
|
||||
"1.6.).4X=X(.9.8.N q.@Xb.D s : @ ",
|
||||
"A n 7.*X4XB.4.w.m V.,XG.I.Y.G 9 ",
|
||||
"u M A.3X0X$XC.M.5.P.T.U.H.H h < ",
|
||||
"; V oX7XtXeX6XOX.X<XR.H f < O yX",
|
||||
"yX2 Z n.Z.S.}.XX+Xf.g - yXyXyX",
|
||||
"yXyX% w k l y C d - O yXyXyXyXyX"
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *krfb[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #05060C",
|
||||
"X c #04090C",
|
||||
"o c #08080E",
|
||||
"O c #0C0D15",
|
||||
"+ c #0E100F",
|
||||
"@ c #10151B",
|
||||
"# c #121422",
|
||||
"$ c #18182E",
|
||||
"% c #191B25",
|
||||
"& c #1D1D33",
|
||||
"* c #212125",
|
||||
"= c #242436",
|
||||
"- c #323238",
|
||||
"; c #1D3D5C",
|
||||
": c #29284E",
|
||||
"> c #2F3F46",
|
||||
", c #353556",
|
||||
"< c #353549",
|
||||
"1 c #3C3C69",
|
||||
"2 c #1C4A7B",
|
||||
"3 c #38494D",
|
||||
"4 c #2B4D68",
|
||||
"5 c #43443F",
|
||||
"6 c #444456",
|
||||
"7 c #475357",
|
||||
"8 c #52525D",
|
||||
"9 c #444477",
|
||||
"0 c #565669",
|
||||
"q c #545376",
|
||||
"w c #4E5C6D",
|
||||
"e c #5A767F",
|
||||
"r c #667675",
|
||||
"t c #0D43D2",
|
||||
"y c #1346D2",
|
||||
"u c #1C58DA",
|
||||
"i c #2257DC",
|
||||
"p c #236ECE",
|
||||
"a c #2F60DB",
|
||||
"s c #366CDE",
|
||||
"d c #397FCB",
|
||||
"f c #296CE3",
|
||||
"g c #2B71EF",
|
||||
"h c #356CE1",
|
||||
"j c #3676E4",
|
||||
"k c #5E5E95",
|
||||
"l c #5D7881",
|
||||
"z c #4A7DAA",
|
||||
"x c #666687",
|
||||
"c c #63639A",
|
||||
"v c #77779A",
|
||||
"b c #637B80",
|
||||
"n c #696BA7",
|
||||
"m c #7575AA",
|
||||
"M c #4679E2",
|
||||
"N c #128E00",
|
||||
"B c #1A9A00",
|
||||
"V c #179402",
|
||||
"C c #098600",
|
||||
"Z c #1DA100",
|
||||
"A c #209F00",
|
||||
"S c #389C34",
|
||||
"D c #259025",
|
||||
"F c #23A400",
|
||||
"G c #25A800",
|
||||
"H c #28AD00",
|
||||
"J c #2DB300",
|
||||
"K c #31A910",
|
||||
"L c #30B600",
|
||||
"P c #32BA00",
|
||||
"I c #3BBF00",
|
||||
"U c #29AE19",
|
||||
"Y c #30A620",
|
||||
"T c #3CBE28",
|
||||
"R c #3CA851",
|
||||
"E c #3AAB77",
|
||||
"W c #36C000",
|
||||
"Q c #3CC300",
|
||||
"! c #3EC800",
|
||||
"~ c #41BC1B",
|
||||
"^ c #4AB331",
|
||||
"/ c #469F45",
|
||||
"( c #4EB14F",
|
||||
") c #50BF7A",
|
||||
"_ c #6AB95D",
|
||||
"` c #74B773",
|
||||
"' c #44CB00",
|
||||
"] c #49CE00",
|
||||
"[ c #41C500",
|
||||
"{ c #4DD200",
|
||||
"} c #51D600",
|
||||
"| c #53D900",
|
||||
" . c #59DE00",
|
||||
".. c #50D60F",
|
||||
"X. c #56C82A",
|
||||
"o. c #5CE200",
|
||||
"O. c #6AD139",
|
||||
"+. c #61E600",
|
||||
"@. c #64EA00",
|
||||
"#. c #69EE00",
|
||||
"$. c #6CF200",
|
||||
"%. c #74FA00",
|
||||
"&. c #7AFE04",
|
||||
"*. c #7FFF0A",
|
||||
"=. c #70F500",
|
||||
"-. c #73ED13",
|
||||
";. c #6BD35D",
|
||||
":. c #2B83B3",
|
||||
">. c #3F83C9",
|
||||
",. c #3C86EB",
|
||||
"<. c #3F92EC",
|
||||
"1. c #5887AF",
|
||||
"2. c #76949C",
|
||||
"3. c #478DDA",
|
||||
"4. c #5C96DA",
|
||||
"5. c #4488EA",
|
||||
"6. c #408EF2",
|
||||
"7. c #4F93EF",
|
||||
"8. c #4C98F4",
|
||||
"9. c #5694EA",
|
||||
"0. c #569BF3",
|
||||
"q. c #5983E4",
|
||||
"w. c #4DA2F8",
|
||||
"e. c #54AAFE",
|
||||
"r. c #5AADFE",
|
||||
"t. c #5DA7FF",
|
||||
"y. c #5EB0FF",
|
||||
"u. c #629ECF",
|
||||
"i. c #609CD3",
|
||||
"p. c #6794E9",
|
||||
"a. c #65B3D7",
|
||||
"s. c #6BA2EC",
|
||||
"d. c #69A3E5",
|
||||
"f. c #65B5FF",
|
||||
"g. c #6DBBFF",
|
||||
"h. c #73A9EA",
|
||||
"j. c #75AAF1",
|
||||
"k. c #74BEFF",
|
||||
"l. c #77B7F9",
|
||||
"z. c #61A5F7",
|
||||
"x. c #78C5FE",
|
||||
"c. c #807F90",
|
||||
"v. c #83FE12",
|
||||
"b. c #8AFF1D",
|
||||
"n. c #81EC30",
|
||||
"m. c #8AFF20",
|
||||
"M. c #96FF36",
|
||||
"N. c #8FF632",
|
||||
"B. c #84DA55",
|
||||
"V. c #A1FF4B",
|
||||
"C. c #A9FF5A",
|
||||
"Z. c #A1EE60",
|
||||
"A. c #8DDF63",
|
||||
"S. c #87879B",
|
||||
"D. c #8B8BB4",
|
||||
"F. c #878AB9",
|
||||
"G. c #9D9DB4",
|
||||
"H. c #8B8AAB",
|
||||
"J. c #83BB8A",
|
||||
"K. c #89A8AC",
|
||||
"L. c #A4A4BD",
|
||||
"P. c #A1B7BF",
|
||||
"I. c #9C9CC1",
|
||||
"U. c #9496C8",
|
||||
"Y. c #999ED3",
|
||||
"T. c #979AD0",
|
||||
"R. c #8F94D9",
|
||||
"E. c #9CA1D7",
|
||||
"W. c #8FB8D1",
|
||||
"Q. c #8AA7E1",
|
||||
"!. c #85B8F5",
|
||||
"~. c #91B3F6",
|
||||
"^. c #A6A5C9",
|
||||
"/. c #A1A2D0",
|
||||
"(. c #A7ACD8",
|
||||
"). c #ACB1DA",
|
||||
"_. c #B5B8D8",
|
||||
"`. c #ACBAC2",
|
||||
"'. c #A5ABE1",
|
||||
"]. c #AAB3E2",
|
||||
"[. c #B5BBE4",
|
||||
"{. c #B5BBE9",
|
||||
"}. c #8FC38F",
|
||||
"|. c #97CF86",
|
||||
" X c #9AC7A0",
|
||||
".X c #A4D592",
|
||||
"XX c #B7D0BF",
|
||||
"oX c #AECCB6",
|
||||
"OX c #A8E483",
|
||||
"+X c #B1E889",
|
||||
"@X c #86CAFE",
|
||||
"#X c #89CCFF",
|
||||
"$X c #87C0F8",
|
||||
"%X c #81D2FE",
|
||||
"&X c #99C6E2",
|
||||
"*X c #98C3F5",
|
||||
"=X c #9ACAFA",
|
||||
"-X c #92C6FB",
|
||||
";X c #93D3FE",
|
||||
":X c #9DDBFF",
|
||||
">X c #97D8FF",
|
||||
",X c #8CC4EB",
|
||||
"<X c #BFC0DA",
|
||||
"1X c #BAD5C7",
|
||||
"2X c #A3D3FB",
|
||||
"3X c #A3DCFF",
|
||||
"4X c #AADBFD",
|
||||
"5X c #A6D4F4",
|
||||
"6X c #BDC3EE",
|
||||
"7X c #BAC3F3",
|
||||
"8X c #B5C0F1",
|
||||
"9X c #B2DCFC",
|
||||
"0X c #B9D7F9",
|
||||
"qX c #A8CCEC",
|
||||
"wX c #ADE4FF",
|
||||
"eX c #B4E3FE",
|
||||
"rX c #BBE4FD",
|
||||
"tX c #BDECFE",
|
||||
"yX c #B5EAFF",
|
||||
"uX c #C0C7DE",
|
||||
"iX c #C5C8E7",
|
||||
"pX c #C5CDF6",
|
||||
"aX c #C9D0ED",
|
||||
"sX c #CCD5FC",
|
||||
"dX c #CFD8FE",
|
||||
"fX c #C6D2FF",
|
||||
"gX c #D6D8E9",
|
||||
"hX c #D2D5F3",
|
||||
"jX c #D6D8F3",
|
||||
"kX c #D3DAFB",
|
||||
"lX c #DADDFB",
|
||||
"zX c #D7D9F3",
|
||||
"xX c #CCE6C8",
|
||||
"cX c #D9E9D9",
|
||||
"vX c #C3EAFE",
|
||||
"bX c #CAEDFE",
|
||||
"nX c #C3E5FC",
|
||||
"mX c #C4F5FF",
|
||||
"MX c #CAF6FF",
|
||||
"NX c #CDFAFF",
|
||||
"BX c #D3E3FC",
|
||||
"VX c #DCE2FD",
|
||||
"CX c #DDE4F6",
|
||||
"ZX c #D4F2FE",
|
||||
"AX c #DAF4FE",
|
||||
"SX c #D5FDFF",
|
||||
"DX c #E1EDE3",
|
||||
"FX c #E0E6EE",
|
||||
"GX c #E4ECFE",
|
||||
"HX c #E5E8F8",
|
||||
"JX c #E2F6FE",
|
||||
"KX c #E5F8FF",
|
||||
"LX c #EBFBFF",
|
||||
"PX c #F2FCFF",
|
||||
"IX c #F5F8FC",
|
||||
"UX c #EFF9EB",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX% = 6 v H.H.I.I.x O YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXO 6 x L.I.^.).iXgXCXzXD.< YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYX* - 8 S.L.G.L._.uXaXsXzXHXHXDXcXxXUX<X6 YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXG._._.uXaXhXhXzXlXlXgXxXOXB.O.X.~ A.gXq YXYX",
|
||||
"YXYXYXYXYXYXYXYXYXS.gXhXsXsXaXuXXX.XZ.-.-.o.| { [ [ P ^ gXx YXYX",
|
||||
"YXYXYXYXYXYXYXYXYX^.HXdX6XoX+XZ.N.v.%.=.@.o.| { ' Q P ^ FXv YXYX",
|
||||
"YXYXYXYXYXYXYXYXYX0 jXdX_.+XC.M.b.v.%.#.@.o...{ [ [ L K FXv YXYX",
|
||||
"YXYXYXYXYXYXYXYXYX* <XsX{.Z.V.M.v.v.%.#.@.o.| { [ I H A cXH. YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXL.kX7X|.M.b.*.&.=.#.+. .} ] [ I G B oXI. YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXG.zXpX Xb.v.&.%.#.@.o. .{ ' I H A B |._.O YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXH.iXdXoX&.&.=.$.#.+. .} ' Q L H A B _ iX% YX",
|
||||
"YXYXYXYXYXYXYX@ 3 3 w _.kX[.-.%.$.#.+.o.| { ! P H H A B ( gX= YX",
|
||||
"YXYXYXYX+ 2.W.&X;Xl.!.l.$X~.;.$.#.+.o.| ' ! P J H F B V ^ DX, YX",
|
||||
"YXYXYXYXK.5XrXZXbXbXAXrX;X$Xa.;.+.o.| ' ! W L J G F B N S cX0 ",
|
||||
"YXYX7 P.vXyXmXSXLXLXNXyX:X#Xx.t.) ..' ! W P H H F B N N D xXc.. ",
|
||||
"YXYXP.0X:XwXMXLXPXPXNXtX:X#Xg.y.<.( ! W P L H F A B N C / DXH.. ",
|
||||
"YX5 qXx.9XZXLXLXLXLXMXyX3X;Xk.r.w.<.T W J H G Z V V S }.IXHXx ",
|
||||
"YXr j.@XAXJXJXLXKXNXtXeX4X#Xf.e.w.g E J H F Z B ( XDXHX^.v & ",
|
||||
"3 &X8.4XZXAXJXZXwXwX:X>X@Xx.r.e.w.u :.U F Y ` 1XHXiXU.k $ . YXYX",
|
||||
"r ,X7.2XZXZXAXMX>X>X;X@Xx.f.r.e.w.t p R J.1XlXiXF.x : @ YXYXYX",
|
||||
"r h.,.w.%XtXSXZXrX3X#Xg.f.e.e.t.j u f 2XhX).U.q = & o YXYXYXYXYX",
|
||||
"l d.j 5.w.x.vXZXZXZX4Xf.e.e.e.t.g y ,.Q.{.6X].U.].Y.m , YXYXYXYX",
|
||||
"e d.p g ,.8.4XvXbXbX9Xr.w.<.9.j.h 5.0.0XlXkX{.T.].].7X{.F.n $ YX",
|
||||
"3 d.y u j s.9XrXvXbXeX7.f h !.j.t u 9.kXlXkX'.R.].E.8XfX7XR.: YX",
|
||||
"YX1.i t !.9XnXMXZXZXZXp.s ~.*Xh.y y *XVX[.T.U.).8X7X7XE.n 9 # . ",
|
||||
"YX3 9.a 2X0XbXZXJXLXJXnX0XvX*X!.s.7.Q./.Y.].iXpX7X'.n 9 : O YX",
|
||||
"YXYX1.5.*XrXZXAXLXPXLXKXAXbX9X5X!.=XjXhXVXlX7XY.c 1 @ YXYXYXYX",
|
||||
"YXYX4 i.2XrXZXJXIXPXPXLXAXmX9X=X!.kXGXGXhX'.n 9 & YXYXYXYXYXYX",
|
||||
"YXYXYX. u.5XrX0XBXKXAXCXAXbX:X~.JXGXaX/.n 1 YXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYX; z 4.j s q.M p.=X,X~.GXjX/.c 9 & o YXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXO 4 >.5.3.>.2 # c.U.k < YXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXX X X X YX, 1 # . YXYXYXYXYXYXYXYXYXYXYXYXYXYX"
|
||||
};
|
@ -0,0 +1,184 @@
|
||||
/* XPM */
|
||||
static char *ksirc-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 162 2",
|
||||
" c black",
|
||||
". c #000001",
|
||||
"X c #010000",
|
||||
"o c #000002",
|
||||
"O c #000003",
|
||||
"+ c #000004",
|
||||
"@ c #000005",
|
||||
"# c #000104",
|
||||
"$ c #000006",
|
||||
"% c #050000",
|
||||
"& c #000008",
|
||||
"* c #000009",
|
||||
"= c #000108",
|
||||
"- c #00000A",
|
||||
"; c #00000B",
|
||||
": c #00000E",
|
||||
"> c #00010F",
|
||||
", c #00020F",
|
||||
"< c #0E0000",
|
||||
"1 c #0F0000",
|
||||
"2 c #0A0800",
|
||||
"3 c #000010",
|
||||
"4 c #000011",
|
||||
"5 c #000110",
|
||||
"6 c #000013",
|
||||
"7 c #000310",
|
||||
"8 c #000311",
|
||||
"9 c #010210",
|
||||
"0 c #000016",
|
||||
"q c #000214",
|
||||
"w c #000215",
|
||||
"e c #000314",
|
||||
"r c #000316",
|
||||
"t c #010415",
|
||||
"y c #010417",
|
||||
"u c #000019",
|
||||
"i c #00031A",
|
||||
"p c #00031B",
|
||||
"a c #00001C",
|
||||
"s c #01041A",
|
||||
"d c #01051B",
|
||||
"f c #01051F",
|
||||
"g c #00100F",
|
||||
"h c #0C1915",
|
||||
"j c #110000",
|
||||
"k c #120000",
|
||||
"l c #130000",
|
||||
"z c #140000",
|
||||
"x c #150000",
|
||||
"c c #190000",
|
||||
"v c #1A0000",
|
||||
"b c #1B0000",
|
||||
"n c #1D0000",
|
||||
"m c #161615",
|
||||
"M c #000020",
|
||||
"N c #000121",
|
||||
"B c #000130",
|
||||
"V c #000436",
|
||||
"C c #000038",
|
||||
"Z c #00003B",
|
||||
"A c #00053E",
|
||||
"S c #030A36",
|
||||
"D c #040933",
|
||||
"F c #040A34",
|
||||
"G c #050B37",
|
||||
"H c #030B3A",
|
||||
"J c #040A39",
|
||||
"K c #040B3B",
|
||||
"L c #050C3C",
|
||||
"P c #040C3F",
|
||||
"I c #0B1034",
|
||||
"U c #0E2625",
|
||||
"Y c #2F0000",
|
||||
"T c #2F0302",
|
||||
"R c #360000",
|
||||
"E c #252209",
|
||||
"W c #282619",
|
||||
"Q c #282822",
|
||||
"! c #292925",
|
||||
"~ c #2E2D2F",
|
||||
"^ c #31312C",
|
||||
"/ c #000544",
|
||||
"( c #000048",
|
||||
") c #050C40",
|
||||
"_ c #060D42",
|
||||
"` c #050E45",
|
||||
"' c #040E53",
|
||||
"] c #060F54",
|
||||
"[ c #08125F",
|
||||
"{ c #030D62",
|
||||
"} c #000970",
|
||||
"| c #0E1A7A",
|
||||
" . c #101A77",
|
||||
".. c #22274F",
|
||||
"X. c #292F54",
|
||||
"o. c #420000",
|
||||
"O. c #430000",
|
||||
"+. c #550000",
|
||||
"@. c #5B0000",
|
||||
"#. c #5C0100",
|
||||
"$. c #660000",
|
||||
"%. c #740A0A",
|
||||
"&. c #424138",
|
||||
"*. c #4D4A31",
|
||||
"=. c #4C4B42",
|
||||
"-. c #55574F",
|
||||
";. c #5E5B4C",
|
||||
":. c #646151",
|
||||
">. c #6D6E6B",
|
||||
",. c #72726D",
|
||||
"<. c #747573",
|
||||
"1. c #7E7E7B",
|
||||
"2. c #0A1683",
|
||||
"3. c #06149D",
|
||||
"4. c #0D1B92",
|
||||
"5. c #0E1D9B",
|
||||
"6. c #131E83",
|
||||
"7. c #141F81",
|
||||
"8. c #0B1CA5",
|
||||
"9. c #1D2A88",
|
||||
"0. c #12209B",
|
||||
"q. c #1B299A",
|
||||
"w. c #1B29AA",
|
||||
"e. c #182ABD",
|
||||
"r. c #232D83",
|
||||
"t. c #263190",
|
||||
"y. c #283599",
|
||||
"u. c #2537A2",
|
||||
"i. c #2432BA",
|
||||
"p. c #1627C7",
|
||||
"a. c #192CC7",
|
||||
"s. c #2636D5",
|
||||
"d. c #2C3DD4",
|
||||
"f. c #36409E",
|
||||
"g. c #3443CC",
|
||||
"h. c #424DB3",
|
||||
"j. c #515AA4",
|
||||
"k. c #6F76B7",
|
||||
"l. c #727BBE",
|
||||
"z. c #4957D6",
|
||||
"x. c #505DD4",
|
||||
"c. c #5E6BD8",
|
||||
"v. c #5962E0",
|
||||
"b. c #5F6AE8",
|
||||
"n. c #616DC7",
|
||||
"m. c #6C79FF",
|
||||
"M. c #DB2727",
|
||||
"N. c #FF2424",
|
||||
"B. c #FB5B5B",
|
||||
"V. c #FA6464",
|
||||
"C. c #FF7272",
|
||||
"Z. c #FF7C7C",
|
||||
"A. c #8E8C75",
|
||||
"S. c #868682",
|
||||
"D. c #868683",
|
||||
"F. c #8D8D8C",
|
||||
"G. c #9C9A80",
|
||||
"H. c #959593",
|
||||
"J. c #FF8B8B",
|
||||
"K. c #FFB3B3",
|
||||
"L. c gray100",
|
||||
"P. c None",
|
||||
/* pixels */
|
||||
"P.P.P.P.P.P.l $.Y P.P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.% B.J.N.R P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.o.Z.K.J.%.P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.o M.C.V.Y P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.P.o o.v P.P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.P.h U g o P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.6 -.<.>.m B H F G , P.",
|
||||
"P.P.@ r.b.4.^ ,.S.~ { | 9. .f P.",
|
||||
"P.o w.v.q.V &.1.F.! o P.P.P.D o ",
|
||||
"P./ e.3.a o =.S.H.Q P.P.P.5.0.o ",
|
||||
"P.A 8.p.Z P.*.A.A.E P.[ a.2.o P.",
|
||||
"P.o } i.m.h.j.k.l.f.g.s.' o P.P.",
|
||||
"P.P.; ( 9.n.c.x.z.g.| 6 P.P.P.P.",
|
||||
"P.P.P.P.o o I ..X., o P.P.P.P.P.",
|
||||
"P.P.P.P.P.P.W :.;.2 P.P.P.P.P.P.",
|
||||
"P.P.P.P.P.P.o o o o P.P.P.P.P.P."
|
||||
};
|
@ -0,0 +1,207 @@
|
||||
/* XPM */
|
||||
static char *ksirc[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 169 2",
|
||||
" c #000000",
|
||||
". c #00010B",
|
||||
"X c #0A0000",
|
||||
"o c #08080B",
|
||||
"O c #000211",
|
||||
"+ c #00021A",
|
||||
"@ c #0B0C17",
|
||||
"# c #120000",
|
||||
"$ c #1B1B1B",
|
||||
"% c #000424",
|
||||
"& c #00032B",
|
||||
"* c #000633",
|
||||
"= c #00053A",
|
||||
"- c #310000",
|
||||
"; c #3F0303",
|
||||
": c #232322",
|
||||
"> c #2B2B2A",
|
||||
", c #2D2F3E",
|
||||
"< c #363636",
|
||||
"1 c #393835",
|
||||
"2 c #3C3C3C",
|
||||
"3 c #000643",
|
||||
"4 c #000844",
|
||||
"5 c #020B4B",
|
||||
"6 c #080F47",
|
||||
"7 c #000655",
|
||||
"8 c #010B54",
|
||||
"9 c #000B5B",
|
||||
"0 c #061055",
|
||||
"q c #061059",
|
||||
"w c #081254",
|
||||
"e c #09135C",
|
||||
"r c #000264",
|
||||
"t c #000B64",
|
||||
"y c #010C6C",
|
||||
"u c #000770",
|
||||
"i c #000D71",
|
||||
"p c #000D79",
|
||||
"a c #0B1564",
|
||||
"s c #051173",
|
||||
"d c #00107A",
|
||||
"f c #081573",
|
||||
"g c #09167B",
|
||||
"h c #0E1B74",
|
||||
"j c #0D1879",
|
||||
"k c #121F7B",
|
||||
"l c #162278",
|
||||
"z c #1F2B7E",
|
||||
"x c #3D404B",
|
||||
"c c #4B0000",
|
||||
"v c #560000",
|
||||
"b c #590000",
|
||||
"n c #740606",
|
||||
"m c #7F0000",
|
||||
"M c #444443",
|
||||
"N c #484847",
|
||||
"B c #4C4C4C",
|
||||
"V c #4F5051",
|
||||
"C c #535353",
|
||||
"Z c #595857",
|
||||
"A c #5B5B5B",
|
||||
"S c #5B5C63",
|
||||
"D c #646463",
|
||||
"F c #686867",
|
||||
"G c #6B6B6C",
|
||||
"H c #737373",
|
||||
"J c #7B7B7B",
|
||||
"K c #000D81",
|
||||
"L c #01128B",
|
||||
"P c #09188F",
|
||||
"I c #031490",
|
||||
"U c #071896",
|
||||
"Y c #07189C",
|
||||
"T c #101C83",
|
||||
"R c #111D88",
|
||||
"E c #111D93",
|
||||
"W c #0216A0",
|
||||
"Q c #0C1DA3",
|
||||
"! c #182388",
|
||||
"~ c #132192",
|
||||
"^ c #152198",
|
||||
"/ c #1A2695",
|
||||
"( c #19249C",
|
||||
") c #1C299E",
|
||||
"_ c #1624A1",
|
||||
"` c #1B27A3",
|
||||
"' c #1C2AAC",
|
||||
"] c #1023B4",
|
||||
"[ c #1629BB",
|
||||
"{ c #1C2AB2",
|
||||
"} c #222D80",
|
||||
"| c #253199",
|
||||
" . c #222DAC",
|
||||
".. c #202EB4",
|
||||
"X. c #2832A4",
|
||||
"o. c #2330B4",
|
||||
"O. c #373EAD",
|
||||
"+. c #343FBD",
|
||||
"@. c #1729C1",
|
||||
"#. c #2F3EC0",
|
||||
"$. c #2B3BCA",
|
||||
"%. c #3D47AA",
|
||||
"&. c #3241BF",
|
||||
"*. c #3945BA",
|
||||
"=. c #3141C3",
|
||||
"-. c #3445D6",
|
||||
";. c #3443DD",
|
||||
":. c #3E4EE6",
|
||||
">. c #46509A",
|
||||
",. c #4950B7",
|
||||
"<. c #4C54C5",
|
||||
"1. c #4850CD",
|
||||
"2. c #4853DF",
|
||||
"3. c #4E58D5",
|
||||
"4. c #555EC7",
|
||||
"5. c #595EC3",
|
||||
"6. c #4E5DEB",
|
||||
"7. c #545FF4",
|
||||
"8. c #6E73D0",
|
||||
"9. c #7179E1",
|
||||
"0. c #7C81DB",
|
||||
"q. c #7E82E0",
|
||||
"w. c #7A82E9",
|
||||
"e. c #7F8AFF",
|
||||
"r. c #820505",
|
||||
"t. c #8C0404",
|
||||
"y. c #8C1A1A",
|
||||
"u. c #960000",
|
||||
"i. c #900808",
|
||||
"p. c #9F0000",
|
||||
"a. c #A20303",
|
||||
"s. c #A61111",
|
||||
"d. c #BD0404",
|
||||
"f. c #A52626",
|
||||
"g. c #D42323",
|
||||
"h. c #D32A2A",
|
||||
"j. c #DF2323",
|
||||
"k. c #EC3E3E",
|
||||
"l. c #F02B2B",
|
||||
"z. c #F43737",
|
||||
"x. c #CE4B4B",
|
||||
"c. c #DE4444",
|
||||
"v. c #DF5151",
|
||||
"b. c #D96262",
|
||||
"n. c #E65151",
|
||||
"m. c #F24545",
|
||||
"M. c #F44949",
|
||||
"N. c #F35757",
|
||||
"B. c #F75C5C",
|
||||
"V. c #FA5C5C",
|
||||
"C. c #EE6E6E",
|
||||
"Z. c #FF6666",
|
||||
"A. c #FF6D6D",
|
||||
"S. c #FF7C7C",
|
||||
"D. c #828181",
|
||||
"F. c gray61",
|
||||
"G. c #8C92C0",
|
||||
"H. c #8F98F9",
|
||||
"J. c #9BA3FA",
|
||||
"K. c #A4A9DB",
|
||||
"L. c #A3AAFC",
|
||||
"P. c #AFB4EC",
|
||||
"I. c #B2B8F9",
|
||||
"U. c #FF8484",
|
||||
"Y. c #FF9C9C",
|
||||
"T. c #FFA8A8",
|
||||
"R. c #FFC4C4",
|
||||
"E. c gray100",
|
||||
"W. c None",
|
||||
/* pixels */
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.W.W.X X W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.# r.d.d.a.c W.W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.X a.z.B.m.j.d.c W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.b l.R.T.A.V.g.u.# W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.t.m.Y.U.S.S.n.s.- W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.r.k.Z.S.U.U.C.f.- W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.c g.N.A.S.U.b.y.# W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W. r.h.c.n.x.f.; W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.X v i.i.n - W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.W. W.W.W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W. o o W.W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W. Z B 1 2 $ W.W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W. > F.Z C A C $ W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.. & 5 * > C C A F G M o 0 a a e q 0 8 0 = W.W.",
|
||||
"W.W.W.W.W.W.% t ~ *.*.9 : V A F G H B @ ! o.o.{ { o.' ` g + W.W.",
|
||||
"W.W.W.W.. 9 _ <.q.0.) 7 : C D G H H B o + & & % & * * % . W.",
|
||||
"W.W.W.. y ' 5.8.%.g p 8 > A D H H J B o W.W.W.",
|
||||
"W.W.W.5 Y O.,.~ u y 4 . > A G H J J B o W.W.W.W.W.W.. 8 f + W.",
|
||||
"W.W. d U X.E K y * 1 D G J D.D.V o W.W.W.W.W.% I o.R + ",
|
||||
"W.W.+ p I ( U L 8 W. < D H J D.D.V X W.W.W.W.4 Q ` j = ",
|
||||
"W.W.+ i L ( Q W 9 W. < D H J D.D.V o W.W.+ s [ ` i * W.",
|
||||
"W.W.. t p E .{ W % W. 1 F H J D.D.B . 9 ] $./ t % W.W.",
|
||||
"W.W.W.= i p E 1.2.@.i * , S F J J J x & y [ ;.&.T 7 + W.W.W.",
|
||||
"W.W.W.+ 9 i i / 9.L.e.6.-.$.#.&.&.=.$.:.7.3.| y 4 . W.W.W.W.",
|
||||
"W.W.W.W.O 5 y y s >.G.K.P.I.L.J.J.H.w.4.| i 7 % W.W.W.W.W.W.",
|
||||
"W.W.W.W.W. % 4 9 r r y h l l z } k f t 7 * . W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W. . % & = 6 0 q q 9 e 6 % . W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W. W. > M B B C Z : W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W. $ N C D G Z : W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W. : < 2 2 > o W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W. W.W.W.W.W.W.W.W.W.W.W.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.W. W.W.W.W.W.W.W.W.W.W.W.W."
|
||||
};
|
@ -0,0 +1,100 @@
|
||||
/* XPM */
|
||||
static char *kwifimanager-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 78 1",
|
||||
" c black",
|
||||
". c #000013",
|
||||
"X c #050517",
|
||||
"o c #0D0D28",
|
||||
"O c #000039",
|
||||
"+ c #080835",
|
||||
"@ c #0B0B3C",
|
||||
"# c #191925",
|
||||
"$ c #000042",
|
||||
"% c #000043",
|
||||
"& c #000048",
|
||||
"* c #00004A",
|
||||
"= c #00004D",
|
||||
"- c #0C0C44",
|
||||
"; c #000059",
|
||||
": c #090954",
|
||||
"> c #001153",
|
||||
", c #0B0B61",
|
||||
"< c #0E0E75",
|
||||
"1 c #191972",
|
||||
"2 c #23234C",
|
||||
"3 c #2D2D42",
|
||||
"4 c #2F2F4E",
|
||||
"5 c #252574",
|
||||
"6 c #393960",
|
||||
"7 c #303075",
|
||||
"8 c #3D3D75",
|
||||
"9 c #42425E",
|
||||
"0 c #4C4C66",
|
||||
"q c #484875",
|
||||
"w c #4E4E7C",
|
||||
"e c #525273",
|
||||
"r c #606069",
|
||||
"t c #000084",
|
||||
"y c #00008A",
|
||||
"u c #00008B",
|
||||
"i c #0000B4",
|
||||
"p c #3C3C86",
|
||||
"a c #3333B7",
|
||||
"s c #0000FA",
|
||||
"d c #2323FF",
|
||||
"f c #444485",
|
||||
"g c #525283",
|
||||
"h c #4747A3",
|
||||
"j c #4E4EB9",
|
||||
"k c #5F5FAA",
|
||||
"l c #616184",
|
||||
"z c #7B7BA0",
|
||||
"x c #4040FF",
|
||||
"c c #4747FF",
|
||||
"v c #5555FE",
|
||||
"b c #6262FF",
|
||||
"n c #6767F9",
|
||||
"m c #6A6AFF",
|
||||
"M c #7878FF",
|
||||
"N c #00D306",
|
||||
"B c green",
|
||||
"V c #828288",
|
||||
"C c #9696B3",
|
||||
"Z c #8383FF",
|
||||
"A c #8E8EFF",
|
||||
"S c #9999FF",
|
||||
"D c #A4A4FF",
|
||||
"F c #A5A5FF",
|
||||
"G c #AFAFFF",
|
||||
"H c #BABAFF",
|
||||
"J c #BBBBFF",
|
||||
"K c #C3C3F0",
|
||||
"L c #C6C6FF",
|
||||
"P c #D1D1FF",
|
||||
"I c #DCDCFF",
|
||||
"U c #E1E1E2",
|
||||
"Y c #ECECEC",
|
||||
"T c #E8E8FF",
|
||||
"R c #F3F3FF",
|
||||
"E c #FEFEFF",
|
||||
"W c gray100",
|
||||
"Q c None",
|
||||
/* pixels */
|
||||
"QQQQQQQQQBBQQQQQ",
|
||||
"QQQQQQQQBQBBQQQQ",
|
||||
"QQQQQQQQBBBBBQQQ",
|
||||
"QQQQQQQQQBBBBBQQ",
|
||||
" QQQQQQBBQBBBBQQ",
|
||||
"$:-+**.QBBBBBBBQ",
|
||||
"udcnkw4o$NBBBBBQ",
|
||||
"udcmAlV0s>BBBQBB",
|
||||
"udcm9YWes;BQBBBB",
|
||||
"udchUWTqs;BBBBBB",
|
||||
"udcgRIL8s;BBBBQB",
|
||||
"tdaCPHF7s;QQQQQQ",
|
||||
"2pzLGSZ5s;QQQQQQ",
|
||||
"rKHFAMb1s;QQQQQQ",
|
||||
"#36fjvx<s;QQQQQQ",
|
||||
"QQQQX@,Oi=QQQQQQ"
|
||||
};
|
@ -0,0 +1,250 @@
|
||||
/* XPM */
|
||||
static char *kwifimanager[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 212 2",
|
||||
" c black",
|
||||
". c #000007",
|
||||
"X c #000009",
|
||||
"o c #00000B",
|
||||
"O c #03030D",
|
||||
"+ c #000010",
|
||||
"@ c #000012",
|
||||
"# c #030311",
|
||||
"$ c #000015",
|
||||
"% c #000017",
|
||||
"& c #000019",
|
||||
"* c #00001C",
|
||||
"= c #00001D",
|
||||
"- c #00001E",
|
||||
"; c #080811",
|
||||
": c #000021",
|
||||
"> c #000022",
|
||||
", c #000024",
|
||||
"< c #000025",
|
||||
"1 c #000026",
|
||||
"2 c #000027",
|
||||
"3 c #00002A",
|
||||
"4 c #00002B",
|
||||
"5 c #03032B",
|
||||
"6 c #00002C",
|
||||
"7 c #00002D",
|
||||
"8 c #02022D",
|
||||
"9 c #04042B",
|
||||
"0 c #070728",
|
||||
"q c #04042E",
|
||||
"w c #06062C",
|
||||
"e c #07072E",
|
||||
"r c #09092E",
|
||||
"t c #0A0A2D",
|
||||
"y c #0D0D2D",
|
||||
"u c #0C0C2E",
|
||||
"i c #0D0D2F",
|
||||
"p c #0F0F2D",
|
||||
"a c #000030",
|
||||
"s c #000034",
|
||||
"d c #000035",
|
||||
"f c #000037",
|
||||
"g c #050533",
|
||||
"h c #000039",
|
||||
"j c #00003A",
|
||||
"k c #00003B",
|
||||
"l c #00003D",
|
||||
"z c #0A0A38",
|
||||
"x c #0A0A3D",
|
||||
"c c #12122A",
|
||||
"v c #11112C",
|
||||
"b c #11112D",
|
||||
"n c #10102E",
|
||||
"m c #13132C",
|
||||
"M c #14142E",
|
||||
"N c #181820",
|
||||
"B c #1B1B20",
|
||||
"V c #191925",
|
||||
"C c #181838",
|
||||
"Z c #252534",
|
||||
"A c #272736",
|
||||
"S c #333334",
|
||||
"D c #000040",
|
||||
"F c #000041",
|
||||
"G c #00004C",
|
||||
"H c #0F0F42",
|
||||
"J c #181841",
|
||||
"K c #191940",
|
||||
"L c #181846",
|
||||
"P c #000066",
|
||||
"I c #0F0F65",
|
||||
"U c #0C0C69",
|
||||
"Y c #000076",
|
||||
"T c #161671",
|
||||
"R c #27274E",
|
||||
"E c #292940",
|
||||
"W c #2C2C42",
|
||||
"Q c #2C2C44",
|
||||
"! c #24245F",
|
||||
"~ c #3E3E44",
|
||||
"^ c #313152",
|
||||
"/ c #323252",
|
||||
"( c #373754",
|
||||
") c #232361",
|
||||
"_ c #454553",
|
||||
"` c #535354",
|
||||
"' c #5F5F62",
|
||||
"] c #5C5C70",
|
||||
"[ c #79797D",
|
||||
"{ c #090988",
|
||||
"} c #1A1ABE",
|
||||
"| c #3A3AB6",
|
||||
" . c #0000D3",
|
||||
".. c #0000D5",
|
||||
"X. c #0000D8",
|
||||
"o. c #0000DA",
|
||||
"O. c #0000DC",
|
||||
"+. c #0000DE",
|
||||
"@. c #0F0FD6",
|
||||
"#. c #0000E0",
|
||||
"$. c #0000E3",
|
||||
"%. c #0000E5",
|
||||
"&. c #0000E7",
|
||||
"*. c #0000E9",
|
||||
"=. c #0000EB",
|
||||
"-. c #0000EE",
|
||||
";. c #0000FA",
|
||||
":. c #0808FF",
|
||||
">. c #1010F8",
|
||||
",. c #1111FF",
|
||||
"<. c #1919FF",
|
||||
"1. c #2323FF",
|
||||
"2. c #2424FF",
|
||||
"3. c #2A2AFF",
|
||||
"4. c #2F2FFF",
|
||||
"5. c #3333F8",
|
||||
"6. c #3535FF",
|
||||
"7. c #3A3AFF",
|
||||
"8. c #3B3BFF",
|
||||
"9. c #43439F",
|
||||
"0. c #494996",
|
||||
"q. c #56569B",
|
||||
"w. c #6D6D88",
|
||||
"e. c #4343C3",
|
||||
"r. c #4040E7",
|
||||
"t. c #4040FF",
|
||||
"y. c #4444FA",
|
||||
"u. c #4646FF",
|
||||
"i. c #4747FF",
|
||||
"p. c #4B4BFF",
|
||||
"a. c #4C4CFF",
|
||||
"s. c #5151FF",
|
||||
"d. c #5656FF",
|
||||
"f. c #5757FF",
|
||||
"g. c #5858FF",
|
||||
"h. c #5C5CFF",
|
||||
"j. c #6060E8",
|
||||
"k. c #6F6FE6",
|
||||
"l. c #6161FF",
|
||||
"z. c #6262FF",
|
||||
"x. c #6767FF",
|
||||
"c. c #6A6AFF",
|
||||
"v. c #6C6CFF",
|
||||
"b. c #6D6DFF",
|
||||
"n. c #7A7AEF",
|
||||
"m. c #7272FF",
|
||||
"M. c #7777FF",
|
||||
"N. c #7878FF",
|
||||
"B. c #7C7CFF",
|
||||
"V. c #7D7DFF",
|
||||
"C. c #7E7EFF",
|
||||
"Z. c green",
|
||||
"A. c #97979A",
|
||||
"S. c #9898A9",
|
||||
"D. c #9797BD",
|
||||
"F. c #ACACAC",
|
||||
"G. c #9090CE",
|
||||
"H. c #9A9ACA",
|
||||
"J. c #8383FF",
|
||||
"K. c #8888F6",
|
||||
"L. c #8888FF",
|
||||
"P. c #8989FF",
|
||||
"I. c #8E8EFF",
|
||||
"U. c #8F8FFF",
|
||||
"Y. c #9393FF",
|
||||
"T. c #9494FF",
|
||||
"R. c #9999FF",
|
||||
"E. c #9A9AFF",
|
||||
"W. c #9F9FFF",
|
||||
"Q. c #AAAAC2",
|
||||
"!. c #A6A6DD",
|
||||
"~. c #A0A0FF",
|
||||
"^. c #A4A4FF",
|
||||
"/. c #A5A5FF",
|
||||
"(. c #AAAAFF",
|
||||
"). c #ABABFF",
|
||||
"_. c #AEAEFC",
|
||||
"`. c #AFAFFF",
|
||||
"'. c #BFBFE4",
|
||||
"]. c #B0B0FF",
|
||||
"[. c #B5B5FF",
|
||||
"{. c #BABAFF",
|
||||
"}. c #BBBBFF",
|
||||
"|. c #C5C5C6",
|
||||
" X c #C2C2E8",
|
||||
".X c #C0C0FF",
|
||||
"XX c #C1C1FF",
|
||||
"oX c #C5C5FF",
|
||||
"OX c #C6C6FF",
|
||||
"+X c #CBCBFF",
|
||||
"@X c #CCCCFF",
|
||||
"#X c #D0D0FF",
|
||||
"$X c #D1D1FF",
|
||||
"%X c #D2D2FF",
|
||||
"&X c #D7D7FF",
|
||||
"*X c #DFDFF0",
|
||||
"=X c #DCDCFF",
|
||||
"-X c #DDDDFF",
|
||||
";X c #EAEAEA",
|
||||
":X c gray92",
|
||||
">X c #E2E2FF",
|
||||
",X c #E3E3FF",
|
||||
"<X c #E8E8FF",
|
||||
"1X c #EDEDFF",
|
||||
"2X c #EEEEFF",
|
||||
"3X c #F3F3FF",
|
||||
"4X c GhostWhite",
|
||||
"5X c #F9F9FF",
|
||||
"6X c #FEFEFE",
|
||||
"7X c #FEFEFF",
|
||||
"8X c gray100",
|
||||
"9X c None",
|
||||
/* pixels */
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.9X9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.Z.9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.9X9X9XZ.Z.Z.9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.Z.9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.Z.9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.Z.9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.9X9X9XZ.Z.Z.9X9XZ.Z.Z.9X9X9X9X",
|
||||
" 9X9X9X9X9X9X9X9X9X9X9X9XZ.Z.Z.Z.9X9X9XZ.Z.Z.9XZ.Z.Z.9X9X9X9X",
|
||||
"@ * & 4 k f * o 9X9X9X9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.9X9XZ.Z.Z.9X9X9X",
|
||||
"2 -.>.} T H z g a F l F . 9X9X9X9XZ.Z.Z.9X9XZ.Z.Z.9XZ.Z.Z.9X9X9X",
|
||||
"2 *.,.1.6.i.g.j.0.R C i q k k k f Z.Z.Z.9XZ.Z.Z.9X9XZ.Z.Z.9X9X",
|
||||
"2 *.,.1.6.i.g.c.B.I.~._.H.] V @ a > % Z.Z.9X9XZ.Z.Z.9XZ.Z.Z.9X9X",
|
||||
"2 %.,.1.6.i.g.c.B.I.~.G._ ` F.c ;.;.G Z.Z.Z.9X9XZ.Z.9X9XZ.Z.Z.9X",
|
||||
"2 $.,.1.6.i.g.c.B.K.( ' :X8X8Xm ;.;.G 9XZ.Z.9X9XZ.Z.Z.9XZ.Z.Z.9X",
|
||||
"> $.,.1.6.i.g.c.k.Z |.8X8X8X3Xc ;.;.G 9XZ.Z.Z.9XZ.Z.Z.9X9XZ.Z.9X",
|
||||
"> $.,.1.6.i.g.c.W :X8X8X4X2X,Xi ;.;.G 9XZ.Z.Z.9X9XZ.Z.9X9XZ.Z.Z.",
|
||||
"4 O.,.1.6.i.g.9.A.8X8X3X<X-X%Xm ;.;.G 9X9XZ.Z.9X9XZ.Z.9X9XZ.Z.Z.",
|
||||
"4 O.,.1.6.i.g.W 8X4X2X,X&X@X.Xp ;.;.G 9X9XZ.Z.9X9XZ.Z.Z.9XZ.Z.Z.",
|
||||
"7 o.,.1.6.i.e.[ 3X<X=X@XOX}.`.i ;.;.G 9X9XZ.Z.9X9XZ.Z.Z.9X9XZ.Z.",
|
||||
"2 ..,.1.6.i.! *X,X&X@X.X[.).~.i ;.;.G 9X9XZ.9X9X9X9XZ.Z.9X9XZ.Z.",
|
||||
"* ..,.1.6.r.^ -X%XOX}.`./.E.Y.t ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"% .,.1.5.L X+X.X[.).~.T.P.B.t ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"o Y { I C D.OX}._./.E.I.J.N.m.q ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"S S.Q.'.+X}.[.).~.T.P.B.m.c.h.q ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"~ -X%XOX}.`./.E.I.J.N.c.z.f.p.9 ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"B w.!.[.).~.T.J.B.m.c.h.s.i.7.4 ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"9XN Z W ^ q.n.M.c.z.f.p.t.6.3.7 ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X ; m K ) | y.7.6.2.<.7 ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X O 0 x U @.:.7 ;.;.G 9X9X9X9X9X9X9X9X9X9X9X9X9X",
|
||||
"9X9X9X9X9X9X9X9X9X9X9X9X 2 a @ P P a 9X9X9X9X9X9X9X9X9X9X9X9X9X"
|
||||
};
|
@ -0,0 +1,29 @@
|
||||
debian/tmp/usr/bin/kdict
|
||||
debian/tmp/usr/lib/*/trinity/kdict.la
|
||||
debian/tmp/usr/lib/*/trinity/kdict.so
|
||||
debian/tmp/usr/lib/*/trinity/kdict_panelapplet.la
|
||||
debian/tmp/usr/lib/*/trinity/kdict_panelapplet.so
|
||||
debian/tmp/usr/lib/*/libtdeinit_kdict.so
|
||||
debian/tmp/usr/share/applications/tde/kdict.desktop
|
||||
debian/tmp/usr/share/apps/kdict/icons/crystalsvg/16x16/actions/define_clip.png
|
||||
debian/tmp/usr/share/apps/kdict/icons/crystalsvg/16x16/actions/query_erase.png
|
||||
debian/tmp/usr/share/apps/kdict/icons/crystalsvg/22x22/actions/define_clip.png
|
||||
debian/tmp/usr/share/apps/kdict/icons/crystalsvg/32x32/actions/define_clip.png
|
||||
debian/tmp/usr/share/apps/kdict/kdictui.rc
|
||||
debian/tmp/usr/share/apps/kicker/applets/kdictapplet.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/applet.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/conf.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/mainwin.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdict/seteditor.png
|
||||
debian/tmp/usr/share/icons/hicolor/128x128/apps/kdict.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kdict.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kdict.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/kdict.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/kdict.png
|
||||
debian/tmp/usr/share/icons/hicolor/scalable/apps/kdict.svgz
|
||||
|
||||
debian/icons/kdict-16.xpm /usr/share/pixmaps
|
||||
debian/icons/kdict.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/kdict-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kdict-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KDict"\
|
||||
icon32x32="/usr/share/pixmaps/kdict.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kdict-16.xpm"\
|
||||
command="/usr/bin/kdict"
|
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
# postinst script for kdict-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,83 @@
|
||||
debian/tmp/usr/bin/kget
|
||||
debian/tmp/usr/lib/*/trinity/tdehtml_kget.la
|
||||
debian/tmp/usr/lib/*/trinity/tdehtml_kget.so
|
||||
debian/tmp/usr/share/applications/tde/kget.desktop
|
||||
debian/tmp/usr/share/apps/kget/eventsrc
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar0.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar1.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar2.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar3.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar4.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar5.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/bar6.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/kget_dock.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/kget_dock_download.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_clipboard.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_delay.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_disconnect.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_dock.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_drop_target.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_expert.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_logwindow.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_normal.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_off.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_offline_mode_on.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_pause.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_queue.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_restart.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_resume.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_shutdown.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_timer.png
|
||||
debian/tmp/usr/share/apps/kget/icons/crystalsvg/22x22/actions/tool_uselastdir.png
|
||||
debian/tmp/usr/share/apps/kget/kgetui.rc
|
||||
debian/tmp/usr/share/apps/kget/pics/connect0.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect1.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect2.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect3.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect4.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect5.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect6.png
|
||||
debian/tmp/usr/share/apps/kget/pics/connect7.png
|
||||
debian/tmp/usr/share/apps/kget/pics/md_delayed.png
|
||||
debian/tmp/usr/share/apps/kget/pics/md_finished.png
|
||||
debian/tmp/usr/share/apps/kget/pics/md_queued.png
|
||||
debian/tmp/usr/share/apps/kget/pics/md_scheduled.png
|
||||
debian/tmp/usr/share/apps/kget/pics/retrying.png
|
||||
debian/tmp/usr/share/apps/kget/pics/target.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try0.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try1.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try2.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try3.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try4.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try5.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try6.png
|
||||
debian/tmp/usr/share/apps/kget/pics/try7.png
|
||||
debian/tmp/usr/share/apps/tdehtml/kpartplugins/kget_plug_in.desktop
|
||||
debian/tmp/usr/share/apps/tdehtml/kpartplugins/kget_plug_in.rc
|
||||
debian/tmp/usr/share/apps/konqueror/servicemenus/kget_download.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/fileopen.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/kget1.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/kget2.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/kget3.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/kget4.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kget/kget5.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/kget.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/mimetypes/kget_list.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/tdehtml_kget.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/kget.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/mimetypes/kget_list.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/kget.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/mimetypes/kget_list.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/kget.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/mimetypes/kget_list.png
|
||||
debian/tmp/usr/share/mimelnk/application/x-kgetlist.desktop
|
||||
debian/tmp/usr/share/sounds/KGet_Added.ogg
|
||||
debian/tmp/usr/share/sounds/KGet_Finished.ogg
|
||||
debian/tmp/usr/share/sounds/KGet_Finished_All.ogg
|
||||
debian/tmp/usr/share/sounds/KGet_Started.ogg
|
||||
|
||||
debian/icons/kget-16.xpm /usr/share/pixmaps
|
||||
debian/icons/kget.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/kget-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kget-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KGet"\
|
||||
icon32x32="/usr/share/pixmaps/kget.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kget-16.xpm"\
|
||||
command="/usr/bin/kget"
|
@ -0,0 +1,39 @@
|
||||
debian/tmp/usr/bin/knewstickerstub
|
||||
debian/tmp/usr/lib/*/trinity/knewsticker_panelapplet.la
|
||||
debian/tmp/usr/lib/*/trinity/knewsticker_panelapplet.so
|
||||
debian/tmp/usr/lib/*/trinity/libkntsrcfilepropsdlg.la
|
||||
debian/tmp/usr/lib/*/trinity/libkntsrcfilepropsdlg.so
|
||||
debian/tmp/usr/share/applications/tde/knewsticker-standalone.desktop
|
||||
debian/tmp/usr/share/applnk/.hidden/knewstickerstub.desktop
|
||||
debian/tmp/usr/share/apps/tdeconf_update/knewsticker.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/knt-0.1-0.2.pl
|
||||
debian/tmp/usr/share/apps/kicker/applets/knewsticker.desktop
|
||||
debian/tmp/usr/share/apps/knewsticker/eventsrc
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/about-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/checknews-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/contextmenu.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/help-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcmnewsticker-filters.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcmnewsticker-general.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcmnewsticker-newssitedialog.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcmnewsticker-newssources.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcmnewsticker-scrollerprefs.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/kcontrol-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/knewsticker-childpanel.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/knewsticker-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/knewsticker-kicker.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/knewsticker-ownwindow.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/newarticle-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/newssite-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/oldarticle-icon.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knewsticker/preferences-icon.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/knewsticker.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/knewsticker.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/knewsticker.png
|
||||
debian/tmp/usr/share/services/kntsrcfilepropsdlg.desktop
|
||||
|
||||
debian/icons/knewsticker-16.xpm /usr/share/pixmaps
|
||||
debian/icons/knewsticker.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
knewsticker-trinity: menu-command-not-in-package /usr/lib/menu/knewsticker:8 /usr/bin/appletproxy
|
@ -0,0 +1,8 @@
|
||||
?package(knewsticker-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KNewsTicker"\
|
||||
icon32x32="/usr/share/pixmaps/knewsticker.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/knewsticker-16.xpm"\
|
||||
command="/usr/bin/appletproxy knewsticker.desktop"
|
@ -0,0 +1,539 @@
|
||||
debian/tmp/usr/bin/kopete
|
||||
debian/tmp/usr/bin/kopete_latexconvert.sh
|
||||
debian/tmp/usr/include/kopete/kopetepicture.h
|
||||
debian/tmp/usr/include/kopete/kopeteprefs.h
|
||||
debian/tmp/usr/include/kopete/ui/addressbooklinkwidget.h
|
||||
debian/tmp/usr/include/kopete/webcamwidget.h
|
||||
debian/tmp/usr/lib/*/libkopete.so.1
|
||||
debian/tmp/usr/lib/*/libkopete.so.1.0.0
|
||||
debian/tmp/usr/lib/*/libkopete_msn_shared.so.0
|
||||
debian/tmp/usr/lib/*/libkopete_msn_shared.so.0.0.0
|
||||
debian/tmp/usr/lib/*/libkopete_oscar.so.2
|
||||
debian/tmp/usr/lib/*/libkopete_oscar.so.2.0.0
|
||||
debian/tmp/usr/lib/*/libkopete_videodevice.so.0
|
||||
debian/tmp/usr/lib/*/libkopete_videodevice.so.0.0.0
|
||||
debian/tmp/usr/lib/*/tdeconf_update_bin/kopete-account-tdeconf_update
|
||||
debian/tmp/usr/lib/*/tdeconf_update_bin/kopete-nameTracking-tdeconf_update
|
||||
debian/tmp/usr/lib/*/tdeconf_update_bin/kopete-pluginloader2-tdeconf_update
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_accountconfig.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_accountconfig.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_addbookmarks.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_addbookmarks.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_alias.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_alias.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_appearanceconfig.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_appearanceconfig.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_autoreplace.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_autoreplace.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_avdeviceconfig.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_avdeviceconfig.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_behaviorconfig.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_behaviorconfig.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_cryptography.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_cryptography.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_highlight.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_highlight.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_history.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_history.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_identityconfig.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_identityconfig.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_latex.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_latex.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_msn.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_msn.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_netmeeting.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_netmeeting.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_nowlistening.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_nowlistening.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_texteffect.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_texteffect.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_translator.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_translator.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_webpresence.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kopete_webpresence.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_addbookmarks.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_addbookmarks.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_aim.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_aim.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_alias.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_alias.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_autoreplace.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_autoreplace.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_chatwindow.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_chatwindow.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_connectionstatus.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_connectionstatus.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_contactnotes.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_contactnotes.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_cryptography.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_cryptography.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_emailwindow.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_emailwindow.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_gadu.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_gadu.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_groupwise.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_groupwise.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_highlight.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_highlight.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_history.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_history.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_icq.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_icq.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_irc.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_irc.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_jabber.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_jabber.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_latex.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_latex.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_meanwhile.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_meanwhile.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_msn.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_msn.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_netmeeting.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_netmeeting.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_nowlistening.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_nowlistening.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_statistics.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_statistics.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_testbed.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_testbed.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_texteffect.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_texteffect.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_translator.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_translator.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_webpresence.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_webpresence.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_wp.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_wp.so
|
||||
debian/tmp/usr/lib/*/trinity/kopete_yahoo.la
|
||||
debian/tmp/usr/lib/*/trinity/kopete_yahoo.so
|
||||
debian/tmp/usr/lib/*/trinity/libkrichtexteditpart.la
|
||||
debian/tmp/usr/lib/*/trinity/libkrichtexteditpart.so
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_jabberdisco.la
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_jabberdisco.so
|
||||
debian/tmp/usr/share/applications/tde/kopete.desktop
|
||||
debian/tmp/usr/share/apps/kopete/eventsrc
|
||||
debian/tmp/usr/share/apps/kopete/icons
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/kopete_avdevice.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/msn_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/sms_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/testbed_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/wp_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/128x128/apps/yahoo_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_busy.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_busy_d.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_con.mng
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_connecting.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_description_overlay.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_ignored.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_invi.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_invi_d.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_offline.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_offline_d.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_online.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/gg_online_d.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_busy.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_connecting.mng
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_invisible.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/groupwise_online.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/kgpg_key1.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/kgpg_key2.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/kgpg_key3.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/logging.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/meanwhile_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/meanwhile_dnd.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/meanwhile_idle.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/meanwhile_unknown.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_blocked.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_brb.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_busy.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_connecting.mng
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_invisible.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_lunch.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_na.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_newmsg.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_offline.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_online.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/msn_phone.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/wp_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_away.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_busy.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_connecting.mng
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_idle.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_invisible.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_mobile.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/actions/yahoo_tea.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/gadu_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/groupwise_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/msn_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/sms_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/testbed_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/wp_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/16x16/apps/yahoo_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/actions
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/actions/logging.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/actions/yahoo_stealthed.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/apps/groupwise_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/apps/kopete_avdevice.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/22x22/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/actions
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/actions/logging.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/actions/yahoo_stealthed.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/autoreplace.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/gadu_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/groupwise_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/highlight.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/kopete_avdevice.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/latex.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/msn_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/smpppdcs.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/sms_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/testbed_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/texteffect.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/wp_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/32x32/apps/yahoo_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/actions
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/actions/logging.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/groupwise_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/msn_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/sms_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/testbed_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/wp_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/48x48/apps/yahoo_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/actions
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/actions/logging.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/groupwise_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/kopete_avdevice.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/meanwhile_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/msn_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/sms_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/testbed_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/wp_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/icons/crystalsvg/64x64/apps/yahoo_protocol.png
|
||||
debian/tmp/usr/share/apps/kopete/ircchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete/ircnetworks.xml
|
||||
debian/tmp/usr/share/apps/kopete/kopetechatwindow.rc
|
||||
debian/tmp/usr/share/apps/kopete/kopetecommandui.rc
|
||||
debian/tmp/usr/share/apps/kopete/kopeteemailwindow.rc
|
||||
debian/tmp/usr/share/apps/kopete/kopeteui.rc
|
||||
debian/tmp/usr/share/apps/kopete/nowlisteningchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete/nowlisteningui.rc
|
||||
debian/tmp/usr/share/apps/kopete/pics
|
||||
debian/tmp/usr/share/apps/kopete/pics/statistics
|
||||
debian/tmp/usr/share/apps/kopete/pics/statistics/black.png
|
||||
debian/tmp/usr/share/apps/kopete/pics/statistics/blue.png
|
||||
debian/tmp/usr/share/apps/kopete/pics/statistics/gray.png
|
||||
debian/tmp/usr/share/apps/kopete/pics/statistics/navy.png
|
||||
debian/tmp/usr/share/apps/kopete/styles
|
||||
debian/tmp/usr/share/apps/kopete/webpresence
|
||||
debian/tmp/usr/share/apps/kopete_contactnotes/contactnotesui.rc
|
||||
debian/tmp/usr/share/apps/kopete_cryptography/cryptographychatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_cryptography/cryptographyui.rc
|
||||
debian/tmp/usr/share/apps/kopete_groupwise/gwchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_history/historychatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_history/historyui.rc
|
||||
debian/tmp/usr/share/apps/kopete_jabber/jabberchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_latex/latexchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_msn/msnchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_netmeeting/netmeetingchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_statistics/statisticsui.rc
|
||||
debian/tmp/usr/share/apps/kopete_translator/translatorchatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_translator/translatorui.rc
|
||||
debian/tmp/usr/share/apps/kopete_yahoo/yahoochatui.rc
|
||||
debian/tmp/usr/share/apps/kopete_yahoo/yahooconferenceui.rc
|
||||
debian/tmp/usr/share/apps/kopeterichtexteditpart/kopeterichtexteditpartfull.rc
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-account-0.10.pl
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-account-tdeconf_update.sh
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-account-tdeconf_update.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-jabberpriorityaddition-tdeconf_update.sh
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-jabberpriorityaddition-tdeconf_update.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-jabberproxytype-tdeconf_update.sh
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-jabberproxytype-tdeconf_update.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-nameTracking.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-pluginloader.pl
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-pluginloader.upd
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-pluginloader2.sh
|
||||
debian/tmp/usr/share/apps/tdeconf_update/kopete-pluginloader2.upd
|
||||
debian/tmp/usr/share/config.kcfg/historyconfig.kcfg
|
||||
debian/tmp/usr/share/config.kcfg/kopete.kcfg
|
||||
debian/tmp/usr/share/config.kcfg/kopeteidentityconfigpreferences.kcfg
|
||||
debian/tmp/usr/share/config.kcfg/latexconfig.kcfg
|
||||
debian/tmp/usr/share/config.kcfg/nowlisteningconfig.kcfg
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kopete/chatstyle.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kopete/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kopete/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kopete/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kopete/menus.docbook
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/account_offline_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/add_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/aim_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/aim_connecting.mng
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/aim_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/aim_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_away_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_busy_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_food_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_invisible_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_phone_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/contact_xa_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/delete_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/edit_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/emoticon.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_connecting.mng
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_dnd.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_ffc.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_invisible.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_na.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_occupied.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/icq_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_channel.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_connecting.mng
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_normal.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_op.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_server.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/irc_voice.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_chatty.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_connecting.mng
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_group.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_invisible.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_na.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_original.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_raw.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_serv_off.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_serv_on.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/jabber_xa.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/kopeteeditstatusmessage.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/kopetestatusmessage.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/metacontact_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/metacontact_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/metacontact_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/metacontact_unknown.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/newmsg.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/search_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/show_offliners.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/status_unknown.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/status_unknown_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/irc_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_aim.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_gadu.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_http-ws.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_icq.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_irc.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_msn.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_qq.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_sms.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_smtp.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_tlen.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_gateway_yahoo.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/mimetypes/kopete_emoticons.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/account_offline_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/add_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/delete_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/edit_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/kopeteeditstatusmessage.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/search_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/show_offliners.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/kopete_all_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/kopete_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/kopete_some_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/kopete_some_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/mimetypes/kopete_emoticons.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/account_offline_overlay.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/add_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/delete_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/edit_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/kopeteeditstatusmessage.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/metacontact_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/metacontact_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/metacontact_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/metacontact_unknown.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/newmessage.mng
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/newmsg.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/search_user.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/show_offliners.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/irc_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/metacontact_away.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/metacontact_offline.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/metacontact_online.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/64x64/actions/voicecall.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/64x64/actions/webcamreceive.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/64x64/actions/webcamsend.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/64x64/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/64x64/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/scalable/actions/account_offline_overlay.svgz
|
||||
debian/tmp/usr/share/icons/hicolor/128x128/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/aim_away.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/aim_connecting.mng
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/aim_offline.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/aim_online.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/emoticon.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_away.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_connecting.mng
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_dnd.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_ffc.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_invisible.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_na.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_occupied.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_offline.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/icq_online.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_away.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_chatty.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_connecting.mng
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_group.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_invisible.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_na.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_offline.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_online.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_original.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_raw.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_serv_off.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_serv_on.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/jabber_xa.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/newmsg.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/status_unknown.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/actions/status_unknown_overlay.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/actions/newmessage.mng
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/aim_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/icq_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/actions/kopeteavailable.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/actions/kopeteaway.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/jabber_protocol.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/kopete.png
|
||||
debian/tmp/usr/share/icons/hicolor/scalable/apps/kopete2.svgz
|
||||
debian/tmp/usr/share/mimelnk/application/x-icq.desktop
|
||||
debian/tmp/usr/share/mimelnk/application/x-kopete-emoticons.desktop
|
||||
debian/tmp/usr/share/services/aim.protocol
|
||||
debian/tmp/usr/share/services/chatwindow.desktop
|
||||
debian/tmp/usr/share/services/emailwindow.desktop
|
||||
debian/tmp/usr/share/services/irc.protocol /usr/share/apps/kopete/
|
||||
debian/tmp/usr/share/services/jabberdisco.protocol
|
||||
debian/tmp/usr/share/services/kopete_accountconfig.desktop
|
||||
debian/tmp/usr/share/services/kopete_addbookmarks.desktop
|
||||
debian/tmp/usr/share/services/kopete_aim.desktop
|
||||
debian/tmp/usr/share/services/kopete_alias.desktop
|
||||
debian/tmp/usr/share/services/kopete_appearanceconfig.desktop
|
||||
debian/tmp/usr/share/services/kopete_autoreplace.desktop
|
||||
debian/tmp/usr/share/services/kopete_avdeviceconfig.desktop
|
||||
debian/tmp/usr/share/services/kopete_behaviorconfig.desktop
|
||||
debian/tmp/usr/share/services/kopete_connectionstatus.desktop
|
||||
debian/tmp/usr/share/services/kopete_contactnotes.desktop
|
||||
debian/tmp/usr/share/services/kopete_cryptography.desktop
|
||||
debian/tmp/usr/share/services/kopete_gadu.desktop
|
||||
debian/tmp/usr/share/services/kopete_groupwise.desktop
|
||||
debian/tmp/usr/share/services/kopete_highlight.desktop
|
||||
debian/tmp/usr/share/services/kopete_history.desktop
|
||||
debian/tmp/usr/share/services/kopete_icq.desktop
|
||||
debian/tmp/usr/share/services/kopete_identityconfig.desktop
|
||||
debian/tmp/usr/share/services/kopete_irc.desktop
|
||||
debian/tmp/usr/share/services/kopete_jabber.desktop
|
||||
debian/tmp/usr/share/services/kopete_latex.desktop
|
||||
debian/tmp/usr/share/services/kopete_meanwhile.desktop
|
||||
debian/tmp/usr/share/services/kopete_msn.desktop
|
||||
debian/tmp/usr/share/services/kopete_netmeeting.desktop
|
||||
debian/tmp/usr/share/services/kopete_nowlistening.desktop
|
||||
debian/tmp/usr/share/services/kopete_statistics.desktop
|
||||
debian/tmp/usr/share/services/kopete_testbed.desktop
|
||||
debian/tmp/usr/share/services/kopete_texteffect.desktop
|
||||
debian/tmp/usr/share/services/kopete_translator.desktop
|
||||
debian/tmp/usr/share/services/kopete_webpresence.desktop
|
||||
debian/tmp/usr/share/services/kopete_wp.desktop
|
||||
debian/tmp/usr/share/services/kopete_yahoo.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_addbookmarks_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_alias_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_autoreplace_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_cryptography_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_highlight_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_history_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_latex_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_msn_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_netmeeting_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_nowlistening_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_texteffect_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_translator_config.desktop
|
||||
debian/tmp/usr/share/services/tdeconfiguredialog/kopete_webpresence_config.desktop
|
||||
debian/tmp/usr/share/servicetypes/kopeteplugin.desktop
|
||||
debian/tmp/usr/share/servicetypes/kopeteprotocol.desktop
|
||||
debian/tmp/usr/share/servicetypes/kopeteui.desktop
|
||||
debian/tmp/usr/share/sounds/Kopete_Event.ogg
|
||||
debian/tmp/usr/share/sounds/Kopete_Received.ogg
|
||||
debian/tmp/usr/share/sounds/Kopete_Sent.ogg
|
||||
debian/tmp/usr/share/sounds/Kopete_User_is_Online.ogg
|
||||
|
||||
debian/icons/kopete-16.xpm /usr/share/pixmaps
|
||||
debian/icons/kopete.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kopete-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kopete-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE,IM"\
|
||||
title="Kopete"\
|
||||
icon32x32="/usr/share/pixmaps/kopete.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kopete-16.xpm"\
|
||||
command="/usr/bin/kopete"
|
@ -0,0 +1,44 @@
|
||||
#! /bin/sh
|
||||
# postinst script for kopete
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||
BASEDIR=""
|
||||
fi
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <postinst> `configure' <most-recently-configured-version>
|
||||
# * <old-postinst> `abort-upgrade' <new version>
|
||||
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
|
||||
# <new-version>
|
||||
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
|
||||
# <failed-install-package> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see http://www.debian.org/doc/debian-policy/ or
|
||||
# the debian-policy package
|
||||
#
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
update-alternatives --auto irc.protocol || true
|
||||
update-alternatives --verbose --install /usr/share/services/irc.protocol irc.protocol /usr/share/apps/kopete/irc.protocol 40 || true
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
@ -0,0 +1,43 @@
|
||||
#! /bin/sh
|
||||
# prerm script for kopete
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||
BASEDIR=""
|
||||
fi
|
||||
|
||||
# summary of how this script can be called:
|
||||
# * <prerm> `remove'
|
||||
# * <old-prerm> `upgrade' <new-version>
|
||||
# * <new-prerm> `failed-upgrade' <old-version>
|
||||
# * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
|
||||
# * <deconfigured's-prerm> `deconfigure' `in-favour'
|
||||
# <package-being-installed> <version> `removing'
|
||||
# <conflicting-package> <version>
|
||||
# for details, see /usr/share/doc/packaging-manual/
|
||||
|
||||
case "$1" in
|
||||
remove)
|
||||
update-alternatives --quiet --remove irc.protocol \
|
||||
/usr/share/apps/kopete/irc.protocol
|
||||
;;
|
||||
|
||||
upgrade|deconfigure)
|
||||
;;
|
||||
|
||||
failed-upgrade)
|
||||
;;
|
||||
*)
|
||||
echo "prerm called with unknown argument \`$1'" >&2
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
@ -0,0 +1,14 @@
|
||||
Reporting a kopete crash
|
||||
------------------------
|
||||
|
||||
When you report a kopete crash, it is important to provide:
|
||||
* the exact steps to reproduce the crash (the protocol used, the plugins
|
||||
you have activated, the precises circumstances of the bug...)
|
||||
* a useful backtrace of the crash
|
||||
|
||||
To produce useful backtraces you must have qt-x11-free-dbg, tdelibs-dbg,
|
||||
and tdenetwork-dbg installed. tdebase-dbg may also be useful. A backtrace
|
||||
full of "(no debugging symbols found)" is useless.
|
||||
|
||||
A bug that is not reproducible, or that lacks the necessary backtrace, will
|
||||
be discarded.
|
@ -0,0 +1,12 @@
|
||||
debian/tmp/usr/lib/*/trinity/kpf_panelapplet.la
|
||||
debian/tmp/usr/lib/*/trinity/kpf_panelapplet.so
|
||||
debian/tmp/usr/lib/*/trinity/kpfpropertiesdialog.la
|
||||
debian/tmp/usr/lib/*/trinity/kpfpropertiesdialog.so
|
||||
debian/tmp/usr/share/apps/kicker/applets/kpfapplet.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpf/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpf/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpf/index.docbook
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/kpf.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/kpf.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/kpf.png
|
||||
debian/tmp/usr/share/services/kpfpropertiesdialogplugin.desktop
|
@ -0,0 +1,40 @@
|
||||
Configuring and Running KPPP
|
||||
============================
|
||||
|
||||
In order to use KPPP, you must first be a member of the "dip" group.
|
||||
Membership in this group is a prerequisite for any and all use of ppp in
|
||||
Debian. If you are not a member of this group, you will not be able to run
|
||||
the ppp daemon (pppd) or make a dialup connection. Since KPPP's backend
|
||||
runs SUID root, membership in the "dialout" group is not needed to access
|
||||
device nodes.
|
||||
|
||||
KPPP also requires that the ppp daemon be run with the "noauth" option.
|
||||
However, pppd's default setting, in /etc/ppp/options, is "auth", and for
|
||||
security reasons it should remain so. To work around this problem, uncomment
|
||||
"noauth" in /etc/ppp/peers/kppp-options. You should then be able to connect.
|
||||
|
||||
Note that if "noauth" is uncommented, a setting of "noauth" in
|
||||
/etc/ppp/options will conflict with KPPP. Note also that uncommenting
|
||||
"noauth" opens the possibility that other malicious members of the "dip"
|
||||
group might potentially abuse the ppp daemon.
|
||||
|
||||
Finally, if you are uncertain as to which device node represents your modem,
|
||||
you can try to find out by running "dmesg | grep tty". The output of this
|
||||
command will sometimes provide the needed hint.
|
||||
|
||||
If the answer seems to be that your modem is on a node, such as ttyS28, that
|
||||
KPPP does not accept as a configuration option, then you should create a
|
||||
symlink from that node to /dev/modem (by running, as root,
|
||||
"ln -s /dev/ttyS28 /dev/modem", where ttyS28 is replaced by whatever node your
|
||||
modem is on). Then simply configure KPPP to use /dev/modem. Further modems
|
||||
with non-standard device nodes can likewise be symlinked to /dev/modem[0-3].
|
||||
|
||||
If you use udev, then symlinks in /dev will not be preserved
|
||||
across reboots. In this case, you should edit, as root, /etc/udev/links.conf,
|
||||
adding a line that resembles "L modem /dev/ttyS28". You must then either
|
||||
reboot, or run "/etc/init.d/udev restart", for the link to be created.
|
||||
|
||||
If you believe that your modem node should be included in KPPP's default list,
|
||||
and you are using a common type of hardware, you can always file a wishlist
|
||||
bug against the kppp package, although the package maintainers maintain the
|
||||
right to judge your device node too esoteric for inclusion.
|
@ -0,0 +1,533 @@
|
||||
debian/tmp/etc/ppp/peers/kppp-options
|
||||
debian/tmp/usr/bin/kppp
|
||||
debian/tmp/usr/bin/kppplogview
|
||||
debian/tmp/usr/share/applications/tde/Kppp.desktop
|
||||
debian/tmp/usr/share/applications/tde/kppplogview.desktop
|
||||
debian/tmp/usr/share/apps/kppp/pics/dock_both.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/dock_left.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/dock_none.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/dock_right.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/folder.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/modemboth.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/modemleft.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/modemnone.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/modemright.png
|
||||
debian/tmp/usr/share/apps/kppp/pics/phone.png
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Austria/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Austria/Simon%032Media
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Belarus/AtlantTelecom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Belarus/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/AICOM
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/ApexNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/ARsystem
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/ASYS
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/BohemiaNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Brailcom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/CITYNET
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Contactel
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Econnect
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/ES-servis
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Falco_computer
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Fortech
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/HP-NET
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/INTERNET_OnLine
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/INTERNEXT
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/IQNET
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/KPNQuest
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/M-soft
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Nextra
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/ProfiNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/SeverNET
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Video_OnLine
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Czech_Republic/Volny
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Denmark/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Denmark/Get2Net
|
||||
debian/tmp/usr/share/apps/kppp/Provider/France/ClubInternetFull
|
||||
debian/tmp/usr/share/apps/kppp/Provider/France/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Germany/CityWeb
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Germany/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Germany/FH%032Rhein%032Sieg%032%040Informatik%041
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Germany/MUC%046DE
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Germany/Netsurf
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Irland/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Irland/Eircom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Irland/IOL
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/12Move
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Bart
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Betuwenet%032BFree
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Betuwenet%032BQuality
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Cistron
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Concepts%032ICT
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Cubic%032Circle
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Dataweb
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Daxis%032Internet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Demon%032Internet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Energis-Ision
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Euronet%032anytime
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Euronet%032professional
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/FlakkeeNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/FreeAcces
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Freeler%032basis
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Freeler%032compleet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Freeler%032voordelig
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Hacom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/HCC%032NET
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/HetNet%032Basis%032Surfen
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/HetNet%032Frequent%032Surfen
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/HetNet%032Regelmatig%032Surfen
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/IAE
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/ILimburg
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Interbox
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Internet%032Acces%032Facilities
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Internet%032Online
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/InterNLnet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Interstroom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/IntroWeb%032Hengelo%032e.o.
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0323-cijferig%032kengetal
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/IntroWeb%032met%0324-cijferig%032kengetal
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Kabelfoon
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/KeyAcces%032met%0323%032cijferig%032kengetal
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/KeyAcces%032met%0324%032cijferig%032kengetal
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Luna
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Macom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Nederland.net
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Premium
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Planet%032Internet%032Standaard
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Plant%032Acces
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Popin
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/PublishNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Raketnet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Solcon
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Support%032Net
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Telebyte
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Tiscali%032Compleet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Tiscali%032Gratis
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/UwNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Via%032Networks
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Wannadoo%032budget
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Wannadoo%032budget%320plus
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Wannadoo%032smartpack
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Wirehub
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/XS4All
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Zeelandnet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Zon%0322
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Zon%032Gratis
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Netherlands/Zon%032Inclusief
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/ihug
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/OrconInternet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/Paradise
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/Voyager
|
||||
debian/tmp/usr/share/apps/kppp/Provider/NewZealand/XTRA
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Norway/BGNett
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Norway/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Norway/Institutt%032for%032informatikk
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Portugal/Clix
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Portugal/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Portugal/Netc
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Portugal/OniNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/AmisNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/Arnes
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/Kiss
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/MojNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/SiOL
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Slovenia/Volja
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Sweden/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Sweden/Tiscali
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Sweden/Utfors
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Switzerland/Bluewin
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Switzerland/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Taiwan/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Taiwan/EraNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Taiwan/HiNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Taiwan/SeedNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Ukraine/Adamant
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Ukraine/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Ukraine/IPTelecom
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Ukraine/NuVse
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/Demon%032Green%0322120666
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/Demon%032Purple%0322121666
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/Demon%032Red%0320798666
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/.directory
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/FreeServe
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/UK%032Free%032Software%032Network%032ISDN
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/UK%032Free%032Software%032Network%032Modem
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/UKPOST%032ISDN
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/UKPOST%032Modem
|
||||
debian/tmp/usr/share/apps/kppp/Provider/United_Kingdom/UTV
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/041Net
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/BeoTelNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Bar.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Berane.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.BijeloPolje.CG.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Budva.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Cetinje.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.HercegNovi.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Kotor.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Niksic.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Pljevlja.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Podgorica.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Tivat.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.Ulcinj.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/CG.yu
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/DrenikNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetBeograd
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetCacak
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnet@Full
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetKragujevac
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnet@Lite
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetNis
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetNoviSad
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetPristina
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetSombor
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/EUnetSubotica
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/InfoSKY
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/PTT
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/SCnet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/Sezampro
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/SuOnline
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/TippNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/VeratNet
|
||||
debian/tmp/usr/share/apps/kppp/Provider/Yugoslavia/YUBCnet
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Argentina/Argentina_0610.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Argentina/Argentina_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/Optus_Residential.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/STD_Zone_1_-_25-50_kms.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/STD_Zone_2_-_50-85_kms.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/STD_Zone_3_-_85-165_kms.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Australia/STD_Zone_4_-_165+_kms.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_1/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_1/Long_Distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_1/Online.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_2/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_2/Long_Distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Business_2/Online.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Minimum/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Minimum/Long_Distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Minimum/Online.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Standard/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Standard/Long_Distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Standard/Online.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Austria/Standard/UTA_easyinternet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bangladesh/ATT00007.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bangladesh/ATT00010.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Belgium/Belgium_internet_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Belgium/Belgium_internet_frank.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Belgium/Belgium_interzonal.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Belgium/Belgium_zonal.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bosnia_and_Herzegovina/BiHnet_-_home_-_bez_impulsa.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bosnia_and_Herzegovina/BiHnet_-_student_-_bez_impulsa.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bosnia_and_Herzegovina/samo_impulsi.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Bosnia_and_Herzegovina/SmartNet_PERSONAL_bez_impulsa.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Brasil/Brasil_Ligbr.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Brasil/Brasil.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Brasil/Rio_de_Janeiro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Brasil/SaoPaulo.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/checkrules
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Croatia/CARNet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet_2004_Business_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet_2004_Home_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet_2004_telefon_a_Internet_180_+_660.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet_2004_telefon_a_Internet_90_+_300.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Czechia/Czech_Telecom_Internet_2004_telefon_universal.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/12Move_Analog.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/12Move_ISDN.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Cybercity_Friabonnement.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Get2net_Betaling.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Get2net_Gratis.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Mobilix_Wanadoo.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Teledanmark_Basis.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Teledanmark_Favoritinternet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Worldonline-Analog.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Denmark/Worldonline-ISDN.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Estonia/Eesti_Telefon.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Finland/VLP.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Cegetel_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Cegetel_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/France_Telecom_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/France_Telecom_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/France_Telecom_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Le_9_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Le_9_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/OneTel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Tele2_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Tele2_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/France/Wanadoo_Free.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/1und1_InternetZugang.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/2.5min.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/2.5s.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/AddCom_by_Call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Addcom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Arcor_Internet_by_Call_easy.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Callino_Surf_Basic.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Callino_Surf_Plus.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Callisa_City.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/CallOkaynet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/City_Activ_Plus_Option.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Cityweb.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/CompuservePro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Easynet_easy-call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/E-Plus-Online_Jedermann.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/expressnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Freenet_Enterprise.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Freenet_Sorglos.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Freenet_special_call_by_call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Freenet_StandardTarif.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Freenet_Super_CbC.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/knUUt-by-Call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Mobilcom_Freenet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/MSN.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Netcom_Kassel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/NGI_Call_By_Call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Nikoma_Internet_by_Call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Nikoma.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Nikoma_Study_and_Surf.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Planet-Interkom_Internet_by_call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Puretec.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/talkline_by_call.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/Telekom_City_Select_5_30.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/vossnet_fun_light.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/vossnet_fun.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/vossnet_kompl.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Germany/VR-Web.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Greece/Hellas_analog_local_in_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Greece/Hellas_digital_local_in_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Greece/Hellas_EPAK_local_in_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone1_in_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Greece/Hellas_EPAK_Zone2_in_euro.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Hong_Kong/Hong_Kong_Telecom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Hungary/Local_MATAV.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Hungary/Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Hungary/LocalTop_MATAV.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Hungary/PapaTel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Iceland/Iceland_general.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/India/BSNL_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/India/BSNL_Long_101_To_200.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/India/BSNL_Medium_51_To_100.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/India/Vsnl_local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Indonesia/Lokal_1_Metropolitan.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Indonesia/Lokal_2_Metropolitan.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Indonesia/Lokal_non_metropolitan.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ireland/Eircom_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ireland/Eircom_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ireland/Eircom_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ireland/Eircom_Special.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Israel/Bezeq_Interurban.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Israel/Bezeq_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Atlanet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Cheapnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Internet_SpZero.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Libero1055_Base.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Libero1055_SpZero.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Locali_Base.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Loc_Reg_Naz_SpZero.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Infostrada_Reg_Naz_Base.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Tele2_Altri_ISP.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Tele2_Internet_Tele2.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Telecom_Interurbane_Fino15Km.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Telecom_Interurbane_Oltre15Km.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Telecom_Locali.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Teleconomy24_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Teleconomy24_Nazionali.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Teleconomy_NoStop_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_24ore_Internet_AltriISP.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_24ore_Internet_InWind.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_24ore_Interurbane.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_24ore_Urbane.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family_Internet_AltriISP.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family_Internet_InWind.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family_Interurbane.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Internet_InWind.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family+SuperLight_Urbane_Interurbane.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Family_Urbane.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Flat_Internet_AltriISP.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Flat_Internet_InWind.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Italy/Wind_Urbana_1088_Light.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Jamaica/CWJ_InterParish.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Jamaica/CWJ_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Japan/NTT_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Kazakhstan/Akparat_Sprint.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Luxembourg/CMD_InternetGratuit.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Luxembourg/LuxembourgOnline_FreeInternet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Luxembourg/PetT_ClassicSurf.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Luxembourg/PetT_KioskSurf.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_interurban.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Macedonia/Macedonia_GenericISP_local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Macedonia/Macedonia_MTnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Malaysia/malaysia.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Malaysia/TMNet_Jaring.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/12Move.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio_Nummervoordeel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBasis_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBasis_Regio_Nummervoordeel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBasis_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBudget_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelBudget_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelPlus_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelPlus_Regio_Nummervoordeel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/BelPlus_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Cistron
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Freeler_Basis.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Freeler_Voordelig.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/HetNet_Regelmatig_Surfen.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/InterNLnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/OneTel_Spaarstand_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/OneTel_Toets_1658_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Planet_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Priority_Telecom_Nationaal.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Priority_Telecom_Regionaal.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Extra_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Extra_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Preselect_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Buiten_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Tele2_Toets_1609_Regio.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Netherlands/Wannadoo_Budget_Plus
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Norway/Local_Area.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Norway/Long_Distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Norway/Netcom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/Internetia.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/Netia_100km_Niebieska.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/Netia_100km_Zielona.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/Netia_Lokalne_Niebieska.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/Netia_Lokalne_Zielona.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/TP_100km.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/TP_Lokalne.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Poland/TPSA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_Local_Ilhas.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_Regional_Ilhas.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_Regional.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_YesNET_Ilhas.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Portugal/PT_YesNET.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/Easynet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/Romtelecom_Acces_Special_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/RomTelecom_GSM.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/Romtelecom_Interjudetean.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/Romtelecom_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Romania/Zapp-Mobile.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Russia/mtu-intel_standart.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Russia/TEMPLATE.ru
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Singapore/SingTel_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovakia/Internetovy_tarif_019XY.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovakia/ST_medzimesto.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovakia/ST_mesto.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovenia/omrezje_0880.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovenia/omrezje_0889.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Slovenia/stacionarno_omrezje.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/South_Africa/South_Africa_local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/South_Africa/South_Africa_long_distance.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/South_Afrika/South_Afrika_Justin.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/South_Afrika/South_Afrika.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Infovia_IVA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Infovia.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Interprovincial_IVA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Interprovincial.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Metropolitana_IVA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Metropolitana.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Nacional.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Provincial_IVA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Spain/Telefonica_Provincial.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Abonnera_com.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/ACN.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/CNEAB-Route66.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Crossnet-Affinity.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Glocalnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Gts.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Home_se.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Nemtel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Plusenergi.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Rix_Telecom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/RSLCom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Supertel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Svensk_Telekom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Tele1_Europe.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Tele2.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Tele8.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Teleman.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telenordia.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telerian.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telia.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telia_Telebonus1.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telia_Telebonus2.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Telitel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Tiscali.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Transnet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Universal_Telecom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Utfors.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Sweden/Vattenfall.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Sunrise_Freetime.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Sunrise_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Sunrise_Select_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Swisscom_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Swisscom_Remote.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Switzerland/Swisscom_Surf.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/TEMPLATE
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Turkey/Turk_Telekom_Internet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ukraine/IPTelecom_hourly.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ukraine/NuVse_hourly.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ukraine/TEMPLATE.uk
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Ukraine/Utel_Unet.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BirminghamCable_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BirminghamCable_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BirminghamCable_SameTelco.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/British_OneTel.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Local.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BritishTelecom_National.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/BritishTelecom_Regional.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/United_Kingdom/Connaught_Telecom.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Uruguay/Adinet_cIVA.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_1xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_2xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_3xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_4xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_5xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/041_9xx_xxx.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/III_zona-preko_200km.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/II_zona-do_200km.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/I_zona-ista_mreza.rst
|
||||
debian/tmp/usr/share/apps/kppp/Rules/Yugoslavia/Lokalni_poziv.rst
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/accounting.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/callback.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/chap.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/costsgraphs.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/dialog-setup.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/getting-online.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/global-settings.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/hayes.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-accounting-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-dial-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-dns-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-execute-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-gateway-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-ip-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-account-login-script-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-config.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-device-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-dialler-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-faq.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-graph-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-misc-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-modem-tab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/kppp-wizard.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/security.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/tricks.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kppp/wizard.docbook
|
||||
debian/tmp/usr/share/icons/hicolor/128x128/apps/kppp.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kppp.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/kppp.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kppp.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/kppp.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/kppp.png
|
||||
|
||||
debian/icons/kppp-16.xpm /usr/share/pixmaps
|
||||
debian/icons/kppp.xpm /usr/share/pixmaps
|
@ -0,0 +1,3 @@
|
||||
kppp-trinity: setuid-binary usr/bin/kppp 4754 root/dip
|
||||
kppp-trinity: non-standard-executable-perm usr/bin/kppplogview 0754 != 0755
|
||||
kppp-trinity: non-standard-file-perm etc/ppp/peers/kppp-options 0640 != 0644
|
@ -0,0 +1,15 @@
|
||||
?package(kppp-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KPPP"\
|
||||
icon32x32="/usr/share/pixmaps/kppp.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kppp-16.xpm"\
|
||||
command="/usr/bin/kppp"
|
||||
|
||||
?package(kppp-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KPPP - Logview"\
|
||||
command="/usr/bin/kppplogview"
|
@ -0,0 +1,33 @@
|
||||
debian/tmp/usr/bin/krdc
|
||||
debian/tmp/usr/share/applications/tde/krdc.desktop
|
||||
debian/tmp/usr/share/apps/konqueror/servicemenus/smb2rdc.desktop
|
||||
debian/tmp/usr/share/apps/krdc/pics/close.png
|
||||
debian/tmp/usr/share/apps/krdc/pics/iconify.png
|
||||
debian/tmp/usr/share/apps/krdc/pics/pindown.png
|
||||
debian/tmp/usr/share/apps/krdc/pics/pinup.png
|
||||
debian/tmp/usr/share/apps/krdc/pics/pointcursor.png
|
||||
debian/tmp/usr/share/apps/krdc/pics/pointcursormask.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/authentication.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/close.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/krdc_window.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/preferences_profilestab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/preferences_rdpdefaultstab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/preferences_vncdefaultstab.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/snapshot.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/snapshot_connectionspeed.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/snapshot_nobrowse.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/snapshot_vncentry.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/window_fullscreen.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krdc/window_nofullscreen.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tdeioslave/rdp
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tdeioslave/vnc
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/krdc.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/krdc.png
|
||||
debian/tmp/usr/share/services/rdp.protocol
|
||||
debian/tmp/usr/share/services/vnc.protocol
|
||||
|
||||
debian/icons/krdc-16.xpm /usr/share/pixmaps
|
||||
debian/icons/krdc.xpm /usr/share/pixmaps
|
@ -0,0 +1,8 @@
|
||||
?package(krdc-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="Krdc"\
|
||||
icon32x32="/usr/share/pixmaps/krdc.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/krdc-16.xpm"\
|
||||
command="/usr/bin/krdc"
|
@ -0,0 +1,36 @@
|
||||
debian/tmp/usr/bin/krfb
|
||||
debian/tmp/usr/bin/krfb_httpd
|
||||
debian/tmp/usr/lib/*/trinity/kcm_krfb.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_krfb.so
|
||||
debian/tmp/usr/lib/*/trinity/kded_kinetd.la
|
||||
debian/tmp/usr/lib/*/trinity/kded_kinetd.so
|
||||
debian/tmp/usr/share/applications/tde/kcmkrfb.desktop
|
||||
debian/tmp/usr/share/applications/tde/krfb.desktop
|
||||
debian/tmp/usr/share/apps/kinetd/eventsrc
|
||||
debian/tmp/usr/share/apps/krfb/eventsrc
|
||||
debian/tmp/usr/share/apps/krfb/pics/connection-side-image.png
|
||||
debian/tmp/usr/share/apps/krfb/pics/eyes-closed24.png
|
||||
debian/tmp/usr/share/apps/krfb/pics/eyes-open24.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/configuration_access.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/configuration_network.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/configuration_session.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/connection.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/email_invitation.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/invitation_management.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/personal_invitation.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/krfb/screenshot.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/krfb.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/krfb.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/krfb.png
|
||||
debian/tmp/usr/share/icons/locolor/16x16/apps/krfb.png
|
||||
debian/tmp/usr/share/icons/locolor/32x32/apps/krfb.png
|
||||
debian/tmp/usr/share/services/kded/kinetd.desktop
|
||||
debian/tmp/usr/share/services/kinetd_krfb.desktop
|
||||
debian/tmp/usr/share/services/kinetd_krfb_httpd.desktop
|
||||
debian/tmp/usr/share/servicetypes/kinetdmodule.desktop
|
||||
|
||||
debian/icons/krfb-16.xpm /usr/share/pixmaps
|
||||
debian/icons/krfb.xpm /usr/share/pixmaps
|
@ -0,0 +1,8 @@
|
||||
?package(krfb-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="Krfb"\
|
||||
icon32x32="/usr/share/pixmaps/krfb.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/krfb-16.xpm"\
|
||||
command="/usr/bin/krfb"
|
@ -0,0 +1,89 @@
|
||||
debian/tmp/etc/trinity/ksircrc
|
||||
debian/tmp/usr/bin/dsirc
|
||||
debian/tmp/usr/bin/ksirc
|
||||
debian/tmp/usr/lib/*/trinity/ksirc.la
|
||||
debian/tmp/usr/lib/*/trinity/ksirc.so
|
||||
debian/tmp/usr/lib/*/libtdeinit_ksirc.so
|
||||
debian/tmp/usr/share/applications/tde/ksirc.desktop
|
||||
debian/tmp/usr/share/apps/ksirc/autodcc.pl
|
||||
debian/tmp/usr/share/apps/ksirc/eventsrc
|
||||
debian/tmp/usr/share/apps/ksirc/filters.pl
|
||||
debian/tmp/usr/share/apps/ksirc/icons/crystalsvg/22x22/actions/info.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/crystalsvg/22x22/actions/ksirc_dock.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/hicolor/16x16/apps/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/hicolor/22x22/apps/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/hicolor/32x32/apps/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/hicolor/48x48/apps/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/icons/hicolor/64x64/apps/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/ksirc.pl
|
||||
debian/tmp/usr/share/apps/ksirc/pics/X.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/action.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/arrow.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/blueball.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/bluepin.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/bminus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/bplus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/channel.xpm
|
||||
debian/tmp/usr/share/apps/ksirc/pics/channels.xpm
|
||||
debian/tmp/usr/share/apps/ksirc/pics/ctcpping.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/dcc.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/dccget.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/dccsend.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/elipsis.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/biggrin.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/clown.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/cry.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/devil.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/frown.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/heart.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/loveit.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/puh.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/puh2.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/redface.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/sadley.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/slime.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/smile.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/wink.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/emoticons/yummie.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/error.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/greenpin.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/info.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/info1.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/join.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/kick.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/ksirc.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/ksirc_a.xpm
|
||||
debian/tmp/usr/share/apps/ksirc/pics/ksirc_b.xpm
|
||||
debian/tmp/usr/share/apps/ksirc/pics/madsmiley.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/mdi.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/mini-run.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/minus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/mode.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/notice.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/ominus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/oplus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/part.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/plus.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/quit.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/sadsmiley.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/sdi.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/server.xpm
|
||||
debian/tmp/usr/share/apps/ksirc/pics/servinfo.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/smiley.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/star.png
|
||||
debian/tmp/usr/share/apps/ksirc/pics/topic.png
|
||||
debian/tmp/usr/share/apps/ksirc/relnotes
|
||||
debian/tmp/usr/share/apps/ksirc/servers.ini
|
||||
debian/tmp/usr/share/apps/ksirc/servers.txt
|
||||
debian/tmp/usr/share/apps/ksirc/sirc.help.gz
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksirc/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksirc/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksirc/index.docbook
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/ksirc.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/ksirc.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/ksirc.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/ksirc.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/ksirc.png
|
||||
|
||||
debian/icons/ksirc-16.xpm /usr/share/pixmaps
|
||||
debian/icons/ksirc.xpm /usr/share/pixmaps
|
@ -0,0 +1,3 @@
|
||||
ksirc-trinity: no-shlibs-control-file usr/lib/libtdeinit_ksirc.so
|
||||
ksirc-trinity: postinst-must-call-ldconfig usr/lib/libtdeinit_ksirc.so
|
||||
ksirc-trinity: postrm-should-call-ldconfig usr/lib/libtdeinit_ksirc.so
|
@ -0,0 +1,8 @@
|
||||
?package(ksirc-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE,IRC"\
|
||||
title="KSirc"\
|
||||
icon32x32="/usr/share/pixmaps/ksirc.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/ksirc-16.xpm"\
|
||||
command="/usr/bin/ksirc"
|
@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
# postinst script for ksirc-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,20 @@
|
||||
debian/tmp/etc/trinity/ktalkdrc
|
||||
debian/tmp/usr/bin/ktalkdlg
|
||||
debian/tmp/usr/bin/mail.local
|
||||
debian/tmp/usr/lib/*/trinity/kcm_ktalkd.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_ktalkd.so
|
||||
debian/tmp/usr/share/applications/tde/kcmktalkd.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/kcmtalkd/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/kcmtalkd/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/kcmtalkd/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ktalkd/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ktalkd/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ktalkd/index.docbook
|
||||
debian/tmp/usr/share/icons/crystalsvg/128x128/apps/ktalkd.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/16x16/apps/ktalkd.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/22x22/apps/ktalkd.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/32x32/apps/ktalkd.png
|
||||
debian/tmp/usr/share/icons/crystalsvg/48x48/apps/ktalkd.png
|
||||
debian/tmp/usr/share/sounds/ktalkd.wav
|
||||
|
||||
debian/tmp/usr/bin/ktalkd usr/sbin/
|
@ -0,0 +1,50 @@
|
||||
#! /bin/sh
|
||||
# postinst script for ktalkd
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
|
||||
talk_entry="talk dgram udp wait nobody.tty /usr/sbin/tcpd /usr/sbin/ktalkd"
|
||||
ntalk_entry="ntalk dgram udp wait nobody.tty /usr/sbin/tcpd /usr/sbin/ktalkd"
|
||||
|
||||
enable_talk() {
|
||||
update-inetd --pattern '[ \t]/usr/sbin/ktalkd' --enable talk
|
||||
update-inetd --pattern '[ \t]/usr/sbin/ktalkd' --enable ntalk
|
||||
}
|
||||
|
||||
remove_talk() {
|
||||
update-inetd --remove 'talk[ \t].*[ \t]/usr/sbin/ktalkd'
|
||||
update-inetd --remove 'ntalk[ \t].*[ \t]/usr/sbin/ktalkd'
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
remove_talk
|
||||
if grep -q ^talk /etc/inetd.conf; then
|
||||
update-inetd --group BSD --add "#$talk_entry"
|
||||
update-inetd --group BSD --add "#$ntalk_entry"
|
||||
else
|
||||
update-inetd --group BSD --add "$talk_entry"
|
||||
update-inetd --group BSD --add "$ntalk_entry"
|
||||
fi
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
enable_talk
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -0,0 +1,37 @@
|
||||
#! /bin/sh
|
||||
# postrm script for ktalkd
|
||||
#
|
||||
# see: dh_installdeb(1)
|
||||
|
||||
set -e
|
||||
if [ "${BASEDIR:=/}" = "/" ]; then
|
||||
BASEDIR=""
|
||||
fi
|
||||
|
||||
#remove_talk() {
|
||||
# if [ -x /usr/sbin/update-inetd ]
|
||||
# then
|
||||
# /usr/sbin/update-inetd --remove 'talk[ \t].*[ \t]/usr/sbin/ktalkd'
|
||||
# /usr/sbin/update-inetd --remove 'ntalk[ \t].*[ \t]/usr/sbin/ktalkd'
|
||||
# fi
|
||||
#}
|
||||
|
||||
case "$1" in
|
||||
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
||||
# remove_talk
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postrm called with unknown argument \`$1'" >&2
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
# dh_installdeb will replace this with shell code automatically
|
||||
# generated by other debhelper scripts.
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
||||
|
||||
|
@ -0,0 +1,34 @@
|
||||
#debian/tmp/usr/bin/kwifimanager
|
||||
#debian/tmp/usr/lib/*/trinity/kcm_wifi.la
|
||||
#debian/tmp/usr/lib/*/trinity/kcm_wifi.so
|
||||
#debian/tmp/usr/lib/*/libkwireless.la
|
||||
#debian/tmp/usr/lib/*/libkwireless.so
|
||||
#debian/tmp/usr/share/applications/tde/kcmwifi.desktop
|
||||
#debian/tmp/usr/share/applications/tde/kwifimanager.desktop
|
||||
#debian/tmp/usr/share/apps/kicker/applets/kwireless.desktop
|
||||
#debian/tmp/usr/share/apps/kwifimanager/kwifimanagerui.rc
|
||||
#debian/tmp/usr/share/apps/kwifimanager/locations/DE_BW_Karlsruhe_University.loc
|
||||
#debian/tmp/usr/share/apps/kwifimanager/locations/NOWHERE.loc
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/ad_hoc.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/all_alone.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/ap_connect.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/excellent.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/good.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/marginal.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/no_card.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/offline.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/oor_down.png
|
||||
#debian/tmp/usr/share/apps/kwifimanager/pics/oor_minimum.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kwifimanager/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kwifimanager/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kwifimanager/index.docbook
|
||||
#debian/tmp/usr/share/icons/hicolor/128x128/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/16x16/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/22x22/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/32x32/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/48x48/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/64x64/apps/kwifimanager.png
|
||||
#debian/tmp/usr/share/icons/hicolor/scalable/apps/kwifimanager.svgz
|
||||
|
||||
debian/icons/kwifimanager-16.xpm /usr/share/pixmaps
|
||||
debian/icons/kwifimanager.xpm /usr/share/pixmaps
|
@ -0,0 +1,3 @@
|
||||
kwifimanager-trinity: no-shlibs-control-file usr/lib/libkwireless.so
|
||||
kwifimanager-trinity: postinst-must-call-ldconfig usr/lib/libkwireless.so
|
||||
kwifimanager-trinity: postrm-should-call-ldconfig usr/lib/libkwireless.so
|
@ -0,0 +1 @@
|
||||
debian/man/kwifimanager-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kwifimanager-trinity):\
|
||||
needs="X11"\
|
||||
section="Apps/Net"\
|
||||
hints="TDE"\
|
||||
title="KWifiManager"\
|
||||
icon32x32="/usr/share/pixmaps/kwifimanager.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kwifimanager-16.xpm"\
|
||||
command="/usr/bin/kwifimanager"
|
@ -0,0 +1,2 @@
|
||||
debian/tmp/usr/lib/*/librss.so.1
|
||||
debian/tmp/usr/lib/*/librss.so.1.0.0
|
@ -0,0 +1 @@
|
||||
lanbrowsing/lisa/README
|
@ -0,0 +1,114 @@
|
||||
#! /bin/sh
|
||||
### BEGIN INIT INFO
|
||||
# Provides: lisa-trinity
|
||||
# Required-Start: $remote_fs $syslog
|
||||
# Required-Stop: $remote_fs $syslog
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
### END INIT INFO
|
||||
|
||||
|
||||
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
||||
DAEMON=/usr/sbin/lisa
|
||||
NAME=lisa-trinity
|
||||
PIDFILE=/var/run/$NAME.pid
|
||||
DESC="LAN Information Server"
|
||||
|
||||
test -f $DAEMON || exit 0
|
||||
|
||||
set -e
|
||||
|
||||
is_running ()
|
||||
{
|
||||
if [ -e "$PIDFILE" ]
|
||||
then
|
||||
#checking if program is running
|
||||
if [ -L /proc/`cat $PIDFILE`/exe ]
|
||||
then
|
||||
#checking for stale pidfile
|
||||
if grep -q $DAEMON /proc/`cat $PIDFILE`/cmdline
|
||||
then
|
||||
#program is running and is called lisa
|
||||
return 0
|
||||
fi
|
||||
fi
|
||||
rm -f $PIDFILE
|
||||
fi
|
||||
#program is not running
|
||||
return 1
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
if is_running
|
||||
then
|
||||
echo "$DESC is already running. Not doing anything"
|
||||
exit 0
|
||||
fi
|
||||
echo -n "Starting $DESC: "
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON \
|
||||
> /dev/null
|
||||
echo $(pidof lisa) > $PIDFILE
|
||||
echo "$NAME."
|
||||
;;
|
||||
stop)
|
||||
if ! is_running
|
||||
then
|
||||
echo "$DESC is not running. Not doing anything"
|
||||
exit 0
|
||||
fi
|
||||
echo -n "Stopping $DESC: "
|
||||
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
|
||||
--exec $DAEMON
|
||||
rm -f $PIDFILE
|
||||
echo "$NAME."
|
||||
;;
|
||||
reload|force-reload)
|
||||
echo "Reloading $DESC configuration files."
|
||||
start-stop-daemon --stop --quiet --signal 1 --pidfile $PIDFILE \
|
||||
--exec $DAEMON
|
||||
;;
|
||||
status)
|
||||
echo -n "$DESC is "
|
||||
if ! is_running
|
||||
then
|
||||
echo -n "not "
|
||||
fi
|
||||
echo "running."
|
||||
|
||||
;;
|
||||
restart)
|
||||
echo -n "Restarting $DESC: "
|
||||
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
|
||||
--exec $DAEMON
|
||||
rm -f $PIDFILE
|
||||
sleep 1
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON \
|
||||
> /dev/null
|
||||
echo $(pidof lisa) > $PIDFILE
|
||||
echo "$NAME."
|
||||
;;
|
||||
cond-restart)
|
||||
if ! is_running
|
||||
then
|
||||
echo "$DESC is not running. Not doing anything"
|
||||
exit 0
|
||||
fi
|
||||
echo -n "Restarting $DESC: "
|
||||
start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE \
|
||||
--exec $DAEMON
|
||||
rm -f $PIDFILE
|
||||
sleep 1
|
||||
start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON \
|
||||
> /dev/null
|
||||
echo $(pidof lisa) > $PIDFILE
|
||||
echo "$NAME."
|
||||
;;
|
||||
*)
|
||||
N=/etc/init.d/$NAME
|
||||
echo "Usage: $N {start|stop|restart|cond-restart|status|reload|force-reload}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
@ -0,0 +1,23 @@
|
||||
debian/tmp/usr/lib/*/trinity/kcm_lanbrowser.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_lanbrowser.so
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_lan.la
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_lan.so
|
||||
debian/tmp/usr/share/applnk/.hidden/kcmtdeiolan.desktop
|
||||
debian/tmp/usr/share/applnk/.hidden/kcmlisa.desktop
|
||||
debian/tmp/usr/share/applnk/.hidden/kcmreslisa.desktop
|
||||
debian/tmp/usr/share/apps/konqsidebartng/virtual_folders/services/lisa.desktop
|
||||
debian/tmp/usr/share/apps/konqueror/dirtree/remote/lan.desktop
|
||||
debian/tmp/usr/share/apps/lisa/README
|
||||
debian/tmp/usr/share/apps/remoteview/lan.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/lanbrowser/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/lanbrowser/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcontrol/lanbrowser/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lisa/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lisa/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lisa/index.docbook
|
||||
debian/tmp/usr/share/services/lan.protocol
|
||||
debian/tmp/usr/share/services/rlan.protocol
|
||||
|
||||
debian/lisarc etc/
|
||||
debian/tmp/usr/bin/lisa usr/sbin/
|
||||
debian/tmp/usr/bin/reslisa usr/sbin/
|
@ -0,0 +1,2 @@
|
||||
debian/man/lisa-trinity.8
|
||||
debian/man/reslisa-trinity.8
|
@ -0,0 +1,11 @@
|
||||
PingAddresses = 127.0.0.1/255.255.255.255;
|
||||
PingNames =
|
||||
AllowedAddresses = 127.0.0.1/255.255.255.255
|
||||
BroadcastNetwork = 127.0.0.1/255.255.255.255
|
||||
SearchUsingNmblookup = 0 #also try nmblookup
|
||||
FirstWait = 30 #30 hundredth seconds
|
||||
SecondWait = -1 #only one try
|
||||
#SecondWait = 60 #the second time wait 0.6 seconds
|
||||
UpdatePeriod = 300 #update after 300 secs
|
||||
DeliverUnnamedHosts = 0 #don't publish hosts without name
|
||||
MaxPingsAtOnce = 256 #send up to 256 pings at once
|
@ -0,0 +1,180 @@
|
||||
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
|
||||
.TH KDICT 1 "June 2006" "Trinity Desktop Environment" "TDE Dictionary Client"
|
||||
.SH NAME
|
||||
kdict
|
||||
\- The TDE Dictionary Client
|
||||
.SH SYNOPSIS
|
||||
\fBkdict\fP [Qt\-options] [TDE\-options] [options] [word/phrase]
|
||||
.SH DESCRIPTION
|
||||
\fBKDict\fP is a graphical client for the \fBDICT Protocol\fP. It enables you to search through dictionary databases for a word or phrase, then displays suitable definitions. \fBKDict\fP tries to ease basic as well as advanced queries. A separate list offers a convenient way to deal with the enormous number of matching words that a advanced query can return.
|
||||
.sp 1
|
||||
The remainder of \fBKDict\fP's user interface resembles a web browser. For instance, you can jump to the definition of a synonym by simply clicking on the highlighted word. The back/forward functionality is also implemented, enabling you to quickly go back to the result of previous queries.
|
||||
.sp 1
|
||||
\fBKDict\fP is able to process the content of the clipboard, so it's easy to combine \fBKDict\fP with your web browser or text editor.
|
||||
.sp 1
|
||||
If your machine is behind a firewall, has no permanent internet connection or the server of dict.org is too slow for you, you can set up your own local server, all you need is available at \fBwww.dict.org\fP. The advantages of a local server are optimal performance and the ability to install additional databases of your choice.
|
||||
.SH OPTIONS
|
||||
.SS
|
||||
.SS Arguments:
|
||||
word/phrase Lookup the given word/phrase
|
||||
.SS Options:
|
||||
.TP
|
||||
.B \-c, \-\-clipboard
|
||||
Define X11-clipboard content (selected text)
|
||||
.SS
|
||||
.SS Generic options:
|
||||
.TP
|
||||
.B \-\-help
|
||||
Show help about options
|
||||
.TP
|
||||
.B \-\-help\-qt
|
||||
Show Qt specific options
|
||||
.TP
|
||||
.B \-\-help\-tde
|
||||
Show TDE specific options
|
||||
.TP
|
||||
.B \-\-help\-all
|
||||
Show all options
|
||||
.TP
|
||||
.B \-\-author
|
||||
Show author information
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Show version information
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options
|
||||
.SS
|
||||
.SS Qt options:
|
||||
.TP
|
||||
.B \-\-display <displayname>
|
||||
Use the X-server display 'displayname'
|
||||
.TP
|
||||
.B \-\-session <sessionId>
|
||||
Restore the application for the given 'sessionId'
|
||||
.TP
|
||||
.B \-\-cmap
|
||||
Causes the application to install a private color
|
||||
map on an 8\-bit display
|
||||
.TP
|
||||
.B \-\-ncols <count>
|
||||
Limits the number of colors allocated in the color
|
||||
cube on an 8\-bit display, if the application is
|
||||
using the QApplication::ManyColor color
|
||||
specification
|
||||
.TP
|
||||
.B \-\-nograb
|
||||
tells Qt to never grab the mouse or the keyboard
|
||||
.TP
|
||||
.B \-\-dograb
|
||||
running under a debugger can cause an implicit
|
||||
\-nograb, use \-dograb to override
|
||||
.TP
|
||||
.B \-\-sync
|
||||
switches to synchronous mode for debugging
|
||||
.TP
|
||||
.B \-\-fn, \-\-font <fontname>
|
||||
defines the application font
|
||||
.TP
|
||||
.B \-\-bg, \-\-background <color>
|
||||
sets the default background color and an
|
||||
application palette (light and dark shades are
|
||||
calculated)
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground <color>
|
||||
sets the default foreground color
|
||||
.TP
|
||||
.B \-\-btn, \-\-button <color>
|
||||
sets the default button color
|
||||
.TP
|
||||
.B \-\-name <name>
|
||||
sets the application name
|
||||
.TP
|
||||
.B \-\-title <title>
|
||||
sets the application title (caption)
|
||||
.TP
|
||||
.B \-\-visual TrueColor
|
||||
forces the application to use a TrueColor visual on
|
||||
an 8\-bit display
|
||||
.TP
|
||||
.B \-\-inputstyle <inputstyle>
|
||||
sets XIM (X Input Method) input style. Possible
|
||||
values are onthespot, overthespot, offthespot and
|
||||
root
|
||||
.TP
|
||||
.B \-\-im <XIM server>
|
||||
set XIM server
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
disable XIM
|
||||
.TP
|
||||
.B \-\-reverse
|
||||
mirrors the whole layout of widgets
|
||||
.SS
|
||||
.SS TDE options:
|
||||
.TP
|
||||
.B \-\-caption <caption>
|
||||
Use 'caption' as name in the titlebar
|
||||
.TP
|
||||
.B \-\-icon <icon>
|
||||
Use 'icon' as the application icon
|
||||
.TP
|
||||
.B \-\-miniicon <icon>
|
||||
Use 'icon' as the icon in the titlebar
|
||||
.TP
|
||||
.B \-\-config <filename>
|
||||
Use alternative configuration file
|
||||
.TP
|
||||
.B \-\-dcopserver <server>
|
||||
Use the DCOP Server specified by 'server'
|
||||
.TP
|
||||
.B \-\-nocrashhandler
|
||||
Disable crash handler, to get core dumps
|
||||
.TP
|
||||
.B \-\-waitforwm
|
||||
Waits for a WM_NET compatible windowmanager
|
||||
.TP
|
||||
.B \-\-style <style>
|
||||
sets the application GUI style
|
||||
.TP
|
||||
.B \-\-geometry <geometry>
|
||||
sets the client geometry of the main widget - see man X for the argument format
|
||||
.TP
|
||||
.B \-\-nofork
|
||||
Don't run in the background.
|
||||
.SS
|
||||
.SH FILES
|
||||
.I ~/.trinity/share/config/kdictrc
|
||||
.br
|
||||
.I ~/.trinity/share/config/kdict_panelappletrc
|
||||
.RS
|
||||
\fBkdict\fP configuration files
|
||||
.SH SEE ALSO
|
||||
.TP
|
||||
\fBwww.dict.org\fP
|
||||
DICT Development Group home page
|
||||
.RE
|
||||
.sp 1
|
||||
Full user documentation is available through the TDE Help Center. You can also enter the URL
|
||||
.BR help:/kdict/
|
||||
directly into konqueror or you can run
|
||||
.BR "khelpcenter help:/kdict/"
|
||||
from the command\-line.
|
||||
.br
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
Christian Gebauer <gebauer@kde.org>
|
||||
.br
|
||||
Matthias Hoelzer <hoelzer@kde.org>
|
||||
.br
|
||||
|
||||
.br
|
||||
.fi
|
||||
Please use http://bugs.trinitydesktop.org to report bugs; do not mail the authors directly.
|
||||
.PP
|
||||
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the Debian Project, but may be used by others. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
|
||||
.PP
|
||||
On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.
|
@ -0,0 +1,168 @@
|
||||
.\" This file was generated by (a slightly modified) kdemangen.pl and edited by hand
|
||||
.TH KGET 1 "June 2006" "Trinity Desktop Environment" "download manager"
|
||||
.SH NAME
|
||||
kget
|
||||
\- An advanced download manager for TDE
|
||||
.SH SYNOPSIS
|
||||
\fBkget\fP [Qt\-options] [TDE\-options] [options] [URL(s)]
|
||||
.SH DESCRIPTION
|
||||
\fBKGet\fP is an advanced download manager for TDE. It allows you to group downloads. In some cases, \fBKGet\fP can resume these downloads even if you shutdown your computer before the downloads have completed.
|
||||
.sp 1
|
||||
To download a document or package, drag and drop the URL on to \fBKGet\fP.
|
||||
.SH OPTIONS
|
||||
.SS
|
||||
.SS Arguments:
|
||||
URL(s) URL(s) to download
|
||||
.SS Options:
|
||||
.TP
|
||||
.B \-\-showDropTarget
|
||||
Start KGet with drop target
|
||||
.SS
|
||||
.SS Generic options:
|
||||
.TP
|
||||
.B \-\-help
|
||||
Show help about options
|
||||
.TP
|
||||
.B \-\-help\-qt
|
||||
Show Qt specific options
|
||||
.TP
|
||||
.B \-\-help\-tde
|
||||
Show TDE specific options
|
||||
.TP
|
||||
.B \-\-help\-all
|
||||
Show all options
|
||||
.TP
|
||||
.B \-\-author
|
||||
Show author information
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Show version information
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options
|
||||
.SS
|
||||
.SS Qt options:
|
||||
.TP
|
||||
.B \-\-display <displayname>
|
||||
Use the X\-server display 'displayname'
|
||||
.TP
|
||||
.B \-\-session <sessionId>
|
||||
Restore the application for the given 'sessionId'
|
||||
.TP
|
||||
.B \-\-cmap
|
||||
Causes the application to install a private color
|
||||
map on an 8\-bit display
|
||||
.TP
|
||||
.B \-\-ncols <count>
|
||||
Limits the number of colors allocated in the color
|
||||
cube on an 8\-bit display, if the application is
|
||||
using the QApplication::ManyColor color
|
||||
specification
|
||||
.TP
|
||||
.B \-\-nograb
|
||||
tells Qt to never grab the mouse or the keyboard
|
||||
.TP
|
||||
.B \-\-dograb
|
||||
running under a debugger can cause an implicit
|
||||
\-nograb, use \-dograb to override
|
||||
.TP
|
||||
.B \-\-sync
|
||||
switches to synchronous mode for debugging
|
||||
.TP
|
||||
.B \-\-fn, \-\-font <fontname>
|
||||
defines the application font
|
||||
.TP
|
||||
.B \-\-bg, \-\-background <color>
|
||||
sets the default background color and an
|
||||
application palette (light and dark shades are
|
||||
calculated)
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground <color>
|
||||
sets the default foreground color
|
||||
.TP
|
||||
.B \-\-btn, \-\-button <color>
|
||||
sets the default button color
|
||||
.TP
|
||||
.B \-\-name <name>
|
||||
sets the application name
|
||||
.TP
|
||||
.B \-\-title <title>
|
||||
sets the application title (caption)
|
||||
.TP
|
||||
.B \-\-visual TrueColor
|
||||
forces the application to use a TrueColor visual on
|
||||
an 8\-bit display
|
||||
.TP
|
||||
.B \-\-inputstyle <inputstyle>
|
||||
sets XIM (X Input Method) input style. Possible
|
||||
values are onthespot, overthespot, offthespot and
|
||||
root
|
||||
.TP
|
||||
.B \-\-im <XIM server>
|
||||
set XIM server
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
disable XIM
|
||||
.TP
|
||||
.B \-\-reverse
|
||||
mirrors the whole layout of widgets
|
||||
.SS
|
||||
.SS TDE options:
|
||||
.TP
|
||||
.B \-\-caption <caption>
|
||||
Use 'caption' as name in the titlebar
|
||||
.TP
|
||||
.B \-\-icon <icon>
|
||||
Use 'icon' as the application icon
|
||||
.TP
|
||||
.B \-\-miniicon <icon>
|
||||
Use 'icon' as the icon in the titlebar
|
||||
.TP
|
||||
.B \-\-config <filename>
|
||||
Use alternative configuration file
|
||||
.TP
|
||||
.B \-\-dcopserver <server>
|
||||
Use the DCOP Server specified by 'server'
|
||||
.TP
|
||||
.B \-\-nocrashhandler
|
||||
Disable crash handler, to get core dumps
|
||||
.TP
|
||||
.B \-\-waitforwm
|
||||
Waits for a WM_NET compatible windowmanager
|
||||
.TP
|
||||
.B \-\-style <style>
|
||||
sets the application GUI style
|
||||
.TP
|
||||
.B \-\-geometry <geometry>
|
||||
sets the client geometry of the main widget - see man X for the argument format
|
||||
.TP
|
||||
.B \-\-nofork
|
||||
Don't run in the background.
|
||||
.SS
|
||||
|
||||
.SH SEE ALSO
|
||||
Full user documentation is available through the TDE Help Center. You can also enter the URL
|
||||
.BR help:/kget/
|
||||
directly into konqueror or you can run
|
||||
.BR "khelpcenter help:/kget/"
|
||||
from the command\-line.
|
||||
.br
|
||||
.SH AUTHORS
|
||||
.nf
|
||||
Matej Moss
|
||||
.br
|
||||
Patrick Charbonnier <pch@freeshell.org>
|
||||
.br
|
||||
Carsten Pfeiffer <pfeiffer@kde.org>
|
||||
.br
|
||||
|
||||
.br
|
||||
.fi
|
||||
Please use http://bugs.trinitydesktop.org to report bugs; do not mail the authors directly.
|
||||
.PP
|
||||
This manual page was written by Holger Hartmann <Holger_Hartmann@gmx.de> for the Debian Project, but may be used by others. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 or any later version published by the Free Software Foundation.
|
||||
.PP
|
||||
On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common\-licenses/GPL.
|
@ -0,0 +1,334 @@
|
||||
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
|
||||
|
||||
<!-- Process this file with docbook-to-man to generate an nroff manual
|
||||
page: `docbook-to-man manpage.sgml > manpage.1'. You may view
|
||||
the manual page with: `docbook-to-man manpage.sgml | nroff -man |
|
||||
less'. A typical entry in a Makefile or Makefile.am is:
|
||||
|
||||
manpage.1: manpage.sgml
|
||||
docbook-to-man $< > $@
|
||||
-->
|
||||
|
||||
<!ENTITY dhfirstname "<firstname>Daniel</firstname>">
|
||||
<!ENTITY dhsurname "<surname>Stone</surname>">
|
||||
<!ENTITY dhdate "<date>April 20, 2002</date>">
|
||||
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
|
||||
<!ENTITY dhemail "<email>dstone@kde.org</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KOPETE</refentrytitle>">
|
||||
<!ENTITY dhpackage "kopete">
|
||||
|
||||
<!ENTITY debian "<productname>Debian GNU/Linux</productname>">
|
||||
<!ENTITY gnu "<acronym>GNU</acronym>">
|
||||
]>
|
||||
|
||||
<refentry>
|
||||
<refentryinfo>
|
||||
<address>
|
||||
&dhemail;
|
||||
</address>
|
||||
<author>
|
||||
&dhfirstname;
|
||||
&dhsurname;
|
||||
</author>
|
||||
<copyright>
|
||||
<year>2001</year>
|
||||
<holder>&dhusername;</holder>
|
||||
</copyright>
|
||||
&dhdate;
|
||||
</refentryinfo>
|
||||
<refmeta>
|
||||
&dhucpackage;
|
||||
|
||||
&dhsection;
|
||||
</refmeta>
|
||||
<refnamediv>
|
||||
<refname>&dhpackage;</refname>
|
||||
|
||||
<refpurpose>A TDE-based Instant Messaging client.</refpurpose>
|
||||
</refnamediv>
|
||||
<refsynopsisdiv>
|
||||
<cmdsynopsis>
|
||||
<command>&dhpackage;</command>
|
||||
|
||||
<arg><option>--help<replaceable></replaceable></option></arg>
|
||||
<arg><option>--help-tde<replaceable></replaceable></option></arg>
|
||||
<arg><option>--help-qt<replaceable></replaceable></option></arg>
|
||||
<arg><option>--version<replaceable> -v</replaceable></option></arg>
|
||||
<arg><option>--license<replaceable></replaceable</option></arg>
|
||||
<arg><option>--author<replaceable></replaceable></option></arg>
|
||||
<arg><option>--caption <caption><replaceable></replaceable></option></arg>
|
||||
<arg><option>--icon <icon><replaceable></replaceable></option></arg>
|
||||
<arg><option>--miniicon <icon><replaceable></replaceable></option></arg>
|
||||
<arg><option>--dcopserver <server><replaceable></replaceable></option></arg>
|
||||
<arg><option>--nocrashhandler<replaceable></replaceable></option></arg>
|
||||
<arg><option>--waitforwm<replaceable></replaceable></option></arg>
|
||||
<arg><option>--style <style><replaceable></replaceable></option></arg>
|
||||
<arg><option>--geometry <geometry><replaceable></replaceable></option></arg>
|
||||
<arg><option>--display <display><replaceable></replaceable></option></arg>
|
||||
<arg><option>--session <sessionid><replaceable></replaceable></option></arg>
|
||||
<arg><option>--cmap<replaceable></replaceable></option></arg>
|
||||
<arg><option>--ncols <columns><replaceable></replaceable></option></arg>
|
||||
<arg><option>--nograb<replaceable></replaceable></option></arg>
|
||||
<arg><option>--dograb<replaceable></replaceable></option></arg>
|
||||
<arg><option>--sync<replaceable></replaceable></option></arg>
|
||||
<arg><option>--font<replaceable> --fn <fontname></replaceable></option></arg>
|
||||
<arg><option>--background<replaceable> --bg <colour></replaceable></option></arg>
|
||||
<arg><option>--button<replaceable> --btn <colour></replaceable></option></arg>
|
||||
<arg><option>--name<replaceable> <name></replaceable></option></arg>
|
||||
<arg><option>--title<replaceable> <title></replaceable></option></arg>
|
||||
<arg><option>--visual<replaceable> TrueColor</replaceable></option></arg>
|
||||
<arg><option>--inputstyle<replaceable> <style></replaceable></option></arg>
|
||||
<arg><option>--im<replaceable> <server></replaceable></option></arg>
|
||||
<arg><option>--noxim<replaceable></replaceable></option></arg>
|
||||
</cmdsynopsis>
|
||||
</refsynopsisdiv>
|
||||
<refsect1>
|
||||
<title>DESCRIPTION</title>
|
||||
|
||||
<para>This manual page documents briefly the
|
||||
<command>&dhpackage;</command> command.</para>
|
||||
|
||||
<para><command>&dhpackage;</command> is a TDE-based multi-protocol Instant
|
||||
Messaging client. Currently, it supports AIM, ICQ, MSN, IRC and Jabber.
|
||||
</para>
|
||||
|
||||
</refsect1>
|
||||
<refsect1>
|
||||
<title>OPTIONS</title>
|
||||
|
||||
<para>These programs follow the usual GNU command line syntax,
|
||||
with long options starting with two dashes (`-'). A summary of
|
||||
options is included below. However, the ordering is very strict -
|
||||
--help/-h must come before hostname.</para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><option>-v</option>
|
||||
<option>--version</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Show version information.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--author</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Show information about the author.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--license</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Show license information.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--caption <caption></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Specify the caption of the window.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--icon <icon></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Specify the icon of the window.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--miniicon <icon></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Specify the mini-icon of the window.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--dcopserver <server></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Specify the DCOP server to use.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--nocrashhandler</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Disable TDE crash handler (enables core dumps).</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--waitforwm</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Waits for a compatible window manager to start.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--style <style></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets the application's GUI style (overrides TDE).</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--geometry <geometry></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets the geometry of the window.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--display <display></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Specifies the X display to use.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--session <sessionid></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Restores the application for the given session ID.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--cmap</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Forces use of an internal colour map on an 8-bit display.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--ncols <count></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Limits the number of colours allowed in an 8-bit display.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--nograb</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Forces Qt to never grab the mouse or keyboard.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--dograb</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Overrides --nograb, which may be implicitly set.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--sync</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Forces synchronous mode (for debugging).</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--font <font></option>
|
||||
<option>--fn <font></option></term>
|
||||
<listitem>
|
||||
<para>Sets the default application font.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--background <colour></option>
|
||||
<option>--bg <colour></option></term>
|
||||
<listitem>
|
||||
<para>Sets the default background colour and application
|
||||
pallette.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--foreground <colour></option>
|
||||
<option>--fg <colour></option></term>
|
||||
<listitem>
|
||||
<para>Sets the default foreground colour.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--button <colour></option>
|
||||
<option>--btn <colour></option></term>
|
||||
<listitem>
|
||||
<para>Sets the default button colour.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--name <name></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets the application name.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--title <name></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets the application title.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--visual TrueColor</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Forces the application to use a True Colour visual on 8-bit
|
||||
displays.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--inputstyle <style></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets X Input Method (XIM) input style. Possible values are:
|
||||
onthespot, overthespot, offthespot, and root.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--im <server></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Sets X Input Method (XIM) server.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option>--noxim</option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Disables X Input Method (XIM) support.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
<refsect1>
|
||||
<title>AUTHOR</title>
|
||||
|
||||
<para>This manual page was written by &dhusername; <&dhemail;> for
|
||||
the &debian; system (but may be used by others). Permission is
|
||||
granted to copy, distribute and/or modify this document under
|
||||
the terms of the <acronym>GNU</acronym> General Public License
|
||||
version 2 or any later version published by the Free Software Foundation.</para>
|
||||
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:2
|
||||
sgml-indent-data:t
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:nil
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
-->
|
@ -0,0 +1,121 @@
|
||||
.TH KWIFIMANAGER "1" "October 2006" "kwifimanager" "User Commands"
|
||||
.SH NAME
|
||||
kwifimanager \- manual page for kwifimanager
|
||||
.SH SYNOPSIS
|
||||
.B kwifimanager
|
||||
[\fIOPTIONS\fR]
|
||||
.SH DESCRIPTION
|
||||
\fBkwifimanager\fR is a TDE wireless management program.
|
||||
.SH GENERIC OPTIONS:
|
||||
.TP
|
||||
\fB\-\-help\fR
|
||||
Show help about options
|
||||
.TP
|
||||
\fB\-\-help\-qt\fR
|
||||
Show QT specific options
|
||||
.TP
|
||||
\fB\-\-help\-tde\fR
|
||||
Show TDE specific options
|
||||
.TP
|
||||
\fB\-\-help\-all\fR
|
||||
Show all options
|
||||
.TP
|
||||
\fB\-\-author\fR
|
||||
Show author information
|
||||
.TP
|
||||
\fB\-v\fR, \fB\-\-version\fR
|
||||
Show version information
|
||||
.TP
|
||||
\fB\-\-license\fR
|
||||
Show license information
|
||||
.SH QT OPTIONS:
|
||||
.TP
|
||||
\fB\-\-display <displayname>\fR
|
||||
Use the X-server display 'displayname'
|
||||
.TP
|
||||
\fB\-\-session <sessionId>\fR
|
||||
Restore the application for the given 'sessionId'
|
||||
.TP
|
||||
\fB\-\-cmap\fR
|
||||
Causes the application to install a private color map on an 8-bit display
|
||||
.TP
|
||||
\fB\-\-ncols <count>\fR
|
||||
Limits the number of colors allocated in the color cube on an 8-bit display, if the application is using the QApplication::ManyColor color specification
|
||||
.TP
|
||||
\fB\-\-nograb\fR
|
||||
Tells Qt to never grab the mouse or the keyboard
|
||||
.TP
|
||||
\fB\-\-dograb\fR
|
||||
Running under a debugger can cause an implicit -nograb, use -dograb to override
|
||||
.TP
|
||||
\fB\-\-sync\fR
|
||||
Switches to synchronous mode for debugging
|
||||
.TP
|
||||
\fB\-\-fn, \-\-font <fontname>\fR
|
||||
Defines the application font
|
||||
.TP
|
||||
\fB\-\-bg, \-\-background <color>\fR
|
||||
Sets the default background color and an application palette (light and dark shades are calculated)
|
||||
.TP
|
||||
\fB\-\-fg, \-\-foreground <color>\fR
|
||||
Sets the default foreground color
|
||||
.TP
|
||||
\fB\-\-btn, \-\-button <color>\fR
|
||||
Sets the default button color
|
||||
.TP
|
||||
\fB\-\-name <name>\fR
|
||||
Sets the application name
|
||||
.TP
|
||||
\fB\-\-title <title>\fR
|
||||
Sets the application title (caption)
|
||||
.TP
|
||||
\fB\-\-visual TrueColor\fR
|
||||
Forces the application to use a TrueColor visual on an 8-bit display
|
||||
.TP
|
||||
\fB\-\-inputstyle <inputstyle>\fR
|
||||
Sets XIM (X Input Method) input style. Possible values are onthespot, overthespot, offthespot and root
|
||||
.TP
|
||||
\fB\-\-im <XIM server>\fR
|
||||
Set XIM server
|
||||
.TP
|
||||
\fB\-\-noxim\fR
|
||||
Disable XIM
|
||||
.TP
|
||||
\fB\-\-reverse\fR
|
||||
Mirrors the whole layout of widgets
|
||||
.SH TDE OPTIONS:
|
||||
.TP
|
||||
\fB\-\-caption <caption>\fR
|
||||
Use 'caption' as name in the titlebar
|
||||
.TP
|
||||
\fB\-\-icon <icon>\fR
|
||||
Use 'icon' as the application icon
|
||||
.TP
|
||||
\fB\-\-miniicon <icon>\fR
|
||||
Use 'icon' as the icon in the titlebar
|
||||
.TP
|
||||
\fB\-\-config <filename>\fR
|
||||
Use alternative configuration file
|
||||
.TP
|
||||
\fB\-\-dcopserver <server>\fR
|
||||
Use the DCOP Server specified by 'server'
|
||||
.TP
|
||||
\fB\-\-nocrashhandler\fR
|
||||
Disable crash handler, to get core dumps
|
||||
.TP
|
||||
\fB\-\-waitforwm\fR
|
||||
Waits for a WM_NET compatible windowmanager
|
||||
.TP
|
||||
\fB\-\-style <style>\fR
|
||||
Sets the application GUI style
|
||||
.TP
|
||||
\fB\-\-geometry <geometry>\fR
|
||||
Sets the client geometry of the main widget - see man X for the argument format
|
||||
.SH AUTHOR
|
||||
This manual page was written for the Debian GNU/Linux distribution
|
||||
because the original program does not have a manual page.
|
||||
.PP
|
||||
This manual page was written by Chris Bier <chris.bier@cymor.com>.
|
||||
Based on the xchat man page written by Davide Puricelli <evo@debian.org>,
|
||||
and the kwifimanager help options. It was written for the Debian GNU/Linux
|
||||
system (but may be used by others).
|
@ -0,0 +1,77 @@
|
||||
.TH "lisa" "8" "December 2005"
|
||||
|
||||
.SH "NAME"
|
||||
lisa \- LAN Information Server
|
||||
|
||||
.SH "SYNOPSIS"
|
||||
.PP
|
||||
.B lisa
|
||||
[options]
|
||||
|
||||
.SH "DESCRIPTION"
|
||||
.PP
|
||||
This manual page documents briefly the
|
||||
.B lisa
|
||||
command.
|
||||
.PP
|
||||
.B lisa
|
||||
is intended to provide a kind of "network neighbourhood" but only relaying on
|
||||
the TCP/IP protocol stack, no smb or whatever. The list of running hosts is
|
||||
provided via TCP port 7741.
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.B \-c, \-\-config=\fIFILE\fR
|
||||
Read
|
||||
.I FILE
|
||||
instead of $(HOME)/.lisarc and /etc/lisarc.
|
||||
.TP
|
||||
.BI "\-p, \-\-port" " PORTNR"
|
||||
Start the server on the portnumber
|
||||
.IR PORTNR .
|
||||
If you use this, LISa won't be able to
|
||||
cooperate with other LISa's in the network.
|
||||
.TP
|
||||
.B \-q, \-\-quiet
|
||||
Start quiet without the greeting message.
|
||||
.TP
|
||||
.B \-u, \-\-unix
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-k, \-\-kde1
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-K, \-\-kde2
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-h, \-\-help
|
||||
Show usage.
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Print out a short version info.
|
||||
|
||||
.SH SIGNALS
|
||||
.PP
|
||||
If you send the Hangup-Signal to \fBlisa\fR, it will reread its
|
||||
configuration file (killall -HUP lisa).
|
||||
.PP
|
||||
If you send the User1-Signal to \fBlisa\fR, it will print some status
|
||||
information to the standard output (killall -USR1 lisa). You won't see
|
||||
anything if the console from which \fBlisa\fR was started has terminated.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
.TP
|
||||
.BR reslisa (8)
|
||||
.TP
|
||||
.I /usr/share/doc/lisa/README.gz
|
||||
|
||||
.SH "AUTHOR"
|
||||
.PP
|
||||
.B LISa
|
||||
is Copyright (c) 2000-2003 by Alexander Neundorf <neundorf@kde.org>.
|
||||
.PP
|
||||
This manual page was written by Francois Wendling <frwendling@free.fr>. 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 of the
|
||||
License, or (at your option) any later version.
|
||||
|
@ -0,0 +1,72 @@
|
||||
.TH "reslisa" "8" "December 2005"
|
||||
|
||||
.SH "NAME"
|
||||
reslisa \- Restricted LAN Information Server
|
||||
|
||||
.SH "SYNOPSIS"
|
||||
.PP
|
||||
.B reslisa
|
||||
[options]
|
||||
|
||||
.SH "DESCRIPTION"
|
||||
.PP
|
||||
This manual page documents briefly the
|
||||
.B reslisa
|
||||
command.
|
||||
.PP
|
||||
If you have very strict security rules in your network or you don't want to
|
||||
have another port open or whatever, you can use
|
||||
.B resLISa
|
||||
instead of
|
||||
.BR lisa (1).
|
||||
|
||||
.SH "OPTIONS"
|
||||
.TP
|
||||
.B \-c, \-\-config=\fIFILE\fR
|
||||
Read
|
||||
.I FILE
|
||||
instead of $(HOME)/.reslisarc and /etc/reslisarc.
|
||||
.TP
|
||||
.B \-q, \-\-quiet
|
||||
Start quiet without the greeting message.
|
||||
.TP
|
||||
.B \-u, \-\-unix
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-k, \-\-kde1
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-K, \-\-kde2
|
||||
Deprecated.
|
||||
.TP
|
||||
.B \-h, \-\-help
|
||||
Show usage.
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Print out a short version info.
|
||||
|
||||
.SH SIGNALS
|
||||
.PP
|
||||
If you send the Hangup-Signal to \fBreslisa\fR, it will reread its
|
||||
configuration file (killall -HUP reslisa).
|
||||
.PP
|
||||
If you send the User1-Signal to \fBreslisa\fR, it will print some status
|
||||
information to the standard output (killall -USR1 reslisa). You won't see
|
||||
anything if the console from which \fBreslisa\fR was started has terminated.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
.TP
|
||||
.BR lisa (8)
|
||||
.TP
|
||||
.I /usr/share/doc/lisa/README.gz
|
||||
|
||||
.SH "AUTHOR"
|
||||
.PP
|
||||
.B LISa
|
||||
is Copyright (c) 2000-2003 by Alexander Neundorf <neundorf@kde.org>.
|
||||
.PP
|
||||
This manual page was written by Francois Wendling <frwendling@free.fr>. 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 of the
|
||||
License, or (at your option) any later version.
|
||||
|
@ -0,0 +1,7 @@
|
||||
The following files are not installed in any binary package.
|
||||
This is deliberate.
|
||||
|
||||
/usr/bin/winpopup-install.sh
|
||||
/usr/bin/winpopup-send.sh
|
||||
- Winpopup needs all sorts of unsecure setup. Best just to
|
||||
leave it out.
|
@ -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,177 @@
|
||||
Index: tdenetwork/ConfigureChecks.cmake
|
||||
===================================================================
|
||||
--- tdenetwork.orig/ConfigureChecks.cmake
|
||||
+++ tdenetwork/ConfigureChecks.cmake
|
||||
@@ -38,7 +38,10 @@ if( BUILD_KOPETE OR BUILD_KTALKD )
|
||||
endif( )
|
||||
|
||||
if( WITH_SLP )
|
||||
+ tde_save( CMAKE_REQUIRED_LIBRARIES )
|
||||
+ set( CMAKE_REQUIRED_LIBRARIES socket )
|
||||
check_library_exists( slp "SLPOpen" "" HAVE_SLP )
|
||||
+ tde_restore( CMAKE_REQUIRED_LIBRARIES )
|
||||
if( HAVE_SLP )
|
||||
set(LIB_SLP slp )
|
||||
else( )
|
||||
Index: tdenetwork/libtdevnc/CMakeLists.txt
|
||||
===================================================================
|
||||
--- tdenetwork.orig/libtdevnc/CMakeLists.txt
|
||||
+++ tdenetwork/libtdevnc/CMakeLists.txt
|
||||
@@ -175,14 +175,20 @@ check_function_exists(vprintf LI
|
||||
check_function_exists(mmap LIBVNCSERVER_HAVE_MMAP)
|
||||
check_function_exists(fork LIBVNCSERVER_HAVE_FORK)
|
||||
check_function_exists(ftime LIBVNCSERVER_HAVE_FTIME)
|
||||
+tde_save( CMAKE_REQUIRED_LIBRARIES )
|
||||
+set( CMAKE_REQUIRED_LIBRARIES nsl )
|
||||
check_function_exists(gethostbyname LIBVNCSERVER_HAVE_GETHOSTBYNAME)
|
||||
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
|
||||
check_function_exists(gethostname LIBVNCSERVER_HAVE_GETHOSTNAME)
|
||||
check_function_exists(inet_ntoa LIBVNCSERVER_HAVE_INET_NTOA)
|
||||
check_function_exists(memmove LIBVNCSERVER_HAVE_MEMMOVE)
|
||||
check_function_exists(memset LIBVNCSERVER_HAVE_MEMSET)
|
||||
check_function_exists(mkfifo LIBVNCSERVER_HAVE_MKFIFO)
|
||||
check_function_exists(select LIBVNCSERVER_HAVE_SELECT)
|
||||
+tde_save( CMAKE_REQUIRED_LIBRARIES )
|
||||
+set( CMAKE_REQUIRED_LIBRARIES socket )
|
||||
check_function_exists(socket LIBVNCSERVER_HAVE_SOCKET)
|
||||
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
|
||||
check_function_exists(strchr LIBVNCSERVER_HAVE_STRCHR)
|
||||
check_function_exists(strcspn LIBVNCSERVER_HAVE_STRCSPN)
|
||||
check_function_exists(strdup LIBVNCSERVER_HAVE_STRDUP)
|
||||
Index: tdenetwork/cmake/modules/TDEMacros.cmake
|
||||
===================================================================
|
||||
--- tdenetwork.orig/cmake/modules/TDEMacros.cmake
|
||||
+++ tdenetwork/cmake/modules/TDEMacros.cmake
|
||||
@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target )
|
||||
|
||||
# set embedded archives
|
||||
if( _embed )
|
||||
- list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive )
|
||||
+ list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract )
|
||||
endif( _embed )
|
||||
|
||||
# set link libraries
|
||||
@@ -1878,7 +1878,7 @@ macro( tde_setup_architecture_flags )
|
||||
check_cxx_compiler_flag( -fPIE HAVE_PIE_SUPPORT )
|
||||
if( HAVE_PIE_SUPPORT )
|
||||
set( TDE_PIE_CFLAGS -fPIE )
|
||||
- set( TDE_PIE_LDFLAGS -pie )
|
||||
+# set( TDE_PIE_LDFLAGS -pie )
|
||||
endif( HAVE_PIE_SUPPORT )
|
||||
endmacro( )
|
||||
|
||||
Index: tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/base/network.cc
|
||||
===================================================================
|
||||
--- tdenetwork.orig/kopete/protocols/jabber/jingle/libjingle/talk/base/network.cc
|
||||
+++ tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/base/network.cc
|
||||
@@ -42,6 +42,9 @@
|
||||
extern "C" {
|
||||
#include <sys/utsname.h>
|
||||
#include <sys/ioctl.h>
|
||||
+#ifdef __dilos__
|
||||
+#include <sys/sockio.h>
|
||||
+#endif /* __dilos__ */
|
||||
#include <net/if.h>
|
||||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
Index: tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/CMakeLists.txt
|
||||
===================================================================
|
||||
--- tdenetwork.orig/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/CMakeLists.txt
|
||||
+++ tdenetwork/kopete/protocols/jabber/jingle/libjingle/talk/p2p/base/CMakeLists.txt
|
||||
@@ -36,7 +36,7 @@ tde_add_executable( relayserver
|
||||
SOURCES
|
||||
relayserver.cc relayserver_main.cc
|
||||
LINK
|
||||
- cricketbase-static cricketp2pbase-static pthread
|
||||
+ cricketbase-static cricketp2pbase-static pthread socket nsl
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
@@ -47,6 +47,6 @@ tde_add_executable( stunserver
|
||||
SOURCES
|
||||
stunserver.cc stunserver_main.cc
|
||||
LINK
|
||||
- cricketbase-static cricketp2pbase-static pthread
|
||||
+ cricketbase-static cricketp2pbase-static pthread socket nsl
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
Index: tdenetwork/kppp/kpppconfig.h
|
||||
===================================================================
|
||||
--- tdenetwork.orig/kppp/kpppconfig.h
|
||||
+++ tdenetwork/kppp/kpppconfig.h
|
||||
@@ -26,7 +26,10 @@
|
||||
#ifndef _KPPPCONFIG_H_
|
||||
#define _KPPPCONFIG_H_
|
||||
|
||||
-#if defined(__svr4__)
|
||||
+#if defined(__dilos__)
|
||||
+#define STREAMS
|
||||
+#define _XOPEN_SOURCE_EXTENDED 1
|
||||
+#elif defined(__svr4__)
|
||||
#define STREAMS
|
||||
#define _XOPEN_SOURCE 1
|
||||
#define _XOPEN_SOURCE_EXTENDED 1
|
||||
Index: tdenetwork/ktalkd/ktalkd/find_user.cpp
|
||||
===================================================================
|
||||
--- tdenetwork.orig/ktalkd/ktalkd/find_user.cpp
|
||||
+++ tdenetwork/ktalkd/ktalkd/find_user.cpp
|
||||
@@ -375,8 +375,8 @@ int find_user(char *name, char *tty, cha
|
||||
#ifdef USE_UT_HOST
|
||||
if (Options.debug_mode) {
|
||||
syslog(LOG_DEBUG, "I wanna this:%s", ttyFound);
|
||||
- syslog(LOG_DEBUG, "ut_host=%s", ubuf.ut_host);
|
||||
- syslog(LOG_DEBUG, "%s", ubuf.ut_line);
|
||||
+ syslog(LOG_DEBUG, "ut_host=%s", ubuf->ut_host);
|
||||
+ syslog(LOG_DEBUG, "%s", ubuf->ut_line);
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
Index: tdenetwork/ktalkd/mail.local/CMakeLists.txt
|
||||
===================================================================
|
||||
--- tdenetwork.orig/ktalkd/mail.local/CMakeLists.txt
|
||||
+++ tdenetwork/ktalkd/mail.local/CMakeLists.txt
|
||||
@@ -18,5 +18,6 @@ include_directories(
|
||||
|
||||
tde_add_executable( mail.local
|
||||
SOURCES mail.local.c
|
||||
+ LINK socket nsl
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
Index: tdenetwork/lanbrowsing/lisa/CMakeLists.txt
|
||||
===================================================================
|
||||
--- tdenetwork.orig/lanbrowsing/lisa/CMakeLists.txt
|
||||
+++ tdenetwork/lanbrowsing/lisa/CMakeLists.txt
|
||||
@@ -26,7 +26,7 @@ install( FILES README DESTINATION ${DATA
|
||||
|
||||
tde_add_executable( lisa
|
||||
SOURCES main.cpp
|
||||
- LINK lisa-static
|
||||
+ LINK lisa-static socket nsl
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
@@ -35,7 +35,7 @@ tde_add_executable( lisa
|
||||
|
||||
tde_add_executable( reslisa
|
||||
SOURCES strictmain.cpp
|
||||
- LINK lisa-static
|
||||
+ LINK lisa-static socket nsl
|
||||
DESTINATION ${BIN_INSTALL_DIR}
|
||||
)
|
||||
|
||||
Index: tdenetwork/krfb/ConfigureChecks.cmake
|
||||
===================================================================
|
||||
--- tdenetwork.orig/krfb/ConfigureChecks.cmake
|
||||
+++ tdenetwork/krfb/ConfigureChecks.cmake
|
||||
@@ -17,8 +17,11 @@ if( NOT XTST_FOUND )
|
||||
tde_message_fatal( "xtst is required, but was not found on your system" )
|
||||
endif( )
|
||||
|
||||
+tde_save( CMAKE_REQUIRED_LIBRARIES )
|
||||
+set( CMAKE_REQUIRED_LIBRARIES socket nsl )
|
||||
check_function_exists( getnameinfo HAVE_GETNAMEINFO )
|
||||
check_function_exists( getifaddrs HAVE_GETIFADDRS )
|
||||
+tde_restore( CMAKE_REQUIRED_LIBRARIES )
|
||||
check_include_file( sys/sockio.h HAVE_SYS_SOCKIO_H )
|
||||
|
||||
check_struct_has_member(
|
@ -0,0 +1,4 @@
|
||||
common/04_am_maintainer_mode.diff
|
||||
common/06_disable_no_undefined.diff
|
||||
common/kubuntu_01_kdepot.diff
|
||||
dilos.patch
|
@ -0,0 +1,68 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
DEB_HOST_ARCH_OS=$(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
|
||||
DEB_HOST_ARCH=$(shell dpkg-architecture -qDEB_HOST_ARCH)
|
||||
|
||||
ifeq ($(DEB_HOST_ARCH),s390)
|
||||
DONT_BUILD+= kwifimanager
|
||||
endif
|
||||
ifneq ($(DEB_HOST_ARCH_OS),linux)
|
||||
DONT_BUILD+= kwifimanager tdednssd
|
||||
endif
|
||||
export DH_OPTIONS
|
||||
|
||||
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
|
||||
|
||||
CPPFLAGS+= -D__dilos__ -DUSE_SOLARIS
|
||||
|
||||
DEB_CMAKE_EXTRA_FLAGS := \
|
||||
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||
-DCONFIG_INSTALL_DIR="/etc/trinity" \
|
||||
-DSYSCONF_INSTALL_DIR="/etc" \
|
||||
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
||||
-DCMAKE_SKIP_RPATH="OFF" \
|
||||
-DBUILD_ALL="ON" \
|
||||
-DWITH_JINGLE="ON" \
|
||||
-DWITH_SPEEX="ON" \
|
||||
-DWITH_ARTS="ON" \
|
||||
-DWITH_SLP="ON" \
|
||||
-DBUILD_KOPETE_PROTOCOL_ALL="ON" \
|
||||
-DBUILD_KOPETE_PLUGIN_ALL="ON" \
|
||||
-DBUILD_KOPETE_PLUGIN_MOTIONAUTOAWAY="OFF" \
|
||||
-DBUILD_WIFI="OFF" \
|
||||
-DCMAKE_C_COMPILER=gcc \
|
||||
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||
|
||||
DEB_DH_STRIP_ARGS := --dbg-package=tdenetwork-trinity-dbg \
|
||||
-Xkrfb -Xktalkd -Xlisa
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
||||
|
||||
PACKAGES_WITH_LIBS := librss1-trinity kopete-trinity ksirc-trinity kwifimanager-trinity
|
||||
|
||||
#shlibs_ver = 4:3.5.0-1
|
||||
#$(foreach p,$(PACKAGES_WITH_LIBS),$(eval DEB_DH_MAKESHLIBS_ARGS_$(p) := -V'$(p) (>= $(shlibs_ver))'))
|
||||
|
||||
DEB_FIXPERMS_EXCLUDE := usr/bin/kppp usr/bin/kppplogview \
|
||||
etc/ppp/peers/kppp-options
|
||||
|
||||
binary-install/kppp-trinity::
|
||||
chown root:dip debian/kppp-trinity/usr/bin/kppp*
|
||||
chown root:dip debian/kppp-trinity/etc/ppp/peers/kppp-options
|
||||
chmod 4754 debian/kppp-trinity/usr/bin/kppp
|
||||
chmod 0754 debian/kppp-trinity/usr/bin/kppplogview
|
||||
chmod 0640 debian/kppp-trinity/etc/ppp/peers/kppp-options
|
@ -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,15 @@
|
||||
debian/tmp/usr/share/services/zeroconf.protocol
|
||||
debian/tmp/usr/share/services/invitation.protocol
|
||||
debian/tmp/usr/share/services/kded/dnssdwatcher.desktop
|
||||
debian/tmp/usr/share/apps/remoteview/zeroconf.desktop
|
||||
debian/tmp/usr/share/apps/zeroconf/_http._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_ftp._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_ldap._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_webdav._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_nfs._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_ssh._tcp
|
||||
debian/tmp/usr/share/apps/zeroconf/_rfb._tcp
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_zeroconf.so
|
||||
debian/tmp/usr/lib/*/trinity/tdeio_zeroconf.la
|
||||
debian/tmp/usr/lib/*/trinity/kded_dnssdwatcher.so
|
||||
debian/tmp/usr/lib/*/trinity/kded_dnssdwatcher.la
|
@ -0,0 +1,11 @@
|
||||
Document: tdenetwork-doc-html-kdict
|
||||
Title: KDict Handbook
|
||||
Author: Christian Gebauer
|
||||
Abstract: KDict is a graphical client for the DICT protocol. It enables you
|
||||
to search through dictionary databases for a word or phrase.
|
||||
Section: Apps/Text
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kdict/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kdict/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdenetwork-doc-html-kget
|
||||
Title: KGet Handbook
|
||||
Author: Jonathan E. Drews
|
||||
Abstract: KGet allows you to group and manage downloads.
|
||||
Section: Apps/Web
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kget/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kget/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdenetwork-doc-html-knewsticker
|
||||
Title: KNewsTicker Handbook
|
||||
Author: Frerich Raabe, Jonathan Singer
|
||||
Abstract: KNewsTicker is a news ticker applet for the TDE panel.
|
||||
Section: Apps/Web
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/knewsticker/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/knewsticker/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdenetwork-doc-html-kopete
|
||||
Title: Kopete Handbook
|
||||
Author: Will Stephenson, Matt Rogers
|
||||
Abstract: Kopete is TDE's is multi-protocol instant messenger client.
|
||||
Section: Apps/Web
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kopete/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kopete/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdenetwork-doc-html-kpf
|
||||
Title: Kpf Handbook
|
||||
Author: Rik Hemsley
|
||||
Abstract: Kpf allows you to share files over a network.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kpf/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kpf/*.html
|
||||
|
@ -0,0 +1,11 @@
|
||||
Document: tdenetwork-doc-html-kppp
|
||||
Title: KPPP Handbook
|
||||
Author: Lauri Watts
|
||||
Abstract: KPPP is a dialer and front end for pppd, allowing for interactive
|
||||
script generation and network setup.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kppp/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kppp/*.html
|
||||
|
@ -0,0 +1,12 @@
|
||||
Document: tdenetwork-doc-html-krdc
|
||||
Title: Krdc Handbook
|
||||
Author: Brad Hards
|
||||
Abstract: Krdc is a client application that allows you to view or even control
|
||||
the desktop session on another machine that is running a compatible
|
||||
(VNC) server.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/krdc/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/krdc/*.html
|
||||
|
@ -0,0 +1,12 @@
|
||||
Document: tdenetwork-doc-html-krfb
|
||||
Title: Krfb Handbook
|
||||
Author: Brad Hards
|
||||
Abstract: Krfb is a server application that allows you to share your current
|
||||
session with a user on another machine, who can use a VNC client to view or
|
||||
even control the desktop.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/krfb/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/krfb/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdenetwork-doc-html-ksirc
|
||||
Title: KsIRC Handbook
|
||||
Author: Andrew Stanley-Jones, Philip Rodrigues
|
||||
Abstract: KsIRC is the default TDE IRC client.
|
||||
Section: Apps/Web
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/ksirc/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/ksirc/*.html
|
||||
|
@ -0,0 +1,12 @@
|
||||
Document: tdenetwork-doc-html-ktalkd
|
||||
Title: Ktalkd Handbook
|
||||
Author: David Faure
|
||||
Abstract: Ktalkd is an enhanced talk daemon - a program to handle incoming
|
||||
talk requests, announce them and allow you to respond to it using a talk
|
||||
client.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/ktalkd/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/ktalkd/*.html
|
||||
|
@ -0,0 +1,11 @@
|
||||
Document: tdenetwork-doc-html-kwifimanager
|
||||
Title: KWiFiManager Handbook
|
||||
Author: Stefan Winter
|
||||
Abstract: The KWiFiMananger suite can be used to configure and monitor
|
||||
wireless LAN cards.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kwifimanager/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kwifimanager/*.html
|
||||
|
@ -0,0 +1,11 @@
|
||||
Document: tdenetwork-doc-html-lisa
|
||||
Title: Lisa Handbook
|
||||
Author: Alexander Neundorf
|
||||
Abstract: Lisa is intended to provide a kind of Network Neighborhood, but
|
||||
only relying on the TCP/IP protocol stack.
|
||||
Section: Apps/Net
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/lisa/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/lisa/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
debian/tmp/usr/lib/*/trinity/fileshare_propsdlgplugin.la
|
||||
debian/tmp/usr/lib/*/trinity/fileshare_propsdlgplugin.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_fileshare.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_fileshare.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kcmsambaconf.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_kcmsambaconf.so
|
||||
debian/tmp/usr/share/applications/tde/fileshare.desktop
|
||||
debian/tmp/usr/share/applications/tde/kcmsambaconf.desktop
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kcmsambaconf.png
|
||||
debian/tmp/usr/share/services/fileshare_propsdlgplugin.desktop
|
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_torrent.la
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_torrent.so
|
||||
debian/tmp/usr/share/services/tdefile_torrent.desktop
|
@ -0,0 +1,78 @@
|
||||
debian/tmp/usr/include/kopete/tdeabcpersistence.h
|
||||
debian/tmp/usr/include/kopete/kopete_export.h
|
||||
debian/tmp/usr/include/kopete/kopeteaccount.h
|
||||
debian/tmp/usr/include/kopete/kopeteaccountmanager.h
|
||||
debian/tmp/usr/include/kopete/kopeteaway.h
|
||||
debian/tmp/usr/include/kopete/kopeteawayaction.h
|
||||
debian/tmp/usr/include/kopete/kopeteawaydialog.h
|
||||
debian/tmp/usr/include/kopete/kopeteblacklister.h
|
||||
debian/tmp/usr/include/kopete/kopetechatsession.h
|
||||
debian/tmp/usr/include/kopete/kopetechatsessionmanager.h
|
||||
debian/tmp/usr/include/kopete/kopetecommandhandler.h
|
||||
debian/tmp/usr/include/kopete/kopetecontact.h
|
||||
debian/tmp/usr/include/kopete/kopetecontactlist.h
|
||||
debian/tmp/usr/include/kopete/kopetecontactlistelement.h
|
||||
debian/tmp/usr/include/kopete/kopetecontactproperty.h
|
||||
debian/tmp/usr/include/kopete/kopeteeventpresentation.h
|
||||
debian/tmp/usr/include/kopete/kopeteglobal.h
|
||||
debian/tmp/usr/include/kopete/kopetegroup.h
|
||||
debian/tmp/usr/include/kopete/kopetemessage.h
|
||||
debian/tmp/usr/include/kopete/kopetemessageevent.h
|
||||
debian/tmp/usr/include/kopete/kopetemessagehandler.h
|
||||
debian/tmp/usr/include/kopete/kopetemessagehandlerchain.h
|
||||
debian/tmp/usr/include/kopete/kopetemetacontact.h
|
||||
debian/tmp/usr/include/kopete/kopetemimetypehandler.h
|
||||
debian/tmp/usr/include/kopete/kopetenotifydataobject.h
|
||||
debian/tmp/usr/include/kopete/kopeteonlinestatus.h
|
||||
debian/tmp/usr/include/kopete/kopeteonlinestatusmanager.h
|
||||
debian/tmp/usr/include/kopete/kopetepassword.h
|
||||
debian/tmp/usr/include/kopete/kopetepasswordedaccount.h
|
||||
debian/tmp/usr/include/kopete/kopeteplugin.h
|
||||
debian/tmp/usr/include/kopete/kopeteprotocol.h
|
||||
debian/tmp/usr/include/kopete/kopetesimplemessagehandler.h
|
||||
debian/tmp/usr/include/kopete/kopetetask.h
|
||||
debian/tmp/usr/include/kopete/kopetetransfermanager.h
|
||||
debian/tmp/usr/include/kopete/kopeteuiglobal.h
|
||||
debian/tmp/usr/include/kopete/kopeteversion.h
|
||||
debian/tmp/usr/include/kopete/managedconnectionaccount.h
|
||||
debian/tmp/usr/include/kopete/ui/accountselector.h
|
||||
debian/tmp/usr/include/kopete/ui/addcontactpage.h
|
||||
debian/tmp/usr/include/kopete/ui/addressbookselectordialog.h
|
||||
debian/tmp/usr/include/kopete/ui/addressbookselectorwidget.h
|
||||
debian/tmp/usr/include/kopete/ui/editaccountwidget.h
|
||||
debian/tmp/usr/include/kopete/ui/fileconfirmbase.h
|
||||
debian/tmp/usr/include/kopete/ui/kopeteawaydialogbase.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetecontactaction.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetefileconfirmdialog.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetelistview.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetelistviewitem.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetelistviewsearchline.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetepassworddialog.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetepasswordwidget.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetepasswordwidgetbase.h
|
||||
debian/tmp/usr/include/kopete/ui/kopetestdaction.h
|
||||
debian/tmp/usr/include/kopete/ui/kopeteview.h
|
||||
debian/tmp/usr/include/kopete/ui/kopeteviewplugin.h
|
||||
debian/tmp/usr/include/kopete/ui/userinfodialog.h
|
||||
debian/tmp/usr/include/rss/article.h
|
||||
debian/tmp/usr/include/rss/document.h
|
||||
debian/tmp/usr/include/rss/global.h
|
||||
debian/tmp/usr/include/rss/image.h
|
||||
debian/tmp/usr/include/rss/librss.h
|
||||
debian/tmp/usr/include/rss/loader.h
|
||||
debian/tmp/usr/include/rss/textinput.h
|
||||
debian/tmp/usr/lib/*/libtdeinit_kdict.la
|
||||
debian/tmp/usr/lib/*/libtdeinit_ksirc.la
|
||||
debian/tmp/usr/lib/*/libkopete.la
|
||||
debian/tmp/usr/lib/*/libkopete.so
|
||||
debian/tmp/usr/lib/*/libkopete_msn_shared.la
|
||||
debian/tmp/usr/lib/*/libkopete_msn_shared.so
|
||||
debian/tmp/usr/lib/*/libkopete_oscar.la
|
||||
debian/tmp/usr/lib/*/libkopete_oscar.so
|
||||
debian/tmp/usr/lib/*/libkopete_videodevice.la
|
||||
debian/tmp/usr/lib/*/libkopete_videodevice.so
|
||||
debian/tmp/usr/lib/*/librss.la
|
||||
debian/tmp/usr/lib/*/librss.so
|
||||
debian/tmp/usr/include/kopete/kopetepluginmanager.h
|
||||
|
||||
debian/tmp/usr/share/cmake
|
Loading…
Reference in new issue