File: README

package info (click to toggle)
kdesdk 4%3A3.3.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 27,520 kB
  • ctags: 18,649
  • sloc: cpp: 169,063; sh: 10,505; perl: 8,303; lisp: 6,329; makefile: 1,734; ansic: 1,626; python: 653; xml: 212; lex: 62; ruby: 46
file content (135 lines) | stat: -rw-r--r-- 4,705 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135

Stuff in this directory:

adddebug        Modifies the Makefile to add debug info (-g)

add_trace	Modifies a source file to add a trace as the first line
		of every method, using kdDebug, and showing args values.

authors2xml	Extract author information from C++ files and print it out
		in DocBook format as a list

cheatmake	Helper for saving time when recompiling, skipping files that
		haven't changed in a meaningful way (e.g. if you only change
		a comment...)

check_licenses	

licensecheck	Simple license checker for source files

makeobj		Script around make which basicly checks if it's in srcdir
		or in builddir and changes to the right directory for
		calling /usr/bin/make

colorcvs

create_makefile Create the Makefile in a directory containing a Makefile.am
                Saves time compared to re-running configure completely 

create_makefiles The recursive version of it - needs create_makefile.

create_cvsignore Create a .cvsignore file (using the contents of Makefile.am)

cvs2pack	Create a standalone source distribution tarball for an app
		in a KDE CVS module.

cvsaddcurrentdir Add all files in and below the current dir to cvs.
                 *.c, *.h, *.C, *.cpp, *.cc are added automatically,
                 *~, *.o, *.so, *.lo, *.la, .libs/, .deps/, .#* are ignored.
                 You will be asked for the remaining files.

cvsblame	Bonsai-like cvs annotate 

cvschanged	Check for edited or merged files in a checked out CVS module,
		without connecting to the CVS server.

cvscheck	Offline check for status of files in a checked-out

noncvslist	List all files in a checked out CVS module that are unknown to
		to the CVS server.

cvsversion      Display CVS version of a file without connecting to the server.

cxxmetric	Counts lines of code, comments and blank space in C and C++
		source files.

fixheaders      Adds header files as it recognices make error output

fixkdeincludes	Tries to reduce the number of includes in KDE source files

fixuifiles	Fixes up Qt Designer .ui files (version, accels, generated names)
		To use before any commit of a .ui file.

cvslastchange   launches "cvs diff -u" to display the last applied changes for a
                given file. HEAD branch only.

cvslastlog      Shows the log associated with the last change on a given file.

cvsremovealltags Remove all tags from a CVS file. Use with care, and for instance
		after copying a file on the server.

cvsrevertlast	Reverts all the files given on the command by one version, then
		you can commit them.

cvsbackport	Backport the last commit in HEAD, to a branch.

cvsforwardport  Forwardport the last commit in a branch to HEAD

gendebug        Generate C++/Qt code for printing debug output.

pruneemptydirs	Detects stale source dirs in a CVS tree

kde-build       Updates and recompiles a local CVS tree

build-progress.sh Displays the progress of kde-build, times needed to complete each
		step. And sets the titlebar of the terminal to the directory that
		make is processing 

extractrc	Extract text tags from designer's UI files and XML GUI-RC files

gettext.patch	Patch for gettext-0.10.35 to give xgettext the functionality to
		extract scoped messages

includemocs	Adds missing "#include foobar.moc" lines

kde-devel-emacs.el An emacs file that contains many helpful functions and keybindings
		A must for anyone using [X]Emacs to develop KDE/Qt/C++ applications.

kde-devel-gdb	A gdb macro definition file, to e.g. print QStrings from gdb.

extend_dmalloc	Script to run gdb on return-addresses

kde-devel-vim.vim 

kde.supp	Some valgrind suppressions handy for ignoring stuff we don't
		care about when valgrinding kde applications

kdecompile	Python script for compiling and installing a KDE package

kdedoc		Open a kde help page in kfm/konqueror

qtdoc		Open a qt help page in kfm/konqueror

kdekillall	Kills the process "kdeinit: <process> with signal <signal>

kdelnk2desktop

zone		Reads timezone list as its first argument or from
		/usr/share/zoneinfo/zone.tab, and converts it to a PO file
		 template

rc2kcfgxt.pl	Reads an existing KConfig rc file and creates a best-guess
		version of a KConfigXT XML file.

cvslastreferenced Goes through the whole history of a file to find all modifications
                referencing a specific string.  It's useful if you want to know
                when a function has been removed/modified/added to a file if a
                recent cvs annotate doesn't reference it anymore. 

----------------
Looking to add a script?

Just add it to this README. For easy man pages see the perlpod manpage; the
man page for many of these tools is in the script itself.

$Id: README,v 1.28.2.1 2004/10/03 11:15:45 binner Exp $