blob: ba3dd1191a55734e8f2636150e7c35473774490e (
plain) (
blame)
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
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
|
bin/tp-magic-config
bin/tuxpaint
bin/tuxpaint-import
@unexec if cmp -s %D/etc/tuxpaint/tuxpaint.conf %D/etc/tuxpaint/tuxpaint.conf.sample; then rm -f %D/etc/tuxpaint/tuxpaint.conf; fi
etc/tuxpaint/tuxpaint.conf.sample
@exec [ -f %D/etc/tuxpaint/tuxpaint.conf ] || cp %D/etc/tuxpaint/tuxpaint.conf.sample %D/etc/tuxpaint/tuxpaint.conf
include/tuxpaint/tp_magic_api.h
lib/tuxpaint/plugins/alien.so
lib/tuxpaint/plugins/blocks_chalk_drip.so
lib/tuxpaint/plugins/blur.so
lib/tuxpaint/plugins/bricks.so
lib/tuxpaint/plugins/calligraphy.so
lib/tuxpaint/plugins/cartoon.so
lib/tuxpaint/plugins/confetti.so
lib/tuxpaint/plugins/distortion.so
lib/tuxpaint/plugins/emboss.so
lib/tuxpaint/plugins/fade_darken.so
lib/tuxpaint/plugins/fill.so
lib/tuxpaint/plugins/fisheye.so
lib/tuxpaint/plugins/flower.so
lib/tuxpaint/plugins/foam.so
lib/tuxpaint/plugins/fold.so
lib/tuxpaint/plugins/glasstile.so
lib/tuxpaint/plugins/grass.so
lib/tuxpaint/plugins/kalidescope.so
lib/tuxpaint/plugins/light.so
lib/tuxpaint/plugins/metalpaint.so
lib/tuxpaint/plugins/mirror_flip.so
lib/tuxpaint/plugins/mosaic.so
lib/tuxpaint/plugins/negative.so
lib/tuxpaint/plugins/noise.so
lib/tuxpaint/plugins/puzzle.so
lib/tuxpaint/plugins/rails.so
lib/tuxpaint/plugins/rain.so
lib/tuxpaint/plugins/rainbow.so
lib/tuxpaint/plugins/realrainbow.so
lib/tuxpaint/plugins/ripples.so
lib/tuxpaint/plugins/rosette.so
lib/tuxpaint/plugins/sharpen.so
lib/tuxpaint/plugins/shift.so
lib/tuxpaint/plugins/smudge.so
lib/tuxpaint/plugins/snow.so
lib/tuxpaint/plugins/string.so
lib/tuxpaint/plugins/tint.so
lib/tuxpaint/plugins/toothpaste.so
lib/tuxpaint/plugins/tornado.so
lib/tuxpaint/plugins/tv.so
lib/tuxpaint/plugins/waves.so
%%PORTDOCS%%%%DOCSDIR%%/ADVANCED-STAMPS-HOWTO.txt
%%PORTDOCS%%%%DOCSDIR%%/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/CHANGES.txt
%%PORTDOCS%%%%DOCSDIR%%/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/EXTENDING.txt
%%PORTDOCS%%%%DOCSDIR%%/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/Makefile
%%PORTDOCS%%%%DOCSDIR%%/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/README.txt
%%PORTDOCS%%%%DOCSDIR%%/SVG.txt
%%PORTDOCS%%%%DOCSDIR%%/af/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/af/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/af/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/af/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/af/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/af/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/af/README.txt
%%PORTDOCS%%%%DOCSDIR%%/be/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/be/COPYING.html
%%PORTDOCS%%%%DOCSDIR%%/be/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/be/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/be/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/be/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/be/README.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/README.txt
%%PORTDOCS%%%%DOCSDIR%%/bg/gplbg.html
%%PORTDOCS%%%%DOCSDIR%%/br/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/br/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/br/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/br/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/br/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/br/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/br/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/ca/README.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/cs/README.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/GPL.html
%%PORTDOCS%%%%DOCSDIR%%/cy/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/cy/README.txt
%%PORTDOCS%%%%DOCSDIR%%/da/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/da/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/da/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/da/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/da/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/da/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/da/README.txt
%%PORTDOCS%%%%DOCSDIR%%/de/ANBRINGEN.txt
%%PORTDOCS%%%%DOCSDIR%%/de/AUTOREN.txt
%%PORTDOCS%%%%DOCSDIR%%/de/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/de/GELESEN_MIR.txt
%%PORTDOCS%%%%DOCSDIR%%/de/KOPIE.txt
%%PORTDOCS%%%%DOCSDIR%%/de/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/de/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/default_colors.txt
%%PORTDOCS%%%%DOCSDIR%%/dejavu.txt
%%PORTDOCS%%%%DOCSDIR%%/dev/Makefile
%%PORTDOCS%%%%DOCSDIR%%/dev/README.txt
%%PORTDOCS%%%%DOCSDIR%%/dev/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/dev/tp_magic_example.c
%%PORTDOCS%%%%DOCSDIR%%/el/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/el/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/el/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/el/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/el/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/el/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/el/README.txt
%%PORTDOCS%%%%DOCSDIR%%/es/AUTORES.txt
%%PORTDOCS%%%%DOCSDIR%%/es/COPIADO.txt
%%PORTDOCS%%%%DOCSDIR%%/es/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/es/INSTALACION.txt
%%PORTDOCS%%%%DOCSDIR%%/es/LEEME.txt
%%PORTDOCS%%%%DOCSDIR%%/es/OPCIONES.txt
%%PORTDOCS%%%%DOCSDIR%%/es/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/es/html/LEEME.html
%%PORTDOCS%%%%DOCSDIR%%/es/html/OPCIONES.html
%%PORTDOCS%%%%DOCSDIR%%/eu/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/eu/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/eu/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/eu/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/eu/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/eu/README.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/fi/README.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/COPIER.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/Makefile
%%PORTDOCS%%%%DOCSDIR%%/fr/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/README1.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/README2.txt
%%PORTDOCS%%%%DOCSDIR%%/fr/html/FAQ.html
%%PORTDOCS%%%%DOCSDIR%%/fr/html/OPTIONS.html
%%PORTDOCS%%%%DOCSDIR%%/fr/html/PNG.html
%%PORTDOCS%%%%DOCSDIR%%/fr/html/README1.html
%%PORTDOCS%%%%DOCSDIR%%/fr/html/README2.html
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/controles_tampon_ds_selecteur.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/fenetre_de_demarrage.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/forme-rotation.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/forme_choix_taille.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/lettre2.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/ligne.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/magic1.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/magic2.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/outil_dessin.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/outil_tampon.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/ouvrir.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/captures/texte1.jpg
%%PORTDOCS%%%%DOCSDIR%%/fr/html/images/tete_de_chien.png
%%PORTDOCS%%%%DOCSDIR%%/gl/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/gl/README.txt
%%PORTDOCS%%%%DOCSDIR%%/gl/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/brush_edit.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/canvas.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/colors.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_colorable.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_lines.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_paint.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_shapes.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_stamps.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_text.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/ex_tintable.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/fontsizes.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/icon-win32.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/open_back.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/open_dialog.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/open_erase.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/open_open.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/saveover.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/selector.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/stamp_edit.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tips.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_eraser.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_lines.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_magic.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_new.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_open.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_paint.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_print.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_quit.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_redo.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_save.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_shapes.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_stamp.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_text.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tool_undo.png
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tools.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tuxpaint-title.jpg
%%PORTDOCS%%%%DOCSDIR%%/gl/html/images/tuxpaint-title.png
%%PORTDOCS%%%%DOCSDIR%%/he/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/he/COPYING.html
%%PORTDOCS%%%%DOCSDIR%%/he/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/he/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/he/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/he/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/he/README.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/hi/README.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/hr/README.txt
%%PORTDOCS%%%%DOCSDIR%%/html/ADVANCED-STAMPS-HOWTO.html
%%PORTDOCS%%%%DOCSDIR%%/html/EXTENDING.html
%%PORTDOCS%%%%DOCSDIR%%/html/FAQ.html
%%PORTDOCS%%%%DOCSDIR%%/html/OPTIONS.html
%%PORTDOCS%%%%DOCSDIR%%/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/html/images/brush_edit.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/canvas.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/colors.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_colorable.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_lines.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_paint.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_shapes.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_stamps.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_text.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/ex_tintable.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/fontsizes.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/icon-win32.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/open_back.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/open_dialog.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/open_erase.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/open_open.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/open_slides.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/saveover.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/selector.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/stamp_edit.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tips.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_eraser.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_lines.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_magic.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_new.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_open.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_paint.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_print.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_quit.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_redo.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_save.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_sfx.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_shapes.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_stamp.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_stamp_categories.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_stamp_controls.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_text.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tool_undo.png
%%PORTDOCS%%%%DOCSDIR%%/html/images/tools.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/tuxpaint-title.jpg
%%PORTDOCS%%%%DOCSDIR%%/html/images/tuxpaint-title.png
%%PORTDOCS%%%%DOCSDIR%%/hu/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/hu/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/hu/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/hu/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/hu/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/hu/README.txt
%%PORTDOCS%%%%DOCSDIR%%/id/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/id/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/id/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/id/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/id/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/id/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/id/README.txt
%%PORTDOCS%%%%DOCSDIR%%/is/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/is/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/is/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/is/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/is/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/is/README.txt
%%PORTDOCS%%%%DOCSDIR%%/it/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/it/COPIATURA.txt
%%PORTDOCS%%%%DOCSDIR%%/it/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/it/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/it/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/it/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/it/README.txt
%%PORTDOCS%%%%DOCSDIR%%/it/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/ja/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/ja/COPYING.html
%%PORTDOCS%%%%DOCSDIR%%/ja/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/ja/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/ja/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/ja/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/ja/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/COPYING.html
%%PORTDOCS%%%%DOCSDIR%%/ko/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/README-utf8.txt
%%PORTDOCS%%%%DOCSDIR%%/ko/README.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/lt/README.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/Makefile
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/blocks.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/blur.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/bricks.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/calligraphy.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/cartoon.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/chalk.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/colorandwhite.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/colorshift.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/confetti.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/darken.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/distortion.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/drip.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/edges.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/emboss.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/fill.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/fisheye.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/flip.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/flower.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/foam.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/fold.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/glasstile.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/grass.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/blocks.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/blur.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/bricks.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/calligraphy.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/cartoon.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/chalk.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/colorandwhite.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/colorshift.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/confetti.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/darken.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/distortion.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/drip.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/edges.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/emboss.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/fill.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/fisheye.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/flip.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/flower.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/foam.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/fold.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/glasstile.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/grass.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/index.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/kaleidoscope.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/light.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/lighten.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/metalpaint.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/mirror.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/negative.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/noise.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/picasso.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/rails.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/rain.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/rainbow.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/realrainbow.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/ripples.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/rosette.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/sharpen.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/shift.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/silhouette.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/smudge.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/snowball.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/snowflake.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/stringcorner.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/stringedges.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/stringv.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/tint.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/toothpaste.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/tv.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/wavelets.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/html/waves.html
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/index.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/kaleidoscope.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/light.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/lighten.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/metalpaint.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/mirror.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/negative.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/noise.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/picasso.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/rails.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/rain.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/rainbow.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/realrainbow.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/ripples.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/rosette.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/sharpen.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/shift.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/silhouette.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/smudge.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/snowball.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/snowflake.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/src/Makefile
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/src/magic-docs.php
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/stringcorner.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/stringedges.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/stringv.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/tint.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/toothpaste.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/tv.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/wavelets.txt
%%PORTDOCS%%%%DOCSDIR%%/magic-docs/waves.txt
%%PORTDOCS%%%%DOCSDIR%%/ms/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/nb/README.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/COPYING_nl.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/README.txt
%%PORTDOCS%%%%DOCSDIR%%/nl/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/nn/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/nn/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/nn/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/nn/INSTALLERING.txt
%%PORTDOCS%%%%DOCSDIR%%/nn/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/nn/README.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/LICENCJA-GNU.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/pl/README.txt
%%PORTDOCS%%%%DOCSDIR%%/pt/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/AUTORES.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/COPYING_pt_BR.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/pt_br/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/ro/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/EXTENDING.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/Makefile
%%PORTDOCS%%%%DOCSDIR%%/ru/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ru/html/EXTENDING.html
%%PORTDOCS%%%%DOCSDIR%%/ru/html/FAQ.html
%%PORTDOCS%%%%DOCSDIR%%/ru/html/OPTIONS.html
%%PORTDOCS%%%%DOCSDIR%%/ru/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/sk/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/README.txt
%%PORTDOCS%%%%DOCSDIR%%/sr/ojl.html
%%PORTDOCS%%%%DOCSDIR%%/sv/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/sv/README.txt
%%PORTDOCS%%%%DOCSDIR%%/ta/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/COPYING_tr.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/tr/README.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/EXTENDING.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/uk/README.txt
%%PORTDOCS%%%%DOCSDIR%%/wa/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/COPYING.html
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/Makefile
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/README.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/html/FAQ.html
%%PORTDOCS%%%%DOCSDIR%%/zh_cn/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/AUTHORS.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/COPYING.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/FAQ.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/GNU_GPL_Chinese.html
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/INSTALL.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/Makefile
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/OPTIONS.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/PNG.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/README.txt
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/html/OPTIONS.html
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/html/README.html
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/mkTuxpaintIM.py
%%PORTDOCS%%%%DOCSDIR%%/zh_tw/phone.cin
share/locale/af/LC_MESSAGES/tuxpaint.mo
share/locale/ar/LC_MESSAGES/tuxpaint.mo
share/locale/ast/LC_MESSAGES/tuxpaint.mo
share/locale/az/LC_MESSAGES/tuxpaint.mo
share/locale/be/LC_MESSAGES/tuxpaint.mo
share/locale/bg/LC_MESSAGES/tuxpaint.mo
share/locale/bo/LC_MESSAGES/tuxpaint.mo
share/locale/br/LC_MESSAGES/tuxpaint.mo
share/locale/ca/LC_MESSAGES/tuxpaint.mo
share/locale/cs/LC_MESSAGES/tuxpaint.mo
share/locale/cy/LC_MESSAGES/tuxpaint.mo
share/locale/da/LC_MESSAGES/tuxpaint.mo
share/locale/de/LC_MESSAGES/tuxpaint.mo
share/locale/el/LC_MESSAGES/tuxpaint.mo
share/locale/en_AU/LC_MESSAGES/tuxpaint.mo
share/locale/en_CA/LC_MESSAGES/tuxpaint.mo
share/locale/en_GB/LC_MESSAGES/tuxpaint.mo
share/locale/en_ZA/LC_MESSAGES/tuxpaint.mo
share/locale/eo/LC_MESSAGES/tuxpaint.mo
share/locale/es/LC_MESSAGES/tuxpaint.mo
share/locale/es_MX/LC_MESSAGES/tuxpaint.mo
share/locale/et/LC_MESSAGES/tuxpaint.mo
share/locale/eu/LC_MESSAGES/tuxpaint.mo
share/locale/fi/LC_MESSAGES/tuxpaint.mo
share/locale/fo/LC_MESSAGES/tuxpaint.mo
share/locale/fr/LC_MESSAGES/tuxpaint.mo
share/locale/ga/LC_MESSAGES/tuxpaint.mo
share/locale/gd/LC_MESSAGES/tuxpaint.mo
share/locale/gl/LC_MESSAGES/tuxpaint.mo
share/locale/gos/LC_MESSAGES/tuxpaint.mo
share/locale/gu/LC_MESSAGES/tuxpaint.mo
share/locale/he/LC_MESSAGES/tuxpaint.mo
share/locale/hi/LC_MESSAGES/tuxpaint.mo
share/locale/hr/LC_MESSAGES/tuxpaint.mo
share/locale/hu/LC_MESSAGES/tuxpaint.mo
share/locale/id/LC_MESSAGES/tuxpaint.mo
share/locale/is/LC_MESSAGES/tuxpaint.mo
share/locale/it/LC_MESSAGES/tuxpaint.mo
share/locale/ja/LC_MESSAGES/tuxpaint.mo
share/locale/ka/LC_MESSAGES/tuxpaint.mo
share/locale/km/LC_MESSAGES/tuxpaint.mo
share/locale/ko/LC_MESSAGES/tuxpaint.mo
share/locale/ku/LC_MESSAGES/tuxpaint.mo
share/locale/lt/LC_MESSAGES/tuxpaint.mo
share/locale/lv/LC_MESSAGES/tuxpaint.mo
share/locale/mk/LC_MESSAGES/tuxpaint.mo
share/locale/ms/LC_MESSAGES/tuxpaint.mo
share/locale/nb/LC_MESSAGES/tuxpaint.mo
share/locale/nl/LC_MESSAGES/tuxpaint.mo
share/locale/nn/LC_MESSAGES/tuxpaint.mo
share/locale/nr/LC_MESSAGES/tuxpaint.mo
share/locale/oc/LC_MESSAGES/tuxpaint.mo
share/locale/oj/LC_MESSAGES/tuxpaint.mo
share/locale/pl/LC_MESSAGES/tuxpaint.mo
share/locale/pt/LC_MESSAGES/tuxpaint.mo
share/locale/pt_BR/LC_MESSAGES/tuxpaint.mo
share/locale/ro/LC_MESSAGES/tuxpaint.mo
share/locale/ru/LC_MESSAGES/tuxpaint.mo
share/locale/rw/LC_MESSAGES/tuxpaint.mo
share/locale/shs/LC_MESSAGES/tuxpaint.mo
share/locale/sk/LC_MESSAGES/tuxpaint.mo
share/locale/sl/LC_MESSAGES/tuxpaint.mo
share/locale/son/LC_MESSAGES/tuxpaint.mo
share/locale/sq/LC_MESSAGES/tuxpaint.mo
share/locale/sr/LC_MESSAGES/tuxpaint.mo
share/locale/sv/LC_MESSAGES/tuxpaint.mo
share/locale/sw/LC_MESSAGES/tuxpaint.mo
share/locale/ta/LC_MESSAGES/tuxpaint.mo
share/locale/te/LC_MESSAGES/tuxpaint.mo
share/locale/th/LC_MESSAGES/tuxpaint.mo
share/locale/tl/LC_MESSAGES/tuxpaint.mo
share/locale/tlh/LC_MESSAGES/tuxpaint.mo
share/locale/tr/LC_MESSAGES/tuxpaint.mo
share/locale/twi/LC_MESSAGES/tuxpaint.mo
share/locale/uk/LC_MESSAGES/tuxpaint.mo
share/locale/ve/LC_MESSAGES/tuxpaint.mo
share/locale/vi/LC_MESSAGES/tuxpaint.mo
share/locale/wa/LC_MESSAGES/tuxpaint.mo
share/locale/wo/LC_MESSAGES/tuxpaint.mo
share/locale/xh/LC_MESSAGES/tuxpaint.mo
share/locale/zam/LC_MESSAGES/tuxpaint.mo
share/locale/zh_CN/LC_MESSAGES/tuxpaint.mo
share/locale/zh_TW/LC_MESSAGES/tuxpaint.mo
share/pixmaps/tuxpaint.png
share/pixmaps/tuxpaint.xpm
%%DATADIR%%/brushes/aa_round_03.png
%%DATADIR%%/brushes/aa_round_06.png
%%DATADIR%%/brushes/aa_round_12.png
%%DATADIR%%/brushes/aa_round_24.png
%%DATADIR%%/brushes/aa_round_36.png
%%DATADIR%%/brushes/aa_round_fuzz.png
%%DATADIR%%/brushes/aa_round_seethru.png
%%DATADIR%%/brushes/aa_round_seethru_05.png
%%DATADIR%%/brushes/aa_round_seethru_10.png
%%DATADIR%%/brushes/arrow_compass_points.dat
%%DATADIR%%/brushes/arrow_compass_points.png
%%DATADIR%%/brushes/arrow_triangles.dat
%%DATADIR%%/brushes/arrow_triangles.png
%%DATADIR%%/brushes/blob.png
%%DATADIR%%/brushes/chisle.png
%%DATADIR%%/brushes/cutout_square_diamond.png
%%DATADIR%%/brushes/cutout_star_circle.png
%%DATADIR%%/brushes/diamond.png
%%DATADIR%%/brushes/flower_5.png
%%DATADIR%%/brushes/flower_5_small.png
%%DATADIR%%/brushes/flower_6.png
%%DATADIR%%/brushes/flower_6_small.png
%%DATADIR%%/brushes/heart.png
%%DATADIR%%/brushes/hexagon.png
%%DATADIR%%/brushes/kuroneko.dat
%%DATADIR%%/brushes/kuroneko.png
%%DATADIR%%/brushes/lines-angled.dat
%%DATADIR%%/brushes/lines-angled.png
%%DATADIR%%/brushes/lozenge.png
%%DATADIR%%/brushes/oval.png
%%DATADIR%%/brushes/pentagon.png
%%DATADIR%%/brushes/slash_10_lt.png
%%DATADIR%%/brushes/slash_10_rt.png
%%DATADIR%%/brushes/slash_16_lt.png
%%DATADIR%%/brushes/slash_16_rt.png
%%DATADIR%%/brushes/slash_20_lt.png
%%DATADIR%%/brushes/slash_20_rt.png
%%DATADIR%%/brushes/sparkles.dat
%%DATADIR%%/brushes/sparkles.png
%%DATADIR%%/brushes/sphere.png
%%DATADIR%%/brushes/spiral.dat
%%DATADIR%%/brushes/spiral.png
%%DATADIR%%/brushes/splat.png
%%DATADIR%%/brushes/spray.dat
%%DATADIR%%/brushes/spray.png
%%DATADIR%%/brushes/square_06.png
%%DATADIR%%/brushes/square_12.png
%%DATADIR%%/brushes/square_24.png
%%DATADIR%%/brushes/square_36.png
%%DATADIR%%/brushes/square_fuzz.png
%%DATADIR%%/brushes/square_seethru.png
%%DATADIR%%/brushes/squirrel.dat
%%DATADIR%%/brushes/squirrel.png
%%DATADIR%%/brushes/star.png
%%DATADIR%%/brushes/tiny.png
%%DATADIR%%/brushes/triangle_down.png
%%DATADIR%%/brushes/triangle_up.png
%%DATADIR%%/brushes/vine.dat
%%DATADIR%%/brushes/vine.png
%%DATADIR%%/brushes/x.png
%%DATADIR%%/fonts/FreeMono.ttf
%%DATADIR%%/fonts/FreeMonoBold.ttf
%%DATADIR%%/fonts/FreeMonoBoldOblique.ttf
%%DATADIR%%/fonts/FreeMonoOblique.ttf
%%DATADIR%%/fonts/FreeSans.ttf
%%DATADIR%%/fonts/FreeSansBold.ttf
%%DATADIR%%/fonts/FreeSansBoldOblique.ttf
%%DATADIR%%/fonts/FreeSansOblique.ttf
%%DATADIR%%/fonts/FreeSerif.ttf
%%DATADIR%%/fonts/FreeSerifBold.ttf
%%DATADIR%%/fonts/FreeSerifBoldItalic.ttf
%%DATADIR%%/fonts/FreeSerifItalic.ttf
%%DATADIR%%/fonts/default_font.ttf
%%DATADIR%%/fonts/locale/ar.ttf
%%DATADIR%%/fonts/locale/ar_docs/COPYING.txt
%%DATADIR%%/fonts/locale/ar_docs/README.txt
%%DATADIR%%/fonts/locale/bo.ttf
%%DATADIR%%/fonts/locale/bo_docs/COPYING.txt
%%DATADIR%%/fonts/locale/bo_docs/README.txt
%%DATADIR%%/fonts/locale/el.ttf
%%DATADIR%%/fonts/locale/el_docs/COPYING.txt
%%DATADIR%%/fonts/locale/el_docs/README.txt
%%DATADIR%%/fonts/locale/gu.ttf
%%DATADIR%%/fonts/locale/gu_docs/COPYING.txt
%%DATADIR%%/fonts/locale/gu_docs/README.txt
%%DATADIR%%/fonts/locale/he.ttf
%%DATADIR%%/fonts/locale/he_docs/COPYING.txt
%%DATADIR%%/fonts/locale/he_docs/README.txt
%%DATADIR%%/fonts/locale/hi.ttf
%%DATADIR%%/fonts/locale/hi_docs/COPYING.txt
%%DATADIR%%/fonts/locale/hi_docs/README.txt
%%DATADIR%%/fonts/locale/ja.ttf
%%DATADIR%%/fonts/locale/ja_docs/COPYING.txt
%%DATADIR%%/fonts/locale/ja_docs/README.txt
%%DATADIR%%/fonts/locale/ka.ttf
%%DATADIR%%/fonts/locale/ka_docs/COPYING.txt
%%DATADIR%%/fonts/locale/ka_docs/README.txt
%%DATADIR%%/fonts/locale/ta.ttf
%%DATADIR%%/fonts/locale/ta_docs/COPYING.txt
%%DATADIR%%/fonts/locale/ta_docs/README.txt
%%DATADIR%%/fonts/locale/te.ttf
%%DATADIR%%/fonts/locale/te_docs/COPYING.txt
%%DATADIR%%/fonts/locale/te_docs/README.txt
%%DATADIR%%/fonts/locale/th.ttf
%%DATADIR%%/fonts/locale/th_docs/COPYING.txt
%%DATADIR%%/fonts/locale/th_docs/README.txt
%%DATADIR%%/fonts/locale/zh_TW.ttf
%%DATADIR%%/fonts/locale/zh_tw_docs/COPYING.txt
%%DATADIR%%/fonts/locale/zh_tw_docs/README.txt
%%DATADIR%%/fonts/locale/zh_tw_docs/do_it.sh
%%DATADIR%%/fonts/locale/zh_tw_docs/maketuxfont.py
%%DATADIR%%/fonts/locale/zh_tw_docs/tuxpaintsubset.pe
%%DATADIR%%/im/ja.im
%%DATADIR%%/im/ko.im
%%DATADIR%%/im/th.im
%%DATADIR%%/im/zh_tw.im
%%DATADIR%%/images/icon-win32.ico
%%DATADIR%%/images/icon.png
%%DATADIR%%/images/icon128x128.png
%%DATADIR%%/images/icon16x16.png
%%DATADIR%%/images/icon192x192.png
%%DATADIR%%/images/icon22x22.png
%%DATADIR%%/images/icon32x32.png
%%DATADIR%%/images/icon32x32.xpm
%%DATADIR%%/images/icon48x48.png
%%DATADIR%%/images/icon64x64.png
%%DATADIR%%/images/icon96x96.png
%%DATADIR%%/images/magic/Snow_flake4.png
%%DATADIR%%/images/magic/Snow_flake5.png
%%DATADIR%%/images/magic/alien.png
%%DATADIR%%/images/magic/blocks.png
%%DATADIR%%/images/magic/blur.png
%%DATADIR%%/images/magic/calligraphy.png
%%DATADIR%%/images/magic/calligraphy_brush.png
%%DATADIR%%/images/magic/cartoon.png
%%DATADIR%%/images/magic/chalk.png
%%DATADIR%%/images/magic/colornwhite.png
%%DATADIR%%/images/magic/confetti.png
%%DATADIR%%/images/magic/darken.png
%%DATADIR%%/images/magic/distortion.png
%%DATADIR%%/images/magic/drip.png
%%DATADIR%%/images/magic/edges.png
%%DATADIR%%/images/magic/emboss.png
%%DATADIR%%/images/magic/fade.png
%%DATADIR%%/images/magic/fill.png
%%DATADIR%%/images/magic/fisheye.png
%%DATADIR%%/images/magic/flip.png
%%DATADIR%%/images/magic/flower.png
%%DATADIR%%/images/magic/flower_base.png
%%DATADIR%%/images/magic/flower_leaf.png
%%DATADIR%%/images/magic/flower_petals.png
%%DATADIR%%/images/magic/foam.png
%%DATADIR%%/images/magic/foam_data.png
%%DATADIR%%/images/magic/fold.png
%%DATADIR%%/images/magic/glasstile.png
%%DATADIR%%/images/magic/grass.png
%%DATADIR%%/images/magic/grass_data.png
%%DATADIR%%/images/magic/kalidescope.png
%%DATADIR%%/images/magic/largebrick.png
%%DATADIR%%/images/magic/light.png
%%DATADIR%%/images/magic/metalpaint.png
%%DATADIR%%/images/magic/mirror.png
%%DATADIR%%/images/magic/mosaic.png
%%DATADIR%%/images/magic/negative.png
%%DATADIR%%/images/magic/noise.png
%%DATADIR%%/images/magic/picasso.png
%%DATADIR%%/images/magic/puzzle.png
%%DATADIR%%/images/magic/rails.png
%%DATADIR%%/images/magic/rails_corner.png
%%DATADIR%%/images/magic/rails_four.png
%%DATADIR%%/images/magic/rails_one.png
%%DATADIR%%/images/magic/rails_three.png
%%DATADIR%%/images/magic/rain.png
%%DATADIR%%/images/magic/rainbow.png
%%DATADIR%%/images/magic/realrainbow-colors.png
%%DATADIR%%/images/magic/realrainbow.png
%%DATADIR%%/images/magic/ripples.png
%%DATADIR%%/images/magic/rosette.png
%%DATADIR%%/images/magic/sharpen.png
%%DATADIR%%/images/magic/shift.png
%%DATADIR%%/images/magic/silhouette.png
%%DATADIR%%/images/magic/smallbrick.png
%%DATADIR%%/images/magic/smudge.png
%%DATADIR%%/images/magic/snowball.png
%%DATADIR%%/images/magic/snowflake.png
%%DATADIR%%/images/magic/string_art_angles.png
%%DATADIR%%/images/magic/string_art_full_by_offset.png
%%DATADIR%%/images/magic/string_art_triangles.png
%%DATADIR%%/images/magic/thick.png
%%DATADIR%%/images/magic/thin.png
%%DATADIR%%/images/magic/tint.png
%%DATADIR%%/images/magic/toothpaste.png
%%DATADIR%%/images/magic/tornado.png
%%DATADIR%%/images/magic/tornado_base.png
%%DATADIR%%/images/magic/tornado_cloud.png
%%DATADIR%%/images/magic/tv.png
%%DATADIR%%/images/magic/wavelet.png
%%DATADIR%%/images/magic/waves.png
%%DATADIR%%/images/shapes/circle.png
%%DATADIR%%/images/shapes/circle_f.png
%%DATADIR%%/images/shapes/diamond.png
%%DATADIR%%/images/shapes/diamond_f.png
%%DATADIR%%/images/shapes/octagon.png
%%DATADIR%%/images/shapes/octagon_f.png
%%DATADIR%%/images/shapes/oval.png
%%DATADIR%%/images/shapes/oval_f.png
%%DATADIR%%/images/shapes/pentagon.png
%%DATADIR%%/images/shapes/pentagon_f.png
%%DATADIR%%/images/shapes/rectangle.png
%%DATADIR%%/images/shapes/rectangle_f.png
%%DATADIR%%/images/shapes/square.png
%%DATADIR%%/images/shapes/square_f.png
%%DATADIR%%/images/shapes/triangle.png
%%DATADIR%%/images/shapes/triangle_f.png
%%DATADIR%%/images/title-credits.png
%%DATADIR%%/images/title-tuxpaint-2x.png
%%DATADIR%%/images/title-tuxpaint.png
%%DATADIR%%/images/title-tuxpaint.svg
%%DATADIR%%/images/title.png
%%DATADIR%%/images/tools/brush.png
%%DATADIR%%/images/tools/eraser.png
%%DATADIR%%/images/tools/lines.png
%%DATADIR%%/images/tools/magic.png
%%DATADIR%%/images/tools/new.png
%%DATADIR%%/images/tools/open.png
%%DATADIR%%/images/tools/print.png
%%DATADIR%%/images/tools/quit.png
%%DATADIR%%/images/tools/redo.png
%%DATADIR%%/images/tools/save.png
%%DATADIR%%/images/tools/sfx.png
%%DATADIR%%/images/tools/shapes.png
%%DATADIR%%/images/tools/speak.png
%%DATADIR%%/images/tools/stamp.png
%%DATADIR%%/images/tools/text.png
%%DATADIR%%/images/tools/undo.png
%%DATADIR%%/images/tux/bored.png
%%DATADIR%%/images/tux/default.png
%%DATADIR%%/images/tux/great.png
%%DATADIR%%/images/tux/kiss.png
%%DATADIR%%/images/tux/oops.png
%%DATADIR%%/images/tux/wait.png
%%DATADIR%%/images/tuxpaint-icon.svg
%%DATADIR%%/images/tuxpaint-installer-icon-32x32.png
%%DATADIR%%/images/tuxpaint-installer-icon-48x48.png
%%DATADIR%%/images/tuxpaint-installer-icon-64x64.png
%%DATADIR%%/images/tuxpaint-installer.ico
%%DATADIR%%/images/ui/back.png
%%DATADIR%%/images/ui/bold.png
%%DATADIR%%/images/ui/btn_down.png
%%DATADIR%%/images/ui/btn_off.png
%%DATADIR%%/images/ui/btn_up.png
%%DATADIR%%/images/ui/btnsm_off.png
%%DATADIR%%/images/ui/btnsm_up.png
%%DATADIR%%/images/ui/color_btn_down.png
%%DATADIR%%/images/ui/color_btn_up.png
%%DATADIR%%/images/ui/color_picker.png
%%DATADIR%%/images/ui/cursor_down.png
%%DATADIR%%/images/ui/cursor_down_large.png
%%DATADIR%%/images/ui/cursor_starter_down.png
%%DATADIR%%/images/ui/cursor_starter_up.png
%%DATADIR%%/images/ui/cursor_up.png
%%DATADIR%%/images/ui/cursor_up_large.png
%%DATADIR%%/images/ui/dead40x40.png
%%DATADIR%%/images/ui/erase.png
%%DATADIR%%/images/ui/flip.png
%%DATADIR%%/images/ui/grow.png
%%DATADIR%%/images/ui/italic.png
%%DATADIR%%/images/ui/magic_fullscreen.png
%%DATADIR%%/images/ui/magic_paint.png
%%DATADIR%%/images/ui/mirror.png
%%DATADIR%%/images/ui/mouse.png
%%DATADIR%%/images/ui/mouse_click.png
%%DATADIR%%/images/ui/next.png
%%DATADIR%%/images/ui/no.png
%%DATADIR%%/images/ui/no_title.png
%%DATADIR%%/images/ui/no_title_large.png
%%DATADIR%%/images/ui/open.png
%%DATADIR%%/images/ui/paintcan.png
%%DATADIR%%/images/ui/paintwell.png
%%DATADIR%%/images/ui/play.png
%%DATADIR%%/images/ui/popup_arrow.png
%%DATADIR%%/images/ui/prev.png
%%DATADIR%%/images/ui/printer.png
%%DATADIR%%/images/ui/printer_wait.png
%%DATADIR%%/images/ui/progress.png
%%DATADIR%%/images/ui/save_over.png
%%DATADIR%%/images/ui/scroll_down.png
%%DATADIR%%/images/ui/scroll_down_off.png
%%DATADIR%%/images/ui/scroll_up.png
%%DATADIR%%/images/ui/scroll_up_off.png
%%DATADIR%%/images/ui/select_digits.png
%%DATADIR%%/images/ui/shrink.png
%%DATADIR%%/images/ui/slideshow.png
%%DATADIR%%/images/ui/sparkles-old.png
%%DATADIR%%/images/ui/title.png
%%DATADIR%%/images/ui/title_large.png
%%DATADIR%%/images/ui/trash.png
%%DATADIR%%/images/ui/yes.png
%%DATADIR%%/sounds/areyousure.wav
%%DATADIR%%/sounds/bleep.wav
%%DATADIR%%/sounds/bubble.wav
%%DATADIR%%/sounds/click.wav
%%DATADIR%%/sounds/eraser1.wav
%%DATADIR%%/sounds/eraser2.wav
%%DATADIR%%/sounds/flip.wav
%%DATADIR%%/sounds/giggle.wav
%%DATADIR%%/sounds/grow.wav
%%DATADIR%%/sounds/harp.wav
%%DATADIR%%/sounds/italic_off.wav
%%DATADIR%%/sounds/italic_on.wav
%%DATADIR%%/sounds/keyclick.wav
%%DATADIR%%/sounds/line_end.wav
%%DATADIR%%/sounds/line_start.wav
%%DATADIR%%/sounds/magic/alien.ogg
%%DATADIR%%/sounds/magic/blocks.wav
%%DATADIR%%/sounds/magic/blur.wav
%%DATADIR%%/sounds/magic/brick.wav
%%DATADIR%%/sounds/magic/calligraphy.ogg
%%DATADIR%%/sounds/magic/cartoon.wav
%%DATADIR%%/sounds/magic/chalk.wav
%%DATADIR%%/sounds/magic/confetti.ogg
%%DATADIR%%/sounds/magic/darken.wav
%%DATADIR%%/sounds/magic/distortion.ogg
%%DATADIR%%/sounds/magic/drip.wav
%%DATADIR%%/sounds/magic/edges.ogg
%%DATADIR%%/sounds/magic/emboss.ogg
%%DATADIR%%/sounds/magic/fade.wav
%%DATADIR%%/sounds/magic/fill.wav
%%DATADIR%%/sounds/magic/fisheye.ogg
%%DATADIR%%/sounds/magic/flip.wav
%%DATADIR%%/sounds/magic/flower_click.ogg
%%DATADIR%%/sounds/magic/flower_release.ogg
%%DATADIR%%/sounds/magic/foam.ogg
%%DATADIR%%/sounds/magic/fold.ogg
%%DATADIR%%/sounds/magic/fold.wav
%%DATADIR%%/sounds/magic/glasstile.ogg
%%DATADIR%%/sounds/magic/grass.wav
%%DATADIR%%/sounds/magic/kaleidoscope.ogg
%%DATADIR%%/sounds/magic/light1.ogg
%%DATADIR%%/sounds/magic/light2.ogg
%%DATADIR%%/sounds/magic/metalpaint.wav
%%DATADIR%%/sounds/magic/mirror.wav
%%DATADIR%%/sounds/magic/mosaic.ogg
%%DATADIR%%/sounds/magic/negative.wav
%%DATADIR%%/sounds/magic/noise.ogg
%%DATADIR%%/sounds/magic/picasso.ogg
%%DATADIR%%/sounds/magic/rails.wav
%%DATADIR%%/sounds/magic/rain.ogg
%%DATADIR%%/sounds/magic/rainbow.wav
%%DATADIR%%/sounds/magic/realrainbow.ogg
%%DATADIR%%/sounds/magic/ripples.ogg
%%DATADIR%%/sounds/magic/sharpen.ogg
%%DATADIR%%/sounds/magic/shift.ogg
%%DATADIR%%/sounds/magic/silhouette.ogg
%%DATADIR%%/sounds/magic/smudge.wav
%%DATADIR%%/sounds/magic/snowball.ogg
%%DATADIR%%/sounds/magic/snowflake.ogg
%%DATADIR%%/sounds/magic/string.ogg
%%DATADIR%%/sounds/magic/string2.ogg
%%DATADIR%%/sounds/magic/string3.ogg
%%DATADIR%%/sounds/magic/thick.wav
%%DATADIR%%/sounds/magic/thin.wav
%%DATADIR%%/sounds/magic/tint.wav
%%DATADIR%%/sounds/magic/toothpaste.ogg
%%DATADIR%%/sounds/magic/tornado_release.ogg
%%DATADIR%%/sounds/magic/tv.ogg
%%DATADIR%%/sounds/magic/wavelet.ogg
%%DATADIR%%/sounds/magic/waves.ogg
%%DATADIR%%/sounds/mirror.wav
%%DATADIR%%/sounds/paint1.wav
%%DATADIR%%/sounds/paint2.wav
%%DATADIR%%/sounds/paint3.wav
%%DATADIR%%/sounds/paint4.wav
%%DATADIR%%/sounds/prompt.wav
%%DATADIR%%/sounds/return.wav
%%DATADIR%%/sounds/save.wav
%%DATADIR%%/sounds/scroll.wav
%%DATADIR%%/sounds/shrink.wav
%%DATADIR%%/sounds/stamp.wav
%%DATADIR%%/sounds/thick.wav
%%DATADIR%%/sounds/thin.wav
%%DATADIR%%/sounds/tuxok.wav
%%DATADIR%%/sounds/typewriterbell.wav
%%DATADIR%%/sounds/youcannot.wav
%%DATADIR%%/stamps/cartoon/tux/tux-drat.dat
%%DATADIR%%/stamps/cartoon/tux/tux-drat.png
%%DATADIR%%/stamps/cartoon/tux/tux-kiss1.dat
%%DATADIR%%/stamps/cartoon/tux/tux-kiss1.png
%%DATADIR%%/stamps/cartoon/tux/tux-kiss2.dat
%%DATADIR%%/stamps/cartoon/tux/tux-kiss2.png
%%DATADIR%%/stamps/cartoon/tux/tux-yay2.dat
%%DATADIR%%/stamps/cartoon/tux/tux-yay2.png
%%DATADIR%%/stamps/cartoon/tux/tux-yes1.dat
%%DATADIR%%/stamps/cartoon/tux/tux-yes1.png
%%DATADIR%%/stamps/cartoon/tux/tux-yes2.dat
%%DATADIR%%/stamps/cartoon/tux/tux-yes2.png
%%DATADIR%%/starters/Jigsaw_3x3.png
%%DATADIR%%/starters/Jigsaw_5x5.png
%%DATADIR%%/starters/carcassone.png
%%DATADIR%%/starters/chessboard-back.png
%%DATADIR%%/starters/chessboard.png
%%DATADIR%%/starters/chicken.png
%%DATADIR%%/starters/grid_10x10.png
%%DATADIR%%/starters/grid_20x20.png
%%DATADIR%%/starters/jetplane.png
%%DATADIR%%/starters/jigsaw.png
%%DATADIR%%/starters/jigsaw.svg
%%DATADIR%%/starters/nagasaki.png
%%DATADIR%%/starters/nagasaki.svg
%%DATADIR%%/starters/reef-back.png
%%DATADIR%%/starters/reef.png
%%DATADIR%%/starters/reef.txt
%%DATADIR%%/starters/rocket.png
%%DATADIR%%/starters/shipwreck.png
%%DATADIR%%/starters/silver_frame.png
%%DATADIR%%/starters/skyline-sf-dusk-back.jpeg
%%DATADIR%%/starters/skyline-sf-dusk.png
%%DATADIR%%/starters/skyline-sf-dusk.txt
%%DATADIR%%/starters/spirograph.png
%%DATADIR%%/starters/spirograph.svg
%%DATADIR%%/starters/street.png
%%DATADIR%%/starters/tux_farmer.png
%%DATADIR%%/starters/worldmap.png
%%DATADIR%%/starters/worldmap_africa.png
%%DATADIR%%/starters/worldmap_america_north.png
%%DATADIR%%/starters/worldmap_america_north_usa-back.png
%%DATADIR%%/starters/worldmap_america_north_usa.png
%%DATADIR%%/starters/worldmap_america_south.png
%%DATADIR%%/starters/worldmap_asia_north.png
%%DATADIR%%/starters/worldmap_asia_south.png
%%DATADIR%%/starters/worldmap_australasia.png
%%DATADIR%%/starters/worldmap_canada.png
%%DATADIR%%/starters/worldmap_europe.png
%%DATADIR%%/starters/worldmap_japan.png
@dirrm %%DATADIR%%/starters
@dirrm %%DATADIR%%/stamps/cartoon/tux
@dirrm %%DATADIR%%/stamps/cartoon
@dirrm %%DATADIR%%/stamps
@dirrm %%DATADIR%%/sounds/magic
@dirrm %%DATADIR%%/sounds
@dirrm %%DATADIR%%/images/ui
@dirrm %%DATADIR%%/images/tux
@dirrm %%DATADIR%%/images/tools
@dirrm %%DATADIR%%/images/shapes
@dirrm %%DATADIR%%/images/magic
@dirrm %%DATADIR%%/images
@dirrm %%DATADIR%%/im
@dirrm %%DATADIR%%/fonts/locale/zh_tw_docs
@dirrm %%DATADIR%%/fonts/locale/th_docs
@dirrm %%DATADIR%%/fonts/locale/te_docs
@dirrm %%DATADIR%%/fonts/locale/ta_docs
@dirrm %%DATADIR%%/fonts/locale/ka_docs
@dirrm %%DATADIR%%/fonts/locale/ja_docs
@dirrm %%DATADIR%%/fonts/locale/hi_docs
@dirrm %%DATADIR%%/fonts/locale/he_docs
@dirrm %%DATADIR%%/fonts/locale/gu_docs
@dirrm %%DATADIR%%/fonts/locale/el_docs
@dirrm %%DATADIR%%/fonts/locale/bo_docs
@dirrm %%DATADIR%%/fonts/locale/ar_docs
@dirrm %%DATADIR%%/fonts/locale
@dirrm %%DATADIR%%/fonts
@dirrm %%DATADIR%%/brushes
@dirrm %%DATADIR%%
@dirrmtry share/locale/zam/LC_MESSAGES
@dirrmtry share/locale/zam
@dirrmtry share/locale/wo/LC_MESSAGES
@dirrmtry share/locale/wo
@dirrmtry share/locale/ve/LC_MESSAGES
@dirrmtry share/locale/ve
@dirrmtry share/locale/twi/LC_MESSAGES
@dirrmtry share/locale/twi
@dirrmtry share/locale/tlh/LC_MESSAGES
@dirrmtry share/locale/tlh
@dirrmtry share/locale/sw/LC_MESSAGES
@dirrmtry share/locale/sw
@dirrmtry share/locale/son/LC_MESSAGES
@dirrmtry share/locale/son
@dirrmtry share/locale/shs/LC_MESSAGES
@dirrmtry share/locale/shs
@dirrmtry share/locale/oj/LC_MESSAGES
@dirrmtry share/locale/oj
@dirrmtry share/locale/nr/LC_MESSAGES
@dirrmtry share/locale/nr
@dirrmtry share/locale/km/LC_MESSAGES
@dirrmtry share/locale/km
@dirrmtry share/locale/gos/LC_MESSAGES
@dirrmtry share/locale/gos
@dirrmtry share/locale/gd/LC_MESSAGES
@dirrmtry share/locale/gd
@dirrmtry share/locale/fo/LC_MESSAGES
@dirrmtry share/locale/fo
@dirrmtry share/locale/en_ZA/LC_MESSAGES
@dirrmtry share/locale/en_ZA
@dirrmtry share/locale/bo/LC_MESSAGES
@dirrmtry share/locale/bo
@dirrmtry share/locale/ast/LC_MESSAGES
@dirrmtry share/locale/ast
%%PORTDOCS%%@dirrm %%DOCSDIR%%/zh_tw/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/zh_tw
%%PORTDOCS%%@dirrm %%DOCSDIR%%/zh_cn/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/zh_cn
%%PORTDOCS%%@dirrm %%DOCSDIR%%/wa
%%PORTDOCS%%@dirrm %%DOCSDIR%%/uk
%%PORTDOCS%%@dirrm %%DOCSDIR%%/tr
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ta
%%PORTDOCS%%@dirrm %%DOCSDIR%%/sv
%%PORTDOCS%%@dirrm %%DOCSDIR%%/sr
%%PORTDOCS%%@dirrm %%DOCSDIR%%/sk
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ru/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ru
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ro
%%PORTDOCS%%@dirrm %%DOCSDIR%%/pt_br
%%PORTDOCS%%@dirrm %%DOCSDIR%%/pt
%%PORTDOCS%%@dirrm %%DOCSDIR%%/pl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/nn
%%PORTDOCS%%@dirrm %%DOCSDIR%%/nl/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/nl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/nb
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ms
%%PORTDOCS%%@dirrm %%DOCSDIR%%/magic-docs/src
%%PORTDOCS%%@dirrm %%DOCSDIR%%/magic-docs/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/magic-docs
%%PORTDOCS%%@dirrm %%DOCSDIR%%/lt
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ko
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ja
%%PORTDOCS%%@dirrm %%DOCSDIR%%/it/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/it
%%PORTDOCS%%@dirrm %%DOCSDIR%%/is
%%PORTDOCS%%@dirrm %%DOCSDIR%%/id
%%PORTDOCS%%@dirrm %%DOCSDIR%%/hu
%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/images
%%PORTDOCS%%@dirrm %%DOCSDIR%%/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/hr
%%PORTDOCS%%@dirrm %%DOCSDIR%%/hi
%%PORTDOCS%%@dirrm %%DOCSDIR%%/he
%%PORTDOCS%%@dirrm %%DOCSDIR%%/gl/html/images
%%PORTDOCS%%@dirrm %%DOCSDIR%%/gl/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/gl
%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr/html/images/captures
%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr/html/images
%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr
%%PORTDOCS%%@dirrm %%DOCSDIR%%/fi
%%PORTDOCS%%@dirrm %%DOCSDIR%%/eu
%%PORTDOCS%%@dirrm %%DOCSDIR%%/es/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/es
%%PORTDOCS%%@dirrm %%DOCSDIR%%/el
%%PORTDOCS%%@dirrm %%DOCSDIR%%/dev/html
%%PORTDOCS%%@dirrm %%DOCSDIR%%/dev
%%PORTDOCS%%@dirrm %%DOCSDIR%%/de
%%PORTDOCS%%@dirrm %%DOCSDIR%%/da
%%PORTDOCS%%@dirrm %%DOCSDIR%%/cy
%%PORTDOCS%%@dirrm %%DOCSDIR%%/cs
%%PORTDOCS%%@dirrm %%DOCSDIR%%/ca
%%PORTDOCS%%@dirrm %%DOCSDIR%%/br
%%PORTDOCS%%@dirrm %%DOCSDIR%%/bg
%%PORTDOCS%%@dirrm %%DOCSDIR%%/be
%%PORTDOCS%%@dirrm %%DOCSDIR%%/af
%%PORTDOCS%%@dirrm %%DOCSDIR%%
@dirrm lib/tuxpaint/plugins
@dirrm lib/tuxpaint
@dirrm include/tuxpaint
@dirrmtry etc/tuxpaint
|