aboutsummaryrefslogtreecommitdiff
path: root/devel/pear-PhpDocumentor/Makefile
blob: cb6aa53faf9069bf15210a1db3f8c28a049cf528 (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
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
# Ports collection makefile for:  pear-PhpDocumentor
# Date created:			  17 May 2007
# Whom:				  Gerrit Beine (<gerrit.beine@gmx.de>)
#
# $FreeBSD$
#

PORTNAME=	PhpDocumentor
PORTVERSION=	1.4.3
CATEGORIES=	devel www pear

MAINTAINER=	gerrit.beine@gmx.de
COMMENT=	Provides automatic documenting of php-api from the source

BUILD_DEPENDS=	${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS=	${BUILD_DEPENDS}

CONFLICTS=	pear-PHPDoc-[0-9]*

LATEST_LINK=	pear-${PORTNAME}
OPTIONS=	XML_BEAUTIFIER "XML_Beautifier support" off

CATEGORY=	PhpDocumentor
FILES=		HTML_TreeMenu-1.1.2/TreeMenu.php \
		phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc \
		phpDocumentor/Converters/HTML/frames/HTMLframesConverter.inc \
		phpDocumentor/Converters/HTML/Smarty/HTMLSmartyConverter.inc \
		phpDocumentor/Converters/PDF/default/class.pdf.php \
		phpDocumentor/Converters/PDF/default/class.phpdocpdf.php \
		phpDocumentor/Converters/PDF/default/ParserPDF.inc \
		phpDocumentor/Converters/PDF/default/PDFdefaultConverter.inc \
		phpDocumentor/Converters/PDF/default/class.ezpdf.php \
		phpDocumentor/Converters/XML/DocBook/peardoc2/Plain.php \
		phpDocumentor/Converters/XML/DocBook/peardoc2/Tokenizer.php \
		phpDocumentor/Converters/XML/DocBook/peardoc2/Beautifier.php \
		phpDocumentor/Converters/XML/DocBook/peardoc2/XMLDocBookpeardoc2Converter.inc \
		phpDocumentor/Converters/XML/DocBook/XMLDocBookConverter.inc \
		phpDocumentor/Converters/.peardummy \
		phpDocumentor/Smarty-2.6.0/libs/core/core.assign_smarty_interface.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.create_dir_structure.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.display_debug_console.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.get_include_path.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.get_microtime.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.get_php_resource.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.is_secure.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.is_trusted.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.load_plugins.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.load_resource_plugin.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.process_cached_inserts.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.process_compiled_include.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.read_cache_file.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.rmdir.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.rm_auto.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.run_insert_handler.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.smarty_include_php.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.write_cache_file.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.write_compiled_include.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.write_compiled_resource.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.write_file.php \
		phpDocumentor/Smarty-2.6.0/libs/core/core.assemble_plugin_filepath.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.assign.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.assign_debug_info.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.config_load.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.counter.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.cycle.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.debug.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.eval.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.fetch.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_checkboxes.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_image.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_options.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_radios.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_select_date.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_table.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/block.strip.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.html_select_time.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.mailto.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.math.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.popup.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.popup_init.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/function.var_dump.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.capitalize.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.cat.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_characters.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_paragraphs.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_sentences.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.count_words.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.date_format.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.debug_print_var.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.default.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.escape.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.htmlentities.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.indent.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.lower.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.nl2br.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.rawurlencode.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.regex_replace.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.replace.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.spacify.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.string_format.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.strip_tags.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.truncate.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.upper.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/modifier.wordwrap.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/outputfilter.trimwhitespace.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/shared.escape_special_chars.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/shared.make_timestamp.php \
		phpDocumentor/Smarty-2.6.0/libs/plugins/block.textformat.php \
		phpDocumentor/Smarty-2.6.0/libs/debug.tpl \
		phpDocumentor/Smarty-2.6.0/libs/Smarty.class.php \
		phpDocumentor/Smarty-2.6.0/libs/Smarty_Compiler.class.php \
		phpDocumentor/Smarty-2.6.0/libs/Config_File.class.php \
		phpDocumentor/clone.inc.php \
		phpDocumentor/clone5.inc.php \
		phpDocumentor/common.inc.php \
		phpDocumentor/Converter.inc \
		phpDocumentor/DescHTML.inc \
		phpDocumentor/DocBlockTags.inc \
		phpDocumentor/Errors.inc \
		phpDocumentor/EventStack.inc \
		phpDocumentor/find_phpdoc.php \
		phpDocumentor/HighlightParser.inc \
		phpDocumentor/InlineTags.inc \
		phpDocumentor/IntermediateParser.inc \
		phpDocumentor/Io.inc \
		phpDocumentor/LinkClasses.inc \
		phpDocumentor/PackagePageElements.inc \
		phpDocumentor/Parser.inc \
		phpDocumentor/ParserData.inc \
		phpDocumentor/ParserDescCleanup.inc \
		phpDocumentor/ParserDocBlock.inc \
		phpDocumentor/ParserElements.inc \
		phpDocumentor/phpdoc.inc \
		phpDocumentor/phpDocumentorTParser.inc \
		phpDocumentor/phpDocumentorTWordParser.inc \
		phpDocumentor/ProceduralPages.inc \
		phpDocumentor/Publisher.inc \
		phpDocumentor/Setup.inc.php \
		phpDocumentor/TutorialHighlightParser.inc \
		phpDocumentor/WordParser.inc \
		phpDocumentor/XMLpackagePageParser.inc \
		phpDocumentor/Classes.inc \
		scripts/create_package.xml.php \
		scripts/tokenizer_test.php \
		scripts/add_cvs.php \
		scripts/create_examples.php \
		scripts/makedoc.sh \
		phpDocumentor.ini
DOCS=		Documentation/Release-old/Release-0.2.4 \
		Documentation/Release-old/Release-0.2.5 \
		Documentation/Release-old/Release-0.2.6 \
		Documentation/Release-old/Release-0.3.0 \
		Documentation/Release-old/Release-0.4.0 \
		Documentation/Release-old/Release-0.4.1 \
		Documentation/Release-old/Release-0.4.2 \
		Documentation/Release-old/Release-1.0.0 \
		Documentation/Release-old/Release-1.0.0rc1 \
		Documentation/Release-old/Release-1.1.0 \
		Documentation/Release-old/Release-1.1.0rc1 \
		Documentation/Release-old/Release-1.1.0rc2 \
		Documentation/Release-old/Release-1.2.0 \
		Documentation/Release-old/Release-1.2.0beta1 \
		Documentation/Release-old/Release-1.2.0beta2 \
		Documentation/Release-old/Release-1.2.0beta3 \
		Documentation/Release-old/Release-1.2.0rc1 \
		Documentation/Release-old/Release-1.2.0rc2 \
		Documentation/Release-old/Release-1.2.1 \
		Documentation/Release-old/Release-1.2.2 \
		Documentation/Release-old/Release-1.2.3 \
		Documentation/Release-old/Release-1.2.3.1 \
		Documentation/Release-old/Release-1.3.0 \
		Documentation/Release-old/Release-1.3.1 \
		Documentation/Release-old/Release-1.3.2 \
		Documentation/Release-old/Release-1.4.0alpha1 \
		Documentation/Release-old/Release-1.4.0alpha2 \
		Documentation/Release-old/Release-1.4.0rc1 \
		Documentation/Release-old/Release-1.4.0rc2 \
		Documentation/Release-old/Release-1.4.0 \
		Documentation/Release-old/Release-1.4.1 \
		Documentation/Release-old/Release-1.4.2 \
		Documentation/TODO \
		Documentation/RoadMap \
		tutorials/Converters/CHMdefault/CHMdefaultConverter.cls \
		tutorials/Converters/HTMLframes/HTMLframesConverter.cls \
		tutorials/Converters/HTMLSmarty/HTMLSmartyConverter.cls \
		tutorials/Converters/PDFdefault/PDFParser.cls \
		tutorials/Converters/PDFdefault/PDFdefaultConverter.cls \
		tutorials/Converters/XMLDocBook/XMLDocBookConverter.cls \
		tutorials/Converters/Converter.cls.ini \
		tutorials/Converters/Converter.methods.cls \
		tutorials/Converters/Converters.pkg \
		tutorials/Converters/template.vars.cls \
		tutorials/Converters/Converter.cls \
		tutorials/phpDocumentor/examples/sample2.php \
		tutorials/phpDocumentor/examples/sample3.php \
		tutorials/phpDocumentor/examples/sample1.php \
		tutorials/phpDocumentor/inlinetags.pkg \
		tutorials/phpDocumentor/inlinetags.pkg.ini \
		tutorials/phpDocumentor/manual.pkg \
		tutorials/phpDocumentor/manual.pkg.ini \
		tutorials/phpDocumentor/phpDocumentor.howto.pkg \
		tutorials/phpDocumentor/phpDocumentor.howto.pkg.ini \
		tutorials/phpDocumentor/phpDocumentor.pkg \
		tutorials/phpDocumentor/phpDocumentor.pkg.ini \
		tutorials/phpDocumentor/phpDocumentor.quickstart.pkg \
		tutorials/phpDocumentor/phpDocumentor.quickstart.pkg.ini \
		tutorials/phpDocumentor/sample1.pkg \
		tutorials/phpDocumentor/sample2.pkg \
		tutorials/phpDocumentor/sample3.pkg \
		tutorials/phpDocumentor/tags.abstract.pkg \
		tutorials/phpDocumentor/tags.access.pkg \
		tutorials/phpDocumentor/tags.author.pkg \
		tutorials/phpDocumentor/tags.final.pkg \
		tutorials/phpDocumentor/tags.category.pkg \
		tutorials/phpDocumentor/tags.copyright.pkg \
		tutorials/phpDocumentor/tags.deprecated.pkg \
		tutorials/phpDocumentor/tags.example.pkg \
		tutorials/phpDocumentor/tags.filesource.pkg \
		tutorials/phpDocumentor/tags.global.pkg \
		tutorials/phpDocumentor/tags.ignore.pkg \
		tutorials/phpDocumentor/tags.inlineexample.pkg \
		tutorials/phpDocumentor/tags.inlineid.pkg \
		tutorials/phpDocumentor/tags.inlineinheritdoc.pkg \
		tutorials/phpDocumentor/tags.inlineinternal.pkg \
		tutorials/phpDocumentor/tags.inlinelink.pkg \
		tutorials/phpDocumentor/tags.inlinesource.pkg \
		tutorials/phpDocumentor/tags.inlinetoc.pkg \
		tutorials/phpDocumentor/tags.inlinetutorial.pkg \
		tutorials/phpDocumentor/tags.internal.pkg \
		tutorials/phpDocumentor/tags.license.pkg \
		tutorials/phpDocumentor/tags.pkg \
		tutorials/phpDocumentor/tags.link.pkg \
		tutorials/phpDocumentor/tags.method.pkg \
		tutorials/phpDocumentor/tags.name.pkg \
		tutorials/phpDocumentor/tags.package.pkg \
		tutorials/phpDocumentor/tags.param.pkg \
		tutorials/phpDocumentor/tags.pkg.ini \
		tutorials/phpDocumentor/tags.property.pkg \
		tutorials/phpDocumentor/tags.return.pkg \
		tutorials/phpDocumentor/tags.see.pkg \
		tutorials/phpDocumentor/tags.since.pkg \
		tutorials/phpDocumentor/tags.static.pkg \
		tutorials/phpDocumentor/tags.staticvar.pkg \
		tutorials/phpDocumentor/tags.subpackage.pkg \
		tutorials/phpDocumentor/tags.todo.pkg \
		tutorials/phpDocumentor/tags.tutorial.pkg \
		tutorials/phpDocumentor/tags.uses.pkg \
		tutorials/phpDocumentor/tags.var.pkg \
		tutorials/phpDocumentor/tags.version.pkg \
		tutorials/phpDocumentor/tutorials.pkg \
		tutorials/phpDocumentor/elements.pkg \
		tutorials/.peardummy \
		ChangeLog \
		FAQ \
		INSTALL \
		LICENSE \
		README \
		Release-1.4.3 \
		Authors
TESTS=		Documentation/tests/bug-557861/bug-557861.php \
		Documentation/tests/bug-441278.php \
		Documentation/tests/bug-441287.php \
		Documentation/tests/bug-441289.php \
		Documentation/tests/bug-441433.php \
		Documentation/tests/bug-443153.php \
		Documentation/tests/bug-445298.php \
		Documentation/tests/bug-445305.php \
		Documentation/tests/bug-445820.php \
		Documentation/tests/bug-489398.php \
		Documentation/tests/bug-540341.php \
		Documentation/tests/bug-540368.php \
		Documentation/tests/bug-541886.php \
		Documentation/tests/bug-542586.php \
		Documentation/tests/bug-548331.php \
		Documentation/tests/bug-550489.php \
		Documentation/tests/bug-551120.php \
		Documentation/tests/bug-553137.php \
		Documentation/tests/bug-441275.php \
		Documentation/tests/bug-553138.php \
		Documentation/tests/bug-553560.php \
		Documentation/tests/bug-553607.php \
		Documentation/tests/bug-554712.php \
		Documentation/tests/bug-555768.php \
		Documentation/tests/bug-556031-01.php \
		Documentation/tests/bug-556031.php \
		Documentation/tests/bug-556860.php \
		Documentation/tests/bug-556894.php \
		Documentation/tests/bug-557390.php \
		Documentation/tests/bug-558031.php \
		Documentation/tests/bug-558051.php \
		Documentation/tests/bug-559467.php \
		Documentation/tests/bug-559494.php \
		Documentation/tests/bug-559668.php \
		Documentation/tests/bug-560532.php \
		Documentation/tests/bug-560578.php \
		Documentation/tests/bug-560595.php \
		Documentation/tests/bug-561101.php \
		Documentation/tests/bug-562997.php \
		Documentation/tests/bug-566200.php \
		Documentation/tests/bug-566600.php \
		Documentation/tests/bug-567059.php \
		Documentation/tests/bug-587733.php \
		Documentation/tests/bug-645588.php \
		Documentation/tests/bug-698356.php \
		Documentation/tests/bug-772441.php \
		Documentation/tests/bug-904820.php \
		Documentation/tests/bug-authoremail.php \
		Documentation/tests/bug-defineparse.php \
		Documentation/tests/bug-eofquotes.php \
		Documentation/tests/bug-escaping.php \
		Documentation/tests/bug-loseprocedural.php \
		Documentation/tests/bug-loseunknowntags.php \
		Documentation/tests/bug-pageleveldocsblocks.php \
		Documentation/tests/bug-quote_new_parser.php \
		Documentation/tests/bug-shortdesc.php \
		tests/AllTests.php \
		tests/HighlightParserGetInlineTagsTests.php \
		tests/HighlightParserTests.php \
		tests/IntermediateParserAddPrivatePageTests.php \
		tests/IntermediateParserTests.php \
		tests/ParserClassGetSourceLocationTests.php \
		tests/ParserClassTests.php \
		tests/ParserPageGetSourceLocationTests.php \
		tests/ParserPageTests.php \
		tests/phpDocumentorSetupCleanConverterNamePieceTests.php \
		tests/phpDocumentorSetupDecideOnOrOffTests.php \
		tests/phpDocumentorSetupTests.php \
		tests/phpDocumentorTParserGetInlineTagsTests.php \
		tests/phpDocumentorTParserTests.php \
		Documentation/.peardummy
DATA=		docbuilder/images/ss_CHM_default_default.png \
		docbuilder/images/ss_HTML_frames_default.png \
		docbuilder/images/ss_HTML_frames_DOM-default.png \
		docbuilder/images/ss_HTML_frames_DOM-earthli.png \
		docbuilder/images/ss_HTML_frames_DOM-l0l33t.png \
		docbuilder/images/ss_HTML_frames_DOM-phpdoc.de.png \
		docbuilder/images/ss_HTML_frames_DOM-phphtmllib.png \
		docbuilder/images/ss_HTML_frames_earthli.png \
		docbuilder/images/ss_HTML_frames_l0l33t.png \
		docbuilder/images/ss_HTML_frames_phpdoc.de.png \
		docbuilder/images/ss_HTML_frames_phpedit.png \
		docbuilder/images/ss_HTML_frames_phphtmllib.png \
		docbuilder/images/ss_HTML_Smarty_default.png \
		docbuilder/images/ss_HTML_Smarty_HandS.png \
		docbuilder/images/ss_HTML_Smarty_PHP.png \
		docbuilder/images/ss_PDF_default_default.png \
		docbuilder/images/ss_XML_DocBook-peardoc2_default.png \
		docbuilder/images/rc-gui-install-24.png \
		docbuilder/includes/tabpane.js \
		docbuilder/includes/utilities.php \
		docbuilder/includes/tab.webfx.css \
		docbuilder/blank.html \
		docbuilder/builder.php \
		docbuilder/config.php \
		docbuilder/file_dialog.php \
		docbuilder/index.html \
		docbuilder/top.php \
		docbuilder/actions.php \
		HTML_TreeMenu-1.1.2/images/branchtop.gif \
		HTML_TreeMenu-1.1.2/images/folder.gif \
		HTML_TreeMenu-1.1.2/images/line.gif \
		HTML_TreeMenu-1.1.2/images/linebottom.gif \
		HTML_TreeMenu-1.1.2/images/minus.gif \
		HTML_TreeMenu-1.1.2/images/minusbottom.gif \
		HTML_TreeMenu-1.1.2/images/minustop.gif \
		HTML_TreeMenu-1.1.2/images/plus.gif \
		HTML_TreeMenu-1.1.2/images/plusbottom.gif \
		HTML_TreeMenu-1.1.2/images/plustop.gif \
		HTML_TreeMenu-1.1.2/images/branch.gif \
		HTML_TreeMenu-1.1.2/images/branchbottom.gif \
		HTML_TreeMenu-1.1.2/TreeMenu.js \
		media/images/earthli/abstract_method.png \
		media/images/earthli/abstract_private_class.png \
		media/images/earthli/abstract_private_method.png \
		media/images/earthli/class.png \
		media/images/earthli/class_folder.png \
		media/images/earthli/constant.png \
		media/images/earthli/constructor_method.png \
		media/images/earthli/destructor_method.png \
		media/images/earthli/file.png \
		media/images/earthli/folder.png \
		media/images/earthli/function.png \
		media/images/earthli/function_folder.png \
		media/images/earthli/global.png \
		media/images/earthli/index.png \
		media/images/earthli/lock.png \
		media/images/earthli/method.png \
		media/images/earthli/next_button.png \
		media/images/earthli/package.png \
		media/images/earthli/package_folder.png \
		media/images/earthli/previous_button.png \
		media/images/earthli/private_class.png \
		media/images/earthli/private_method.png \
		media/images/earthli/private_variable.png \
		media/images/earthli/tutorial.png \
		media/images/earthli/tutorial_folder.png \
		media/images/earthli/variable.png \
		media/images/earthli/abstract_class.png \
		media/images/.peardummy \
		media/.peardummy \
		phpDocumentor/Converters/CHM/default/templates/default/templates/media/stylesheet.css \
		phpDocumentor/Converters/CHM/default/templates/default/templates/media/bg_left.png \
		phpDocumentor/Converters/CHM/default/templates/default/templates/blank.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/class.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/classleft.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/classtrees.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/const.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/contents.hhc.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/define.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/docblock.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/elementindex.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/errors.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/fileleft.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/filesource.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/footer.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/function.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/global.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/header.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/hhp.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/include.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/index.hhk.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/index.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/method.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/packages.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/page.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/ric.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/tocentry.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/todolist.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/var.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/templates/basicindex.tpl \
		phpDocumentor/Converters/CHM/default/templates/default/options.ini \
		phpDocumentor/Converters/CHM/default/templates/.peardummy \
		phpDocumentor/Converters/CHM/default/.peardummy \
		phpDocumentor/Converters/CHM/.peardummy \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/default/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/default/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/class_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constant.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constructor.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Destructor.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/file.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/folder.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Function.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/function_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Global.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Index.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Method.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button_disabled.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button_disabled.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateVariable.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/private_class_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticVariable.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/up_button.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Variable.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/bg_left.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/DOM/.peardummy \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/class_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constant.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constructor.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Destructor.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/empty.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/file.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/folder.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Function.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/function_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Global.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Index.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Method.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button_disabled.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button_disabled.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateVariable.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/private_class_logo.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticMethod.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticVariable.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial_folder.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/up_button.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Variable.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass.png \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/earthli/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/bg_left.png \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/l0l33t/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Class.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/classFolder.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constant.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constants.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constructor.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Destructor.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Disk.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/error.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/file.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderClosed.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/foldericon.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderOpened.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Functions.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/GhostClass.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/I.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/L.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lminus.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lplus.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/minus.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgError.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgFatalError.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/T.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgHint.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgInformation.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgWarning.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/openfoldericon.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/plus.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateDataMember.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateMethod.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateProperty.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedDataMember.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedMethod.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedProperty.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicDataMember.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicMethod.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicProperty.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/spacer.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tminus.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tplus.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Types.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Variable.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Vars.gif \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/blank.png \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tab.webfx.css \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tabpane.js \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/ua.js \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/classTree.js \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phpedit/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/stylesheet.css \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/banner.css \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/blank.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/class.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/const.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/define.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/errors.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/footer.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/function.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/global.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/header.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/include.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/index.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/left_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/method.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/page.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/ric.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/top_frame.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/var.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/frames/templates/phphtmllib/options.ini \
		phpDocumentor/Converters/HTML/frames/templates/.peardummy \
		phpDocumentor/Converters/HTML/frames/.peardummy \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/print.css \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/style.css \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/layout.css \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/blank.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/class.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/const.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/define.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/errors.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/fileleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/footer.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/function.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/global.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/header.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/include.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/index.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/layout.css \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/method.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/style.css \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/packages.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/page.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/ric.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/var.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/default/options.ini \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/empty.png \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/logo.png \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/style.css \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/background.png \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/blank.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/class.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtags.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/const.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/define.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/errors.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/fileleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filetags.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/footer.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/function.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/global.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/header.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/include.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/index.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/method.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/packages.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/page.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/ric.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/var.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/HandS/options.ini \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/empty.png \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/style.css \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/background.png \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/blank.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/class.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classtrees.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/const.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/define.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/docblock.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/elementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/errors.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/examplesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/fileleft.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/filesource.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/footer.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/function.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/global.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/header.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/include.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/index.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/method.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/packages.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/todolist.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/page.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/pkgelementindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/ric.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_toc.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_tree.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/var.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/basicindex.tpl \
		phpDocumentor/Converters/HTML/Smarty/templates/PHP/options.ini \
		phpDocumentor/Converters/HTML/Smarty/templates/.peardummy \
		phpDocumentor/Converters/HTML/Smarty/.peardummy \
		phpDocumentor/Converters/HTML/.peardummy \
		phpDocumentor/Converters/PDF/default/templates/default/templates/media/logo.jpg \
		phpDocumentor/Converters/PDF/default/templates/default/templates/class.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/classtree.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/const.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/define.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/docblock.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/examplesource.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/filesource.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/footer.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/function.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/global.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/include.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/index.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/method.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/newpackage_header.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/packagepage.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/page.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/pagenumbering.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/params.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/ric.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/ric_title_page.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/toc.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/source_loop.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/source_title_page.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/title_page.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/todolist.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/tutorial.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/var.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/templates/appendix_title_page.tpl \
		phpDocumentor/Converters/PDF/default/templates/default/options.ini \
		phpDocumentor/Converters/PDF/default/templates/fonts/Courier-BoldOblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Courier-Oblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Courier.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-BoldOblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica-Oblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Helvetica.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-BoldOblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier-Oblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Courier.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-BoldOblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica-Oblique.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Helvetica.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Symbol.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-BoldItalic.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Italic.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_Times-Roman.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/php_ZapfDingbats.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Symbol.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Times-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Times-BoldItalic.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Times-Italic.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Times-Roman.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/ZapfDingbats.afm \
		phpDocumentor/Converters/PDF/default/templates/fonts/Courier-Bold.afm \
		phpDocumentor/Converters/PDF/default/templates/.peardummy \
		phpDocumentor/Converters/PDF/default/.peardummy \
		phpDocumentor/Converters/PDF/.peardummy \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/class.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/class_summary.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/constants.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/docblock.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/errors.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/globals.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/imethods.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/ivars.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/method.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/package.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/tutorial.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/var.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/templates/category.tpl \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/default/options.ini \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates/.peardummy \
		phpDocumentor/Converters/XML/DocBook/peardoc2/.peardummy \
		phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/ivars.tpl \
		phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/tutorial.tpl \
		phpDocumentor/Converters/XML/DocBook/templates/peardoc2/templates/class_summary.tpl \
		phpDocumentor/Converters/XML/DocBook/templates/peardoc2/.peardummy \
		phpDocumentor/Converters/XML/DocBook/templates/.peardummy \
		phpDocumentor/Converters/XML/DocBook/.peardummy \
		phpDocumentor/Converters/XML/.peardummy \
		phpDocumentor/Converters/.peardummy \
		phpDocumentor/Smarty-2.6.0/misc/smarty_icon.README \
		phpDocumentor/Smarty-2.6.0/misc/smarty_icon.gif \
		phpDocumentor/Smarty-2.6.0/ChangeLog \
		phpDocumentor/Smarty-2.6.0/COPYING.lib \
		phpDocumentor/Smarty-2.6.0/FAQ \
		phpDocumentor/Smarty-2.6.0/INSTALL \
		phpDocumentor/Smarty-2.6.0/NEWS \
		phpDocumentor/Smarty-2.6.0/README \
		phpDocumentor/Smarty-2.6.0/RELEASE_NOTES \
		phpDocumentor/Smarty-2.6.0/TODO \
		phpDocumentor/Smarty-2.6.0/BUGS \
		phpDocumentor/.peardummy \
		user/demo.ini \
		user/error.ini \
		user/makedocs.ini \
		user/testdocbook.ini \
		user/default.ini \
		user/pear-makedocs.ini \
		new_phpdoc.php \
		phpdoc.php \
		phpDocumentor.ini \
		poweredbyphpdoc.gif \
		index.html
SCRIPTFILES=	phpdoc

_DOCSDIR=	.
_TESTSDIR=	.
_DATADIR=	.

DUMMYDIRS=	media \
		media/images \
		phpDocumentor \
		phpDocumentor/Converters \
		phpDocumentor/Converters/CHM \
		phpDocumentor/Converters/CHM/default \
		phpDocumentor/Converters/CHM/default/templates \
		phpDocumentor/Converters/HTML \
		phpDocumentor/Converters/HTML/Smarty \
		phpDocumentor/Converters/HTML/Smarty/templates \
		phpDocumentor/Converters/HTML/frames \
		phpDocumentor/Converters/HTML/frames/templates \
		phpDocumentor/Converters/HTML/frames/templates/DOM \
		phpDocumentor/Converters/PDF \
		phpDocumentor/Converters/PDF/default \
		phpDocumentor/Converters/PDF/default/templates \
		phpDocumentor/Converters/XML \
		phpDocumentor/Converters/XML/DocBook \
		phpDocumentor/Converters/XML/DocBook/peardoc2 \
		phpDocumentor/Converters/XML/DocBook/peardoc2/templates \
		phpDocumentor/Converters/XML/DocBook/templates \
		phpDocumentor/Converters/XML/DocBook/templates/peardoc2 \
		tutorials \
		Documentation

SUBFILES=	phpDocumentor/Converter.inc \
		phpDocumentor/IntermediateParser.inc \
		phpDocumentor/Setup.inc.php \
		phpDocumentor/common.inc.php \
		docbuilder/actions.php \
		docbuilder/builder.php \
		docbuilder/config.php \
		docbuilder/file_dialog.php \
		docbuilder/top.php \
		docbuilder/includes/utilities.php \
		user/pear-makedocs.ini

.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"

.if defined(WITH_XML_BEAUTIFIER)
RUN_DEPENDS+=	${PEARDIR}/XML/Beautifier.php:${PORTSDIR}/textproc/pear-XML_Beautifier
.endif

post-patch:
.for file in ${SUBFILES}
	@${REINPLACE_CMD} -e 's|@VER@|${PORTVERSION}|g ; \
		 s|@PEAR-DIR@|${PEARDIR}|g ; \
		 s|@DATA-DIR@|${DATADIR:S,/${PORTNAME}$,,}|g ; \
		 s|@WEB-DIR@|${DATADIR:S,/${PORTNAME}$,,}|g ; \
		 s|@DOC-DIR@|${DOCSDIR:S,/${PORTNAME}$,,}|g' ${WRKSRC}/${file}
.endfor

post-extract:
.for dir in ${DUMMYDIRS}
	touch ${WRKSRC}/${dir}/.peardummy
.endfor

.include <bsd.port.post.mk>