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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
|
eThis package was debianized by the Debian Qt/KDE Maintainers on
Fri, 11 May 2007 17:23:33 +0200.
It was downloaded from ftp://ftp.kde.org
Upstream Author: The KDE development team <kde-core-devel@kde.org>
Numerous people, too many to count, have contributed to kdelibs as a
whole. The KDE project tries to make an extensive list of people who contributed
to KDE at http://www.kde.org/people/credits/
Copyright:
Unless something else is mentioned, copyright is
(C) 1996-2008, The K Desktop Enviroment project http://www.kde.org
License:
Unless something else is mentioned, the code files in this package are under
the GNU General Public License:
| 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; version 2 dated June, 1991.
|
| This package 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
The full text of the GNU General Public License version 2 is available on
Debian systems in /usr/share/common-licenses/GPL-2.
The documentation docbook files in this package, placed under docs/, are under
the GNU Free Documentation License:
| 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.
The full text of the GNU Free Documentation License is available on
Debian systems in /usr/share/common-licenses/GFDL-1.2
As well, all the Manpages.dox included are under this license, unless specified
otherwise below.
kdebase copyright situation is a bit complex. The following table tries
to detail the copyright/license information of the files that are not under the
directories detailed above.
------
cmake/
------
Licensing information is not explicitly available for the files below:
--
modules/*
------
dolphin/
------
Copyright: © 2006-2008 Peter Penz <peter.penz@gmx.at>
Copyright: © 2007-2008 Sebastian Trueg <trueg@kde.org>
Copyright: © 2006-2008 David Faure <faure@kde.org>
Copyright: © 2006 Cvetoslav Ludmiloff <ludmiloff@gmail.com>
Copyright: © 2008 Fredrik Höglund <fredrik@kde.org>
Copyright: © 2007 Rafael Fernández López <ereslibre@kde.org>
Copyright: © 2006 Patrice Tremblay
Copyright: © 2008 Simon St James <kdedevel@etotheipiplusone.com>
Copyright: © 2008 Konstantin Heil <konst.heil@stud.uni-heidelberg.de>
Copyright: © 2006 Gregor Kališnik <gregor@podnapisi.net>
Copyright: © 2006 Stefan Monov <logixoul@gmail.com>
Copyright: © 2008 by <peter.penz@gmx.at>
Copyright: © 1992-2007 Trolltech ASA.
Copyright: © 2008 Simon St. James <kdedevel@etotheipiplusone.com>
Copyright: © 2006 Aaron J. Seigo <aseigo@kde.org>
Copyright: © 2006 Holger 'zecke' Freyther <freyther@kde.org>
Copyright: © 2006 Dominic Battre <dominic@battre.de>
Copyright: © 2007 Montel Laurent <montel@kde.org>
Copyright: © 2006 Martin Pool <mbp@canonical.com>
License for all components unless stated otherwise:
--
GNU General Public License, version 2 or later (GPL-2+)
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
GNU Library General Public License, version 2 (LGPL-2)
7 files are licensed under this license:
+ src/libdolphin_export.h
src/tagcloud/* excluding:
-+ src/tagcloud/newtagdialog.cpp
-+ src/tagcloud/newtagdialog.h
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
--
GNU Library General Public License, version 2 or later (LGPL-2+)
6 files are licensed under this license:
+ src/dolphincategorydrawer.cpp
+ src/dolphincategorydrawer.h
+ src/dolphinmodel.cpp
+ src/dolphinmodel.h
+ src/dolphinpart.cpp
+ src/dolphinpart.h
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
------
kappfinder/
------
Copyright: © 2002-2003 Tobias Koenig <tokoe@kde.org>
Copyright: © 2000 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
License for all components is:
--
GNU General Public License (GPL-any)
On Debian systems, the complete text of the
GNU General Public License can be found in
/usr/share/common-licenses/GPL
--
------
kdepasswd/
------
Copyright: © 1999-2000 Geert Jansen <jansen@kde.org>
Copyright: © 2003 Braden MacDonald <bradenm_k@shaw.ca>
Copyright: © 2003 Ravikiran Rajagopal <ravi@ee.eng.ohio-state.edu>
Copyright: © 2004 Frans Englich <frans.englich@telia.com>
License for all components unless stated otherwise:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license of 8 files was not explicitly specified:
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
GNU General Public License, version 2 (GPL-2)
2 files are licensed under this license:
+ kcm/chfnprocess.cpp
+ kcm/chfnprocess.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
BSD-ish
/* excluding kcm
Permission to use, copy, modify, and distribute this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notice appear in all
copies and that both that the copyright notice and this
permission notice and warranty disclaimer appear in supporting
documentation, and that the name of the author not be used in
advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
The author disclaim all warranties with regard to this
software, including all implied warranties of merchantability
and fitness. In no event shall the author be liable for any
special, indirect or consequential damages or any damages
whatsoever resulting from loss of use, data or profits, whether
in an action of contract, negligence or other tortious action,
arising out of or in connection with the use or performance of
this software.
--
------
kdialog/
------
Copyright: © 1998-2005 Matthias Hoelzer <hoelzer@kde.org> <hoelzer@physik.uni-wuerzburg.de>
Copyright: © 2002-2005 David Faure <faure@kde.org>
Copyright: © 2004-2005 Stephan Binner <binner@kde.org>
Copyright: © 2005 Brad Hards <bradh@frogmouth.net>
Copyright: © 2008 Dmitry Suzdalev <dimsuz@gmail.com>
License for all components is:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license was not explicitly specified for the following file:
? CMakeLists.txt
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
------
keditbookmarks/
------
Copyright: © 2002-2003 Alexander Kellett <lypanov@kde.org>
Copyright: © 2000 David Faure <faure@kde.org>
Copyright: © 2005 Daniel Teske <teske@squorn.de>
Copyright: © 2005 Frerich Raabe <raabe@kde.org>
License for all components unless stated otherwise:
--
GNU General Public License, version 2 (GPL-2)
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
BSD-like License (BSD)
The following file is licensed under this license:
+ kbookmarkmerger.cpp
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer. 2. Redistributions in binary
form must reproduce the above copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other materials provided with
the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
On Debian systems, the complete text of the
BSD-like License can be found in
/usr/share/common-licenses/BSD
--
--
GNU General Public License, version 2 or later (GPL-2+)
The following file is licensed under this license:
+ kinsertionsort.h
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.
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
------
kfind/
------
Copyright: © 2000 David Faure <faure@kde.org>
Copyright: © 1998-2003 Harri Porten <dima@mercury.co.il>
Copyright: © 1998-2003 Beppe Grimaldi <coquelle@caramail.com>
Copyright: © 1998-2003 Dima Rogozin <pfeiffer@kde.org>
Copyright: © 1998-2003 Mario Weilguni <zipzippy@sonic.net>
Copyright: © 1998-2003 Hans Petter Bieker <bastian@kde.org>
Copyright: © 1998-2003 Alex Zepeda <flidr@kky.zcu.cz>
Copyright: © 1998-2003 The KDE <coolo@kde.org>
Copyright: © 1998-2003 Waldo Bastian <grimalkin@ciaoweb.it>
Copyright: © 1998-2003 Miroslav FlÃdr <porten@kde.org>
Copyright: © 1998-2003 Carsten Pfeiffer <bieker@kde.org>
Copyright: © 1998-2003 Martin Hartig
Copyright: © 1998-2003 Stephan Kulow <mweilguni@sime.com>
Copyright: © 1998-2003 Eric Coquelle
License for all components is:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license of 14 files was not explicitly specified:
* excluding:
-+ kfind.cpp
-+ kfindpart.cpp
-+ kfindpart.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
------
kinfocenter/
------
Copyright: © 1999, 2001 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> <mhk@caldera.de>
Copyright: © 2000-2001 Matthias Elter <elter@kde.org>
Copyright: © 2000-2001, 2003 Alexander Neundorf <neundorf@kde.org> <alexander.neundorf@rz.tu-ilmenau.de>
Copyright: © 2008 Nicolas Ternisien <nicolas.ternisien@gmail.com>
Copyright: © 1999 Gary Meyer <gary@meyer.net>
Copyright: © 2008 Ivo Anjo <knuckles@gmail.com>
Copyright: © 1998-2003 Helge Deller <deller@gmx.de> <deller@kde.org>
Copyright: © Konrad Rzepecki <hannibal@megapolis.pl>
Copyright: © Hubert Feyer <hubertf@NetBSD.org>
Copyright: © 2001 George Staikos <staikos@kde.org>
Copyright: © Torsten Kasch <tk@Genetik.Uni-Bielefeld.DE>
Copyright: © 1991-1992 Free Software Foundation
Copyright: © 2003 Benjamin Reed <ranger@befunk.com>
Copyright: © 2000 Brad Hughes <bhughes@trolltech.com>
Copyright: © David Brownlee <abs@NetBSD.org>
Copyright: © Anthony Baxter <anthony@aaii.oz.au>
Copyright: © 2004 Adapted from Brian
Copyright: © 2003 Frauke Oster <frauke.oster@t-online.de>
Copyright: © Reza Arbab <arbab@austin.ibm.com>
Copyright: © 2008 Pino Toscano <pino@kde.org>
Copyright: © 1999-2002 Brian Paul
Copyright: © 2004 Ilya Korniyko <k_ilya@ukr.net>
Copyright: © 2000 Modified <bhughes@trolltech.com>
Copyright: © 1994-1995 Mike Romberg <romberg@fsl.noaa.gov>
Copyright: © Ronald Joe Record <rr@sco.com>
License for all components is:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license of 42 files was not explicitly specified:
base/* excluding:
-+ base/info_osx.cpp
info/* excluding:
-+ info/main.cpp
? memory/base.h
? memory/memory_fbsd.cpp
? memory/memory_hpux.cpp
? memory/memory_linux.cpp
? memory/memory_netbsd.cpp
? memory/memory_sgi.cpp
? memory/memory_solaris.cpp
? memory/memory_tru64.cpp
? nics/CMakeLists.txt
? nics/config-nic.h.cmake
? opengl/CMakeLists.txt
? partition/CMakeLists.txt
pci/* excluding:
-+ pci/kcm_pci.cpp
-+ pci/kcm_pci.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
------
konqueror/
------
Copyright: © 1998-2008 David Faure <faure@kde.org> <david@mandrakesoft.com>
Copyright: © 02-03, 2000, 2000-, 2001, 2001-, 2002-2004 Dawit Alemayehu <adawit@kde.org>
Copyright: © 1998-2001, 2003 Simon Hausmann <hausmann@kde.org>
Copyright: © 2001-2003 Waldo Bastian <bastian@kde.org>
Copyright: © 2000-2001 Carsten Pfeiffer <pfeiffer@kde.org>
Copyright: © 2007-2008 Eduardo Robles Elvira <edulix@gmail.com>
Copyright: © 2002-2003 Leo Savernik <l.savernik@aon.at>
Copyright: © 1998-1999 Torben Weis <weis@kde.org>
Copyright: © 2001-2002 Joseph Wenninger <jowenn@kde.org>
Copyright: © 2000-2001, 2005-2006 Alexander Neundorf <neundorf@kde.org>
Copyright: © 2002-2004 Lubos Lunak <l.lunak@kde.org>
Copyright: © 2000, 2002 Daniel Molkentin <molkentin@kde.org>
Copyright: © 1996 Martin R. Jones
Copyright: © 1999-2000 Kurt Granroth <granroth@kde.org>
Copyright: © 1998-1999 Michael Reiher <michael.reiher@gmx.de>
Copyright: © 1998 Bernd Wuebben
Copyright: © 1998 Sven Radej
Copyright: © 1997, 2000 Kalle Dalheimer <kalle@kde.org>
Copyright: © 2008 Urs Wolfer
Copyright: © 2007 Fredrik Höglund <fredrik@kde.org>
Copyright: © 1999-2000 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
Copyright: © 1998 Port to KControl
Copyright: © 2007 Daniel GarcÃa Moreno <danigm@gmail.com>
Copyright: © 2000 Yves Arrouye <yves@realnames.com>
Copyright: © 2004 Arend van Beelen <arend@auton.nl>
Copyright: © 2000-2001 Marco Pinelli <pinmc@orion.it>
Copyright: © 2002-2003 Douglas Hanley <douglash@caltech.edu>
Copyright: © 2005 Ivor Hewitt <ivor@ivor.org>
Copyright: © 2002 George Russell <george.russell@clara.net>
Copyright: © 2002 Stephan Binner <binner@kde.org>
Copyright: © 2007 Nick Shaforostoff <shafff@ukr.net>
Copyright: © 2001 Daniel Naber
Copyright: © 2006-2007 Matthias Kretz <kretz@kde.org>
Copyright: © 2000 Dirk Mueller <mueller@kde.org>
Copyright: © 1998 Christian Tibirna
Copyright: © 2003 Martijn Klingens <klingens@kde.org>
Copyright: © 2002 John Firebaugh <jfirebaugh@kde.org>
Copyright: © 2003 George Staikos <staikos@kde.org>
Copyright: © 2003-2004 Olaf Schmidt <ojschmidt@kde.org>
Copyright: © 2002-2003 Konqueror <konq-e@kde.org>
Copyright: © Jacek Konieczny <jajcus@zeus.posl.gliwice.pl> <jajcus@zeus.polsl.gliwice.pl>
Copyright: © 2008 Xavier Vello <xavier.vello@gmail.com>
Copyright: © 2003 Thiago Macieira <thiago.macieira@kdemail.net>
Copyright: © 2000 Stefan Schimanski <1Stein@gmx.de>
Copyright: © 2002 Michael Brade <brade@kde.org>
Copyright: © 1996 HTML Options
Copyright: © 2003 Alexander Kellett <lypanov@kde.org>
Copyright: © 1998 Misc Tab
License for all components unless stated otherwise:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license of 65 files was not explicitly specified:
*
pics/*
pics/indicators/*
? settings/kio/kcookiesmain.cpp
? settings/kio/kcookiesmain.h
? settings/kio/netpref.cpp
? settings/kio/netpref.h
settings/konqhtml/* excluding:
-+ settings/konqhtml/domainlistview.cpp
-+ settings/konqhtml/domainlistview.h
-+ settings/konqhtml/filteropts.cpp
-+ settings/konqhtml/filteropts.h
-+ settings/konqhtml/jspolicies.cpp
-+ settings/konqhtml/jspolicies.h
-+ settings/konqhtml/main.cpp
-+ settings/konqhtml/main.h
-+ settings/konqhtml/policies.cpp
-+ settings/konqhtml/policies.h
settings/konqhtml/css/* excluding:
-+ settings/konqhtml/css/kcmcss.h
? sidebar/trees/konqsidebar_tree.cpp
? sidebar/trees/konqsidebar_tree.h
? sidebar/trees/history_module/history_settings.cpp
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
GNU General Public License, version 2 (GPL-2)
26 files are licensed under this license:
settings/filetypes/* excluding:
-? settings/filetypes/CMakeLists.txt
-+ settings/filetypes/filetypes-config.h
-+ settings/filetypes/filetypesview.cpp
-+ settings/filetypes/filetypesview.h
-+ settings/filetypes/kserviceselectdlg.cpp
-+ settings/filetypes/kserviceselectdlg.h
-+ settings/filetypes/mimetypewriter.cpp
-+ settings/filetypes/mimetypewriter.h
+ settings/kio/cache.cpp
+ settings/kio/cache.h
+ settings/kio/kenvvarproxydlg.cpp
+ settings/kio/kenvvarproxydlg.h
+ settings/kio/kmanualproxydlg.cpp
+ settings/kio/kmanualproxydlg.h
+ settings/kio/kproxydlg.cpp
+ settings/kio/kproxydlg.h
+ settings/kio/kproxydlgbase.cpp
+ settings/kio/kproxydlgbase.h
+ settings/kio/useragentdlg.cpp
+ settings/kio/useragentdlg.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
--
GNU Library General Public License, version 2 (LGPL-2)
27 files are licensed under this license:
+ settings/konq/kcustommenueditor.cpp
+ settings/konq/kcustommenueditor.h
+ settings/konq/konqkcmfactory.cpp
+ settings/konq/konqkcmfactory.h
+ shellcmdplugin/kshellcmdplugin.cpp
+ shellcmdplugin/kshellcmdplugin.h
sidebar/trees/* excluding:
-? sidebar/trees/CMakeLists.txt
-? sidebar/trees/konqsidebar_tree.cpp
-? sidebar/trees/konqsidebar_tree.h
sidebar/trees/bookmark_module/* excluding:
-? sidebar/trees/bookmark_module/CMakeLists.txt
sidebar/trees/dirtree_module/* excluding:
-? sidebar/trees/dirtree_module/CMakeLists.txt
+ sidebar/trees/history_module/history_item.cpp
+ sidebar/trees/history_module/history_item.h
+ sidebar/trees/history_module/history_module.cpp
+ sidebar/trees/history_module/history_module.h
sidebar/web_module/* excluding:
-? sidebar/web_module/CMakeLists.txt
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
--
GNU Library General Public License, version 2 or later (LGPL-2+)
27 files are licensed under this license:
client/* excluding:
-? client/CMakeLists.txt
preloader/* excluding:
-? preloader/CMakeLists.txt
remoteencodingplugin/* excluding:
-? remoteencodingplugin/CMakeLists.txt
+ settings/kio/ksaveioconfig.cpp
+ settings/kio/ksaveioconfig.h
+ settings/kio/smbrodlg.cpp
+ settings/kio/smbrodlg.h
shellcmdplugin/* excluding:
-? shellcmdplugin/CMakeLists.txt
-+ shellcmdplugin/kshellcmdplugin.cpp
-+ shellcmdplugin/kshellcmdplugin.h
+ sidebar/konqsidebarplugin.cpp
+ sidebar/konqsidebarplugin.h
+ src/konqactions.cpp
+ src/konqactions.h
+ src/konqbookmarkbar.cpp
+ src/konqbookmarkbar.h
+ src/konqprivate_export.h
+ src/konqrun.h
+ src/konqsettings.cpp
+ src/konqsettings.h
+ src/tests/historymanagertest.cpp
+ src/tests/historymanagertest.h
+ src/tests/undomanagertest.cpp
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
------
konsole/
------
Copyright: © 2006-2008 Robert Knight <robertknight@gmail.com> <robertknight@gmail.countm> <robert.knight@gmail.com>
Copyright: © 1997-1998 Lars Doelle <lars.doelle@on-line.de>
Copyright: © 2002 Waldo Bastian <bastian@kde.org>
Copyright: © 2002 Carsten Pfeiffer <pfeiffer@kde.org>
Copyright: © 2000 Stephan Kulow <coolo@kde.org>
Copyright: © 1995 Columbia University
Copyright: © 1996 Matthias Ettrich <ettrich@kde.org>
Copyright: © 2000-2001 Lubos Lunak <l.lunak@kde.org>
Copyright: © 1995 Frank da Cruz
Copyright: © 2005 Maksim Orlovich <maksim@kde.org>
Copyright: © Todd Larason <jtl@molehill.org>
Copyright: © 2001 Oswald Buddenhagen <ossi@kde.org>
License for all components unless stated otherwise:
--
GNU General Public License, version 2 or later (GPL-2+)
However, the license of 24 files was not explicitly specified:
*
? src/konsole_wcwidth.cpp
? src/konsole_wcwidth.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
GNU Library General Public License, version 2 (LGPL-2)
2 files are licensed under this license:
+ src/ZModemDialog.cpp
+ src/ZModemDialog.h
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
--
GNU Library General Public License, version 2 or later (LGPL-2+)
4 files are licensed under this license:
+ src/BookmarkHandler.cpp
+ src/BookmarkHandler.h
+ src/TerminalCharacterDecoder.cpp
+ src/TerminalCharacterDecoder.h
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
--
MIT-like License (MIT)
The following file is licensed under this license:
+ src/XKB.cpp
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
------
kwrite/
------
Copyright: © 2001 Anders Lund <anders.lund@lund.tdcadsl.dk>
Copyright: © 2001 Joseph Wenninger <jowenn@kde.org>
Copyright: © 2001 Christoph Cullmann <cullmann@kde.org>
License for all components is:
--
GNU Library General Public License, version 2 (LGPL-2)
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
------
lib/
------
Copyright: © 1998-2008 David Faure <faure@kde.org>
Copyright: © 2001 Malte Starostik <malte@kde.org>
Copyright: © 2003 Sven Leiber <s.leiber@web.de>
Copyright: © 2000-2001 Simon Hausmann <hausmann@kde.org>
Copyright: © 2008 George Goldberg <grundleborg@googlemail.com>
Copyright: © 1998-1999 Torben Weis <weis@kde.org>
Copyright: © 2001-2002 Alexander Neundorf <neundorf@kde.org>
Copyright: © 2001 Holger Freyther <freyther@yahoo.com>
Copyright: © 2003 Waldo Bastian <bastian@kde.org>
Copyright: © 2004 Martin Koller <m.koller@surfeu.at>
Copyright: © 2002 Michael Brade <brade@kde.org>
Copyright: © 2008 Peter Penz <peter.penz@gmx.at>
Copyright: © 2004 Dirk Mueller <mueller@kde.org>
Copyright: © 2004 JarosÅaw Staniek <staniek@kde.org>
Copyright: © 2006 Matthias Kretz <kretz@kde.org>
License for all components unless stated otherwise:
--
GNU Library General Public License, version 2 or later (LGPL-2+)
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
Other used licenses:
--
GNU General Public License, version 2 or later (GPL-2+)
4 files are licensed under this license:
+ konq/konq_fileitemcapabilities.cpp
+ konq/konq_fileitemcapabilities.h
+ konq/konq_filetip.cc
+ konq/konq_filetip.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
--
GNU Library General Public License, version 2 (LGPL-2)
9 files are licensed under this license:
+ konq/knewmenu.cpp
+ konq/knewmenu.h
+ konq/knewmenu_p.h
+ konq/konq_operations.cpp
+ konq/konq_operations.h
+ konq/konq_sound.cc
+ konq/konq_sound.h
+ konq/libkonq_export.h
+ konq/favicons/favicons.h
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
------
nsplugins/
------
Copyright: © 2000, 2003-2005 Stefan Schimanski <1Stein@gmx.de> <schimmi@kde.org>
Copyright: © 2000 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> <mhk@caldera.de>
Copyright: © 2002-2005, 2007-2008 George Staikos <staikos@kde.org>
Copyright: © 1993-1996, 1998-2000 Initial All Rights Reserved.
Copyright: © 2006-2008 Maksim Orlovich <maksim@kde.org>
Copyright: © 2007 Lubos Lunak <l.lunak@suse.cz>
Copyright: © 1992-2007 Trolltech AS. All Rights Reserved.
Copyright: © 1998-2000 Netscape Communications Corporation. All
Copyright: © 2008 Sebastian Sauer
Copyright: © 1998-2000 Rights Reserved.
Copyright: © 2008 Collabora Ltd.
Copyright: © 2008 Apple Inc. <mail@dipe.org>
Copyright: © 2003 Dirk Mueller <mueller@kde.org>
Copyright: © 2004 The Mozilla Foundation.
Copyright: © 2004 All Rights Reserved.
Copyright: © 2000 International Business Machines
Copyright: © 2004 Apple Computer Inc.
License for all components unless stated otherwise:
--
GNU General Public License, version 2 or later (GPL-2+)
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
Other used licenses:
--
BSD-like License (BSD)
The following file is licensed under this license:
+ sdk/npruntime.h
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer. 2. Redistributions in binary
form must reproduce the above copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other materials provided with
the distribution. 3. Neither the names of Apple Computer, Inc. ("Apple") or The
Mozilla Foundation ("Mozilla") nor the names of their contributors may be used
to endorse or promote products derived from this software without specific prior
written permission.
On Debian systems, the complete text of the
BSD-like License can be found in
/usr/share/common-licenses/BSD
--
--
GNU General Public License, version 2 (GPL-2)
12 files are licensed under this license:
sdk/* excluding:
-+ sdk/npruntime.h
sdk/obsolete/*
+ viewer/qxteventloop.cpp
+ viewer/qxteventloop.h
On Debian systems, the complete text of the
GNU General Public License version 2 can be found in
/usr/share/common-licenses/GPL-2
--
------
plasma/
------
Copyright: © 2008 Fredrik Höglund <fredrik@kde.org>
Copyright: © 2008 Rafael Fernández López <ereslibre@kde.org>
Copyright: © 2008 Allan Sandfeld Jensen <kde@carewolf.com>
Copyright: © 2008 Andrew Lake <jamboarder@yahoo.com>
Copyright: © 2006-2008 Germain Garand <germain@ebooksfrance.org>
License for all components is:
--
GNU Library General Public License, version 2 or later (LGPL-2+)
On Debian systems, the complete text of the
GNU Library General Public License version 2 can be found in
/usr/share/common-licenses/LGPL-2
--
-------------------------------------------------------------------------------
Legend:
- "unspec": The file contains no specific copyright/license notice. This
means that the copyright holder is the KDE Development Team (as
listed above) and the license is GPL2, unless specified otherwise.
- "GPL": The GNU General Public License, without versioning constraints.
- "GPLv2": The GNU General Public License, version 2.
- "GPLv2h": The GNU General Public License, version 2 or (at your
option) higher.
- "LGPLv2h": The Lesser (or Library) GNU General Public License, version
2 or (at your option).
- "BSD" Files under the BSD license.
- "GFDL1.1": The GNU Free Documentation License, version 1.1 or (at your
option) higher. The listed documents use the GFDL with no
Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts.
- "MIT": Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
- "Artistic": Files under the Artistic license.
- "Sun": * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
* unrestricted use provided that this legend is included on all tape
* media and as a part of the software program in whole or part. Users
* may copy or modify Sun RPC without charge, but are not authorized
* to license or distribute it to anyone else except as part of a product or
* program developed by the user or with the express written consent of
* Sun Microsystems, Inc.
*
* SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
* WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
* PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
*
* Sun RPC is provided with no support and without any obligation on the
* part of Sun Microsystems, Inc. to assist in its use, correction,
* modification or enhancement.
*
* SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
* INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
* OR ANY PART THEREOF.
*
* In no event will Sun Microsystems, Inc. be liable for any lost revenue
* or profits or other special, indirect and consequential damages, even if
* Sun has been advised of the possibility of such damages.
*
* Sun Microsystems, Inc.
* 2550 Garcia Avenue
* Mountain View, California 94043
On Debian systems, you can find the complete texts of these licenses at:
- Artistic: /usr/share/common-licenses/Artistic
- BSD: /usr/share/common-licenses/BSD
- GPL: /usr/share/common-licenses/GPL
- GPLv2: /usr/share/common-licenses/GPL-2
- LGPLv2: /usr/share/common-licenses/LGPL-2
- GFDL: /usr/share/common-licenses/GFDL
- BSD: /usr/share/common-licenses/BSD
-------------------------------------------------------------------------------
The Debian packaging is (C) 2007-2008, Debian Qt/KDE Maintainers
<debian-qt-kde@lists.debian.org> and is licensed under the GPL,
see `/usr/share/common-licenses/GPL'.
|