From e803ab9f23e7657fa39666791169e1670f6ce3cf Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Thu, 30 Jan 2020 22:13:12 +0300 Subject: DilOS: tdesdk build pack Signed-off-by: Denis Kozadaev --- .../debian/tdesdk-scripts-trinity.README.Debian | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 dilos/tdesdk/debian/tdesdk-scripts-trinity.README.Debian (limited to 'dilos/tdesdk/debian/tdesdk-scripts-trinity.README.Debian') diff --git a/dilos/tdesdk/debian/tdesdk-scripts-trinity.README.Debian b/dilos/tdesdk/debian/tdesdk-scripts-trinity.README.Debian new file mode 100644 index 000000000..f0ff0c7b8 --- /dev/null +++ b/dilos/tdesdk/debian/tdesdk-scripts-trinity.README.Debian @@ -0,0 +1,65 @@ +tdesdk-scripts for Debian +------------------------- + +Debugger macros: + + Some handy gdb macros (such as for printing QStrings from gdb) + have been placed in /usr/share/tdesdk-scripts/kde-devel-gdb. + + To use them, add this line to your ~/.gdbinit : + + source /usr/share/tdesdk-scripts/kde-devel-gdb + +Editor helper files: + + Both vim and emacs helper files are provided containing many functions + and keybindings for developing TDE/TQt/C++ applications. + + To use the vim helper file, add this line to your ~/.vimrc : + + source /usr/share/tdesdk-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/tdesdk-scripts") + (require 'kde-emacs) + + (setq kde-full-name "Your Name") + (setq kde-email "Your Email") + + See the file /usr/share/emacs/site-lisp/tdesdk-scripts/kde-emacs.el for + further information regarding emacs. + +Shell completion controls: + + Completion controls are provided in /usr/share/tdesdk-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 TDE completion controls to the zsh function path. + set -A fpath $fpath /usr/share/tdesdk-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/tdesdk-scripts/completions/bash/dcop + +Valgrind error suppressions: + + A valgrind suppression file is included for ignoring things we don't + care about when valgrinding TDE 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 , Fri, 15 Oct 2004 09:55:26 +1000 -- cgit v1.2.1