summaryrefslogtreecommitdiffstats
path: root/debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-03 14:44:58 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-03 14:44:58 -0500
commit0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6 (patch)
treec0d0d652fef20159e78fa20b2567661bd7db8e41 /debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian
parent6b027437fd51e7874aaffed9e395ddf7913c3ab4 (diff)
downloadtde-packaging-0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6.tar.gz
tde-packaging-0cc79c34f5e9be7eced52b0565e8e79acfa5f4e6.zip
Add initial Debian Lenny/Squeeze packaging as well as symlink Lucid to Maverick
Diffstat (limited to 'debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian')
-rw-r--r--debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian65
1 files changed, 65 insertions, 0 deletions
diff --git a/debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian b/debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian
new file mode 100644
index 000000000..7d0a6714d
--- /dev/null
+++ b/debian/squeeze/kdesdk/debian/kdesdk-scripts-trinity.README.Debian
@@ -0,0 +1,65 @@
+kdesdk-scripts for Debian
+-------------------------
+
+Debugger macros:
+
+ Some handy gdb macros (such as for printing QStrings from gdb)
+ have been placed in /usr/share/kdesdk-scripts/kde-devel-gdb.
+
+ To use them, add this line to your ~/.gdbinit :
+
+ source /usr/share/kdesdk-scripts/kde-devel-gdb
+
+Editor helper files:
+
+ Both vim and emacs helper files are provided containing many functions
+ and keybindings for developing KDE/Qt/C++ applications.
+
+ To use the vim helper file, add this line to your ~/.vimrc :
+
+ source /usr/share/kdesdk-scripts/kde-devel-vim.vim
+
+ To use the emacs helper files, add these lines to your ~/.emacs (with
+ your real name and email address substituted as appropriate):
+
+ (add-to-list 'load-path "/usr/share/emacs/site-lisp/kdesdk-scripts")
+ (require 'kde-emacs)
+
+ (setq kde-full-name "Your Name")
+ (setq kde-email "Your Email")
+
+ See the file /usr/share/emacs/site-lisp/kdesdk-scripts/kde-emacs.el for
+ further information regarding emacs.
+
+Shell completion controls:
+
+ Completion controls are provided in /usr/share/kdesdk-scripts/completions/
+ for a variety of shells.
+
+ To enable completion controls for zsh, you need to add the following
+ lines to your ~/.zshrc :
+
+ # Add the KDE completion controls to the zsh function path.
+ set -A fpath $fpath /usr/share/kdesdk-scripts/completions/zsh
+
+ # Initialise the zsh completion system.
+ autoload -U compinit
+ compinit
+
+ To enable completion controls for bash, you must source each of the bash
+ completion files from your ~/.bashrc . A sample ~/.bashrc line is:
+
+ . /usr/share/kdesdk-scripts/completions/bash/dcop
+
+Valgrind error suppressions:
+
+ A valgrind suppression file is included for ignoring things we don't
+ care about when valgrinding KDE applications.
+
+ The suppression file is provided as /usr/lib/valgrind/kde.supp .
+
+ To use these suppressions, run valgrind with the option:
+
+ --suppressions=/usr/lib/valgrind/kde.supp
+
+ -- Ben Burton <bab@debian.org>, Fri, 15 Oct 2004 09:55:26 +1000