parent
ee5ed53a29
commit
103898319a
@ -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,178 @@
|
||||
Source: tdeadmin-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>, Fathi Boudra <fboudra@free.fr>, Modestas Vainius <geromanas@mailas.com>, Sune Vuorela <debian@pusling.com>
|
||||
Build-Depends: libasound2-dev [!solaris-any], cdbs (>= 0.4.39-0.1), debhelper (>= 7.0.50~), quilt, cmake, docbook-to-man, gawk, tdelibs14-trinity-dev, libbz2-dev, libpam0g-dev, sharutils, texinfo, rpm [!solaris-any], libltdl-dev
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: tdeadmin-trinity
|
||||
Section: tde
|
||||
Architecture: all
|
||||
Replaces: kdeadmin-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdeadmin-trinity (<< 4:14.0.0~)
|
||||
Depends: kcron-trinity (>= ${source:Version}), kdat-trinity (>= ${source:Version}), tdeadmin-tdefile-plugins-trinity (>= ${source:Version}), knetworkconf-trinity (>= ${source:Version}), kpackage-trinity (>= ${source:Version}), ksysv-trinity (>= ${source:Version}), kuser-trinity (>= ${source:Version})
|
||||
Recommends: lilo-config-trinity (>= ${source:Version})
|
||||
Suggests: tdeadmin-trinity-doc-html (>= ${source:Version})
|
||||
Description: system administration tools 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 system administration tools
|
||||
provided with the official release of TDE.
|
||||
|
||||
Package: tdeadmin-trinity-doc-html
|
||||
Architecture: all
|
||||
Section: doc
|
||||
Replaces: kdeadmin-trinity-doc-html (<< 4:14.0.0~)
|
||||
Breaks: kdeadmin-trinity-doc-html (<< 4:14.0.0~)
|
||||
Suggests: konqueror-trinity | www-browser, tdebase-trinity
|
||||
Description: TDE administration 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 administration 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/kcron/. Documentation is provided for most
|
||||
TDE administration packages.
|
||||
.
|
||||
This package is part of Trinity, and a component of the TDE administration
|
||||
module. See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: kcron-trinity
|
||||
Section: admin
|
||||
Architecture: any
|
||||
Replaces: kcron-trinity (<< 4:14.0.0~)
|
||||
Breaks: kcron-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: the Trinity crontab editor
|
||||
KCron is an application for scheduling programs to run in the background.
|
||||
It is a graphical user interface to cron, the UNIX system scheduler.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: kdat-trinity
|
||||
Section: admin
|
||||
Architecture: any
|
||||
Replaces: kdat-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdat-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: a Trinity tape backup tool
|
||||
KDat is a tar-based tape archiver. It is designed to work with multiple
|
||||
archives on a single tape.
|
||||
.
|
||||
Main features are:
|
||||
* Simple graphical interface to local filesystem and tape contents.
|
||||
* Multiple archives on the same physical tape.
|
||||
* Complete index of archives and files is stored on local hard disk.
|
||||
* Selective restore of files from an archive.
|
||||
* Backup profiles for frequently used backups.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: tdeadmin-tdefile-plugins-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: kdeadmin-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdeadmin-kfile-plugins-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity file metainfo plugins for deb and rpm files
|
||||
File metainfo plugins for deb and rpm package files.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: knetworkconf-trinity
|
||||
Section: tde
|
||||
Architecture: any
|
||||
Replaces: knetworkconf-trinity (<< 4:14.0.0~)
|
||||
Breaks: knetworkconf-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Description: Trinity network configuration tool
|
||||
This is a Trinity control center module to configure TCP/IP settings. It
|
||||
can be used to manage network devices and settings for each device.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: kpackage-trinity
|
||||
Section: admin
|
||||
Architecture: any
|
||||
Replaces: kpackage-trinity (<< 4:14.0.0~)
|
||||
Breaks: kpackage-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Recommends: rpm
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: Trinity package management tool
|
||||
This is a frontend to both .rpm and .deb package formats. It allows you
|
||||
to view currently installed packages, browse available packages, and
|
||||
install/remove them.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: ksysv-trinity
|
||||
Section: admin
|
||||
Architecture: any
|
||||
Replaces: ksysv-trinity (<< 4:14.0.0~)
|
||||
Breaks: ksysv-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: Trinity SysV-style init configuration editor
|
||||
This program allows you to edit your start and stop scripts using a
|
||||
drag and drop GUI.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: kuser-trinity
|
||||
Section: admin
|
||||
Architecture: any
|
||||
Replaces: kuser-trinity (<< 4:14.0.0~)
|
||||
Breaks: kuser-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: khelpcenter-trinity
|
||||
Description: Trinity user/group administration tool
|
||||
A user/group administration tool for TDE.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: lilo-config-trinity
|
||||
Section: tde
|
||||
Architecture: none
|
||||
Replaces: lilo-config-trinity (<< 4:14.0.0~)
|
||||
Breaks: lilo-config-trinity (<< 4:14.0.0~)
|
||||
Depends: ${shlibs:Depends}, kcontrol-trinity
|
||||
Recommends: tdebase-trinity-bin
|
||||
Suggests: lilo
|
||||
Description: Trinity frontend for lilo configuration
|
||||
lilo-config is a TDE based frontend to the lilo boot manager configuration.
|
||||
It runs out of the Trinity Control Center.
|
||||
.
|
||||
If you want to use the menu entry to launch lilo-config, you need to install
|
||||
tdebase-bin since it uses the tdesu command to gain root privileges.
|
||||
.
|
||||
This package is part of Trinity, as a component of the TDE administration module.
|
||||
See the 'tde-trinity' and 'tdeadmin-trinity' packages for more information.
|
||||
|
||||
Package: tdeadmin-trinity-dbg
|
||||
Section: libdevel
|
||||
Architecture: linux-any
|
||||
Replaces: kdeadmin-trinity-dbg (<< 4:14.0.0~)
|
||||
Breaks: kdeadmin-trinity-dbg (<< 4:14.0.0~)
|
||||
Depends: tdelibs-trinity-dbg
|
||||
Priority: extra
|
||||
Description: debugging symbols for tdeadmin-trinity
|
||||
This package contains the debugging symbols associated with tdeadmin-trinity.
|
||||
They will automatically be used by gdb for debugging tdeadmin-related
|
||||
issues.
|
@ -0,0 +1,424 @@
|
||||
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: Bernhard Rosenkraenzer <bero@redhat.de> and many others.
|
||||
|
||||
|
||||
License:
|
||||
|
||||
All programs are under the GPL. On Debian systems, the complete text of
|
||||
the GPL license can be found in the /usr/share/common-licenses/GPL file.
|
||||
|
||||
--------------------
|
||||
|
||||
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,59 @@
|
||||
/* XPM */
|
||||
static char *kcron-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 37 1",
|
||||
" c black",
|
||||
". c #000F00",
|
||||
"X c #001000",
|
||||
"o c #001E00",
|
||||
"O c #001F00",
|
||||
"+ c #002000",
|
||||
"@ c #002F00",
|
||||
"# c #202020",
|
||||
"$ c #004000",
|
||||
"% c #3E4F3E",
|
||||
"& c #3E5F3E",
|
||||
"* c gray25",
|
||||
"= c #4F4F40",
|
||||
"- c #565665",
|
||||
"; c #606060",
|
||||
": c #626262",
|
||||
"> c #717162",
|
||||
", c #808060",
|
||||
"< c #80807F",
|
||||
"1 c #808080",
|
||||
"2 c #8F808F",
|
||||
"3 c #A0A0A0",
|
||||
"4 c #A2A2A2",
|
||||
"5 c #A0A0AF",
|
||||
"6 c #B1B1B1",
|
||||
"7 c #B6B6B6",
|
||||
"8 c #C0C0B0",
|
||||
"9 c #C0C0BF",
|
||||
"0 c gray76",
|
||||
"q c #C0CFC0",
|
||||
"w c #D1D1D0",
|
||||
"e c #D2D2D2",
|
||||
"r c #C0C0FF",
|
||||
"t c #E0E0DF",
|
||||
"y c #E1E1E1",
|
||||
"u c gray100",
|
||||
"i c None",
|
||||
/* pixels */
|
||||
"&$$$$$$@@$$$$$$&",
|
||||
"$eyyyyy6eyyyyy6o",
|
||||
"$yruuuuiyuuuurio",
|
||||
"$yuuuuuiyuuuuuio",
|
||||
"$yyyyy8,,8yyyyio",
|
||||
"$yuuuuuiyuuuuuio",
|
||||
"$yruuuuiyuuuuri+",
|
||||
"$yuuuuuiyuuuuui+",
|
||||
"$yyyyy8,,8611yi+",
|
||||
"$yuuuuui4;;u4>*+",
|
||||
"$yruuuui>5uquy=+",
|
||||
"$yuuuuui-9u2yy9 ",
|
||||
"$yyyyy8,#53uie1.",
|
||||
"$yuuuuui:>#0;;*o",
|
||||
"$0iiiii40*;1*1;+",
|
||||
"&oooooo.o++++++%"
|
||||
};
|
@ -0,0 +1,52 @@
|
||||
/* XPM */
|
||||
static char *kcron[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 14 1",
|
||||
" c black",
|
||||
". c #004000",
|
||||
"X c #585858",
|
||||
"o c #008000",
|
||||
"O c #FFA858",
|
||||
"+ c #808080",
|
||||
"@ c #A0A0A0",
|
||||
"# c #FFDCA8",
|
||||
"$ c #C3C3C3",
|
||||
"% c gainsboro",
|
||||
"& c #C0C0FF",
|
||||
"* c #FFFFC0",
|
||||
"= c gray100",
|
||||
"- c None",
|
||||
/* pixels */
|
||||
"- -",
|
||||
" oooooooooooooo..oooooooooooooo ",
|
||||
" o$$$$$$$$$$$$$+$$$$$$$$$$$$$+. ",
|
||||
" o$============+$============+. ",
|
||||
" o$=&&=========+$=========&&=+. ",
|
||||
" o$=&&=========+$=========&&=+. ",
|
||||
" o$============+$============+. ",
|
||||
" o$============+$============+. ",
|
||||
" o$==========******==========+. ",
|
||||
" o$=$$$$$$$$= =$$$$$$$$=+. ",
|
||||
" o$============+$============+. ",
|
||||
" o$=&&=========+$=========&&=+. ",
|
||||
" o$=&&=========+$=========&&=+. ",
|
||||
" o$============+$============+. ",
|
||||
" o$============+$=== =======+. ",
|
||||
" o$==========*** * %% = ===+. ",
|
||||
" o$=$$$$$$$$= %@ @$$@ @% $=+. ",
|
||||
" o$============ @%+@OO@+%@ ==+. ",
|
||||
" o$=&&=========+ +OO#O#O+ &&=+. ",
|
||||
" o$=&&======== %@O#++O#@% =+. ",
|
||||
" o$========== %$@O#O@@#*O@$% +. ",
|
||||
" o$========== +@%+#*##=*+%@+ +. ",
|
||||
" o$==========* XX%+#*=#+%XX =+. ",
|
||||
" o$=$$$$$$$$= +$%%++%%$+ $=+. ",
|
||||
" o$=========== @=+X+%%+X+=@ =+. ",
|
||||
" o$=&&======== %@X @@ X@% =+. ",
|
||||
" o$=&&========= = %= = &=+. ",
|
||||
" o$============+$== X+ ======+. ",
|
||||
" o$============+$=== =======+. ",
|
||||
" o$+++++++++++++$+++++++++++++. ",
|
||||
" o............................. ",
|
||||
"- -"
|
||||
};
|
@ -0,0 +1,116 @@
|
||||
/* XPM */
|
||||
static char *kdat-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 94 2",
|
||||
" c black",
|
||||
". c #020202",
|
||||
"X c #030303",
|
||||
"o c #040404",
|
||||
"O c #050505",
|
||||
"+ c #060606",
|
||||
"@ c #070707",
|
||||
"# c #080808",
|
||||
"$ c #090909",
|
||||
"% c #0A0A0A",
|
||||
"& c #0E0E0E",
|
||||
"* c #0F0F0F",
|
||||
"= c #131313",
|
||||
"- c #141414",
|
||||
"; c #151515",
|
||||
": c #171717",
|
||||
"> c #181818",
|
||||
", c #191919",
|
||||
"< c #1B1B1B",
|
||||
"1 c #1E1E1E",
|
||||
"2 c #1F1F1F",
|
||||
"3 c #212121",
|
||||
"4 c #222222",
|
||||
"5 c #232323",
|
||||
"6 c #242424",
|
||||
"7 c #262626",
|
||||
"8 c #292929",
|
||||
"9 c #2B2B2B",
|
||||
"0 c #303030",
|
||||
"q c #323232",
|
||||
"w c #343434",
|
||||
"e c #363636",
|
||||
"r c #373737",
|
||||
"t c #383838",
|
||||
"y c #393939",
|
||||
"u c #3B3B3B",
|
||||
"i c #3C3C3C",
|
||||
"p c #3F3F3F",
|
||||
"a c #414141",
|
||||
"s c #434343",
|
||||
"d c #484848",
|
||||
"f c #494949",
|
||||
"g c #4B4B4B",
|
||||
"h c #4C4C4C",
|
||||
"j c #4D4D4D",
|
||||
"k c #4E4E4E",
|
||||
"l c #4F4F4F",
|
||||
"z c #525252",
|
||||
"x c #535353",
|
||||
"c c #5B5B5B",
|
||||
"v c #5C5C5C",
|
||||
"b c #5D5D5D",
|
||||
"n c #5F5F5F",
|
||||
"m c #656565",
|
||||
"M c #686868",
|
||||
"N c #696969",
|
||||
"B c #6A6A6A",
|
||||
"V c #6B6B6B",
|
||||
"C c #6D6D6D",
|
||||
"Z c #6F6F6F",
|
||||
"A c #707070",
|
||||
"S c #737373",
|
||||
"D c #777777",
|
||||
"F c #787878",
|
||||
"G c #797979",
|
||||
"H c #7A7A7A",
|
||||
"J c #7B7B7B",
|
||||
"K c #808080",
|
||||
"L c #818181",
|
||||
"P c #828282",
|
||||
"I c #838383",
|
||||
"U c #8A8A8A",
|
||||
"Y c #8B8B8B",
|
||||
"T c #8C8C8C",
|
||||
"R c #8D8D8D",
|
||||
"E c #8E8E8E",
|
||||
"W c #8F8F8F",
|
||||
"Q c #909090",
|
||||
"! c #929292",
|
||||
"~ c #939393",
|
||||
"^ c #959595",
|
||||
"/ c #979797",
|
||||
"( c #989898",
|
||||
") c #9A9A9A",
|
||||
"_ c #9B9B9B",
|
||||
"` c #9D9D9D",
|
||||
"' c #A1A1A1",
|
||||
"] c #A2A2A2",
|
||||
"[ c #A7A7A7",
|
||||
"{ c #AAAAAA",
|
||||
"} c #ACACAC",
|
||||
"| c #ADADAD",
|
||||
" . c #B3B3B3",
|
||||
".. c None",
|
||||
/* pixels */
|
||||
"................................",
|
||||
".............. ............",
|
||||
"............ 6 A 0 # ........",
|
||||
".......... 6 ) H a ; # # ....",
|
||||
"........ 5 ~ ~ C z u m H w # ",
|
||||
"...... 2 T ) ' ` ` [ } ~ I j # ",
|
||||
".... > H J ~ ) J } .) T B u # ",
|
||||
".. > B m j b H ) } ) Q C s 6 ",
|
||||
" ; c j 8 2 w A { ~ T C i 6 O ",
|
||||
"# f s w = f T ' T T B i 6 O ..",
|
||||
"& f a u ; A ) P P m i 5 O ....",
|
||||
"# u z j j H S A b u 6 O ......",
|
||||
" O > u f f x z u 6 O ........",
|
||||
".... O > 9 u 0 5 O ..........",
|
||||
"........ = ; ............",
|
||||
"............ .............."
|
||||
};
|
@ -0,0 +1,208 @@
|
||||
/* XPM */
|
||||
static char *kdat[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 170 2",
|
||||
" c #000000",
|
||||
". c #010101",
|
||||
"X c #020202",
|
||||
"o c #040404",
|
||||
"O c #050505",
|
||||
"+ c #060606",
|
||||
"@ c #070707",
|
||||
"# c #080808",
|
||||
"$ c #090909",
|
||||
"% c #0A0A0A",
|
||||
"& c #0B0B0B",
|
||||
"* c #0C0C0C",
|
||||
"= c #0D0D0D",
|
||||
"- c #0E0E0E",
|
||||
"; c #0F0F0F",
|
||||
": c #101010",
|
||||
"> c #121212",
|
||||
", c #131313",
|
||||
"< c #141414",
|
||||
"1 c #171717",
|
||||
"2 c #181818",
|
||||
"3 c #191919",
|
||||
"4 c #1A1A1A",
|
||||
"5 c #1B1B1B",
|
||||
"6 c #1C1C1C",
|
||||
"7 c #1F1F1F",
|
||||
"8 c #202020",
|
||||
"9 c #222222",
|
||||
"0 c #232323",
|
||||
"q c #262626",
|
||||
"w c #272727",
|
||||
"e c #282828",
|
||||
"r c #2A2A2A",
|
||||
"t c #2B2B2B",
|
||||
"y c #2C2C2C",
|
||||
"u c #2D2D2D",
|
||||
"i c #2E2E2E",
|
||||
"p c #2F2F2F",
|
||||
"a c #303030",
|
||||
"s c #313131",
|
||||
"d c #333333",
|
||||
"f c #343434",
|
||||
"g c #353535",
|
||||
"h c #363636",
|
||||
"j c #373737",
|
||||
"k c #383838",
|
||||
"l c #393939",
|
||||
"z c #3A3A3A",
|
||||
"x c #3B3B3B",
|
||||
"c c #3C3C3C",
|
||||
"v c #3D3D3D",
|
||||
"b c #3E3E3E",
|
||||
"n c #3F3F3F",
|
||||
"m c #404040",
|
||||
"M c #414141",
|
||||
"N c #424242",
|
||||
"B c #434343",
|
||||
"V c #444444",
|
||||
"C c #454545",
|
||||
"Z c #464646",
|
||||
"A c #474747",
|
||||
"S c #484848",
|
||||
"D c #494949",
|
||||
"F c #4A4A4A",
|
||||
"G c #4B4B4B",
|
||||
"H c #4C4C4C",
|
||||
"J c #4D4D4D",
|
||||
"K c #4E4E4E",
|
||||
"L c #4F4F4F",
|
||||
"P c #505050",
|
||||
"I c #515151",
|
||||
"U c #525252",
|
||||
"Y c #535353",
|
||||
"T c #545454",
|
||||
"R c #555555",
|
||||
"E c #565656",
|
||||
"W c #585858",
|
||||
"Q c #595959",
|
||||
"! c #5A5A5A",
|
||||
"~ c #5B5B5B",
|
||||
"^ c #5C5C5C",
|
||||
"/ c #5D5D5D",
|
||||
"( c #5E5E5E",
|
||||
") c #5F5F5F",
|
||||
"_ c #626262",
|
||||
"` c #636363",
|
||||
"' c #646464",
|
||||
"] c #656565",
|
||||
"[ c #666666",
|
||||
"{ c #676767",
|
||||
"} c #686868",
|
||||
"| c #696969",
|
||||
" . c #6A6A6A",
|
||||
".. c #6B6B6B",
|
||||
"X. c #6C6C6C",
|
||||
"o. c #6E6E6E",
|
||||
"O. c #6F6F6F",
|
||||
"+. c #707070",
|
||||
"@. c #717171",
|
||||
"#. c #727272",
|
||||
"$. c #737373",
|
||||
"%. c #757575",
|
||||
"&. c #767676",
|
||||
"*. c #777777",
|
||||
"=. c #787878",
|
||||
"-. c #797979",
|
||||
";. c #7A7A7A",
|
||||
":. c #7B7B7B",
|
||||
">. c #7E7E7E",
|
||||
",. c #7F7F7F",
|
||||
"<. c #808080",
|
||||
"1. c #818181",
|
||||
"2. c #828282",
|
||||
"3. c #838383",
|
||||
"4. c #848484",
|
||||
"5. c #858585",
|
||||
"6. c #868686",
|
||||
"7. c #888888",
|
||||
"8. c #898989",
|
||||
"9. c #8A8A8A",
|
||||
"0. c #8B8B8B",
|
||||
"q. c #8C8C8C",
|
||||
"w. c #8D8D8D",
|
||||
"e. c #8E8E8E",
|
||||
"r. c #8F8F8F",
|
||||
"t. c #909090",
|
||||
"y. c #919191",
|
||||
"u. c #929292",
|
||||
"i. c #939393",
|
||||
"p. c #949494",
|
||||
"a. c #959595",
|
||||
"s. c #969696",
|
||||
"d. c #979797",
|
||||
"f. c #989898",
|
||||
"g. c #999999",
|
||||
"h. c #9A9A9A",
|
||||
"j. c #9B9B9B",
|
||||
"k. c #9C9C9C",
|
||||
"l. c #9D9D9D",
|
||||
"z. c #9E9E9E",
|
||||
"x. c #9F9F9F",
|
||||
"c. c #A0A0A0",
|
||||
"v. c #A1A1A1",
|
||||
"b. c #A2A2A2",
|
||||
"n. c #A3A3A3",
|
||||
"m. c #A4A4A4",
|
||||
"M. c #A7A7A7",
|
||||
"N. c #A9A9A9",
|
||||
"B. c #AAAAAA",
|
||||
"V. c #ABABAB",
|
||||
"C. c #ACACAC",
|
||||
"Z. c #ADADAD",
|
||||
"A. c #B2B2B2",
|
||||
"S. c #B3B3B3",
|
||||
"D. c #B4B4B4",
|
||||
"F. c #BDBDBD",
|
||||
"G. c #BEBEBE",
|
||||
"H. c #C0C0C0",
|
||||
"J. c #C8C8C8",
|
||||
"K. c #CBCBCB",
|
||||
"L. c #CCCCCC",
|
||||
"P. c #D0D0D0",
|
||||
"I. c #D4D4D4",
|
||||
"U. c #D5D5D5",
|
||||
"Y. c #D7D7D7",
|
||||
"T. c #D8D8D8",
|
||||
"R. c #DADADA",
|
||||
"E. c #DCDCDC",
|
||||
"W. c #E0E0E0",
|
||||
"Q. c None",
|
||||
/* pixels */
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. M c 1 Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. o U W.C.` p 6 Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. Q T.b.` ` ( h o $ Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. ( E.M.` E h 4 - - - > > Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. ( U.b.@.` U k t 7 $ $ } ,.C 4 Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. ` K.z.9.q.5.=.} @.O.G ` H.B.a.` U > Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q. E J.f.9.M.b.M.a.b.z.q.z.K.C.i.q.9.q.} k o ",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q. Q G.a.,.M.C.b.M.f.D.f.z.U.C.a.i.q.5.,.} K $ ",
|
||||
"Q.Q.Q.Q.Q.Q.Q. G A.i.@.q.b.b.a.a.5.i.D.T.C.f.f.i.9.q.` M k $ ",
|
||||
"Q.Q.Q.Q.Q.Q. C B.>.` &.5.a.b.5.=.` ,.W.C.z.f.a.q.9.O.G c h o ",
|
||||
"Q.Q.Q.Q.Q. M b.=.U ( @.>.9.a.a.} =.T.B.z.f.a.i.q.O.G c k p $ ",
|
||||
"Q.Q.Q.Q. h i.O.C U K c k M ( >.f.E.B.z.f.a.i.q.@.G c h p $ ",
|
||||
"Q.Q. h a.( c G p $ $ > 4 4 U E.b.f.f.a.i.9.O.C c k p $ Q.",
|
||||
"Q. p ,.Q h C p $ o h K M Q U.z.a.a.i.q.q.@.C h h p - Q.Q.Q.",
|
||||
" w =.Q d M c 1 c } } q.U.f.i.q.q.q.9.O.C h d t - Q.Q.Q.Q.",
|
||||
" - ` U p k c h > o K Q =.P.i.9.9.9.9.9.O.M h d t - Q.Q.Q.Q.Q.",
|
||||
" $ K C k k k h > p 5.K.i.5.5.5.,.,.@.C d d t - Q.Q.Q.Q.Q.Q.",
|
||||
" - U U K G c h 4 $ E G.9.=.>.>.,.,.} M h h p - Q.Q.Q.Q.Q.Q.Q.",
|
||||
" $ E E U U K G h K C.9.@.&.&.=.=.` C h h t - Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
" o t d U U K U U ` ` } @.@.O.@.( c h d t - Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q. $ 7 d G G K G C K E ` } Q k d d p - Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q. $ 7 h M C C M M G G c p p t - Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q. o > 4 h c M M c h d p p - Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q. - > 7 p h d p t $ Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q. o 1 7 7 w $ Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. o $ o Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q. Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.",
|
||||
"Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q.Q."
|
||||
};
|
@ -0,0 +1,194 @@
|
||||
/* XPM */
|
||||
static char *kpackage-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 172 2",
|
||||
" c black",
|
||||
". c #0B0C15",
|
||||
"X c #111322",
|
||||
"o c #343D68",
|
||||
"O c #37406C",
|
||||
"+ c #394175",
|
||||
"@ c #3F4881",
|
||||
"# c #414B81",
|
||||
"$ c #485491",
|
||||
"% c #4D5C96",
|
||||
"& c #4E5C98",
|
||||
"* c #575D90",
|
||||
"= c #4F59A3",
|
||||
"- c #535EA8",
|
||||
"; c #58619D",
|
||||
": c #5D669C",
|
||||
"> c #5260A1",
|
||||
", c #5867AB",
|
||||
"< c #5865B0",
|
||||
"1 c #5E6DB9",
|
||||
"2 c #6E7BBD",
|
||||
"3 c #6677C5",
|
||||
"4 c #6879CB",
|
||||
"5 c #687CC8",
|
||||
"6 c #6C7ED1",
|
||||
"7 c #7B83B3",
|
||||
"8 c #6E81D2",
|
||||
"9 c #7684C6",
|
||||
"0 c #7182CE",
|
||||
"q c #7D90DB",
|
||||
"w c #7D95EE",
|
||||
"e c #F8B422",
|
||||
"r c #FAB82A",
|
||||
"t c #FBBC32",
|
||||
"y c #FCBF38",
|
||||
"u c #C3A67B",
|
||||
"i c #DEB664",
|
||||
"p c #DEB26C",
|
||||
"a c #EBBE5B",
|
||||
"s c #FDC234",
|
||||
"d c #FEC340",
|
||||
"f c #FDC742",
|
||||
"g c #FDC64A",
|
||||
"h c #FEC74B",
|
||||
"j c #FFCA4E",
|
||||
"k c #FFCF49",
|
||||
"l c #FCCB56",
|
||||
"z c #FFC954",
|
||||
"x c #FECD50",
|
||||
"c c #FFD056",
|
||||
"v c #E6C77E",
|
||||
"b c #FECB63",
|
||||
"n c #FFDB7A",
|
||||
"m c #FFDC7C",
|
||||
"M c #8F95B3",
|
||||
"N c #A19494",
|
||||
"B c #A29BA7",
|
||||
"V c #AAA0A2",
|
||||
"C c #ACA7A8",
|
||||
"Z c #A1A6BE",
|
||||
"A c #A5A6BD",
|
||||
"S c #B8B3B6",
|
||||
"D c #8294DC",
|
||||
"F c #879EE4",
|
||||
"G c #8499EB",
|
||||
"H c #8199F5",
|
||||
"J c #98A3CC",
|
||||
"K c #89A5FF",
|
||||
"L c #8BA5FC",
|
||||
"P c #8BA5FF",
|
||||
"I c #8DA6FC",
|
||||
"U c #8DA8FF",
|
||||
"Y c #81B0FB",
|
||||
"T c #89B6FE",
|
||||
"R c #8AB6FE",
|
||||
"E c #88BAFF",
|
||||
"W c #8CB9FE",
|
||||
"Q c #95A5E8",
|
||||
"! c #92A8F1",
|
||||
"~ c #94ABFB",
|
||||
"^ c #98ADF9",
|
||||
"/ c #93B2F7",
|
||||
"( c #97B5F4",
|
||||
") c #98B3F4",
|
||||
"_ c #9BB1FF",
|
||||
"` c #9FB5FF",
|
||||
"' c #A5B2E0",
|
||||
"] c #A5B1E5",
|
||||
"[ c #A5B1E8",
|
||||
"{ c #A2B8FF",
|
||||
"} c #A3B8FF",
|
||||
"| c #A6B9FC",
|
||||
" . c #ABBBF4",
|
||||
".. c #B3BEEE",
|
||||
"X. c #9EC8FF",
|
||||
"o. c #9ECAFC",
|
||||
"O. c #96D2FF",
|
||||
"+. c #9CD4FF",
|
||||
"@. c #A5C0F6",
|
||||
"#. c #A4C7FC",
|
||||
"$. c #A1CDFC",
|
||||
"%. c #A6CAFF",
|
||||
"&. c #A5CEFF",
|
||||
"*. c #A8CFFF",
|
||||
"=. c #A9CFFF",
|
||||
"-. c #A8D1FC",
|
||||
";. c #A8D0FF",
|
||||
":. c #A9D6FF",
|
||||
">. c #B6C2EF",
|
||||
",. c #B2C3F3",
|
||||
"<. c #B2C0F4",
|
||||
"1. c #B4C0F2",
|
||||
"2. c #B4C4FE",
|
||||
"3. c #B7C8FF",
|
||||
"4. c #BAC9F6",
|
||||
"5. c #BAC8F9",
|
||||
"6. c #B8CBFF",
|
||||
"7. c #BCCEFE",
|
||||
"8. c #B1D3FF",
|
||||
"9. c #B3D6FF",
|
||||
"0. c #B4D6FF",
|
||||
"q. c #B8D8FF",
|
||||
"w. c #BEDDFF",
|
||||
"e. c #C4AA81",
|
||||
"r. c #D5B781",
|
||||
"t. c #D3BA9B",
|
||||
"y. c #F0D295",
|
||||
"u. c #E3D7AC",
|
||||
"i. c #FFE496",
|
||||
"p. c #ECE2B7",
|
||||
"a. c #FFEFA4",
|
||||
"s. c #FFEEA8",
|
||||
"d. c #FFF0A6",
|
||||
"f. c #C2CADB",
|
||||
"g. c #D9DFD9",
|
||||
"h. c #C4CDF0",
|
||||
"j. c #CAD2F2",
|
||||
"k. c #DBE0DD",
|
||||
"l. c #CDE8FF",
|
||||
"z. c #CEE9FF",
|
||||
"x. c #D1E1FF",
|
||||
"c. c #D6E4FF",
|
||||
"v. c #D8E0FB",
|
||||
"b. c #DEEAFF",
|
||||
"n. c #DDECFF",
|
||||
"m. c #DEEDFF",
|
||||
"M. c #DCF0FF",
|
||||
"N. c #EAECCF",
|
||||
"B. c #FFFECE",
|
||||
"V. c #E3E9FC",
|
||||
"C. c #E4EFFF",
|
||||
"Z. c #E8EDFC",
|
||||
"A. c #E9ECFC",
|
||||
"S. c #E8F1FF",
|
||||
"D. c #E8F2FF",
|
||||
"F. c #EDF4FF",
|
||||
"G. c #EDF6FF",
|
||||
"H. c #EEF6FF",
|
||||
"J. c #F0F6FF",
|
||||
"K. c #F2F9FF",
|
||||
"L. c #F2FBFF",
|
||||
"P. c #F3FAFF",
|
||||
"I. c #F6FBFF",
|
||||
"U. c #F7FAFF",
|
||||
"Y. c #F7FCFF",
|
||||
"T. c #F7FDFF",
|
||||
"R. c #FAFCFF",
|
||||
"E. c #FBFDFF",
|
||||
"W. c #FEFEFF",
|
||||
"Q. c #FEFFFF",
|
||||
"!. c gray100",
|
||||
"~. c None",
|
||||
/* pixels */
|
||||
"~.~.~.~.~.~.H w ~.~.6 4 ~.~.~.~.",
|
||||
"~.~.~.~.U I f.g.5 q k.J 1 ~.~.~.",
|
||||
"~.~.~.~.~ y.i.s.S N.B.B.Z < ~.~.",
|
||||
"~.~.~.~.K t.b c s l a.d.d.C - ~.",
|
||||
"~.~.~.~.~.Q a k f e g n m n N @ ",
|
||||
"~.~.~.~.~.` ) v x r y j l p * ",
|
||||
"~.~.~.~.~.} &./ r.t s x u 7 : = ",
|
||||
"~.K _ 2.| ^ W X.( e.i B u.p.M + ",
|
||||
"P 2.T.T.c.b. .Y *. .F A B ; X ",
|
||||
"} U.Q.Q.D.T.Q.! E 9.:.:.#.$ ~.~.",
|
||||
"6.m.K.V.v.Q.J.1.E =.j.:.X.$ ~.~.",
|
||||
"7.C.U.>.] F.b...T :.z.+.$.$ ~.~.",
|
||||
"5.Q.Q.G.U.Q.K.[ &.q.M.O.-.$ ~.~.",
|
||||
"G A.G.m.T.Q.A.0 4.m.L.z.' # ~.~.",
|
||||
"~.D ,.x.F.h.2 . 8 ..j.9 o ~.~.",
|
||||
"~.~.% , > o ~.3 & ~.~.~."
|
||||
};
|
@ -0,0 +1,264 @@
|
||||
/* XPM */
|
||||
static char *kpackage[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 226 2",
|
||||
" c black",
|
||||
". c #14172A",
|
||||
"X c #181C2F",
|
||||
"o c #191D31",
|
||||
"O c #242949",
|
||||
"+ c #2B3254",
|
||||
"@ c #3A4178",
|
||||
"# c #404A7C",
|
||||
"$ c #414A85",
|
||||
"% c #464F8F",
|
||||
"& c #45508B",
|
||||
"* c #495495",
|
||||
"= c #4D599C",
|
||||
"- c #505E9C",
|
||||
"; c #4D57A0",
|
||||
": c #4E5AA0",
|
||||
"> c #505CA5",
|
||||
", c #535EA9",
|
||||
"< c #52609D",
|
||||
"1 c #5563A7",
|
||||
"2 c #5563AB",
|
||||
"3 c #596AAD",
|
||||
"4 c #5766B0",
|
||||
"5 c #5866B2",
|
||||
"6 c #5B6AB0",
|
||||
"7 c #5D6DBA",
|
||||
"8 c #696EA2",
|
||||
"9 c #6170BE",
|
||||
"0 c #6873B6",
|
||||
"q c #7177AE",
|
||||
"w c #7877A0",
|
||||
"e c #7A78A0",
|
||||
"r c #6374C1",
|
||||
"t c #6578C5",
|
||||
"y c #687BC7",
|
||||
"u c #6A7BCC",
|
||||
"i c #6B7DD0",
|
||||
"p c #7880B7",
|
||||
"a c #6C80CB",
|
||||
"s c #6D80D4",
|
||||
"d c #7382CB",
|
||||
"f c #7C86C1",
|
||||
"g c #7282D3",
|
||||
"h c #7185DA",
|
||||
"j c #7288D3",
|
||||
"k c #7489DD",
|
||||
"l c #7B8BD6",
|
||||
"z c #798CDD",
|
||||
"x c #758CE1",
|
||||
"c c #7B94ED",
|
||||
"v c #7E96F0",
|
||||
"b c #7999F0",
|
||||
"n c #7EB3FF",
|
||||
"m c #F6AE19",
|
||||
"M c #F7B11D",
|
||||
"N c #FAB31E",
|
||||
"B c #F7B221",
|
||||
"V c #F9B524",
|
||||
"C c #F9B628",
|
||||
"Z c #FAB92D",
|
||||
"A c #FBBC33",
|
||||
"S c #FCBE38",
|
||||
"D c #C9AC7B",
|
||||
"F c #D1AD6B",
|
||||
"G c #D1B176",
|
||||
"H c #E3B659",
|
||||
"J c #EDBD58",
|
||||
"K c #F3B853",
|
||||
"L c #F6BD59",
|
||||
"P c #FFBE50",
|
||||
"I c #E1B879",
|
||||
"U c #FFC333",
|
||||
"Y c #FCC03C",
|
||||
"T c #FFC93D",
|
||||
"R c #FEC443",
|
||||
"E c #FFC649",
|
||||
"W c #FFCC43",
|
||||
"Q c #FFC94A",
|
||||
"! c #FEC453",
|
||||
"~ c #FECB52",
|
||||
"^ c #FFCD5B",
|
||||
"/ c #FFD04C",
|
||||
"( c #FFD254",
|
||||
") c #FFD65D",
|
||||
"_ c #FFC763",
|
||||
"` c #FFCB66",
|
||||
"' c #FFD360",
|
||||
"] c #FFD26B",
|
||||
"[ c #FFDB67",
|
||||
"{ c #FFD573",
|
||||
"} c #FFD77D",
|
||||
"| c #FFDE70",
|
||||
" . c #FFD87C",
|
||||
".. c #838DBB",
|
||||
"X. c #8690BE",
|
||||
"o. c #8C94B8",
|
||||
"O. c #9090AE",
|
||||
"+. c #9499BD",
|
||||
"@. c #9D9DB2",
|
||||
"#. c #B2A08C",
|
||||
"$. c #B9A699",
|
||||
"%. c #B2A7A5",
|
||||
"&. c #B2A9A9",
|
||||
"*. c #B0ABBC",
|
||||
"=. c #818DC3",
|
||||
"-. c #8391C9",
|
||||
";. c #8391DC",
|
||||
":. c #8B9BD7",
|
||||
">. c #8D9CDA",
|
||||
",. c #949CC2",
|
||||
"<. c #8396E1",
|
||||
"1. c #8999E8",
|
||||
"2. c #8199F4",
|
||||
"3. c #849DF9",
|
||||
"4. c #909DE7",
|
||||
"5. c #909EEB",
|
||||
"6. c #9AA3D5",
|
||||
"7. c #86A2E9",
|
||||
"8. c #8EA2E9",
|
||||
"9. c #86A1FC",
|
||||
"0. c #83ABFC",
|
||||
"q. c #8CA0F0",
|
||||
"w. c #89A4FE",
|
||||
"e. c #8CAAFD",
|
||||
"r. c #83B4FF",
|
||||
"t. c #86B8FF",
|
||||
"y. c #8BBCFF",
|
||||
"u. c #95A4EB",
|
||||
"i. c #9EAEED",
|
||||
"p. c #91A7FA",
|
||||
"a. c #90AAFF",
|
||||
"s. c #9CACF2",
|
||||
"d. c #90B0F5",
|
||||
"f. c #93B6FE",
|
||||
"g. c #94BAFC",
|
||||
"h. c #9EB3FF",
|
||||
"j. c #9DBDFB",
|
||||
"k. c #ADA9C2",
|
||||
"l. c #A6B0D8",
|
||||
"z. c #ADB7DB",
|
||||
"x. c #A1ABE9",
|
||||
"c. c #A3B2EA",
|
||||
"v. c #A8B3E7",
|
||||
"b. c #A1B5FE",
|
||||
"n. c #A3BAFB",
|
||||
"m. c #AAB5F2",
|
||||
"M. c #AAB8F2",
|
||||
"N. c #A8BCFF",
|
||||
"B. c #B5BEF3",
|
||||
"V. c #93C0FF",
|
||||
"C. c #9BC6FF",
|
||||
"Z. c #9CC8FF",
|
||||
"A. c #96D2FF",
|
||||
"S. c #9CD5FF",
|
||||
"D. c #A2C2F8",
|
||||
"F. c #A5CDFF",
|
||||
"G. c #ABC7FB",
|
||||
"H. c #ACC8FB",
|
||||
"J. c #A3D3FF",
|
||||
"K. c #ACD3FF",
|
||||
"L. c #B7C1EB",
|
||||
"P. c #B1C3FF",
|
||||
"I. c #B2CCF8",
|
||||
"U. c #BBC6F5",
|
||||
"Y. c #BBC8F7",
|
||||
"T. c #B9CBFF",
|
||||
"R. c #B2D5FF",
|
||||
"E. c #B6D8FF",
|
||||
"W. c #BDD4FB",
|
||||
"Q. c #BCDCFF",
|
||||
"!. c #C2AB88",
|
||||
"~. c #CBAC86",
|
||||
"^. c #CDAE89",
|
||||
"/. c #C7B193",
|
||||
"(. c #C5B7B3",
|
||||
"). c #E2C99C",
|
||||
"_. c #F1D28D",
|
||||
"`. c #FFDD83",
|
||||
"'. c #FFE186",
|
||||
"]. c #FFE18E",
|
||||
"[. c #FFE793",
|
||||
"{. c #FEE299",
|
||||
"}. c #FFE894",
|
||||
"|. c #FFEA9B",
|
||||
" X c #FEE5A1",
|
||||
".X c #FFEBA4",
|
||||
"XX c #FFF4B0",
|
||||
"oX c #FFF7B8",
|
||||
"OX c #FFFABE",
|
||||
"+X c #C7C1C6",
|
||||
"@X c #D6D3CD",
|
||||
"#X c #C2CBF3",
|
||||
"$X c #C6D4FF",
|
||||
"%X c #C1DDFF",
|
||||
"&X c #CCD4FF",
|
||||
"*X c #CBDAFF",
|
||||
"=X c #D1DCFF",
|
||||
"-X c #C4E2FF",
|
||||
";X c #CAE3FF",
|
||||
":X c #C9EBFF",
|
||||
">X c #D4E4FF",
|
||||
",X c #D3EAFF",
|
||||
"<X c #DDE6FE",
|
||||
"1X c #DCEAFF",
|
||||
"2X c #DCF0FF",
|
||||
"3X c #E6E6D5",
|
||||
"4X c #E3E8DC",
|
||||
"5X c #EDF0DC",
|
||||
"6X c #F5F0CA",
|
||||
"7X c #FFF6C3",
|
||||
"8X c #FFFEC5",
|
||||
"9X c #FFFFCD",
|
||||
"0X c #FFFED7",
|
||||
"qX c #FFFFD8",
|
||||
"wX c #E0E6FC",
|
||||
"eX c #E3ECFF",
|
||||
"rX c #E8ECFE",
|
||||
"tX c #E5F1FF",
|
||||
"yX c #EAF3FF",
|
||||
"uX c #EDF9FF",
|
||||
"iX c #F1F5E0",
|
||||
"pX c LightYellow",
|
||||
"aX c #F0F5FF",
|
||||
"sX c #F4FBFF",
|
||||
"dX c #FEFEFF",
|
||||
"fX c None",
|
||||
/* pixels */
|
||||
"fXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXfXfXfXfXfX2.v v fXfXfXfXi i u fXfXfXfXfXfXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXfXfXfX9.3.c.iX1.3 fXfXh :.4Xd 6 fXfXfXfXfXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXfXa.w.w.@XOX8X3Xx h >.pXpX5X-.7 fXfXfXfXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXa.e.+X{.|..XXXoXl.k z.qXqXqXqXqX=.2 fXfXfXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXa.s.{ } `.].{..X X!.8X8X8X8X8X8X7X+.5 5 fXfXfXfX",
|
||||
"fXfXfXfXfXfXfXfXfXw.(.` ] } .) W N ~ XXXXXXXXXXXXXX@.2 * fXfXfX",
|
||||
"fXfXfXfXfXfXfXfXfXw.p.L P ! T T / V m S }.|.|.|.|.|.|.%., > fXfX",
|
||||
"fXfXfXfXfXfXfXfXfXfX9.k.U U T / ( C M V Y '.'.'.'.'.'.'./., % fX",
|
||||
"fXfXfXfXfXfXfXfXfXfXw.9.*.Q / ( ) Z B C Z S ] { { { { { { 8 $ ",
|
||||
"fXfXfXfXfXfXfXfXfXfXw.b.e.6.( ) [ A V Z A S R ^ ) ^ ^ _ w * ",
|
||||
"fXfXfXfXfXfXfXfXfXfXw.N.F.e.6.] | Y C Z Y S R Q E E P w = fX",
|
||||
"fXfXfXfXfXfXfXfXfXfXw.N.F.F.e.<._.S A A Y S Q ~ ~ K e 2 O fXfX",
|
||||
"fXfXfXfXfXfXfXfXfXfXe.N.F.F.F.g.;.H A S R R Q ~ #.0 ,.=..., > ; ",
|
||||
"fXfXfXfXfX9.9.3.3.3.3.N.Z.y.F.F.g.l F S R Q G p ,.6X9X9X6Xo.; @ ",
|
||||
"fXfXfXw.w.P.*X=X$XP.b.1.e.n t.F.K.j.x D J O.f ).}.}.{.&.2 & . ",
|
||||
"fXfXw.b.yXdXsXuX1X$X>X=Xs.c n y.R.E.H.k s d $.^.G ^.q = O ",
|
||||
"fXw.b.dXdXdXdXsX1X>X1XsXsXs.b r.t.R.Q.R.H.d.7.7.j d 2 fXfX",
|
||||
"w.a.uXdXdXdXdXdXtX1XyXdXdXdX1.0.t.y.Q.;X%XF.F.F.K.g.2 fXfXfXfX",
|
||||
"w.$XyXsXdXdXdXdXaXuXdXdXdXdX&Xx t.t.y.%X%XJ.K.K.E.j.2 fXfXfXfX",
|
||||
"9.1X1XyXsXdXdXsXrXsXdXdXdXdXsXz r.y.y.-X-XR.E.K.J.C.2 fXfXfXfX",
|
||||
"h.>X>X2XrXsXaXM.s.rXsXsXrX1X*X5.0.g.y.;X;XE.J.J.S.D.2 fXfXfXfX",
|
||||
"b.%X;X>XyXuX=Xy < M.rXrX1X>X*Xu.0.V.y.;X,XQ.J.S.A.G.2 fXfXfXfX",
|
||||
"b.tXuXdXdXdXyXu.<.wXsXsXrX<X>X4.0.V.V.,X2X:XS.A.A.G.2 fXfXfXfX",
|
||||
"2.dXdXdXdXdXsXeXrXsXdXdXuXrX<Xl f.V.V.1XyX:XA.A.A.I.2 fXfXfXfX",
|
||||
"2.=XdXdXdXdXyXuXdXdXdXdXdXsX*Xd 1XZ.V.2XuX,XA.A.S.W.2 fXfXfXfX",
|
||||
"c 1.dXdXdXyX1XyXsXdXdXdXdXdX;.z *XtXF.tXsX2XS.:XaXL.1 fXfXfXfX",
|
||||
"fXx M.dXsX,X;XrXsXsXdXdXdXm.7 3 x Y.uXdXdXsXsXwX:.7 & fXfXfXfX",
|
||||
"fXfXg i.>X>XW.tXuXsXsXsXx.7 o 3 k U.sXdXaXv.y 2 X fXfXfXfX",
|
||||
"fXfXfXt z M.T.tXrX>XB.g 6 o fXt h v.#Xl 9 # fXfXfXfXfX",
|
||||
"fXfXfXfX+ 3 t r 9 9 2 + fXfXfX3 u u < fXfXfXfXfXfXfX",
|
||||
"fXfXfXfXfX fXfXfXfXfXfX fXfXfXfXfXfXfXfXfX"
|
||||
};
|
@ -0,0 +1,127 @@
|
||||
/* XPM */
|
||||
static char *ksysv-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 105 2",
|
||||
" c black",
|
||||
". c #606060",
|
||||
"X c gray39",
|
||||
"o c DimGray",
|
||||
"O c #6A6A6A",
|
||||
"+ c gray42",
|
||||
"@ c #6D6D6D",
|
||||
"# c #747474",
|
||||
"$ c #767676",
|
||||
"% c #777777",
|
||||
"& c #797B76",
|
||||
"* c #797D75",
|
||||
"= c gray47",
|
||||
"- c #797979",
|
||||
"; c gray48",
|
||||
": c #7B7B7B",
|
||||
"> c #7E7E7E",
|
||||
", c gray50",
|
||||
"< c #7D8C6F",
|
||||
"1 c #7D8675",
|
||||
"2 c #7D8278",
|
||||
"3 c #7E807D",
|
||||
"4 c #BD7E6E",
|
||||
"5 c #C67966",
|
||||
"6 c #EE7456",
|
||||
"7 c #FD6842",
|
||||
"8 c #FF714E",
|
||||
"9 c #8E9E7F",
|
||||
"0 c #948A75",
|
||||
"q c #9B837D",
|
||||
"w c #80B050",
|
||||
"e c #86D635",
|
||||
"r c #9AD45F",
|
||||
"t c #9BDE58",
|
||||
"y c #C7A459",
|
||||
"u c #E1BE73",
|
||||
"i c #FEC959",
|
||||
"p c #F0CC7E",
|
||||
"a c #F8CF76",
|
||||
"s c #FFD476",
|
||||
"d c #FFD67E",
|
||||
"f c #818181",
|
||||
"g c gray51",
|
||||
"h c #838383",
|
||||
"j c gray52",
|
||||
"k c #868686",
|
||||
"l c gray53",
|
||||
"z c #888785",
|
||||
"x c #8F8B81",
|
||||
"c c #888888",
|
||||
"v c #898989",
|
||||
"b c gray54",
|
||||
"n c gray55",
|
||||
"m c #8D8D8D",
|
||||
"M c #8E8E8E",
|
||||
"N c gray56",
|
||||
"B c #9A8984",
|
||||
"V c #91908D",
|
||||
"C c #949089",
|
||||
"Z c #949C8B",
|
||||
"A c #9C908D",
|
||||
"S c gray57",
|
||||
"D c #929292",
|
||||
"F c #939393",
|
||||
"G c gray58",
|
||||
"H c #989897",
|
||||
"J c #9E9897",
|
||||
"K c #989898",
|
||||
"L c gray60",
|
||||
"P c #9A9A9A",
|
||||
"I c gray61",
|
||||
"U c #9D9D9D",
|
||||
"Y c gray62",
|
||||
"T c #A29F99",
|
||||
"R c #AC9791",
|
||||
"E c #AA9B97",
|
||||
"W c #B09C97",
|
||||
"Q c #AAA28E",
|
||||
"! c #ABA69C",
|
||||
"~ c #A2B88B",
|
||||
"^ c #B8A783",
|
||||
"/ c #A0A0A0",
|
||||
"( c gray66",
|
||||
") c gray68",
|
||||
"_ c #B0ADAC",
|
||||
"` c #B1B1B1",
|
||||
"' c #B4B4B4",
|
||||
"] c gray73",
|
||||
"[ c #BBBBBB",
|
||||
"{ c #B5D396",
|
||||
"} c #B6C9A2",
|
||||
"| c #BEE09C",
|
||||
" . c #C7A59D",
|
||||
".. c #D3A99E",
|
||||
"X. c #E7A797",
|
||||
"o. c #FBA58F",
|
||||
"O. c #FFBFAF",
|
||||
"+. c #CFC5B1",
|
||||
"@. c #C0C0C0",
|
||||
"#. c #C8C8C8",
|
||||
"$. c #CECECE",
|
||||
"%. c #D6E9C3",
|
||||
"&. c #E2D7C1",
|
||||
"*. c #E8F7D9",
|
||||
"=. c None",
|
||||
/* pixels */
|
||||
"=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.=.",
|
||||
"=.=.=.=.D ` [ [ ' ' ' ` I =.=.=.",
|
||||
"=.=.=.=.K $.+.A W E ) #.) =.=.=.",
|
||||
"=.=.=.=.I [ n X.O.o.4 Y F =.=.=.",
|
||||
"=.=.=.=.I ( q 6 8 7 5 G j =.=.=.",
|
||||
"=.=.=.=.F / H R .. .J N f =.=.=.",
|
||||
"=.=.=.=.N I G F j v N v j =.=.=.",
|
||||
"=.=.=.=.N G b Q &.+.C j , =.=.=.",
|
||||
"=.=.=.=.v Z 9 X.d i y l ; =.=.=.",
|
||||
"=.=.=.=.v Z 0 u s a ^ h $ =.=.=.",
|
||||
"=.=.=.=.f m b N ! T j ; ; =.=.=.",
|
||||
"=.=.=.=.v v j - 1 2 : % + =.=.=.",
|
||||
"=.=.=.=.f h - } *.%.9 $ + =.=.=.",
|
||||
"=.=.=.=.$ 0 < r t e < ; + =.=.=.",
|
||||
"=.=.=.=.> > 2 ~ | { Z + X =.=.=.",
|
||||
"=.=.=.=.j % # # 1 < + . + =.=.=."
|
||||
};
|
@ -0,0 +1,182 @@
|
||||
/* XPM */
|
||||
static char *ksysv[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 144 2",
|
||||
" c black",
|
||||
". c #5C5C5C",
|
||||
"X c #636363",
|
||||
"o c #6B6B6B",
|
||||
"O c #6E716B",
|
||||
"+ c #747F69",
|
||||
"@ c #79746A",
|
||||
"# c #7F7A6E",
|
||||
"$ c #737373",
|
||||
"% c #747870",
|
||||
"& c #7B7A75",
|
||||
"* c #7B7B7B",
|
||||
"= c #7B8372",
|
||||
"- c #7F916D",
|
||||
"; c #7AA251",
|
||||
": c #6FCE10",
|
||||
"> c #7BD323",
|
||||
", c #8C7069",
|
||||
"< c #867773",
|
||||
"1 c #817875",
|
||||
"2 c #867F7D",
|
||||
"3 c #8B7772",
|
||||
"4 c #897A76",
|
||||
"5 c #AE6B5A",
|
||||
"6 c #BE6F5C",
|
||||
"7 c #A77B6F",
|
||||
"8 c #B67260",
|
||||
"9 c #B37768",
|
||||
"0 c #FD5126",
|
||||
"q c #FF582F",
|
||||
"w c #F95931",
|
||||
"e c #EE7B5F",
|
||||
"r c #FF6944",
|
||||
"t c #FD6D49",
|
||||
"y c #F57B5C",
|
||||
"u c #FF7B5A",
|
||||
"i c #87817F",
|
||||
"p c #868E7F",
|
||||
"a c #8A867F",
|
||||
"s c #849573",
|
||||
"d c #879B74",
|
||||
"f c #899B76",
|
||||
"g c #9B847E",
|
||||
"h c #85A861",
|
||||
"j c #89A56C",
|
||||
"k c #89AD65",
|
||||
"l c #B79959",
|
||||
"z c #AA9566",
|
||||
"x c #AE996E",
|
||||
"c c #89D43E",
|
||||
"v c #8AD83C",
|
||||
"b c #8DD941",
|
||||
"n c #94DA4D",
|
||||
"m c #A7E26C",
|
||||
"M c #A8E06F",
|
||||
"N c #AAE371",
|
||||
"B c #FDB723",
|
||||
"V c #FFBC2E",
|
||||
"C c #C0A364",
|
||||
"Z c #FFC447",
|
||||
"A c #F7C65A",
|
||||
"S c #F8C455",
|
||||
"D c #FFCB5C",
|
||||
"F c #F2C360",
|
||||
"G c #FDCD64",
|
||||
"H c #FFCF68",
|
||||
"J c #FFD67E",
|
||||
"K c #838383",
|
||||
"L c #858882",
|
||||
"P c #8D8684",
|
||||
"I c #8B8985",
|
||||
"U c #8B8B8A",
|
||||
"Y c #928380",
|
||||
"T c #908F8D",
|
||||
"R c #90908F",
|
||||
"E c #939393",
|
||||
"W c #989E92",
|
||||
"Q c #9B9A9A",
|
||||
"! c #98A08F",
|
||||
"~ c #9CAA8E",
|
||||
"^ c #9EB08B",
|
||||
"/ c #AC8B83",
|
||||
"( c #AE9F80",
|
||||
") c #A39C96",
|
||||
"_ c #B9968D",
|
||||
"` c #B69C95",
|
||||
"' c #AEA38C",
|
||||
"] c #A0A69A",
|
||||
"[ c #ACA390",
|
||||
"{ c #B0AA9D",
|
||||
"} c #BEB399",
|
||||
"| c #A2A2A2",
|
||||
" . c #ACA2A0",
|
||||
".. c #AAAAAA",
|
||||
"X. c #B1ADA1",
|
||||
"o. c #B8A6A2",
|
||||
"O. c #BAA8A3",
|
||||
"+. c #B2B2B2",
|
||||
"@. c #B9B9B9",
|
||||
"#. c #A6C686",
|
||||
"$. c #A8CD84",
|
||||
"%. c #AAD580",
|
||||
"&. c #B4C5A2",
|
||||
"*. c #B6C8A3",
|
||||
"=. c #B6E588",
|
||||
"-. c #B9E88A",
|
||||
";. c #CDB88A",
|
||||
":. c #C9BA99",
|
||||
">. c #DEA191",
|
||||
",. c #D7BE87",
|
||||
"<. c #C4A9A3",
|
||||
"1. c #FF9B82",
|
||||
"2. c #E4A798",
|
||||
"3. c #E8A898",
|
||||
"4. c #FAA18B",
|
||||
"5. c #FFA791",
|
||||
"6. c #FFA892",
|
||||
"7. c #F5B09E",
|
||||
"8. c #EAB3A5",
|
||||
"9. c #CEC1A4",
|
||||
"0. c #CBC1AC",
|
||||
"q. c #C7DEB0",
|
||||
"w. c #C8DFB1",
|
||||
"e. c #C8E4AC",
|
||||
"r. c #D6F1BB",
|
||||
"t. c #FDDA8E",
|
||||
"y. c #FCDC99",
|
||||
"u. c #FFE1A1",
|
||||
"i. c #C2C2C2",
|
||||
"p. c #CBCBCB",
|
||||
"a. c #D3D3D3",
|
||||
"s. c #D8D8D8",
|
||||
"d. c #DEF4C7",
|
||||
"f. c #E1C8C2",
|
||||
"g. c #FED4C9",
|
||||
"h. c #FFDAD1",
|
||||
"j. c #E1EDD5",
|
||||
"k. c #E4F1D6",
|
||||
"l. c #F4EAD5",
|
||||
"z. c #F8EED8",
|
||||
"x. c #FFF7E7",
|
||||
"c. c #F7FCF2",
|
||||
"v. c #F8FDF2",
|
||||
"b. c None",
|
||||
/* pixels */
|
||||
"b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.b.Q Q Q Q | | Q | Q Q Q E E E R E b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.s.U @.p.a.a.p.p.i.i.i.p.p.i.i...E b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.E Q a.a.a.i.Q & < 4 P ..p.p.a.@.| b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K Q p.p.i.R 4 <.f.f.<.a | i.i.+.E b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.U Q i.i.E , 8.h.h.h.g.>.Y ...E U b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.Q | @.@.K 9 1.6.5.1.u w 5 Q E T E b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.E Q ....2 6 t t r q 0 0 8 Q E U K b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.E Q ..| U 7 y u u u u e / Q E U * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.U E | | Q U _ 3.7.7.3.` Q E U U * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.E E | Q Q E E ) o.O. .Q E U R K $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K E | Q Q Q E E E E E R R U U K K b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K E Q Q Q E I * * * K U U U K K U b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K U Q Q E * # ' :.0.[ P I U K K K b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K E Q Q I @ :.z.x.x.l.} I U K K $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.* U E E * x y.u.u.y.J S z U K * * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K U E E * C G H G Z V B l R K * * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.U U E R K x A D D D D A ( E * * $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K K E R K I ,.t.t.t.t.;.Q K * * $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.* K R U U I U X.0.0.X.Q U * * $ * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.* K U U U U K R R E R K K * * O * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K K U U I I K $ $ * * * * * * O o b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.R U U I L * o + d f = * * $ $ o X b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.K K K K * O ^ k.c.c.j.~ K * $ o X b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.* K K K $ - e.d.d.d.r.%.s K $ o o b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.O * K K $ k M N m n > : ; U o o $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.$ * K K & h n n n b v c j K o X $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.* * * * * p $.=.-.-.=.#.W * o . . b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.U K * * * = W *.w.q.&.] U o o X $ b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.b.K * * * & * U E E U * o X X . * b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.b.U * $ $ o $ o o o X X X . . X K b.b.b.b.b.b.b.",
|
||||
"b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b.b."
|
||||
};
|
@ -0,0 +1,212 @@
|
||||
/* XPM */
|
||||
static char *kuser-16[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 190 2",
|
||||
" c black",
|
||||
". c #000009",
|
||||
"X c #000C1F",
|
||||
"o c #0F1B03",
|
||||
"O c #001026",
|
||||
"+ c #091627",
|
||||
"@ c #002500",
|
||||
"# c #062700",
|
||||
"$ c #052900",
|
||||
"% c #0D2700",
|
||||
"& c #083302",
|
||||
"* c #1C3E06",
|
||||
"= c #19212F",
|
||||
"- c #00007F",
|
||||
"; c #0A284C",
|
||||
": c #002A6A",
|
||||
"> c #084100",
|
||||
", c #0F4605",
|
||||
"< c #145A0D",
|
||||
"1 c #177A10",
|
||||
"2 c #265909",
|
||||
"3 c #335514",
|
||||
"4 c #305A2E",
|
||||
"5 c #256A05",
|
||||
"6 c #367433",
|
||||
"7 c #1B4A7E",
|
||||
"8 c #1E4B7E",
|
||||
"9 c #204772",
|
||||
"0 c #254B73",
|
||||
"q c #354A60",
|
||||
"w c #32577E",
|
||||
"e c #507D20",
|
||||
"r c #46586D",
|
||||
"t c #004499",
|
||||
"y c #2F629A",
|
||||
"u c #3266A0",
|
||||
"i c #425F80",
|
||||
"p c #5C7286",
|
||||
"a c #657B8F",
|
||||
"s c #128A22",
|
||||
"d c #1AAE07",
|
||||
"f c #208402",
|
||||
"g c #2CAB16",
|
||||
"h c #2DB202",
|
||||
"j c #2BB409",
|
||||
"k c #30B302",
|
||||
"l c #38B716",
|
||||
"z c #3EB13C",
|
||||
"x c #39C000",
|
||||
"c c #3EC001",
|
||||
"v c #3DC118",
|
||||
"b c #42BD17",
|
||||
"n c #46BF16",
|
||||
"m c #43B823",
|
||||
"M c #46B232",
|
||||
"N c #67981E",
|
||||
"B c #639427",
|
||||
"V c #50AA7A",
|
||||
"C c #67AD61",
|
||||
"Z c #41C600",
|
||||
"A c #46CD0D",
|
||||
"S c #49C800",
|
||||
"D c #4ACA00",
|
||||
"F c #4DCD00",
|
||||
"G c #48C116",
|
||||
"H c #51CF00",
|
||||
"J c #53CE00",
|
||||
"K c #51C61B",
|
||||
"L c #51C71A",
|
||||
"P c #52C61B",
|
||||
"I c #53D000",
|
||||
"U c #55D000",
|
||||
"Y c #59D400",
|
||||
"T c #5ED700",
|
||||
"R c #4EC320",
|
||||
"E c #62D60E",
|
||||
"W c #68DF00",
|
||||
"Q c #65C528",
|
||||
"! c #6EE100",
|
||||
"~ c #72E400",
|
||||
"^ c #78E40A",
|
||||
"/ c #7AE32C",
|
||||
"( c #6EC54E",
|
||||
") c #6DC664",
|
||||
"_ c #6EC764",
|
||||
"` c #6EC667",
|
||||
"' c #6BCB69",
|
||||
"] c #72C96F",
|
||||
"[ c #479F80",
|
||||
"{ c #4E9F9A",
|
||||
"} c #5F80A7",
|
||||
"| c #5787B2",
|
||||
" . c #5C89BE",
|
||||
".. c #569FB5",
|
||||
"X. c #728397",
|
||||
"o. c #72869A",
|
||||
"O. c #68A088",
|
||||
"+. c #67AFA9",
|
||||
"@. c #6CB6B6",
|
||||
"#. c #528CC5",
|
||||
"$. c #5E8FC9",
|
||||
"%. c #5EA0DF",
|
||||
"&. c #709CCE",
|
||||
"*. c #71ABC6",
|
||||
"=. c #67A9E1",
|
||||
"-. c #6CACF3",
|
||||
";. c #73B7F6",
|
||||
":. c #7FB0FA",
|
||||
">. c #7CBBFA",
|
||||
",. c #7EB8F8",
|
||||
"<. c #81B67D",
|
||||
"1. c #84EB11",
|
||||
"2. c #8DF210",
|
||||
"3. c #98FC19",
|
||||
"4. c #80E033",
|
||||
"5. c #87F121",
|
||||
"6. c #A0FF12",
|
||||
"7. c #89D354",
|
||||
"8. c #82CE6E",
|
||||
"9. c #84CF74",
|
||||
"0. c #85D171",
|
||||
"q. c #88D57E",
|
||||
"w. c #9AE44A",
|
||||
"e. c #96E052",
|
||||
"r. c #82BDEF",
|
||||
"t. c #86BFFA",
|
||||
"y. c #88BFF5",
|
||||
"u. c #8DBBFA",
|
||||
"i. c #9BBAE1",
|
||||
"p. c #9BBCE2",
|
||||
"a. c #87CA86",
|
||||
"s. c #92C58E",
|
||||
"d. c #B4EAB4",
|
||||
"f. c #82C3FB",
|
||||
"g. c #85C6FD",
|
||||
"h. c #8AC2F1",
|
||||
"j. c #8AC3F1",
|
||||
"k. c #8BC6F3",
|
||||
"l. c #8BC4F5",
|
||||
"z. c #8FC5F1",
|
||||
"x. c #8EC5F9",
|
||||
"c. c #8DC8F4",
|
||||
"v. c #9BCAEE",
|
||||
"b. c #90C6F2",
|
||||
"n. c #92C8F2",
|
||||
"m. c #96CEF5",
|
||||
"M. c #97CFF5",
|
||||
"N. c #9AC6F1",
|
||||
"B. c #9AC7F1",
|
||||
"V. c #9BC6F1",
|
||||
"C. c #9BC7F1",
|
||||
"Z. c #98CFF5",
|
||||
"A. c #98CFF6",
|
||||
"S. c #9ED3F6",
|
||||
"D. c #9ED4F6",
|
||||
"F. c #9ED4F7",
|
||||
"G. c #99D4FF",
|
||||
"H. c #9FD7FF",
|
||||
"J. c #A6CDF2",
|
||||
"K. c #A5CEF7",
|
||||
"L. c #ADCFFC",
|
||||
"P. c #A1D0F8",
|
||||
"I. c #A1D6F8",
|
||||
"U. c #A1D7F8",
|
||||
"Y. c #B0D3F5",
|
||||
"T. c #B2D5F6",
|
||||
"R. c #AEE0FA",
|
||||
"E. c #AFE1FB",
|
||||
"W. c #B6E0FF",
|
||||
"Q. c #B6E5FF",
|
||||
"!. c #B8E6FD",
|
||||
"~. c #B9E7FD",
|
||||
"^. c #BFEBFF",
|
||||
"/. c #C2DFF7",
|
||||
"(. c #C2DFF8",
|
||||
"). c #C7EAC8",
|
||||
"_. c #C6ECC8",
|
||||
"`. c #C7ECC9",
|
||||
"'. c #C0EDFF",
|
||||
"]. c #CEF3FF",
|
||||
"[. c #CFF4FF",
|
||||
"{. c #D3E7FF",
|
||||
"}. c #D4E7FB",
|
||||
"|. c #D3E9FF",
|
||||
" X c #D4E8FC",
|
||||
".X c #D1FAFF",
|
||||
"XX c #D1FBFF",
|
||||
"oX c #DEFFFF",
|
||||
"OX c #DFFFFF",
|
||||
"+X c None",
|
||||
/* pixels */
|
||||
"+X+X+X+X+X+X+X+X< C s.<.4 +X+X",
|
||||
"+X+X+X+X+X+X+X& a._.)._.d.6 +X",
|
||||
"+X+X+X- t : 1 ' ` ` ) ] z @ +X",
|
||||
"+X+X; $.p.i.} s j b G n l d > +X",
|
||||
"+XX &.|.}. X{.*.g F Y I Z h # +X",
|
||||
"+X7 t.V.B.V.V.:.[ ^ 2.1.E 5 +X",
|
||||
"+Xy ;.r.j.j.r.-...7.w.e.( , +X+X",
|
||||
"+X9 g.A.U.U.m.,.+.0.8.9.q.M $ +X",
|
||||
"+X. | !. X].W.@.m P P P R G f ",
|
||||
"+X u K.'.'.L.{ c I J J D k k % ",
|
||||
"+X8 z.Y.J.J.Y.u.V W ~ ! W F A 2 ",
|
||||
"O %.z.z.z.z.z.f.=./ 6.3.5.4.Q , ",
|
||||
"0 f.c.A.D.D.A.c.,.O.N B e 3 o ",
|
||||
"#.H.I.E.!.!.T.F.G. . +X+X+X",
|
||||
"w v.^.XXOXOXXX'.F.i +X+X+X+X+X",
|
||||
" + q p X.o.a r = +X+X+X+X+X+X"
|
||||
};
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *kuser[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #000009",
|
||||
"X c #020A00",
|
||||
"o c #000818",
|
||||
"O c #081001",
|
||||
"+ c #000C22",
|
||||
"@ c #051225",
|
||||
"# c #001939",
|
||||
"$ c #151F2D",
|
||||
"% c #002B00",
|
||||
"& c #0B2603",
|
||||
"* c #003B00",
|
||||
"= c #0B3200",
|
||||
"- c #132903",
|
||||
"; c #1D3805",
|
||||
": c #17263C",
|
||||
"> c #15253A",
|
||||
", c #001F46",
|
||||
"< c #00007F",
|
||||
"1 c #062850",
|
||||
"2 c #0A2D57",
|
||||
"3 c #052D5A",
|
||||
"4 c #1B2B41",
|
||||
"5 c #002A6A",
|
||||
"6 c #002E73",
|
||||
"7 c #0B3669",
|
||||
"8 c #003574",
|
||||
"9 c #22385B",
|
||||
"0 c #034C01",
|
||||
"q c #004000",
|
||||
"w c #075400",
|
||||
"e c #144503",
|
||||
"r c #036900",
|
||||
"t c #0B7C00",
|
||||
"y c #126400",
|
||||
"u c #187103",
|
||||
"i c #187D10",
|
||||
"p c #284806",
|
||||
"a c #275608",
|
||||
"s c #2E5229",
|
||||
"d c #217A19",
|
||||
"f c #2D7E26",
|
||||
"g c #174374",
|
||||
"h c #1A766F",
|
||||
"j c #1F7E75",
|
||||
"k c #27456A",
|
||||
"l c #425C7E",
|
||||
"z c #094185",
|
||||
"x c #1C569C",
|
||||
"c c #0044AA",
|
||||
"v c #385A85",
|
||||
"b c #205FA8",
|
||||
"n c #2267B3",
|
||||
"m c #2F71BA",
|
||||
"M c #316CAC",
|
||||
"N c #306CB1",
|
||||
"B c #377BBB",
|
||||
"V c #2C73C3",
|
||||
"C c #2C79C1",
|
||||
"Z c #337CCE",
|
||||
"A c #387CC3",
|
||||
"S c #405E87",
|
||||
"D c #5179A7",
|
||||
"F c #178201",
|
||||
"G c #1E8418",
|
||||
"H c #0BA302",
|
||||
"J c #16A701",
|
||||
"K c #1DA81B",
|
||||
"L c #309007",
|
||||
"P c #2D890F",
|
||||
"I c #368F2F",
|
||||
"U c #3A9834",
|
||||
"Y c #23AD01",
|
||||
"T c #24A309",
|
||||
"R c #2CAA1D",
|
||||
"E c #25B400",
|
||||
"W c #2BB401",
|
||||
"Q c #33AE05",
|
||||
"! c #34BB02",
|
||||
"~ c #39BD01",
|
||||
"^ c #35B808",
|
||||
"/ c #31AF22",
|
||||
"( c #33AD30",
|
||||
") c #3FB729",
|
||||
"_ c #38B136",
|
||||
"` c #1F845E",
|
||||
"' c #338D5C",
|
||||
"] c #38A54B",
|
||||
"[ c #3EC100",
|
||||
"{ c #4AAD13",
|
||||
"} c #44B517",
|
||||
"| c #55AB14",
|
||||
" . c #46A60D",
|
||||
".. c #42BA29",
|
||||
"X. c #49BD28",
|
||||
"o. c #40BA25",
|
||||
"O. c #75BF28",
|
||||
"+. c #519014",
|
||||
"@. c #4B9744",
|
||||
"#. c #41A35A",
|
||||
"$. c #5EB25C",
|
||||
"%. c #59BD51",
|
||||
"&. c #55BB53",
|
||||
"*. c #51AD66",
|
||||
"=. c #44C302",
|
||||
"-. c #44C10A",
|
||||
";. c #48C700",
|
||||
":. c #4CCA00",
|
||||
">. c #45C800",
|
||||
",. c #51CD00",
|
||||
"<. c #54CD0C",
|
||||
"1. c #56D000",
|
||||
"2. c #5BD300",
|
||||
"3. c #5ED20E",
|
||||
"4. c #4DC81C",
|
||||
"5. c #4DC028",
|
||||
"6. c #5CC82E",
|
||||
"7. c #55C428",
|
||||
"8. c #5AC633",
|
||||
"9. c #5DC832",
|
||||
"0. c #56C236",
|
||||
"q. c #60D601",
|
||||
"w. c #63D900",
|
||||
"e. c #6BDE00",
|
||||
"r. c #66D514",
|
||||
"t. c #74D11A",
|
||||
"y. c #6BD634",
|
||||
"u. c #7ECD3F",
|
||||
"i. c #7BDC26",
|
||||
"p. c #7FDF36",
|
||||
"a. c #6DE100",
|
||||
"s. c #75E500",
|
||||
"d. c #7BEA00",
|
||||
"f. c #5EC151",
|
||||
"g. c #62C451",
|
||||
"h. c #6CC45F",
|
||||
"j. c #7BC848",
|
||||
"k. c #75CD5E",
|
||||
"l. c #78CF5E",
|
||||
"z. c #7CC657",
|
||||
"x. c #77CD63",
|
||||
"c. c #7CCA79",
|
||||
"v. c #76C873",
|
||||
"b. c #7AD060",
|
||||
"n. c #3A88AC",
|
||||
"m. c #3E87DF",
|
||||
"M. c #5EA49F",
|
||||
"N. c #698AB3",
|
||||
"B. c #77B99A",
|
||||
"V. c #4B83C3",
|
||||
"C. c #5498C7",
|
||||
"Z. c #5591D0",
|
||||
"A. c #4892E7",
|
||||
"S. c #5B9DE5",
|
||||
"D. c #529CE7",
|
||||
"F. c #5798F0",
|
||||
"G. c #5AA4ED",
|
||||
"H. c #6293CC",
|
||||
"J. c #6196E5",
|
||||
"K. c #6EACC2",
|
||||
"L. c #66A3DF",
|
||||
"P. c #77ACDE",
|
||||
"I. c #69ABEB",
|
||||
"U. c #66A8E8",
|
||||
"Y. c #69A6F1",
|
||||
"T. c #6EB0ED",
|
||||
"R. c #75B4ED",
|
||||
"E. c #7AB6EE",
|
||||
"W. c #7EBBEF",
|
||||
"Q. c #74B4F2",
|
||||
"!. c #7CBAF3",
|
||||
"~. c #7BB4F2",
|
||||
"^. c #8CD539",
|
||||
"/. c #84F000",
|
||||
"(. c #99F41F",
|
||||
"). c #91ED2C",
|
||||
"_. c #9AED39",
|
||||
"`. c #9BF527",
|
||||
"'. c #92ED33",
|
||||
"]. c #A6FC29",
|
||||
"[. c #A2FB25",
|
||||
"{. c #8ECC7E",
|
||||
"}. c #96E849",
|
||||
"|. c #B0F84A",
|
||||
" X c #B3FA45",
|
||||
".X c #A7EE48",
|
||||
"XX c #81AAD4",
|
||||
"oX c #84ACE3",
|
||||
"OX c #84BCEE",
|
||||
"+X c #8ABDED",
|
||||
"@X c #84BAE7",
|
||||
"#X c #80BEF0",
|
||||
"$X c #8ABCF3",
|
||||
"%X c #82BCF8",
|
||||
"&X c #90B8E1",
|
||||
"*X c #9DBDF5",
|
||||
"=X c #80CD80",
|
||||
"-X c #8DD08D",
|
||||
";X c #93D58C",
|
||||
":X c #99D887",
|
||||
">X c #99D993",
|
||||
",X c #97CC94",
|
||||
"<X c #A1DAA1",
|
||||
"1X c #A9DDA9",
|
||||
"2X c #B1DFAF",
|
||||
"3X c #BEE5BD",
|
||||
"4X c #8FC3EF",
|
||||
"5X c #85C1F1",
|
||||
"6X c #8BC4F2",
|
||||
"7X c #8EC8F3",
|
||||
"8X c #8ECAFC",
|
||||
"9X c #9BC3EE",
|
||||
"0X c #90C1EF",
|
||||
"qX c #93C4F1",
|
||||
"wX c #94CBF3",
|
||||
"eX c #9DC5F0",
|
||||
"rX c #98CEF5",
|
||||
"tX c #91CCFF",
|
||||
"yX c #9BD1F6",
|
||||
"uX c #A2C4E8",
|
||||
"iX c #A3CBF1",
|
||||
"pX c #A4CBF2",
|
||||
"aX c #A4D1F4",
|
||||
"sX c #A3D6F9",
|
||||
"dX c #A6D9F8",
|
||||
"fX c #ACDDF9",
|
||||
"gX c #B6D4F4",
|
||||
"hX c #B2DCF9",
|
||||
"jX c #B9D5F3",
|
||||
"kX c #B8D8F5",
|
||||
"lX c #B8DFFB",
|
||||
"zX c #AFE1FB",
|
||||
"xX c #B3E2FB",
|
||||
"cX c #BAE5FD",
|
||||
"vX c #BCEAFE",
|
||||
"bX c #C0DBF8",
|
||||
"nX c #CDEBCD",
|
||||
"mX c #D4F1D4",
|
||||
"MX c #DAF1DA",
|
||||
"NX c #C5E0F9",
|
||||
"BX c #C2EEFF",
|
||||
"VX c #C8E7FC",
|
||||
"CX c #CBF1FF",
|
||||
"ZX c #C6F1FF",
|
||||
"AX c #D4E5F8",
|
||||
"SX c #D9EAFC",
|
||||
"DX c #D4F4FE",
|
||||
"FX c #DBF4FE",
|
||||
"GX c #DBFAFF",
|
||||
"HX c #D7F8FF",
|
||||
"JX c #E0EEFE",
|
||||
"KX c #EAF9EA",
|
||||
"LX c #E5F3FD",
|
||||
"PX c #E3FCFF",
|
||||
"IX c #E8FEFF",
|
||||
"UX c #F3FAFF",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXw r i I U i 0 YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX0 f ,XMXKXKXKX2X@.% YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXYX* U 3XMXnXnXnXnXMXmX$.% YXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYXX G >X1X<X<X<X<X<X<X1X<XG O YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYX* ( =Xc.c.c.c.c.c.c.c.=X_ * YXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYX< c 8 5 YX r K &.&.f.f.g.g.f.f.%.&.K r YXYXYX",
|
||||
"YXYXYXYXYXYX6 z m Z.H.V.x # t H R ) ..5.5.7.5.X.) / H F YXYXYX",
|
||||
"YXYXYXYXYX# m uXLXUXUXUXSXoXh K J ! ~ [ -.-.-.~ ^ J J F YXYXYX",
|
||||
"YXYXYXYX+ N bXSXSXAXAXAXAXSX*X` E [ >.,.,.,.:.>.[ W E u YXYXYX",
|
||||
"YXYXYXYXz $XbXgXgXgXgXgXgXjXbXJ.` >.1.2.w.a.2.1.;.[ ! e YXYXYX",
|
||||
"YXYXYX+ V qX9XeXiXiXpXpXpX9XpXE.C 5.2.a.s.s.a.2.3.<.L X YXYXYXYX",
|
||||
"YXYXYX1 A.E.0X0XqXqX9XqXqX+X+XI.m.$.).).`.(.).).i. .& YXYXYXYX",
|
||||
"YXYXYX2 D.I.W.OX+X6X6X5X5X@XR.G.A.' t._. X X_.^.{ y YXYXYXYXYX",
|
||||
"YXYXYX2 G.T.E.W.5X6X6X6X5XW.R.I.S.M.:Xz.j.u.j.{.-XR w YXYXYXYX",
|
||||
"YXYXYX# D.!.5X7XrXyXyXrXwX6XW.R.S.B.:X>X;X;X>X>X>Xc.T = YXYXYXYX",
|
||||
"YXYXYX. B 8XwXyXdXfXzXfXsXrX7X%XC.h.l.l.l.l.l.k.k.b...F X YXYXYX",
|
||||
"YXYXYXYX1 R.xXhXxXvXvXcXhXfXaXU.#.7.8.9.6.6.6.9.8.0.) Y e YXYXYX",
|
||||
"YXYXYXYX g 0XCXDXHXFXDXCXNX@X] ~ -.-.-.=.=.;.-.-.^ ^ W L YXYX",
|
||||
"YXYXYXYXYX3 Z +XcXFXLXDXlX$XB R [ =.:.,.,.,.:.:.=.~ ~ W Q = YXYX",
|
||||
"YXYXYXYX, Z $XjX9X9XeXuXpXgXOXn.) 1.1.2.2.w.2.1.,.;.~ ! ~ a YXYX",
|
||||
"YXYXYX. n !.kXkXkXjXgXkXkXkXjXY.n.1.w.e.a.e.e.w.2.,.>.~ ~ L . YX",
|
||||
"YXYXYX7 G.qXiXiXaXaXaXaXpXyXyX+XF.*.a.s.d.d.s.a.w.2.>.[ 4.{ O YX",
|
||||
"YXYXo A Q.6X4XwXqXwX9XwXwX4X4X5XI.C.r.d././.d.s.a.3.3.y.y.| O YX",
|
||||
"YXYX7 I.W.OX5X7X4X7X7X7X6X6X5XW.E.Y.v.[.].].`._._.}.}.^.| ; YX",
|
||||
"YX N %X#X6X7X7XwXyXrXyXrXwX6X5XW.Q.K..X|.|..X.X^.6.+.a O YXYX",
|
||||
"YX@ Z.6X6X7XyXyXdXdXdXdXaXyXrX7X5X5XJ.s p p p ; - O YXYXYX",
|
||||
"YX2 Q.6XwXyXdXzXxXxXxXxXfXdXyXrX7X5X!.9 YX YXYXYXYXYXYXYXYX",
|
||||
"YXb rXrXyXyXfXzXvXvXvXvXcXzXdXyXwXrXtXv YXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXg 6XcXfXzXxXvXBXZXZXZXvXcXhXhXfXfXtXk YXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YX g P.cXZXGXGXPXIXIXIXGXHXDXCXcX$XS X YXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYX + k D XXuXjXbXAXNXhXaX&XN.S $ YXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYX . @ > : : 4 : @ . YXYXYXYXYXYXYXYXYXYXYXYXYXYX"
|
||||
};
|
@ -0,0 +1,17 @@
|
||||
debian/tmp/usr/bin/kcron
|
||||
debian/tmp/usr/share/applications/tde/kcron.desktop
|
||||
debian/tmp/usr/share/apps/kcron/kcronui.rc
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/kcron.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/kcronstart.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/newtask.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/newvariable.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kcron/print.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kcron.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/kcron.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kcron.png
|
||||
|
||||
debian/icons/kcron.xpm /usr/share/pixmaps
|
||||
debian/icons/kcron-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kcron-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kcron-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Editors"\
|
||||
hints="TDE"\
|
||||
title="TDE Task Scheduler"\
|
||||
icon32x32="/usr/share/pixmaps/kcron.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kcron-16.xpm"\
|
||||
command="/usr/bin/kcron"
|
@ -0,0 +1,43 @@
|
||||
#debian/tmp/usr/bin/kdat
|
||||
#debian/tmp/usr/share/applications/tde/kdat.desktop
|
||||
#debian/tmp/usr/share/apps/kdat/icons/hicolor/16x16/apps/kdat.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_archive.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_backup.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_eject.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_mounted.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_restore.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_select_all.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_select_none.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_select_some.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_unmounted.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/16x16/apps/kdat_verify.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/hicolor/22x22/apps/kdat.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/hicolor/32x32/apps/kdat.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/32x32/apps/kdat_backup.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/32x32/apps/kdat_restore.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/crystalsvg/32x32/apps/kdat_verify.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/hicolor/48x48/apps/kdat.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_archive.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_backup.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_eject.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_mounted.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_restore.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_select_all.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_select_none.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_select_some.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_unmounted.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/16x16/apps/kdat_verify.png
|
||||
#debian/tmp/usr/share/apps/kdat/icons/locolor/32x32/apps/kdat.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdat/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdat/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kdat/index.docbook
|
||||
#debian/tmp/usr/share/icons/hicolor/16x16/apps/kdat.png
|
||||
#debian/tmp/usr/share/icons/hicolor/22x22/apps/kdat.png
|
||||
#debian/tmp/usr/share/icons/hicolor/32x32/apps/kdat.png
|
||||
#debian/tmp/usr/share/icons/hicolor/48x48/apps/kdat.png
|
||||
#debian/tmp/usr/share/icons/locolor/16x16/apps/kdat.png
|
||||
#debian/tmp/usr/share/icons/locolor/32x32/apps/kdat.png
|
||||
|
||||
debian/icons/kdat.xpm /usr/share/pixmaps
|
||||
debian/icons/kdat-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kdat-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kdat-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/System/Hardware"\
|
||||
hints="TDE"\
|
||||
title="KDat"\
|
||||
icon32x32="/usr/share/pixmaps/kdat.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kdat-16.xpm"\
|
||||
command="/usr/bin/kdat"
|
@ -0,0 +1,56 @@
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/01.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/02.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/11.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/03.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/04.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/05.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/06.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/07.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/about1.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/08.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/09.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/knetworkconf/common
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/knetworkconf.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/knetworkconf.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/knetworkconf.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/network_disconnected_wlan.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/network_connected_lan_knc.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/network_disconnected_lan.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/actions/network_traffic_wlan.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/network-conf
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/debug.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/file.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/general.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/network.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/parse.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/platform.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/process.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/replace.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/report.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/service.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/service-list.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/util.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/backends/xml.pl
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/ark.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/debian.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/blackpanther.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/mandriva.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/pld.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/redhat.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/suse.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/turbolinux.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/conectiva.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/fedora.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/openna.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/slackware.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/freebsd.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/gentoo.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/vine.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/rpath.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/kubuntu.png
|
||||
debian/tmp/usr/share/apps/knetworkconf/pixmaps/yoper.png
|
||||
debian/tmp/usr/share/applications/tde/kcm_knetworkconfmodule.desktop
|
||||
debian/tmp/usr/lib/*/trinity/kcm_knetworkconfmodule.so
|
||||
debian/tmp/usr/lib/*/trinity/kcm_knetworkconfmodule.la
|
@ -0,0 +1,40 @@
|
||||
#! /bin/sh -e
|
||||
|
||||
package_name=knetworkconf-trinity
|
||||
|
||||
divert_remove()
|
||||
{
|
||||
divert=`dpkg-divert --listpackage "$1"`
|
||||
if [ -n "$divert" ] && [ "$divert" = "LOCAL" ]; then
|
||||
dpkg-divert --remove --local --rename "$1"
|
||||
fi
|
||||
if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
|
||||
dpkg-divert --remove --package $package_name --rename "$1"
|
||||
fi
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
|
||||
configure)
|
||||
divert_remove /usr/share/icons/hicolor/16x16/apps/knetworkconf.png
|
||||
divert_remove /usr/share/icons/hicolor/22x22/apps/knetworkconf.png
|
||||
divert_remove /usr/share/icons/hicolor/32x32/apps/knetworkconf.png
|
||||
divert_remove /usr/share/icons/hicolor/22x22/actions/network_connected_lan_knc.png
|
||||
divert_remove /usr/share/icons/hicolor/22x22/actions/network_disconnected_lan.png
|
||||
divert_remove /usr/share/icons/hicolor/22x22/actions/network_disconnected_wlan.png
|
||||
divert_remove /usr/share/icons/hicolor/22x22/actions/network_traffic_wlan.png
|
||||
;;
|
||||
|
||||
abort-upgrade)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "preinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
|
||||
esac
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
@ -0,0 +1,54 @@
|
||||
debian/tmp/usr/bin/kpackage
|
||||
debian/tmp/usr/share/applications/tde/kpackage.desktop
|
||||
debian/tmp/usr/share/apps/kpackage/kpackageui.rc
|
||||
debian/tmp/usr/share/apps/kpackage/pics/bnew.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/bsd.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/bupdated.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/cross.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/dbad.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/deb.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/dnew.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/dupdated.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/ftin.xpm
|
||||
debian/tmp/usr/share/apps/kpackage/pics/ftout.xpm
|
||||
debian/tmp/usr/share/apps/kpackage/pics/kiss.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/knew.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/kupdated.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/noball.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/ptick.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/question.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/rnew.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/rpm.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/rupdated.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/slack.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/snew.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/supdated.png
|
||||
debian/tmp/usr/share/apps/kpackage/pics/tick.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/bsdloc.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/debaptloc.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/debloc.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/handle.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/install.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/left.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/right-change.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/right-files.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/right-prop.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/root-prompt.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/rpmloc.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/slackloc.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/uninstall.png
|
||||
debian/tmp/usr/share/icons/hicolor/128x128/apps/kpackage.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kpackage.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/kpackage.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kpackage.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/kpackage.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/kpackage.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/search.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/searchf.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kpackage/searchl.png
|
||||
|
||||
debian/icons/kpackage.xpm /usr/share/pixmaps
|
||||
debian/icons/kpackage-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kpackage-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kpackage-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/System/Package Management"\
|
||||
hints="TDE"\
|
||||
title="TDE Package Manager"\
|
||||
icon32x32="/usr/share/pixmaps/kpackage.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kpackage-16.xpm"\
|
||||
command="/usr/bin/kpackage"
|
@ -0,0 +1,2 @@
|
||||
application/x-deb; kpackage -caption "Package Manager" %s; nametemplate=%s.deb; test=test "$DISPLAY" != ""; priority=7
|
||||
application/x-rpm; kpackage -caption "Package Manager" %s; nametemplate=%s.rpm; test=test "$DISPLAY" != ""; priority=7
|
@ -0,0 +1,20 @@
|
||||
debian/tmp/usr/bin/ksysv
|
||||
debian/tmp/usr/share/applications/tde/ksysv.desktop
|
||||
debian/tmp/usr/share/apps/ksysv/ksysvui.rc
|
||||
debian/tmp/usr/share/apps/ksysv/pics/ksysv_locked.png
|
||||
debian/tmp/usr/share/apps/ksysv/pics/ksysv_restart.png
|
||||
debian/tmp/usr/share/apps/ksysv/pics/ksysv_start.png
|
||||
debian/tmp/usr/share/apps/ksysv/pics/ksysv_stop.png
|
||||
debian/tmp/usr/share/apps/ksysv/pics/ksysv_unlocked.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksysv/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksysv/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/ksysv/index.docbook
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/ksysv.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/ksysv.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/ksysv.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/ksysv.png
|
||||
debian/tmp/usr/share/mimelnk/application/x-ksysv.desktop
|
||||
debian/tmp/usr/share/mimelnk/text/x-ksysv-log.desktop
|
||||
|
||||
debian/icons/ksysv.xpm /usr/share/pixmaps
|
||||
debian/icons/ksysv-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/ksysv-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(ksysv-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Editors"\
|
||||
hints="TDE"\
|
||||
title="TDE SysV-Init Editor"\
|
||||
icon32x32="/usr/share/pixmaps/ksysv.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/ksysv-16.xpm"\
|
||||
command="/usr/bin/ksysv"
|
@ -0,0 +1,25 @@
|
||||
debian/tmp/usr/bin/kuser
|
||||
debian/tmp/usr/share/applications/tde/kuser.desktop
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/add_group.png
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/add_user.png
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/delete_group.png
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/delete_user.png
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/edit_group.png
|
||||
debian/tmp/usr/share/apps/kuser/icons/crystalsvg/22x22/actions/edit_user.png
|
||||
debian/tmp/usr/share/apps/kuser/kuserui.rc
|
||||
debian/tmp/usr/share/apps/kuser/pics/group.png
|
||||
debian/tmp/usr/share/apps/kuser/pics/user.png
|
||||
debian/tmp/usr/share/config.kcfg/kuser.kcfg
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kuser/common
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kuser/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kuser/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/kuser/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/128x128/apps/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/16x16/apps/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/22x22/apps/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/32x32/apps/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/48x48/apps/kuser.png
|
||||
debian/tmp/usr/share/icons/hicolor/64x64/apps/kuser.png
|
||||
|
||||
debian/icons/kuser.xpm /usr/share/pixmaps
|
||||
debian/icons/kuser-16.xpm /usr/share/pixmaps
|
@ -0,0 +1 @@
|
||||
debian/man/out/kuser-trinity.1
|
@ -0,0 +1,8 @@
|
||||
?package(kuser-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/System/Administration"\
|
||||
hints="TDE"\
|
||||
title="TDE User Manager"\
|
||||
icon32x32="/usr/share/pixmaps/kuser.xpm"\
|
||||
icon16x16="/usr/share/pixmaps/kuser-16.xpm"\
|
||||
command="/usr/bin/kuser"
|
@ -0,0 +1,6 @@
|
||||
debian/tmp/usr/lib/*/trinity/kcm_lilo.la
|
||||
debian/tmp/usr/lib/*/trinity/kcm_lilo.so
|
||||
debian/tmp/usr/share/applications/tde/lilo.desktop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lilo-config/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lilo-config/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/lilo-config/common
|
@ -0,0 +1 @@
|
||||
lilo-config-trinity: menu-command-not-in-package /usr/share/menu/lilo-config-trinity:6 /usr/bin/tdesu
|
@ -0,0 +1,6 @@
|
||||
?package(lilo-config-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/System/Administration"\
|
||||
hints="TDE"\
|
||||
title="lilo-config"\
|
||||
command="/usr/bin/tdesu tdecmshell lilo"
|
@ -0,0 +1,333 @@
|
||||
<!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>October 21, 2001</date>">
|
||||
<!ENTITY dhsection "<manvolnum>8</manvolnum>">
|
||||
<!ENTITY dhemail "<email>daniel@sfarc.net</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KCRON</refentrytitle>">
|
||||
<!ENTITY dhpackage "kcron">
|
||||
|
||||
<!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>Views and sets cron daemon configuration.</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 an application to configure cron
|
||||
services.</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,333 @@
|
||||
<!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>Pierre</firstname>">
|
||||
<!ENTITY dhsurname "<surname>Habouzit</surname>">
|
||||
<!ENTITY dhdate "<date>February 28, 2005</date>">
|
||||
<!ENTITY dhsection "<manvolnum>8</manvolnum>">
|
||||
<!ENTITY dhemail "<email>madcoder@debian.org</email>">
|
||||
<!ENTITY dhusername "Pierre Habouzit">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KDAT</refentrytitle>">
|
||||
<!ENTITY dhpackage "kdat">
|
||||
|
||||
<!ENTITY debian "<productname>Debian GNU/Linux</productname>">
|
||||
<!ENTITY gnu "<acronym>GNU</acronym>">
|
||||
]>
|
||||
|
||||
<refentry>
|
||||
<refentryinfo>
|
||||
<address>
|
||||
&dhemail;
|
||||
</address>
|
||||
<author>
|
||||
&dhfirstname;
|
||||
&dhsurname;
|
||||
</author>
|
||||
<copyright>
|
||||
<year>2005</year>
|
||||
<holder>&dhusername;</holder>
|
||||
</copyright>
|
||||
&dhdate;
|
||||
</refentryinfo>
|
||||
<refmeta>
|
||||
&dhucpackage;
|
||||
|
||||
&dhsection;
|
||||
</refmeta>
|
||||
<refnamediv>
|
||||
<refname>&dhpackage;</refname>
|
||||
|
||||
<refpurpose>tar-based DAT archiver for TDE.</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 tar based tape archiver,
|
||||
that is designed to work with multiple archives on a single tape.</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,349 @@
|
||||
<!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>October 21, 2001</date>">
|
||||
<!ENTITY dhsection "<manvolnum>1</manvolnum>">
|
||||
<!ENTITY dhemail "<email>daniel@sfarc.net</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KPACKAGE</refentrytitle>">
|
||||
<!ENTITY dhpackage "kpackage">
|
||||
|
||||
<!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>Installs, removes, and queries packages.</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>
|
||||
<arg><option>--remote<replaceable> <server></replaceable></option></arg>
|
||||
<arg><option>file<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 an application to install, remove
|
||||
and query packages in many formats, including RPM and DEB.</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>
|
||||
<varlistentry>
|
||||
<term><option>--remote <server></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Perform the actions on remote server <var>server</var> via SSH.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><option><file></option>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>Name of the file (package) to install.</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,333 @@
|
||||
<!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>October 21, 2001</date>">
|
||||
<!ENTITY dhsection "<manvolnum>8</manvolnum>">
|
||||
<!ENTITY dhemail "<email>daniel@sfarc.net</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KSYSV</refentrytitle>">
|
||||
<!ENTITY dhpackage "ksysv">
|
||||
|
||||
<!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>Views and sets SysV init configuration.</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 an application to configure SysV-like
|
||||
init services.</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,333 @@
|
||||
<!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>October 21, 2001</date>">
|
||||
<!ENTITY dhsection "<manvolnum>8</manvolnum>">
|
||||
<!ENTITY dhemail "<email>daniel@sfarc.net</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>KUSER</refentrytitle>">
|
||||
<!ENTITY dhpackage "kuser">
|
||||
|
||||
<!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>Configures users on the system.</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 an application to configure users on
|
||||
the system.</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,333 @@
|
||||
<!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>October 21, 2001</date>">
|
||||
<!ENTITY dhsection "<manvolnum>8</manvolnum>">
|
||||
<!ENTITY dhemail "<email>daniel@sfarc.net</email>">
|
||||
<!ENTITY dhusername "Daniel Stone">
|
||||
<!ENTITY dhucpackage "<refentrytitle>SECPOLICY</refentrytitle>">
|
||||
<!ENTITY dhpackage "secpolicy">
|
||||
|
||||
<!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>Views and sets PAM security policies.</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 an application to view and set PAM security
|
||||
policies.</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,6 @@
|
||||
The following files are not installed in any binary package.
|
||||
This is deliberate.
|
||||
|
||||
/usr/lib/pkgconfig/system-tools-backends.pc
|
||||
- This file serves no purpose that we can see, and conflicts
|
||||
with GNOME system tools, so be sure 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,62 @@
|
||||
Index: tdeadmin/kdat/ConfigureChecks.cmake
|
||||
===================================================================
|
||||
--- tdeadmin.orig/kdat/ConfigureChecks.cmake
|
||||
+++ tdeadmin/kdat/ConfigureChecks.cmake
|
||||
@@ -10,7 +10,7 @@ check_cxx_source_compiles("
|
||||
#include <sys/mtio.h>
|
||||
int main() {
|
||||
struct mtget tapeStatus;
|
||||
- return GMT_EOF ( tapeStatus.mt_gstat );
|
||||
+ return GMT_EOF ( tapeStatus.mt_dsreg );
|
||||
}"
|
||||
HAVE_MTGET_GSTAT
|
||||
)
|
||||
Index: tdeadmin/lilo-config/common/String.cc
|
||||
===================================================================
|
||||
--- tdeadmin.orig/lilo-config/common/String.cc
|
||||
+++ tdeadmin/lilo-config/common/String.cc
|
||||
@@ -27,7 +27,9 @@
|
||||
** Bug reports and questions can be sent to kde-devel@kde.org
|
||||
*/
|
||||
#define _GNU_SOURCE 1
|
||||
+#ifndef __dilos__
|
||||
#include <features.h>
|
||||
+#endif /* __dilos__ */
|
||||
#include <string.h>
|
||||
#include <string>
|
||||
#include "String.h"
|
||||
Index: tdeadmin/lilo-config/common/Files.cc
|
||||
===================================================================
|
||||
--- tdeadmin.orig/lilo-config/common/Files.cc
|
||||
+++ tdeadmin/lilo-config/common/Files.cc
|
||||
@@ -35,8 +35,10 @@ StringList &Files::glob(String name, enu
|
||||
glob_t gl;
|
||||
int flags=0;
|
||||
StringList *result;
|
||||
+#ifndef __dilos__
|
||||
if(dotfiles)
|
||||
flags |= GLOB_PERIOD;
|
||||
+#endif /* __dilos__ */
|
||||
if(braces)
|
||||
flags |= GLOB_BRACE;
|
||||
::glob(name, flags, NULL, &gl);
|
||||
Index: tdeadmin/lilo-config/common/lilo.cc
|
||||
===================================================================
|
||||
--- tdeadmin.orig/lilo-config/common/lilo.cc
|
||||
+++ tdeadmin/lilo-config/common/lilo.cc
|
||||
@@ -317,10 +317,15 @@ bool liloconf::probe()
|
||||
char *tmp=tmpnam(NULL);
|
||||
tmp=tmpnam(NULL);
|
||||
mkdir(tmp, 0700);
|
||||
+#ifdef __dilos__
|
||||
+ if(!mount(*it, tmp, MS_RDONLY|MS_NOSUID, "pcfs", NULL))
|
||||
+ mp=tmp;
|
||||
+#else /* !__dilos__ */
|
||||
if(!mount(*it, tmp, "msdos", MS_MGC_VAL|MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL))
|
||||
mp=tmp;
|
||||
else if(!mount(*it, mp, "vfat", MS_MGC_VAL|MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC, NULL))
|
||||
mp=tmp;
|
||||
+#endif /* __dilos__ */
|
||||
}
|
||||
if(!mp.empty()) {
|
||||
struct stat s;
|
@ -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,38 @@
|
||||
#! /usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
include /usr/share/cdbs/1/class/cmake.mk
|
||||
include debian/cdbs/debian-tde.mk
|
||||
|
||||
DEB_CONFIGURE_INCLUDEDIR := /usr/include
|
||||
DEB_CONFIGURE_MANDIR := /usr/share/man
|
||||
DEB_CONFIGURE_PREFIX := /usr
|
||||
DEB_CONFIGURE_INFODIR := /usr/share/info
|
||||
|
||||
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
|
||||
|
||||
DEB_DH_STRIP_ARGS := --dbg-package=tdeadmin-trinity-dbg
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
||||
|
||||
DEB_CONFIGURE_EXTRA_FLAGS := \
|
||||
--without-rpm --with-pam=tde --with-shadow --with-nis \
|
||||
--with-private-groups --prefix=/usr --with-extra-libs=/usr/lib
|
||||
|
||||
CPPFLAGS+= -D__dilos__
|
||||
|
||||
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_ALL_OPTIONS="ON" \
|
||||
-DKU_USERPRIVATEGROUP="true" \
|
||||
-DCMAKE_C_COMPILER=gcc \
|
||||
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)" \
|
||||
-DBUILD_KDAT="OFF"
|
@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
@ -0,0 +1,6 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
||||
|
||||
# Don't run differences
|
||||
diff-ignore = .*
|
@ -0,0 +1,10 @@
|
||||
Document: tdeadmin-doc-html-kcron
|
||||
Title: Kcron Handbook
|
||||
Author: Morgan Sandquist, Gary Meyer, Lauri Watts
|
||||
Abstract: Kcron is an application that schedules programs to be run.
|
||||
Section: System
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kcron/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kcron/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdeadmin-doc-html-kdat
|
||||
Title: Kdat Handbook
|
||||
Author: Sean Vyain
|
||||
Abstract: TDE tape management.
|
||||
Section: Admin
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kdat/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kdat/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdeadmin-doc-html-knetworkconf
|
||||
Title: KNetworkConf Handbook
|
||||
Author: Sean Wheller, Christoph Eckert
|
||||
Abstract: KNetworkConf is a graphical manager for network devices and settings.
|
||||
Section: Admin
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/knetworkconf/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/knetworkconf/*.html
|
||||
|
@ -0,0 +1,11 @@
|
||||
Document: tdeadmin-doc-html-kpackage
|
||||
Title: KPackage Handbook
|
||||
Author: Toivo Pedaste, Lauri Watts
|
||||
Abstract: KPackage is a graphical interface to the RPM, Debian,
|
||||
Slackware and BSD package managers.
|
||||
Section: Admin
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kpackage/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kpackage/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdeadmin-doc-html-ksysv
|
||||
Title: KSysV Handbook
|
||||
Author: Peter Putzer
|
||||
Abstract: KSysV is a graphical editor for the SysV style init configuration.
|
||||
Section: Admin
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/ksysv/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/ksysv/*.html
|
||||
|
@ -0,0 +1,10 @@
|
||||
Document: tdeadmin-doc-html-kuser
|
||||
Title: KUser Handbook
|
||||
Author: Matt Johnston, Lauri Watts, Jonathan Singer
|
||||
Abstract: KUser allows you to manage users and groups on your system.
|
||||
Section: Admin
|
||||
|
||||
Format: HTML
|
||||
Index: /usr/share/doc/tde/HTML/en/kuser/index.html
|
||||
Files: /usr/share/doc/tde/HTML/en/kuser/*.html
|
||||
|
@ -0,0 +1,6 @@
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_deb.la
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_deb.so
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_rpm.la
|
||||
debian/tmp/usr/lib/*/trinity/tdefile_rpm.so
|
||||
debian/tmp/usr/share/services/tdefile_deb.desktop
|
||||
debian/tmp/usr/share/services/tdefile_rpm.desktop
|
Loading…
Reference in new issue