parent
8627c9ad00
commit
768f6ea149
@ -0,0 +1,21 @@
|
||||
TDevelop for Debian
|
||||
-------------------
|
||||
|
||||
1. Persistent Class Store (code completion)
|
||||
-------------------------------------------
|
||||
|
||||
The format of the Persistent Class Store (PCS) used by TDevelop for code
|
||||
completion changed in TDevelop 3.4.0. If you run into the following message
|
||||
|
||||
Persistent class store will be disabled: you have a wrong version of pcs
|
||||
installed. Remove old pcs files?
|
||||
|
||||
say "Yes" and the PCS files will be regenerated.
|
||||
|
||||
2. Viewing manpages and documentation in TDevelop
|
||||
-------------------------------------------------
|
||||
|
||||
If you want to be able to view manpages and documentation within TDevelop,
|
||||
you need to install the 'tdebase-tdeio' plugins package.
|
||||
|
||||
-- Jeremy Lainé <jeremy.laine@m4x.org> Sat, 02 Jun 2007 12:53:31 +0200
|
@ -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,89 @@
|
||||
Source: tdevelop-trinity
|
||||
Section: tde
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
XSBC-Original-Maintainer: Jeremy Lain <jeremy.laine@m4x.org>
|
||||
Build-Depends: cdbs (>= 0.4.38), debhelper (>= 7.0.50~), quilt, cmake, tdelibs14-trinity-dev, tdelibs14-trinity-doc, libtqtinterface-doc, flex, python, libcvsservice-trinity-dev, groff-base, libsvn-dev, libaprutil1-dev, libdb-dev, automake, autoconf, libtool, libltdl-dev
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: tdevelop-trinity
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, tdevelop-data-trinity (>= ${source:Version}), tdebase-trinity-bin
|
||||
Replaces: kdevelop-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdevelop-trinity (<< 4:14.0.0~)
|
||||
Recommends: tdevelop-trinity-doc, make, libtool, autoconf, automaken, gdb (>= 6.4)
|
||||
Suggests: libtqtinterface-dev, tdelibs14-trinity-dev, sgmltools-lite, ark-trinity, kbabel-trinity, tdeiconedit-trinity, tdesdk-scripts-trinity, graphviz, tdebase-tdeio-plugins-trinity, exuberant-ctags, khelpcenter-trinity, tdelibs14-trinity-doc, libtqtinterface-doc, konsole-trinity, cmake, ruby, python, g++, kdevdesigner-trinity
|
||||
Description: An IDE for Unix/X11
|
||||
TDevelop is an easy to use Integrated Development Environment
|
||||
for developing C/C++ applications under X11. It features
|
||||
project management, an advanced editor, a class browser
|
||||
and an integrated debugger.
|
||||
.
|
||||
The application wizard can generate fully functional projects
|
||||
for terminal programs and GUI programs using TQt, Qt, TDE, KDE or GNOME.
|
||||
|
||||
Package: tdevelop-trinity-doc
|
||||
Section: doc
|
||||
Architecture: all
|
||||
Replaces: kdevelop-trinity-doc (<< 4:14.0.0~)
|
||||
Breaks: kdevelop-trinity-doc (<< 4:14.0.0~)
|
||||
Description: An IDE for Unix/X11 - documentation
|
||||
TDevelop is an easy to use Integrated Development Environment
|
||||
for developing C/C++ applications under X11. It features
|
||||
project management, an advanced editor, a class browser
|
||||
and an integrated debugger.
|
||||
.
|
||||
The application wizard can generate fully functional projects
|
||||
for terminal programs and GUI programs using TQt, Qt, TDE, KDE or GNOME.
|
||||
.
|
||||
This package contains documentation for TDevelop.
|
||||
|
||||
Package: tdevelop-data-trinity
|
||||
Architecture: all
|
||||
Replaces: kdevelop-data-trinity (<< 4:14.0.0~)
|
||||
Breaks: kdevelop-data-trinity (<< 4:14.0.0~)
|
||||
Description: An IDE for Unix/X11 - data
|
||||
TDevelop is an easy to use Integrated Development Environment
|
||||
for developing C/C++ applications under X11. It features
|
||||
project management, an advanced editor, a class browser
|
||||
and an integrated debugger.
|
||||
.
|
||||
The application wizard can generate fully functional projects
|
||||
for terminal programs and GUI programs using TQt, Qt, TDE, KDE or GNOME.
|
||||
.
|
||||
This package contains arch independent data for TDevelop.
|
||||
|
||||
Package: kdevdesigner-trinity
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}, tdevelop-trinity (= ${source:Version})
|
||||
Description: KDevDesigner part for TDevelop
|
||||
This package provides the KDevDesigner part for TDevelop
|
||||
|
||||
Package: tdevelop-trinity-dev
|
||||
Architecture: any
|
||||
Depends: tdevelop-trinity (= ${binary:Version}), tdelibs14-trinity-dev
|
||||
Replaces: kdevelop-trinity-dev (<< 4:14.0.0~)
|
||||
Breaks: kdevelop-trinity-dev (<< 4:14.0.0~)
|
||||
Description: An IDE for Unix/X11 - development files
|
||||
TDevelop is an easy to use Integrated Development Environment
|
||||
for developing C/C++ applications under X11. It features
|
||||
project management, an advanced editor, a class browser
|
||||
and an integrated debugger.
|
||||
.
|
||||
The application wizard can generate fully functional projects
|
||||
for terminal programs and GUI programs using TQt, Qt, TDE, KDE or GNOME.
|
||||
.
|
||||
This package contains development files for TDevelop.
|
||||
|
||||
Package: tdevelop-trinity-dbg
|
||||
Section: debug
|
||||
Architecture: linux-any
|
||||
Priority: extra
|
||||
Replaces: kdevelop-trinity-dbg (<< 4:14.0.0~)
|
||||
Breaks: kdevelop-trinity-dbg (<< 4:14.0.0~)
|
||||
Depends: tdevelop-trinity (= ${binary:Version}), tdelibs-trinity-dbg
|
||||
Description: debugging symbols for tdevelop
|
||||
This package contains the debugging symbols associated with tdevelop.
|
||||
They will automatically be used by gdb for debugging tdevelop-related
|
||||
issues.
|
||||
|
@ -0,0 +1,62 @@
|
||||
This package was debianized by Bernd Gehrmann <bernd@physik.hu-berlin.de>,
|
||||
then maintained by Ivan E. Moore II <rkrusty@debian.org> and
|
||||
Norman Jordan <njordan@debian.org>.
|
||||
|
||||
The current Debian maintainer is Jeremy Lainé <jeremy.laine@m4x.org>.
|
||||
|
||||
It was downloaded from http://www.tdevelop.org/
|
||||
|
||||
Upstream Authors:
|
||||
|
||||
Bernd Gehrmann <bernd@physik.hu-berlin.de>
|
||||
John Birch <jbb@tdevelop.org>
|
||||
Jonas Nordin <jonas.nordin@cenacle.se>
|
||||
Richard Dale <Richard_Dale@tipitina.demon.co.uk>
|
||||
Sandy Meier <smeier@tdevelop.org>
|
||||
Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
|
||||
Victor Roeder <victor_roeder@gmx.de>
|
||||
Kurth Granroth <kurt@granroth.org>
|
||||
The KWrite authors <kwrite-devel@kde.org>
|
||||
Roberto Raggi <roberto@tdevelop.org>
|
||||
Harald Fernengel <harry@tdevelop.org>
|
||||
Simon Hausmann <hausmann@kde.org>
|
||||
Mickael Marchand <marchand@kde.org>
|
||||
Dominic Seichter <domseichter@t-online.de>
|
||||
Yann Hodique <Yann.Hodique@lifl.fr>
|
||||
Heinz Hornung <Hornung-Heinz@t-online.de>
|
||||
Marion Klein <MarionKlein@wanadoo.fr>
|
||||
Ramón Lamana Villar <ramon@alumnos.upm.es>
|
||||
Caleb Tennis <caleb@aei-tech.com>
|
||||
Mario Scalas <mario.scalas@libero.it>
|
||||
Alexander Dymo <cloudtemple@mksat.net>
|
||||
Dominik Haumann <dhdev@gmx.de>
|
||||
Ian Reinhart Geiser <geiseri@kde.org>
|
||||
Amilcar Lucas <a.lucas@tu-bs.de>
|
||||
Jens Dagerbo <jens.dagerbo@swipnet.se>
|
||||
Robert Gruber <rgruber@users.sourceforge.net>
|
||||
|
||||
Copyright: 1999-2006 The KDevelop developers
|
||||
|
||||
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 of the License, 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 with
|
||||
the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
|
||||
if not, write to the Free Software Foundation, Inc., 51 Franklin St,
|
||||
Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
On Debian GNU/Linux systems, the complete text of the GNU General Public
|
||||
License, version 2, can be found in `/usr/share/common-licenses/GPL-2'.
|
||||
|
||||
The Debian packaging is (C) 1999-2006 Bernd Gehrmann
|
||||
<bernd@physik.hu-berlin.de>, Ivan E. Moore II <rkrusty@debian.org>,
|
||||
Norman Jordan <njordan@debian.org> and Jeremy Lainé <jeremy.laine@m4x.org>
|
||||
and is licensed under the GPL, see above.
|
||||
|
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/lib/*/trinity/libkdevdesignerpart.*
|
||||
debian/tmp/usr/bin/kdevdesigner
|
||||
debian/tmp/usr/share/services/kdevdesigner_part.desktop
|
@ -0,0 +1 @@
|
||||
debian/man/out/kdevdesigner.1
|
@ -0,0 +1,110 @@
|
||||
.\" This portion of the manual page is from kdeopt.man, from the
|
||||
.\" tdepim Debian package.
|
||||
.SH GENERIC OPTIONS
|
||||
.TP
|
||||
.B \-\-help
|
||||
Show help about options.
|
||||
.TP
|
||||
.B \-\-help-qt
|
||||
Show Qt specific options.
|
||||
.TP
|
||||
.B \-\-help-tde
|
||||
Show TDE specific options.
|
||||
.TP
|
||||
.B \-\-help-all
|
||||
Show all options.
|
||||
.TP
|
||||
.B \-\-author
|
||||
Show author information.
|
||||
.TP
|
||||
.B \-v, \-\-version
|
||||
Show version information.
|
||||
.TP
|
||||
.B \-\-license
|
||||
Show license information.
|
||||
.TP
|
||||
.B \-\-
|
||||
End of options.
|
||||
.SH QT OPTIONS
|
||||
.TP
|
||||
.B \-\-display \fI<displayname>\fB
|
||||
Use the X-server display `displayname'.
|
||||
.TP
|
||||
.B \-\-session \fI<sessionId>\fB
|
||||
Restore the application for the given `sessionId'.
|
||||
.TP
|
||||
.B \-\-cmap
|
||||
Causes the application to install a private color map on an 8\-bit
|
||||
display.
|
||||
.TP
|
||||
.B \-\-ncols \fI<count>\fB
|
||||
Limits the number of colors allocated in the color cube on an 8\-bit
|
||||
display, if the application is using the QApplication::ManyColor color
|
||||
specification.
|
||||
.TP
|
||||
.B \-\-nograb
|
||||
Tells Qt to never grab the mouse or the keyboard.
|
||||
.TP
|
||||
.B \-\-dograb
|
||||
Running under a debugger can cause an implicit \-nograb, use \-dograb
|
||||
to override.
|
||||
.TP
|
||||
.B \-\-sync
|
||||
Switches to synchronous mode for debugging.
|
||||
.TP
|
||||
.B \-\-fn, \-\-font \fI<fontname>\fB
|
||||
Defines the application font.
|
||||
.TP
|
||||
.B \-\-bg, \-\-background \fI<color>\fB
|
||||
Sets the default background color and an application palette (light
|
||||
and dark shades are calculated).
|
||||
.TP
|
||||
.B \-\-fg, \-\-foreground \fI<color>\fB
|
||||
Sets the default foreground color.
|
||||
.TP
|
||||
.B \-\-btn, \-\-button \fI<color>\fB
|
||||
Sets the default button color.
|
||||
.TP
|
||||
.B \-\-name \fI<name>\fB
|
||||
Sets the application name.
|
||||
.TP
|
||||
.B \-\-title \fI<title>\fB
|
||||
Sets the application title (caption).
|
||||
.TP
|
||||
.B \-\-visual TrueColor
|
||||
Forces the application to use a TrueColor visual on an 8-bit display.
|
||||
.TP
|
||||
.B \-\-inputstyle \fI<inputstyle>\fB
|
||||
Sets XIM (X Input Method) input style. Possible values are
|
||||
\fIonthespot\fP, \fIoverthespot\fP, \fIoffthespot\fP and \fIroot\fP.
|
||||
.TP
|
||||
.B \-\-im \fI<XIM server>\fB
|
||||
Set XIM server.
|
||||
.TP
|
||||
.B \-\-noxim
|
||||
Disable XIM.
|
||||
.SH TDE OPTIONS
|
||||
.TP
|
||||
.B \-\-caption \fI<caption>\fB
|
||||
Use `caption' as name in the titlebar.
|
||||
.TP
|
||||
.B \-\-icon \fI<icon>\fB
|
||||
Use `icon' as the application icon.
|
||||
.TP
|
||||
.B \-\-miniicon \fI<icon>\fB
|
||||
Use `icon' as the icon in the titlebar.
|
||||
.TP
|
||||
.B \-\-dcopserver \fI<server>\fB
|
||||
Use the DCOP Server specified by `server'.
|
||||
.TP
|
||||
.B \-\-nocrashhandler
|
||||
Disable crash handler, to get core dumps.
|
||||
.TP
|
||||
.B \-\-waitforwm
|
||||
Waits for a WM_NET compatible windowmanager.
|
||||
.TP
|
||||
.B \-\-style \fI<style>\fB
|
||||
Sets the application GUI style.
|
||||
.TP
|
||||
.B \-\-geometry \fI<geometry>\fB
|
||||
Sets the client geometry of the main widget.
|
@ -0,0 +1,31 @@
|
||||
.TH KDEVASSISTANT 1
|
||||
.SH NAME
|
||||
kdevassistant \- TDevelop documentation viewer
|
||||
.SH SYNOPSIS
|
||||
.B kdevdesigner
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B KDevAssistant
|
||||
is an API documentation browser with contents tree, index and full text
|
||||
search. It provides a simple and uniform access to a variety of
|
||||
documentation formats:
|
||||
|
||||
* Qt DCF format (Qt library API and tools documentation);
|
||||
|
||||
* Doxygen .tag format (TDE libraries documentation and other generated
|
||||
by doxygen with tags);
|
||||
|
||||
* DevHelp format (GTK, GNOME API documentation and other generated for
|
||||
devhelp);
|
||||
|
||||
* TDevelopTOC format (for online html documentation);
|
||||
|
||||
* CHM format;
|
||||
|
||||
* Custom format (anything that can be viewed - pdf, html, txt, etc.).
|
||||
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --profile \fI<profile>\fB
|
||||
Profile to load.
|
||||
.so kdeopt.part
|
@ -0,0 +1,14 @@
|
||||
.TH KDEVDESIGNER 1
|
||||
.SH NAME
|
||||
kdevdesigner \- TDE GUI Designer
|
||||
.SH SYNOPSIS
|
||||
.B kdevdesigner
|
||||
.I [Qt-options] [TDE-options] [URL]
|
||||
.SH DESCRIPTION
|
||||
.B KDevDesigner
|
||||
is a customised version of TQt Designer for TDE.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B URL
|
||||
Document to open.
|
||||
.so kdeopt.part
|
@ -0,0 +1,14 @@
|
||||
.TH KDEVPRJ2KDEVELOP 1
|
||||
.SH NAME
|
||||
kdevprj2kdevelop \- KDevelop 2.x project converter
|
||||
.SH SYNOPSIS
|
||||
.B kdevprj2kdevelop
|
||||
.I file
|
||||
.SH DESCRIPTION
|
||||
.B kdevprj2kdevelop
|
||||
is a tool for converting KDevelop 2.x projects (*.kdevprj) to the
|
||||
format used by TDevelop 3.x (*.tdevelop).
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B file
|
||||
KDevelop 2.x project to convert.
|
@ -0,0 +1,10 @@
|
||||
.TH KDEVPROFILEEDITOR 1
|
||||
.SH NAME
|
||||
kdevprofileeditor \- TDevelop profile editor
|
||||
.SH SYNOPSIS
|
||||
.B kdevprofileeditor
|
||||
.I [Qt-options] [TDE-options]
|
||||
.SH DESCRIPTION
|
||||
.B KDevProfileEditor
|
||||
is a tool for editing TDevelop profiles.
|
||||
.so kdeopt.part
|
@ -0,0 +1,18 @@
|
||||
.TH TDEVELOP-HTDIG 1
|
||||
.SH NAME
|
||||
tdevelop-htdig \- TDevelop index generator for documentation files
|
||||
.SH SYNOPSIS
|
||||
.B tdevelop-htdig
|
||||
.I [Qt-options] [TDE-options] [options]
|
||||
.SH DESCRIPTION
|
||||
.B tdevelop-htdig
|
||||
is an index generator for documentation files which is used by the
|
||||
TDevelop integrated development environment.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B -c
|
||||
Update user's htdig configuration file only.
|
||||
.TP
|
||||
.B -i
|
||||
-c and generate index.
|
||||
.so kdeopt.part
|
@ -0,0 +1,22 @@
|
||||
.TH TDEVELOP 1
|
||||
.SH NAME
|
||||
tdevelop \- Integrated Development Environment for TDE
|
||||
.SH SYNOPSIS
|
||||
.B tdevelop
|
||||
.I [Qt-options] [TDE-options] [options] file(s)
|
||||
.SH DESCRIPTION
|
||||
.B TDevelop
|
||||
is an integrated development environment for TDE.
|
||||
.SH PROGRAM OPTIONS
|
||||
.TP
|
||||
.B --profile \fI<profile>\fB
|
||||
Profile to load.
|
||||
.TP
|
||||
.B file(s)
|
||||
Files to load.
|
||||
.so kdeopt.part
|
||||
.SH SEE ALSO
|
||||
More detailed user documentation is available from
|
||||
.BR help:/tdevelop
|
||||
(either enter this URL into \fBkonqueror\fP, or run `khelpcenter
|
||||
help:/tdevelop').
|
@ -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,13 @@
|
||||
Index: tdevelop/cmake/modules/TDEMacros.cmake
|
||||
===================================================================
|
||||
--- tdevelop.orig/cmake/modules/TDEMacros.cmake
|
||||
+++ tdevelop/cmake/modules/TDEMacros.cmake
|
||||
@@ -833,7 +833,7 @@ macro( tde_add_library _arg_target )
|
||||
|
||||
# set embedded archives
|
||||
if( _embed )
|
||||
- list( INSERT _link 0 -Wl,-whole-archive ${_embed} -Wl,-no-whole-archive )
|
||||
+ list( INSERT _link 0 -Wl,-zallextract ${_embed} -Wl,-zdefaultextract )
|
||||
endif( _embed )
|
||||
|
||||
# set link libraries
|
@ -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,88 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
# Set LD_LIBRARY_PATH to the installed library directory to allow dh_shlibdeps to function
|
||||
# Also include the main Trinity path
|
||||
ifeq ("$(LD_LIBRARY_PATH)", "")
|
||||
LD_LIBRARY_PATH=/usr/lib:debian/tmp/usr/lib
|
||||
else
|
||||
LD_LIBRARY_PATH += :/usr/lib:debian/tmp/usr/lib
|
||||
endif
|
||||
export LD_LIBRARY_PATH
|
||||
|
||||
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=tdevelop-trinity-dbg \
|
||||
-Xlibkdevcppparser.so.0.0.0
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
||||
|
||||
PACKAGES_WITH_LIBS := tdevelop-trinity
|
||||
|
||||
DEB_KDE_APIDOX := yes
|
||||
DEB_KDE_ENABLE_FINAL :=
|
||||
DEB_INSTALL_DOCS_tdevelop = AUTHORS
|
||||
DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/tmp
|
||||
DEB_CONFIGURE_EXTRA_FLAGS := \
|
||||
--disable-debug \
|
||||
--enable-docbase \
|
||||
--enable-scripting \
|
||||
--enable-ada \
|
||||
--enable-bash \
|
||||
--enable-cpp \
|
||||
--enable-fortran \
|
||||
--enable-haskell \
|
||||
--enable-java \
|
||||
--enable-pascal \
|
||||
--enable-perl \
|
||||
--enable-php \
|
||||
--enable-python \
|
||||
--enable-ruby \
|
||||
--enable-sql \
|
||||
--enable-antproject \
|
||||
--enable-autoproject \
|
||||
--enable-customproject \
|
||||
--enable-genericproject \
|
||||
--enable-scriptproject \
|
||||
--enable-trollproject \
|
||||
--enable-cvs \
|
||||
--enable-vba \
|
||||
--enable-subversion \
|
||||
--with-pic \
|
||||
--with-tdelibsdoxy-dir=/usr/share/doc/tde/HTML/en/tdelibs-apidocs \
|
||||
--with-pythondir=/usr \
|
||||
# --with-qtdoc-dir=/usr/share/tqt3/doc/html \
|
||||
--prefix=/usr \
|
||||
--with-extra-libs=/usr/lib/$(DEB_HOST_MULTIARCH)
|
||||
|
||||
DEB_CMAKE_EXTRA_FLAGS := \
|
||||
-DCMAKE_INSTALL_PREFIX="/usr" \
|
||||
-DCONFIG_INSTALL_DIR="/etc/trinity" \
|
||||
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
|
||||
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
||||
-DCMAKE_VERBOSE_MAKEFILE="ON" \
|
||||
-DCMAKE_SKIP_RPATH="OFF" \
|
||||
-DBUILD_ALL="ON" \
|
||||
-DWITH_BUILDTOOL_ALL="ON" \
|
||||
-DWITH_LANGUAGE_ALL="ON" \
|
||||
-DWITH_VCS_ALL="ON" \
|
||||
-DTQTDIR="/usr/share/tqt3" \
|
||||
-DCMAKE_C_COMPILER=gcc \
|
||||
-DLIB_SUFFIX="/$(DEB_HOST_MULTIARCH)"
|
||||
|
||||
binary-install/tdevelop-trinity::
|
||||
mkdir -p debian/tdevelop-trinity/usr/share/pixmaps
|
||||
cp debian/tdevelop.xpm debian/tdevelop-trinity/usr/share/pixmaps
|
||||
# mv debian/tdevelop-trinity/usr/share/man debian/tdevelop-trinity/usr/share/
|
||||
rm debian/tdevelop-trinity/usr/lib/$(DEB_HOST_MULTIARCH)/trinity/libkdevdesignerpart.*
|
||||
rm debian/tdevelop-trinity/usr/share/services/kdevdesigner_part.desktop
|
@ -0,0 +1,3 @@
|
||||
# These files are updated at build time by CDBS.
|
||||
tdevelop source: outdated-autotools-helper-file parts/appwizard/common/incadmin/config.guess 2002-10-21
|
||||
tdevelop source: outdated-autotools-helper-file parts/appwizard/common/incadmin/config.sub 2002-09-05
|
@ -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,5 @@
|
||||
debian/tmp/usr/share/applications
|
||||
debian/tmp/usr/share/apps
|
||||
debian/tmp/usr/share/desktop-directories
|
||||
debian/tmp/usr/share/icons
|
||||
debian/tmp/usr/share/mimelnk
|
@ -0,0 +1,11 @@
|
||||
# These files are provided to create new applications.
|
||||
tdevelop-data-trinity: extra-license-file usr/share/apps/kdevappwizard/template-common/COPYING
|
||||
tdevelop-data-trinity: extra-license-file usr/share/apps/kdevappwizard/template-common/COPYING.LIB
|
||||
tdevelop-data-trinity: extra-license-file usr/share/apps/kdevappwizard/template-common/LICENSE.QPL
|
||||
tdevelop-data-trinity: extra-license-file usr/share/apps/kdevappwizard/template-common/LICENSE.BSD
|
||||
# This file is a template, not a script.
|
||||
tdevelop-data-trinity: script-not-executable ./usr/share/apps/kdevfilecreate/file-templates/pl
|
||||
# This file is used internally by tdeio_pydoc.la and invoked explicitly with python.
|
||||
tdevelop-data-trinity: script-not-executable ./usr/share/apps/tdeio_pydoc/kde_pydoc.py
|
||||
# This file is used internally by libkdevcvsservice.la and invoked explicitly with sh.
|
||||
tdevelop-data-trinity: script-not-executable ./usr/share/apps/kdevcvsservice/buildcvs.sh
|
@ -0,0 +1,3 @@
|
||||
debian/tmp/usr/include
|
||||
debian/tmp/usr/lib/*/lib*.so
|
||||
debian/tmp/usr/lib/*/lib*.la
|
@ -0,0 +1,7 @@
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tdevelop
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tdevelop-apidocs
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tde_app_devel/appwizard.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tde_app_devel/index.docbook
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tde_app_devel/kscribblefiles.png
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tde_app_devel/index.cache.bz2
|
||||
debian/tmp/usr/share/doc/tde/HTML/en/tde_app_devel/common
|
@ -0,0 +1,12 @@
|
||||
debian/tmp/etc/trinity/kdevassistantrc
|
||||
debian/tmp/etc/trinity/tdeveloprc
|
||||
debian/tmp/usr/bin/tdevelop-htdig
|
||||
debian/tmp/usr/bin/kdevprofileeditor
|
||||
debian/tmp/usr/bin/kdevassistant
|
||||
debian/tmp/usr/bin/kdevprj2kdevelop
|
||||
debian/tmp/usr/bin/tdevelop
|
||||
debian/tmp/usr/lib/*/tdeconf_update_bin/kdev-gen-settings-tdeconf_update
|
||||
debian/tmp/usr/share/services
|
||||
debian/tmp/usr/share/servicetypes
|
||||
debian/tmp/usr/lib/*/trinity
|
||||
debian/tmp/usr/lib/*/lib*.so.*
|
@ -0,0 +1,5 @@
|
||||
debian/man/out/tdevelop.1
|
||||
debian/man/out/kdevassistant.1
|
||||
debian/man/out/kdevprj2kdevelop.1
|
||||
debian/man/out/kdevprofileeditor.1
|
||||
debian/man/out/tdevelop-htdig.1
|
@ -0,0 +1,8 @@
|
||||
?package(tdevelop-trinity):\
|
||||
needs="X11"\
|
||||
section="Applications/Programming"\
|
||||
hints="TDE,Development"\
|
||||
title="TDevelop"\
|
||||
longtitle="TDevelop (Development Environment)"\
|
||||
icon="/usr/share/pixmaps/tdevelop.xpm"\
|
||||
command="/usr/bin/tdevelop"
|
@ -0,0 +1,295 @@
|
||||
/* XPM */
|
||||
static char *tdevelop[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"32 32 257 2",
|
||||
" c #000000",
|
||||
". c #04040C",
|
||||
"X c #000D00",
|
||||
"o c #0B0B0E",
|
||||
"O c #0D0D10",
|
||||
"+ c #071700",
|
||||
"@ c #001A00",
|
||||
"# c #131316",
|
||||
"$ c #14141A",
|
||||
"% c #19191D",
|
||||
"& c #1B1B24",
|
||||
"* c #1F1F2C",
|
||||
"= c #15152A",
|
||||
"- c #002B00",
|
||||
"; c #003E00",
|
||||
": c #0A3000",
|
||||
"> c #153D03",
|
||||
", c #212126",
|
||||
"< c #22222C",
|
||||
"1 c #2C2C35",
|
||||
"2 c #2D2D3B",
|
||||
"3 c #34343F",
|
||||
"4 c #373748",
|
||||
"5 c #383844",
|
||||
"6 c #004F00",
|
||||
"7 c #005600",
|
||||
"8 c #015900",
|
||||
"9 c #095C00",
|
||||
"0 c #164A02",
|
||||
"q c #195502",
|
||||
"w c #006500",
|
||||
"e c #006C00",
|
||||
"r c #404047",
|
||||
"t c #40404A",
|
||||
"y c gray29",
|
||||
"u c #424252",
|
||||
"i c #484852",
|
||||
"p c #4A4A5C",
|
||||
"a c #535355",
|
||||
"s c #54545C",
|
||||
"d c #5C5C5D",
|
||||
"f c #5C5C6B",
|
||||
"g c #5B5B71",
|
||||
"h c #636363",
|
||||
"j c #63636C",
|
||||
"k c #6B6B6B",
|
||||
"l c #686776",
|
||||
"z c #70707C",
|
||||
"x c #7C7C7C",
|
||||
"c c #747474",
|
||||
"v c #727283",
|
||||
"b c #7D7C8C",
|
||||
"n c #79778C",
|
||||
"m c #7B7B93",
|
||||
"M c #7F7FBF",
|
||||
"N c #0A8A04",
|
||||
"B c #029B00",
|
||||
"V c #079906",
|
||||
"C c #108F0A",
|
||||
"Z c #118D00",
|
||||
"A c #189207",
|
||||
"S c #1F9C1C",
|
||||
"D c #0DA400",
|
||||
"F c #07A300",
|
||||
"G c #14A301",
|
||||
"H c #1DAD01",
|
||||
"J c #1DA91B",
|
||||
"K c #29911F",
|
||||
"L c #298E28",
|
||||
"P c #309A29",
|
||||
"I c #20AD00",
|
||||
"U c #23A716",
|
||||
"Y c #2AB300",
|
||||
"T c #2EB802",
|
||||
"R c #27B601",
|
||||
"E c #39AC01",
|
||||
"W c #33B902",
|
||||
"Q c #3CB200",
|
||||
"! c #37B716",
|
||||
"~ c #2AA920",
|
||||
"^ c #30AA2C",
|
||||
"/ c #30A828",
|
||||
"( c #34B027",
|
||||
") c #3BC102",
|
||||
"_ c #439A3E",
|
||||
"` c #40A71D",
|
||||
"' c #42BC05",
|
||||
"] c #5ABB0E",
|
||||
"[ c #47A726",
|
||||
"{ c #4EBD35",
|
||||
"} c #46B63C",
|
||||
"| c #58A82C",
|
||||
" . c #78B93D",
|
||||
".. c #69B42A",
|
||||
"X. c #49B449",
|
||||
"o. c #50BB4C",
|
||||
"O. c #5BBF54",
|
||||
"+. c #5FBE58",
|
||||
"@. c #55BB51",
|
||||
"#. c #61AF4E",
|
||||
"$. c #64B440",
|
||||
"%. c #62BD5C",
|
||||
"&. c #72B544",
|
||||
"*. c #77B46F",
|
||||
"=. c #4DCA01",
|
||||
"-. c #48C408",
|
||||
";. c #4BC31C",
|
||||
":. c #54CE07",
|
||||
">. c #54CB1C",
|
||||
",. c #5ED700",
|
||||
"<. c #68D800",
|
||||
"1. c #75C91A",
|
||||
"2. c #7DD610",
|
||||
"3. c #6AC714",
|
||||
"4. c #6CD233",
|
||||
"5. c #71D634",
|
||||
"6. c #7AE200",
|
||||
"7. c #61C252",
|
||||
"8. c #72C35C",
|
||||
"9. c #7BD541",
|
||||
"0. c #6DC46B",
|
||||
"q. c #65C463",
|
||||
"w. c #75C96C",
|
||||
"e. c #73C76F",
|
||||
"r. c #73C672",
|
||||
"t. c #7CC878",
|
||||
"y. c #84CD27",
|
||||
"u. c #89CB36",
|
||||
"i. c #81EA15",
|
||||
"p. c #87F000",
|
||||
"a. c #90EC18",
|
||||
"s. c #98F90D",
|
||||
"d. c #80E136",
|
||||
"f. c GreenYellow",
|
||||
"g. c #ABFF24",
|
||||
"h. c #A6F832",
|
||||
"j. c #8DC949",
|
||||
"k. c #8ADF4D",
|
||||
"l. c #95C85B",
|
||||
"z. c #83C47F",
|
||||
"x. c #91C577",
|
||||
"c. c #8CE245",
|
||||
"v. c #9BEF43",
|
||||
"b. c #9FE960",
|
||||
"n. c #A3CB7B",
|
||||
"m. c #A3E276",
|
||||
"M. c #B0F263",
|
||||
"N. c #BCF678",
|
||||
"B. c #838383",
|
||||
"V. c #83838B",
|
||||
"C. c #8A8A8A",
|
||||
"Z. c #8A8A9D",
|
||||
"A. c #848497",
|
||||
"S. c #90909E",
|
||||
"D. c #9A9A9B",
|
||||
"F. c #929293",
|
||||
"G. c #8E8DA4",
|
||||
"H. c #9494A3",
|
||||
"J. c #9A9AAC",
|
||||
"K. c #9594A7",
|
||||
"L. c #9E9EB2",
|
||||
"P. c #A9A8AD",
|
||||
"I. c #A5A3B9",
|
||||
"U. c #AEABB3",
|
||||
"Y. c #ABABBB",
|
||||
"T. c #A6A5BA",
|
||||
"R. c #B2AEBE",
|
||||
"E. c #B1B1B1",
|
||||
"W. c #ACAAC0",
|
||||
"Q. c #AAA5C1",
|
||||
"!. c #B2B2C4",
|
||||
"~. c #B6B4CA",
|
||||
"^. c #BCBBCB",
|
||||
"/. c #BEBCD1",
|
||||
"(. c #85CE85",
|
||||
"). c #89CF89",
|
||||
"_. c #8CCD85",
|
||||
"`. c #89D086",
|
||||
"'. c #8AD089",
|
||||
"]. c #87D082",
|
||||
"[. c #96C588",
|
||||
"{. c #97C295",
|
||||
"}. c #92D293",
|
||||
"|. c #A8C596",
|
||||
" X c #A7DE93",
|
||||
".X c #AACFA1",
|
||||
"XX c #A6D0A0",
|
||||
"oX c #A7D1A8",
|
||||
"OX c #A4DAA4",
|
||||
"+X c #A7DDA8",
|
||||
"@X c #AAD3A5",
|
||||
"#X c #A8DBA8",
|
||||
"$X c #B3D0A1",
|
||||
"%X c #B3DEB2",
|
||||
"&X c #B0D5B0",
|
||||
"*X c #BDF288",
|
||||
"=X c #AFE2AE",
|
||||
"-X c #B4E5B4",
|
||||
";X c #C3BFD6",
|
||||
":X c #C7F2A5",
|
||||
">X c #D6FBB1",
|
||||
",X c #C3C2C5",
|
||||
"<X c #C0C0CD",
|
||||
"1X c #C4C9CA",
|
||||
"2X c #C8C8C9",
|
||||
"3X c #C4C4D2",
|
||||
"4X c #CBCAD6",
|
||||
"5X c #CBCBD9",
|
||||
"6X c #C8C4D6",
|
||||
"7X c #C2D9C5",
|
||||
"8X c #CCDCC6",
|
||||
"9X c #CBDCCE",
|
||||
"0X c #CED4D6",
|
||||
"qX c #CFDBD0",
|
||||
"wX c #D0CDDE",
|
||||
"eX c #D1DDCD",
|
||||
"rX c #D2D1D5",
|
||||
"tX c #D3D3DD",
|
||||
"yX c #D8D8DB",
|
||||
"uX c #D5D3E4",
|
||||
"iX c #D9D4E6",
|
||||
"pX c #DBDBE4",
|
||||
"aX c #DDDBEB",
|
||||
"sX c #C0E6C0",
|
||||
"dX c #CCE9C8",
|
||||
"fX c #DAE2DC",
|
||||
"gX c #D5E1D5",
|
||||
"hX c #D6F1D6",
|
||||
"jX c #DEF2DE",
|
||||
"kX c #DEE0E3",
|
||||
"lX c #E4DEEE",
|
||||
"zX c #E1DFE4",
|
||||
"xX c #E6FFC8",
|
||||
"cX c #E3FDC0",
|
||||
"vX c #E9F6DD",
|
||||
"bX c #E2E2E5",
|
||||
"nX c #E4E2EA",
|
||||
"mX c #E8E5ED",
|
||||
"MX c #EAEAEE",
|
||||
"NX c #E0EAE0",
|
||||
"BX c #EAE3F2",
|
||||
"VX c #ECEBF1",
|
||||
"CX c #EEECF8",
|
||||
"ZX c #E4F4E4",
|
||||
"AX c #EBF5EB",
|
||||
"SX c #EAF8EA",
|
||||
"DX c #F2EDF8",
|
||||
"FX c #F9FFEF",
|
||||
"GX c #F5FDEA",
|
||||
"HX c #F2F2F5",
|
||||
"JX c #F6F6F9",
|
||||
"KX c #F4FAF3",
|
||||
"LX c #F7FDF8",
|
||||
"PX c #F9F5FC",
|
||||
"IX c #FAFCF7",
|
||||
"UX c #FDFCFD",
|
||||
"YX c None",
|
||||
/* pixels */
|
||||
"YXYXYX# B. YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYX A.UXV.v z YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYX1 Y.pXpXpXb & YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXk nXUXUXMXJ.4 = S.b YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXf MXUXUXUXUX!.J.BXK.- e e w 8 9 - YXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYX. H.JXUXUXMXnXJX{.L C ^ X.X.( K N 8 @ YXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYX1 <XUXMXBXfX_ P `.hXSXLXLXKXSX-Xq.C ; YXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYX f 5XnXgXK %.hXSXZXjXjXjXjXjXAXSX=X^ 6 YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYX$ ~.AXP %.dXsXsXsXsXsXsXsXsXsXsXdX=XU ; YXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXa PX*.U #X#XOXOXOXOXOXOXOXOXOXOXOX%Xt.C @ YXYXYXYXYX",
|
||||
"YXYXYXYXYXYXP.kXA @.}.).].].`.).`.].`.`.'.'.).).].J 9 YXYXYXYX",
|
||||
"YXM I.J.J.G.lX[.B X.r.0.z.oX7X9X7X&X`.w.w.r.e.r.0.J Z + YXYXYXYX",
|
||||
"f <X<X4XyXtXVX#.B ^ @.[.pXJXUXUXUXUXMXoX7.7.7.+.@.V G : YXYXYXYX",
|
||||
"s JXUXUXUXnXbX[ B V (.mXPXJXJXUXUXHXmXlXXX{ { } ( B H 0 YXYXYXYX",
|
||||
"s UXUXUXUXnXkX` D ~ rXDXJXHXMXyX,XE.P.zXBX8.! ! H D I q YXYXYX",
|
||||
"a aXHXUXUXnXbX[ D z.VXMXrXU.F.B.B.x D.mXBX.XW Y I G R 0 YXYXYX",
|
||||
"$ i l A.Y.~.aX .I $XU.k h h h k k h E.MXlXeX' W Y I T > YXYXYXYX",
|
||||
"YX . $ u aXx.Y %X6Xa y d d h d h rXMXMXfX-.W W W E + YXYXYXYX",
|
||||
"YXYXYXYXYX R.dXQ XUXrXc d k c k F.HXMXDX8X=.-.;.) | n * YXYXYX",
|
||||
"YXYXYXYXYXYXs DX&.9.UXUXbXC.c x x 2XIXHXPXm.:.5.>.' |.~.$ YXYXYX",
|
||||
"YXYXYXYXYXYX1 6XeX] :XUXUXMXD.C.D.HXUXUXvXc.k.5.=.&.wXv YXYXYX",
|
||||
"YXYXYXYXYX J.<XpX$X3.>XUXUXUX,XrXIXUXGX*Xb.5.<...1XT.L.t YXYXYX",
|
||||
"YXYXYXYXYXk tXJX5XiX$X1.M.xXIXLXKXFXcXN.v.i.<. .1XQ.<XtXA.. YXYX",
|
||||
"YXYXYXYX3 ~.HXUXJX5XuXeXj.2.a.h.f.g.s.p.6.1.[.rXQ.^.VXnX~.p YX",
|
||||
"YXYXYX H.MXUXJXUXnXK.I.aX9Xn.j.y.y.u.l.|.0X/.G.!.bXmXkXpXG.& YX",
|
||||
"YXYXYX z nXUXJX5Xb 2 o 5 G.;X5X6X3X6X3XQ.l & % v W.tXnXpXJ.* YX",
|
||||
"YXYXYXYX f tXY.p o YX b ^.3X^.^.G.< YX 3 A./.L.3XH.o ",
|
||||
"YXYXYXYXYX 4 < YXYXYXYXj iXHXHXnXA.. YXYXYXYXYXo u 2 H.aX1 ",
|
||||
"YXYXYXYXYXYX YXYXYXYXYXYX5 3XMXMXwXg YXYXYXYXYXYX # 3 ",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYX< Y.HXHX3X4 YXYXYXYXYXYXYXYXYX YX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYX. Z.3X<XK.& YXYXYXYXYXYXYXYXYXYXYXYX",
|
||||
"YXYXYXYXYXYXYXYXYXYXYXYXYXYX & , & & . YXYXYXYXYXYXYXYXYXYXYXYX"
|
||||
};
|
@ -0,0 +1,2 @@
|
||||
version=3
|
||||
ftp://ftp.kde.org/pub/kde/stable/latest/src/tdevelop-(.*)\.tar\.bz2
|
Loading…
Reference in new issue