~dobey/ardour/packaging-dailies

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
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Ardour
Upstream-Contact: Paul Davis <pbd@op.net>
Source: http://ardour.org/download
Copyright: 1998-2010, Paul Davis

Files: *
Copyright:
 1998-2010 Paul Davis
License: GPL-2+

Files: debian/*
Copyright:
 2013 Adrian Knoth <adi@drcomp.erfurt.thur.de>
 2013 Jaromír Mikeš <mira.mikes@seznam.cz>
License: GPL-2+

Files:
 libs/glibmm2/*
 libs/gtkmm2/*
Copyright:
 1998-2004 The gtkmm Development Team
License: LGPL-2+

Files: libs/vamp-*
Copyright:
 2000-2008 Chris Cannam
 2006-2008 Queen Mary, University of London
License: Expat and other-nopromo-Chris

Files:
 libs/rubberband/*
 libs/vamp-plugins/Onset.*
Copyright:
 2006-2008 Chris Cannam
License: GPL-2+

Files:
 libs/appleutility/*
Copyright:
 2005 Apple Computer, Inc.
License: other-Apple

Files: libs/sigc++2/*
Copyright:
 2002-2003, 2005 The libsigc++ Development Team
License: LGPL-2.1+

Files: libs/surfaces/tranzport/*
Copyright:
 2006 Paul Davis <pbd@op.net>
 2007 Michael Taht
License: GPL-2+

Files: libs/soundtouch/*
Copyright:
 Olli Parviainen
License: LGPL-2.1+

Files: libs/surfaces/mackie/*
Copyright:
 2006-2008 John Anderson
License: GPL-2+

Files:
 libs/surfaces/control_protocol/*
Copyright:
 2006 Paul Davis <pbd@op.net>
License: LGPL-2+

Files: Makefile.in
Copyright: 1994-2009
License: other-GAP-FSF-notice

Files: configure
Copyright:
 1992-2008, Free Software Foundation, Inc
License: other-GAP-FSF and GPL-2+ with Libtool exception
 As a special exception to the GNU General Public License, if you
 distribute this file as part of a program or library that is built
 using GNU Libtool, you may include this file under the same
 distribution terms that you use for the rest of that program.

Files:
 config.guess
 config.sub
Copyright:
 1992-2008, Free Software Foundation, Inc.
License: GPL-2+ with Autoconf exception
 As a special exception to the GNU General Public License, if you
 distribute this file as part of a program that contains a configuration
 script generated by Autoconf, you may include it under the same
 distribution terms that you use for the rest of that program.

Files: install-sh
Copyright:
 1994, X Consortium
License: Expat and other-nopromo-X

Files: libtool.m4
Copyright:
 1996-2001, 2003-2005, 2008, Free Software Foundation, Inc
License: GPL-2+ with Libtool exception
 As a special exception to the GNU General Public License, if you
 distribute this file as part of a program or library that is built
 using GNU Libtool, you may include this file under the same
 distribution terms that you use for the rest of that program.

Files:
 libs/gtkmm2ext/auto_spin.cc
 libs/gtkmm2ext/choice.cc
 libs/gtkmm2ext/click_box.cc
 libs/gtkmm2ext/gtk_ui.cc
 libs/gtkmm2ext/gtkmm2ext/auto_spin.h
 libs/gtkmm2ext/gtkmm2ext/click_box.h
 libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
 libs/gtkmm2ext/gtkmm2ext/gtkutils.h
 libs/gtkmm2ext/gtkmm2ext/popup.h
 libs/gtkmm2ext/gtkmm2ext/prompter.h
 libs/gtkmm2ext/gtkmm2ext/selector.h
 libs/gtkmm2ext/gtkmm2ext/tearoff.h
 libs/gtkmm2ext/gtkmm2ext/textviewer.h
 libs/gtkmm2ext/gtkmm2ext/utils.h
 libs/gtkmm2ext/popup.cc
 libs/gtkmm2ext/prompter.cc
 libs/gtkmm2ext/selector.cc
 libs/gtkmm2ext/tearoff.cc
 libs/gtkmm2ext/textviewer.cc
 libs/gtkmm2ext/utils.cc
 libs/midi++2/fd_midiport.cc
 libs/midi++2/fifomidi.cc
 libs/midi++2/midi++/alsa_rawmidi.h
 libs/midi++2/midi++/channel.h
 libs/midi++2/midi++/factory.h
 libs/midi++2/midi++/fd_midiport.h
 libs/midi++2/midi++/fifomidi.h
 libs/midi++2/midi++/manager.h
 libs/midi++2/midi++/mmc.h
 libs/midi++2/midi++/nullmidi.h
 libs/midi++2/midi++/parser.h
 libs/midi++2/midi++/port.h
 libs/midi++2/midi.cc
 libs/midi++2/midichannel.cc
 libs/midi++2/midifactory.cc
 libs/midi++2/midimanager.cc
 libs/midi++2/midiparser.cc
 libs/midi++2/midiport.cc
 libs/midi++2/mmc.cc
 libs/midi++2/mtc.cc
 libs/pbd/pathscanner.cc
 libs/pbd/pbd/abstract_ui.h
 libs/pbd/pbd/mountpoint.h
 libs/pbd/pbd/pool.h
 libs/pbd/pbd/receiver.h
 libs/pbd/pbd/selectable.h
 libs/pbd/pbd/stl_delete.h
 libs/pbd/pbd/stl_functors.h
 libs/pbd/pbd/textreceiver.h
 libs/pbd/pbd/thrown_error.h
 libs/pbd/pbd/touchable.h
 libs/pbd/pbd/transmitter.h
 libs/pbd/pool.cc
 libs/pbd/receiver.cc
 libs/pbd/textreceiver.cc
 libs/pbd/transmitter.cc
Copyright:
 1998-2005 Paul Barton-Davis
License: GPL-2+

Files:
 gtk2_ardour/imageframe.cc
 gtk2_ardour/simpleline.cc
 gtk2_ardour/simplerect.cc
 gtk2_ardour/waveview.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/canvas.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/ellipse.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/group.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/item.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/line.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/rect-ellipse.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/rect.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/text.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/widget.cc
Copyright: 1998 EMC Capital Management Inc
License: LGPL-2+

Files:
 gtk2_ardour/imageframe.h
 gtk2_ardour/simpleline.h
 gtk2_ardour/simplerect.h
 gtk2_ardour/waveview.h
 libs/libgnomecanvasmm/libgnomecanvasmm/canvas.h
 libs/libgnomecanvasmm/libgnomecanvasmm/ellipse.h
 libs/libgnomecanvasmm/libgnomecanvasmm/group.h
 libs/libgnomecanvasmm/libgnomecanvasmm/item.h
 libs/libgnomecanvasmm/libgnomecanvasmm/line.h
 libs/libgnomecanvasmm/libgnomecanvasmm/rect-ellipse.h
 libs/libgnomecanvasmm/libgnomecanvasmm/rect.h
 libs/libgnomecanvasmm/libgnomecanvasmm/text.h
 libs/libgnomecanvasmm/libgnomecanvasmm/widget.h
Copyright:
 1998 EMC Capital Management Inc
 1999 The Gtk-- Development Team
License: LGPL-2+

Files:
 libs/libgnomecanvasmm/libgnomecanvasmm/bpath.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/bpath.h
 libs/libgnomecanvasmm/libgnomecanvasmm/path-def.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/path-def.h
 libs/libgnomecanvasmm/libgnomecanvasmm/pixbuf.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/pixbuf.h
 libs/libgnomecanvasmm/libgnomecanvasmm/rich-text.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/rich-text.h
 libs/libgnomecanvasmm/libgnomecanvasmm/shape.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/shape.h
Copyright:
 2002 The libgnomecanvasmm Development Team
License: LGPL-2+

Files:
 libs/gtkmm2/pango/pangomm/attriter.cc
 libs/gtkmm2/pango/pangomm/attrlist.cc
 libs/gtkmm2/pango/pangomm/context.cc
 libs/gtkmm2/pango/pangomm/coverage.cc
 libs/gtkmm2/pango/pangomm/font.cc
 libs/gtkmm2/pango/pangomm/fontmetrics.cc
Copyright:
 1998-1999 The Gtk-- Development Team
 2001 Free Software Foundation
License: LGPL-2+

Files:
 gtk2_ardour/canvas-curve.h
 gtk2_ardour/canvas-ruler.h
 gtk2_ardour/canvas-simpleline.h
 gtk2_ardour/canvas-simplerect.h
 gtk2_ardour/canvas-waveview.h
Copyright:
 2001, 2003 Paul Davis <pbd@op.net>
License: LGPL-2+

Files:
 libs/clearlooks-newer/clearlooks_rc_style.c
 libs/clearlooks-newer/clearlooks_rc_style.h
 libs/clearlooks-older/clearlooks_rc_style.c
 libs/clearlooks-older/clearlooks_rc_style.h
 libs/clearlooks-older/clearlooks_style.h
Copyright:
 2005 Richard Stellingwerff
License: LGPL-2+

Files:
 libs/ardour/ardour/gdither.h
 libs/ardour/ardour/gdither_types.h
 libs/ardour/ardour/gdither_types_internal.h
 libs/ardour/gdither.cc
Copyright:
 2002 Steve Harris <steve@plugin.org.uk>
License: GPL-2+

Files:
 gtk2_ardour/gettext.h
 libs/ardour/gettext.h
 libs/gtkmm2ext/gettext.h
 libs/pbd/gettext.h
Copyright:
 1995-1998, 2000-2002 Free Software Foundation, Inc
License: LGPL-2+

Files:
 libs/gtkmm2/pango/pangomm.h
 libs/gtkmm2/pango/pangomm/attributes.cc
 libs/gtkmm2/pango/pangomm/glyph.cc
 libs/libgnomecanvasmm/libgnomecanvasmm.h
Copyright:
 1999-2002 Free Software Foundation
License: LGPL-2+

Files:
 gtk2_ardour/gtk-custom-hruler.c
 gtk2_ardour/gtk-custom-hruler.h
 gtk2_ardour/gtk-custom-ruler.c
 gtk2_ardour/gtk-custom-ruler.h
Copyright:
 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
License: LGPL-2+

Files:
 libs/gtkmm2/atk/atkmm/wrap_init.h
 libs/gtkmm2/pango/pangomm/wrap_init.h
 libs/libgnomecanvasmm/libgnomecanvasmm/polygon.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/polygon.h
Copyright:
 1998-2001 The Gtk-- Development Team
License: LGPL-2+

Files:
 libs/glibmm2/glibmm/init.cc
 libs/glibmm2/glibmm/optioncontext.h
 libs/glibmm2/glibmm/optionentry.h
 libs/glibmm2/glibmm/optiongroup.h
Copyright:
 2003 The glibmm Development Team
 2004 The glibmm Development Team
License: LGPL-2+

Files:
 libs/libgnomecanvasmm/libgnomecanvasmm/affinetrans.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/affinetrans.h
 libs/libgnomecanvasmm/libgnomecanvasmm/point.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/point.h
Copyright:
 1999 The gnomemm Development Team
License: LGPL-2+

Files:
 gtk2_ardour/export_range_markers_dialog.h
 gtk2_ardour/export_region_dialog.h
 gtk2_ardour/export_session_dialog.h
Copyright:
 2006 Andre Raue
License: GPL-2+

Files:
 libs/libgnomecanvasmm/libgnomecanvasmm/init.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/init.h
 libs/libgnomecanvasmm/libgnomecanvasmm/wrap_init.h
Copyright:
 1998-2001 The libgnomeuimm Development Team
 2001 The libgnomeuimm Development Team
License: LGPL-2+

Files:
 libs/pbd/pbd/undo.h
 libs/pbd/undo.cc
Copyright:
 2001-2002 Brett Viren & Paul Davis
License: GPL-2+

Files:
 libs/ardour/ardour/mtdm.h
 libs/ardour/mtdm.cc
Copyright:
 2003-2008 Fons Adriaensen <fons@kokkinizita.net>
License: GPL-2+

Files:
 libs/midi++2/coremidi_midiport.cc
 libs/midi++2/midi++/coremidi_midiport.h
Copyright:
 2004 Grame
 2004 Paul Davis
License: GPL-2+

Files:
 libs/pbd/pbd/command.h
 libs/pbd/pbd/memento_command.h
Copyright:
 2006 Hans Fugal
 2006 Paul Davis
License: GPL-2+

Files:
 libs/pbd/pbd/ringbuffer.h
 libs/pbd/pbd/ringbufferNPT.h
Copyright:
 2000 Benno Senoner
 2000 Paul Davis
License: GPL-2+

Files:
 libs/clearlooks-newer/clearlooks_draw_gummy.c
 libs/clearlooks-newer/clearlooks_draw_inverted.c
Copyright:
 2007 Andrea Cimitan
License: LGPL-2+

Files:
 libs/clearlooks-newer/clearlooks_style.c
 libs/clearlooks-newer/support.c
Copyright:
 2005 Richard Stellingwerff
 2007, Benjamin Berg <benjamin@sipsolutions.net>
License: LGPL-2+

Files:
 libs/libgnomecanvasmm/libgnomecanvasmm/properties.cc
 libs/libgnomecanvasmm/libgnomecanvasmm/properties.h
Copyright:
 1999-2002 The Free Software Foundation
License: LGPL-2+

Files:
 libs/gtkmm2/atk/atkmm/init.cc
 libs/gtkmm2/atk/atkmm/init.h
Copyright:
 2003 The atkmm Development Team
License: LGPL-2+

Files:
 libs/pbd/pbd/xml++.h
 libs/pbd/xml++.cc
Copyright:
 2000 Ari Johnson, and
License: LGPL

Files:
 libs/ardour/cycle_timer.cc
Copyright:
 2002 Andrew Morton
License: GPL-2+

Files:
 libs/rubberband/src/main.cpp
Copyright:
 2007-2008 Chris Cannam
License: GPL-2+

Files: ./gtk2_ardour/rgb_macros.h
Copyright: 2000, EMC Capital Management, Inc
License: GPL-2+

Files:
 libs/ardour/pcm_utils.cc
Copyright:
 2006 Paul Davis
 Erik de Castro Lopo
License: GPL-2+

Files:
 libs/glibmm2/scripts/ltmain.sh
Copyright:
 1996-2001, 2003-2007, 2008 Free Software Foundation, Inc
License: GPL-2+

Files:
 gtk2_ardour/utils.cc
Copyright:
 2000 Greg Ercolano <erco@3dsite.com>
 2003 Paul Davis
License: GPL-2+

Files:
 libs/fst/vestige/aeffectx.h
Copyright:
 2006 Javier Serrano Polo <jasp00@users.sourceforge.net>
License: GPL-2+

Files:
 libs/fst/vsti.c
Copyright:
 2004 Kjetil S. Matheussen (k.s.matheussen@notam02.no)
License: GPL-2+

Files:
 libs/surfaces/tranzport/tranzport_control_protocol.h
Copyright:
 2006 Paul Davis
 2007, Mike Taht
License: GPL-2+

Files:
 libs/ardour/audio_unit.cc
Copyright:
 2006-2009, Paul Davis
 Sophia Poirier
License: GPL-2+

Files:
 libs/ardour/ardour/pcm_utils.h
Copyright:
 2006 Paul Davis
 Erik de Castro Lopo
License: GPL-2+

Files:
 libs/ardour/sse_functions_64bit.s
Copyright:
 2005-2006 John Rigg
 2005-2006 Paul Davis
License: GPL-2+

Files:
 libs/ardour/ardour/mix.h
Copyright:
 2005 Sampo Savolainen
License: GPL-2+

Files:
 libs/ardour/ardour/logcurve.h
Copyright:
 2001 Paul Davis
 2001 Steve Harris
License: GPL-2+

Files:
 libs/gtkmm2ext/gtkmm2ext/application.h
Copyright:
 2009 Paul Davis
License: LGPL-2.1

Files:
 libs/clearlooks-newer/clearlooks_draw_glossy.c
Copyright:
 2006 Benjamin Berg
 2007 Andrea Cimitan
License: LGPL-2+

Files:
 libs/clearlooks-newer/clearlooks_draw.c
Copyright:
 2006 Daniel Borgman
 2006 Richard Stellingwerff
 2007 Andrea Cimitan
 2007 Benjamin Berg
License: LGPL-2+

Files:
 libs/clearlooks-newer/clearlooks_style.h
Copyright:
 2005 Richard Stellingwerff
 2006 Benjamin Berg
License: LGPL-2+

Files:
 libs/clearlooks-newer/animation.c
Copyright:
 2006 Benjamin Berg <benjamin@sipsolutions.net>
 2006 Kulyk Nazar <schamane@myeburg.net>
License: LGPL-2+

Files:
 libs/ardour/ardour/spline.h
Copyright:
 1997 David Mosberger
License: LGPL-2+

Files:
 libs/gtkmm2/gtk/gtkmm/layout.cc
Copyright:
 1998 EMC Capital Management Inc
 1998-2002 The gtkmm Development Team
License: LGPL-2+

Files:
 libs/glibmm2/glibmm/class.h
Copyright:
 1998-2002 The gtkmm Development Team
 2001 Free Software Foundation
License: LGPL-2+

Files:
 libs/surfaces/mackie/timer.h
Copyright:
 1998-2000, 2007 John Anderson
License: LGPL-2+

Files:
 gtk2_ardour/canvas-noevent-text.h
Copyright:
 2009 Paul Davis <paul@linuxaudiosystems.com>
License: LGPL-2+

Files:
 libs/gtkmm2/gtk/gtkmm/accelmap.h
Copyright:
 2002 The Gtkmm Development Team
License: LGPL-2+

Files:
 libs/gtkmm2/gtk/gtkmm/aboutdialog.h
Copyright:
 2004 The gtkmm Development Team
License: LGPL-2+

Files:
 libs/glibmm2/glibmm/fileutils.h
Copyright:
 2002 The gtkmm Development Team
License: LGPL-2+

Files:
 libs/gtkmm2/pango/pangomm/init.cc
Copyright:
 2003 The pangomm Development Team
License: LGPL-2+

Files:
 libs/pbd/pbd/compose.h
Copyright:
 2002 Ole Laursen <olau@hardworking.dk>
License: LGPL-2.1+

Files:
 libs/ardour/ardour/ladspa.h
Copyright:
 2000-2002 Richard W.E. Furse, Paul Barton-Davis
License: LGPL-2.1+

Files:
 libs/vamp-plugins/AmplitudeFollower.cpp
 libs/vamp-plugins/AmplitudeFollower.h
Copyright:
 2006 Dan Stowell
License: Expat and other-nopromo-Chris

Files:
 tools/session_exchange.py
Copyright:
 2004-2005 Taybin Rutkin
License: GPL-2+
Comment: 
 From: Paul Davis <paul@linuxaudiosystems.com> 
 To: Jaromír Mikeš <mira.mikes@gmail.com>
 Copy: Debian Multimedia Maintainers <pkg-multimedia-maintainers@lists.alioth.debian.org> 
 Subject: Re: Ardour3 in debian
 Date: Wed Sep 18 13:32:49 UTC 2013
 .
 GPL2+ is taybin's answer (actually, his real answer is that he doesn't care :)
 .
 --p
 .
 On Wed, Sep 18, 2013 at 2:53 AM, Jaromír Mikeš <mira.mikes at gmail.com> wrote:
 .
 >
 > 2013/9/17 Paul Davis <paul at linuxaudiosystems.com>
 >
 >> Since that script (session_exchange.py) no longer works, I suggest you
 >> remove it from your packaging.
 >>
 >> The licensing intent ... I will ask Taybin.
 >>
 >
 > Thank you Paul for prompt answer,
 >
 > removing session_exchange.py would be solution, clarifying from Taybin
 > would be great.
 >
 > mira

Files:
 libs/pbd/pbd/fastlog.h
Copyright:
 unknown. Code by Laurent de Soras <laurent@ohmforce.com>
License: WTFPL-2

Files:
 tools/omf/loader.cc
 tools/omf/omftool.cc
Copyright:
 2009 Hannes Breul
License: zlib

Files:
 libs/libltc/ltc/ltc.h
 libs/libltc/ltc/decoder.h
 libs/libltc/ltc/encoder.h
 libs/libltc/timecode.c
 libs/libltc/ltc.c
 libs/libltc/encoder.c
 libs/libltc/decoder.c
Copyright:
 2006-2012 Robin Gareus <robin@gareus.org>
License: LGPL-3+

Files:
 libs/timecode/timecode/time.h
 libs/timecode/timecode/bbt_time.h
 libs/timecode/src/time.cc
 libs/timecode/src/bbt_time.cc
Copyright:
 2002-2010 Paul Davis
License: LGPL-2+

Files:
 gtk2_ardour/gtk_pianokeyboard.c
Copyright:
 2007, 2008 Edward Tomasz Napiera <trasz@FreeBSD.org>
License: BSD-2-clause

Files:
 libs/pbd/boost-debug/shared_ptr.hpp
Copyright:
 2001, 2002, 2003 Peter Dimov
 1998, 1999 Greg Colvin and Beman Dawes
License: BSL-1.0

Files:
 libs/gtkmm2ext/gtkmm2ext/sync-menu.h
 libs/gtkmm2ext/gtkmm2ext/gtkapplication.h
Copyright:
 2007 Pioneer Research Center USA, Inc / 2007 Imendio AB
License: LGPL-2.1

Files:
 libs/gtkmm2ext/gtkmm2ext/gtkapplication.c
 libs/gtkmm2ext/application.cc
 libs/gtkmm2ext/gtkapplication_x11.c
 libs/gtkmm2ext/gtkmm2ext/gtkapplication-private.h
Copyright:
 2009 Paul Davis / 2007 Imendio AB / 2007 Pioneer Research Center USA, Inc
License: LGPL-2.1

Files:
 libs/rubberband/src/bsd-3rdparty/getopt/getopt.h
 libs/rubberband/src/bsd-3rdparty/getopt/getopt_long.c
Copyright:
 2000 The NetBSD Foundation, Inc
License: BSD-4-clause

Files:
 libs/rubberband/src/bsd-3rdparty/getopt/getopt.c
Copyright:
 1987, 1993, 1994 Regents of the University of California
License: BSD-4-clause

Files:
 libs/evoral/evoral/Control.hpp
 libs/evoral/evoral/Note.hpp
 libs/evoral/evoral/Event.hpp
 libs/evoral/evoral/Curve.hpp
 libs/evoral/evoral/EventSink.hpp
 libs/evoral/evoral/types.hpp
 libs/evoral/evoral/Range.hpp
 libs/evoral/evoral/Parameter.hpp
 libs/evoral/evoral/ControlList.hpp
 libs/evoral/evoral/Sequence.hpp
 libs/evoral/evoral/MIDIEvent.hpp
 libs/evoral/evoral/TypeMap.hpp
 libs/evoral/src/Curve.cpp
 libs/evoral/src/SMF.cpp
 libs/evoral/src/MIDIEvent.cpp
 libs/evoral/src/Sequence.cpp
 libs/evoral/src/midi_util.cpp
 libs/evoral/src/Note.cpp
 libs/evoral/src/ControlList.cpp
 libs/evoral/src/OldSMF.cpp
 libs/evoral/src/ControlSet.cpp
 libs/evoral/src/Control.cpp
 libs/evoral/evoral/MIDIParameters.hpp
 libs/evoral/evoral/ControlSet.hpp
 libs/evoral/evoral/EventRingBuffer.hpp
 libs/evoral/evoral/EventList.hpp
 libs/evoral/evoral/PatchChange.hpp
 libs/evoral/evoral/TimeConverter.hpp
 libs/evoral/src/Event.cpp
Copyright:
 2000-2008 Paul Davis / 2008 David Robillard <http://drobilla.net>
License: GPL-2+

Files:
 libs/evoral/evoral/midi_util.h
 libs/evoral/evoral/SMF.hpp
 libs/evoral/evoral/OldSMF.hpp
 libs/evoral/evoral/SMFReader.hpp
 libs/evoral/test/SMFTest.hpp
 libs/evoral/src/SMFReader.cpp
Copyright:
 2000-2008 Paul Davis / 2008 David Robillard <http://drobilla.net>
License: GPL-2+

Files:
 libs/evoral/evoral/midi_events.h
 libs/midi++2/midi++/events.h
Copyright:
 *No copyright*
License: LGPL-2.1+

Files:
 libs/clearlooks-newer/animation.h
 libs/taglib/admin/config.pl
 libs/taglib/admin/conf.change.pl
Copyright:
 *No copyright*
License: LGPL-2+

Files:
 libs/taglib/tests/test_string.cpp
 libs/taglib/tests/test_list.cpp
 libs/taglib/tests/test_bytevector.cpp
 libs/taglib/tests/test_synchdata.cpp
 libs/taglib/examples/tagreader.cpp
 libs/taglib/examples/tagreader_c.c
 libs/taglib/examples/framelist.cpp
 libs/taglib/examples/strip-id3v1.cpp
 libs/taglib/examples/tagwriter.cpp
Copyright:
 2003 Scott Wheeler <wheeler@kde.org>
License: BSD-2-clause

Files:
 libs/taglib/bindings/c/tag_c.h
 libs/taglib/bindings/c/tag_c.cpp
Copyright:
 2003 Scott Wheeler <wheeler@kde.org>
License: LGPL-2.1

Files:
 libs/taglib/taglib/*
Copyright:
 2002 - 2008 Scott Wheeler
 2004 - 2005 Allan Sandfeld Jensen
 2006 Lukáš Lalinský
 2003 Ismael Orenstein
 2006 Urs Fleisch
License: LGPL-2.1 or MPL-1.1

Files:
 libs/qm-dsp/thread/BlockAllocator.h
Copyright:
 2008 Juha Nieminen
License: Expat

Files:
 libs/ardour/rdff.c
 libs/ardour/lv2_evbuf.h
 libs/ardour/lv2_evbuf.c
 libs/ardour/lv2_evbuf.h
Copyright:
 2008-2012 David Robillard <http://drobilla.net>
License: ISC

Files:
 libs/audiographer/private/sndfile.hh
Copyright:
 2005-2007 Erik de Castro Lopo <erikd@mega-nerd.com>
License: BSD-3-clause

License: GPL-2+
 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.
 .
 Some files differ from above by replacing "this program" with "this
 file".
 .
 On Debian GNU systems, the complete text of the GNU General Public
 License (GPL) version 2 or later can be found in
 '/usr/share/common-licenses/GPL-2'.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

License: LGPL
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation.
 .
 This library 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 Lesser
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Lesser General
 Public License (LGPL) can be found in '/usr/share/common-licenses/LGPL'.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation; either version 2.1 of the License, or
 (at your option) any later version.
 .
 This library 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 Lesser
 General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Lesser General
 Public License (LGPL) version 2.1 or later can be found in
 '/usr/share/common-licenses/LGPL-2.1'.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: LGPL-2+
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Library General Public License as published
 by the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This library 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
 Library General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Library General
 Public License (LGPL - later renamed GNU Lesser General Public License)
 version 2 or later can be found in '/usr/share/common-licenses/LGPL-2'.
 .
 You should have received a copy of the GNU Library General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: LGPL-2.1
 This library is free software; you can redistribute it and/or modify it
 under the terms of the GNU Lesser General Public License as published
 by the Free Software Foundation; version 2.1 of the License.
 .
 This library 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
 Lesser General Public License for more details.
 .
 On Debian GNU systems, the complete text of the GNU Lesser General
 Public License (LGPL) version 2.1 can be found in
 '/usr/share/common-licenses/LGPL-2.1'.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this program.  If not, see
 <http://www.gnu.org/licenses/>.

License: other-GAP-FSF-notice
 This Makefile.in is free software; the Free Software Foundation gives
 unlimited permission to copy and/or distribute it, with or without
 modifications, as long as this notice is preserved.
 .
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 PURPOSE.

License: Expat
 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 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.

License: other-nopromo-Chris
 Except as contained in this notice, the names of the Centre for Digital
 Music; Queen Mary, University of London; and Chris Cannam shall not be
 used in advertising or otherwise to promote the sale, use or other
 dealings in this Software without prior written authorization.

License: other-nopromo-X
 Except as contained in this notice, the name of the X Consortium shall
 not be used in advertising or otherwise to promote the sale, use or
 other dealings in this Software without prior written authorization
 from the X Consortium.

License: other-Apple
 IMPORTANT:  This Apple software is supplied to you by Apple Computer,
 Inc. ("Apple") in consideration of your agreement to the following
 terms, and your use, installation, modification or redistribution of
 this Apple software constitutes acceptance of these terms.  If you do
 not agree with these terms, please do not use, install, modify or
 redistribute this Apple software.
 .
 In consideration of your agreement to abide by the following terms, and
 subject to these terms, Apple grants you a personal, non-exclusive
 license, under Apples copyrights in this original Apple software (the
 "Apple Software"), to use, reproduce, modify and redistribute the Apple
 Software, with or without modifications, in source and/or binary forms;
 provided that if you redistribute the Apple Software in its entirety
 and without modifications, you must retain this notice and the
 following text and disclaimers in all such redistributions of the Apple
 Software.  Neither the name, trademarks, service marks or logos of
 Apple Computer, Inc. may be used to endorse or promote products derived
 from the Apple Software without specific prior written permission from
 Apple.  Except as expressly stated in this notice, no other rights or
 licenses, express or implied, are granted by Apple herein, including
 but not limited to any patent rights that may be infringed by your
 derivative works or by other works in which the Apple Software may be
 incorporated.
 .
 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
 MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
 THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
 FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
 OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
 .
 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
 MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
 AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
 STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.

License: GPL
 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 1, 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.
 .
 Some files differ from above by replacing "this program" with "this
 file".
 .
 On Debian GNU systems, the complete text of the GNU General Public
 License (GPL) version 1 or later can be found in
 '/usr/share/common-licenses/GPL-1'.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

License: WTFPL-2
 This work is free. You can redistribute it and/or modify it under the
 terms of the Do What The Fuck You Want To Public License, Version 2,
 as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.

License: zlib
 This software is provided 'as-is', without any express or implied
 warranty.  In no event will the authors be held liable for any damages
 arising from the use of this software.
 .
 Permission is granted to anyone to use this software for any purpose,
 including commercial applications, and to alter it and redistribute it
 freely, subject to the following restrictions:
 .
 1. The origin of this software must not be misrepresented; you must not
    claim that you wrote the original software. If you use this software
    in a product, an acknowledgment in the product documentation would be
    appreciated but is not required.
 2. Altered source versions must be plainly marked as such, and must not be
    misrepresented as being the original software.
 3. This notice may not be removed or altered from any source distribution.

License: LGPL-3+
 This package is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 3 of the License, or (at your option) any later version.
 .
 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
 Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
X-Comment: On Debian systems, the complete text of the GNU Lesser
 General Public License can be found in `/usr/share/common-licenses/LGPL-3'.
 .
 You should have received a copy of the GNU Lesser General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.

License: BSD-2-clause
 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.

License: BSL-1.0
 Distributed under the Boost Software License, Version 1.0. (See
 accompanying file LICENSE_1_0.txt or copy at
 http://www.boost.org/LICENSE_1_0.txt)

License: BSD-4-clause
 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. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    This product includes software developed by the University of
    California, Berkeley and its contributors.
 4. Neither the name of the University nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.

License: MPL-1.1
 Alternatively, this file is available under the Mozilla Public
 License Version 1.1.  You may obtain a copy of the License at
 http://www.mozilla.org/MPL/

License: ISC
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
 copyright notice and this permission notice appear in all copies.
 .
 THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS 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, DIRECT, 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.

License: BSD-3-clause
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are
 met:
 .
 * Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
 * 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.
 * Neither the author nor the names of any contributors may be used
   to endorse or promote products derived from this software without
   specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "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 COPYRIGHT OWNER OR
 CONTRIBUTORS 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.