ewall / zentray

Systray status monitor for Zenoss -- for a better alternative, see http://sourceforge.net/projects/zapplet/

zentray / ZenTrayIcon.nsi
100644 3708 lines (3689 sloc) 214.863 kb
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
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
; Script generated by the HM NIS Edit Script Wizard.
 
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "ZenTrayIcon"
!define PRODUCT_VERSION "0.1"
!define PRODUCT_PUBLISHER "Todd Davis"
!define PRODUCT_WEB_SITE "http://www.zenoss.com"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\w9xpopen.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
!define PRODUCT_STARTMENU_REGVAL "NSIS:StartMenuDir"
 
; MUI 1.67 compatible ------
!include "MUI.nsh"
 
; MUI Settings
!define MUI_ABORTWARNING
!define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico"
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
 
; Welcome page
!insertmacro MUI_PAGE_WELCOME
; License page
!insertmacro MUI_PAGE_LICENSE "COPYRIGHT"
; Directory page
!insertmacro MUI_PAGE_DIRECTORY
; Start menu page
var ICONS_GROUP
!define MUI_STARTMENUPAGE_NODISABLE
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "ZenTrayIcon"
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "${PRODUCT_UNINST_KEY}"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "${PRODUCT_STARTMENU_REGVAL}"
!insertmacro MUI_PAGE_STARTMENU Application $ICONS_GROUP
; Instfiles page
!insertmacro MUI_PAGE_INSTFILES
; Finish page
!define MUI_FINISHPAGE_RUN "$INSTDIR\zentrayicon.exe"
!insertmacro MUI_PAGE_FINISH
 
; Uninstaller pages
!insertmacro MUI_UNPAGE_INSTFILES
 
; Language files
!insertmacro MUI_LANGUAGE "English"
 
; MUI end ------
 
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
OutFile "ZenTrayIcon-Setup.exe"
InstallDir "$PROGRAMFILES\ZenTrayIcon"
InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" ""
ShowInstDetails show
ShowUnInstDetails show
 
Section "ZenTrayIcon" SEC01
  SetOutPath "$INSTDIR"
  SetOverwrite try
  File "dist\py2exe\atexit.pyc"
  File "dist\py2exe\atk.pyc"
  File "dist\py2exe\atk.pyd"
  File "dist\py2exe\base64.pyc"
  File "dist\py2exe\bisect.pyc"
  File "dist\py2exe\bz2.pyc"
  File "dist\py2exe\bz2.pyd"
  SetOutPath "$INSTDIR\cairo"
  File "dist\py2exe\cairo\_cairo.pyc"
  File "dist\py2exe\cairo\__init__.pyc"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\calendar.pyc"
  File "dist\py2exe\codecs.pyc"
  File "dist\py2exe\ConfigParser.pyc"
  File "dist\py2exe\cookielib.pyc"
  File "dist\py2exe\copy.pyc"
  File "dist\py2exe\copy_reg.pyc"
  File "dist\py2exe\dis.pyc"
  File "dist\py2exe\dummy_thread.pyc"
  File "dist\py2exe\dummy_threading.pyc"
  SetOutPath "$INSTDIR\email"
  File "dist\py2exe\email\base64MIME.pyc"
  File "dist\py2exe\email\Charset.pyc"
  File "dist\py2exe\email\Encoders.pyc"
  File "dist\py2exe\email\Errors.pyc"
  File "dist\py2exe\email\FeedParser.pyc"
  File "dist\py2exe\email\Generator.pyc"
  File "dist\py2exe\email\Header.pyc"
  File "dist\py2exe\email\Iterators.pyc"
  File "dist\py2exe\email\Message.pyc"
  File "dist\py2exe\email\Parser.pyc"
  File "dist\py2exe\email\quopriMIME.pyc"
  File "dist\py2exe\email\Utils.pyc"
  File "dist\py2exe\email\_parseaddr.pyc"
  File "dist\py2exe\email\__init__.pyc"
  SetOutPath "$INSTDIR\encodings"
  File "dist\py2exe\encodings\aliases.pyc"
  File "dist\py2exe\encodings\ascii.pyc"
  File "dist\py2exe\encodings\base64_codec.pyc"
  File "dist\py2exe\encodings\big5.pyc"
  File "dist\py2exe\encodings\big5hkscs.pyc"
  File "dist\py2exe\encodings\bz2_codec.pyc"
  File "dist\py2exe\encodings\charmap.pyc"
  File "dist\py2exe\encodings\cp037.pyc"
  File "dist\py2exe\encodings\cp1006.pyc"
  File "dist\py2exe\encodings\cp1026.pyc"
  File "dist\py2exe\encodings\cp1140.pyc"
  File "dist\py2exe\encodings\cp1250.pyc"
  File "dist\py2exe\encodings\cp1251.pyc"
  File "dist\py2exe\encodings\cp1252.pyc"
  File "dist\py2exe\encodings\cp1253.pyc"
  File "dist\py2exe\encodings\cp1254.pyc"
  File "dist\py2exe\encodings\cp1255.pyc"
  File "dist\py2exe\encodings\cp1256.pyc"
  File "dist\py2exe\encodings\cp1257.pyc"
  File "dist\py2exe\encodings\cp1258.pyc"
  File "dist\py2exe\encodings\cp424.pyc"
  File "dist\py2exe\encodings\cp437.pyc"
  File "dist\py2exe\encodings\cp500.pyc"
  File "dist\py2exe\encodings\cp737.pyc"
  File "dist\py2exe\encodings\cp775.pyc"
  File "dist\py2exe\encodings\cp850.pyc"
  File "dist\py2exe\encodings\cp852.pyc"
  File "dist\py2exe\encodings\cp855.pyc"
  File "dist\py2exe\encodings\cp856.pyc"
  File "dist\py2exe\encodings\cp857.pyc"
  File "dist\py2exe\encodings\cp860.pyc"
  File "dist\py2exe\encodings\cp861.pyc"
  File "dist\py2exe\encodings\cp862.pyc"
  File "dist\py2exe\encodings\cp863.pyc"
  File "dist\py2exe\encodings\cp864.pyc"
  File "dist\py2exe\encodings\cp865.pyc"
  File "dist\py2exe\encodings\cp866.pyc"
  File "dist\py2exe\encodings\cp869.pyc"
  File "dist\py2exe\encodings\cp874.pyc"
  File "dist\py2exe\encodings\cp875.pyc"
  File "dist\py2exe\encodings\cp932.pyc"
  File "dist\py2exe\encodings\cp949.pyc"
  File "dist\py2exe\encodings\cp950.pyc"
  File "dist\py2exe\encodings\euc_jisx0213.pyc"
  File "dist\py2exe\encodings\euc_jis_2004.pyc"
  File "dist\py2exe\encodings\euc_jp.pyc"
  File "dist\py2exe\encodings\euc_kr.pyc"
  File "dist\py2exe\encodings\gb18030.pyc"
  File "dist\py2exe\encodings\gb2312.pyc"
  File "dist\py2exe\encodings\gbk.pyc"
  File "dist\py2exe\encodings\hex_codec.pyc"
  File "dist\py2exe\encodings\hp_roman8.pyc"
  File "dist\py2exe\encodings\hz.pyc"
  File "dist\py2exe\encodings\idna.pyc"
  File "dist\py2exe\encodings\iso2022_jp.pyc"
  File "dist\py2exe\encodings\iso2022_jp_1.pyc"
  File "dist\py2exe\encodings\iso2022_jp_2.pyc"
  File "dist\py2exe\encodings\iso2022_jp_2004.pyc"
  File "dist\py2exe\encodings\iso2022_jp_3.pyc"
  File "dist\py2exe\encodings\iso2022_jp_ext.pyc"
  File "dist\py2exe\encodings\iso2022_kr.pyc"
  File "dist\py2exe\encodings\iso8859_1.pyc"
  File "dist\py2exe\encodings\iso8859_10.pyc"
  File "dist\py2exe\encodings\iso8859_11.pyc"
  File "dist\py2exe\encodings\iso8859_13.pyc"
  File "dist\py2exe\encodings\iso8859_14.pyc"
  File "dist\py2exe\encodings\iso8859_15.pyc"
  File "dist\py2exe\encodings\iso8859_16.pyc"
  File "dist\py2exe\encodings\iso8859_2.pyc"
  File "dist\py2exe\encodings\iso8859_3.pyc"
  File "dist\py2exe\encodings\iso8859_4.pyc"
  File "dist\py2exe\encodings\iso8859_5.pyc"
  File "dist\py2exe\encodings\iso8859_6.pyc"
  File "dist\py2exe\encodings\iso8859_7.pyc"
  File "dist\py2exe\encodings\iso8859_8.pyc"
  File "dist\py2exe\encodings\iso8859_9.pyc"
  File "dist\py2exe\encodings\johab.pyc"
  File "dist\py2exe\encodings\koi8_r.pyc"
  File "dist\py2exe\encodings\koi8_u.pyc"
  File "dist\py2exe\encodings\latin_1.pyc"
  File "dist\py2exe\encodings\mac_cyrillic.pyc"
  File "dist\py2exe\encodings\mac_greek.pyc"
  File "dist\py2exe\encodings\mac_iceland.pyc"
  File "dist\py2exe\encodings\mac_latin2.pyc"
  File "dist\py2exe\encodings\mac_roman.pyc"
  File "dist\py2exe\encodings\mac_turkish.pyc"
  File "dist\py2exe\encodings\mbcs.pyc"
  File "dist\py2exe\encodings\palmos.pyc"
  File "dist\py2exe\encodings\ptcp154.pyc"
  File "dist\py2exe\encodings\punycode.pyc"
  File "dist\py2exe\encodings\quopri_codec.pyc"
  File "dist\py2exe\encodings\raw_unicode_escape.pyc"
  File "dist\py2exe\encodings\rot_13.pyc"
  File "dist\py2exe\encodings\shift_jis.pyc"
  File "dist\py2exe\encodings\shift_jisx0213.pyc"
  File "dist\py2exe\encodings\shift_jis_2004.pyc"
  File "dist\py2exe\encodings\string_escape.pyc"
  File "dist\py2exe\encodings\tis_620.pyc"
  File "dist\py2exe\encodings\undefined.pyc"
  File "dist\py2exe\encodings\unicode_escape.pyc"
  File "dist\py2exe\encodings\unicode_internal.pyc"
  File "dist\py2exe\encodings\utf_16.pyc"
  File "dist\py2exe\encodings\utf_16_be.pyc"
  File "dist\py2exe\encodings\utf_16_le.pyc"
  File "dist\py2exe\encodings\utf_7.pyc"
  File "dist\py2exe\encodings\utf_8.pyc"
  File "dist\py2exe\encodings\uu_codec.pyc"
  File "dist\py2exe\encodings\zlib_codec.pyc"
  File "dist\py2exe\encodings\__init__.pyc"
  SetOutPath "$INSTDIR\etc\fonts\conf.avail"
  File "dist\py2exe\etc\fonts\conf.avail\10-autohint.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-no-sub-pixel.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-sub-pixel-bgr.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-sub-pixel-rgb.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-sub-pixel-vbgr.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-sub-pixel-vrgb.conf"
  File "dist\py2exe\etc\fonts\conf.avail\10-unhinted.conf"
  File "dist\py2exe\etc\fonts\conf.avail\20-fix-globaladvance.conf"
  File "dist\py2exe\etc\fonts\conf.avail\20-lohit-gujarati.conf"
  File "dist\py2exe\etc\fonts\conf.avail\20-unhint-small-vera.conf"
  File "dist\py2exe\etc\fonts\conf.avail\30-amt-aliases.conf"
  File "dist\py2exe\etc\fonts\conf.avail\30-urw-aliases.conf"
  File "dist\py2exe\etc\fonts\conf.avail\40-generic.conf"
  File "dist\py2exe\etc\fonts\conf.avail\49-sansserif.conf"
  File "dist\py2exe\etc\fonts\conf.avail\50-user.conf"
  File "dist\py2exe\etc\fonts\conf.avail\51-local.conf"
  File "dist\py2exe\etc\fonts\conf.avail\60-latin.conf"
  File "dist\py2exe\etc\fonts\conf.avail\65-fonts-persian.conf"
  File "dist\py2exe\etc\fonts\conf.avail\65-nonlatin.conf"
  File "dist\py2exe\etc\fonts\conf.avail\69-unifont.conf"
  File "dist\py2exe\etc\fonts\conf.avail\70-no-bitmaps.conf"
  File "dist\py2exe\etc\fonts\conf.avail\70-yes-bitmaps.conf"
  File "dist\py2exe\etc\fonts\conf.avail\80-delicious.conf"
  File "dist\py2exe\etc\fonts\conf.avail\90-synthetic.conf"
  File "dist\py2exe\etc\fonts\conf.avail\README"
  SetOutPath "$INSTDIR\etc\fonts\conf.d"
  File "dist\py2exe\etc\fonts\conf.d\20-fix-globaladvance.conf"
  File "dist\py2exe\etc\fonts\conf.d\20-lohit-gujarati.conf"
  File "dist\py2exe\etc\fonts\conf.d\20-unhint-small-vera.conf"
  File "dist\py2exe\etc\fonts\conf.d\30-amt-aliases.conf"
  File "dist\py2exe\etc\fonts\conf.d\30-urw-aliases.conf"
  File "dist\py2exe\etc\fonts\conf.d\40-generic.conf"
  File "dist\py2exe\etc\fonts\conf.d\49-sansserif.conf"
  File "dist\py2exe\etc\fonts\conf.d\50-user.conf"
  File "dist\py2exe\etc\fonts\conf.d\51-local.conf"
  File "dist\py2exe\etc\fonts\conf.d\60-latin.conf"
  File "dist\py2exe\etc\fonts\conf.d\65-fonts-persian.conf"
  File "dist\py2exe\etc\fonts\conf.d\65-nonlatin.conf"
  File "dist\py2exe\etc\fonts\conf.d\69-unifont.conf"
  File "dist\py2exe\etc\fonts\conf.d\80-delicious.conf"
  File "dist\py2exe\etc\fonts\conf.d\90-synthetic.conf"
  SetOutPath "$INSTDIR\etc\fonts"
  File "dist\py2exe\etc\fonts\fonts.conf"
  File "dist\py2exe\etc\fonts\fonts.dtd"
  SetOutPath "$INSTDIR\etc\gtk-2.0"
  File "dist\py2exe\etc\gtk-2.0\gdk-pixbuf.loaders"
  File "dist\py2exe\etc\gtk-2.0\gtk.immodules"
  File "dist\py2exe\etc\gtk-2.0\gtkrc"
  SetOutPath "$INSTDIR\etc\pango"
  File "dist\py2exe\etc\pango\pango.aliases"
  File "dist\py2exe\etc\pango\pango.modules"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\fnmatch.pyc"
  File "dist\py2exe\ftplib.pyc"
  File "dist\py2exe\getopt.pyc"
  File "dist\py2exe\getpass.pyc"
  File "dist\py2exe\glade.pyd"
  File "dist\py2exe\glob.pyc"
  SetOutPath "$INSTDIR\gobject"
  File "dist\py2exe\gobject\_gobject.pyc"
  File "dist\py2exe\gobject\__init__.pyc"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\gopherlib.pyc"
  SetOutPath "$INSTDIR\gtk"
  File "dist\py2exe\gtk\deprecation.pyc"
  File "dist\py2exe\gtk\glade.pyc"
  File "dist\py2exe\gtk\_gtk.pyc"
  File "dist\py2exe\gtk\_lazyutils.pyc"
  File "dist\py2exe\gtk\__init__.pyc"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\httplib.pyc"
  File "dist\py2exe\iconv.dll"
  File "dist\py2exe\inspect.pyc"
  File "dist\py2exe\intl.dll"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\art_lgpl_2.lib"
  File "dist\py2exe\lib\asprintf.lib"
  File "dist\py2exe\lib\atk-1.0.lib"
  File "dist\py2exe\lib\bz2.lib"
  File "dist\py2exe\lib\cairo.lib"
  File "dist\py2exe\lib\charset.alias"
  File "dist\py2exe\lib\charset.lib"
  File "dist\py2exe\lib\croco-0.6.lib"
  File "dist\py2exe\lib\fontconfig.lib"
  File "dist\py2exe\lib\freetype.lib"
  File "dist\py2exe\lib\gdk-win32-2.0.lib"
  File "dist\py2exe\lib\gdkglext-win32-1.0.lib"
  File "dist\py2exe\lib\gdk_pixbuf-2.0.lib"
  File "dist\py2exe\lib\glade-2.0.lib"
  SetOutPath "$INSTDIR\lib\glib-2.0\include"
  File "dist\py2exe\lib\glib-2.0\include\glibconfig.h"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\glib-2.0.lib"
  File "dist\py2exe\lib\gmodule-2.0.lib"
  File "dist\py2exe\lib\gobject-2.0.lib"
  File "dist\py2exe\lib\gsf-1.lib"
  File "dist\py2exe\lib\gsf-win32-1.lib"
  File "dist\py2exe\lib\gthread-2.0.lib"
  SetOutPath "$INSTDIR\lib\gtk-2.0\2.10.0\engines"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\engines\libpixmap.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\engines\libsvg.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\engines\libwimp.dll"
  SetOutPath "$INSTDIR\lib\gtk-2.0\2.10.0\immodules"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-am-et.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-cedilla.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-cyrillic-translit.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-ime.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-inuktitut.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-ipa.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-thai.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-ti-er.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-ti-et.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\immodules\im-viqr.dll"
  SetOutPath "$INSTDIR\lib\gtk-2.0\2.10.0\loaders"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ani.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-bmp.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-gif.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ico.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-jpeg.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pcx.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-png.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pnm.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ras.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tga.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tiff.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-wbmp.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xbm.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xpm.dll"
  File "dist\py2exe\lib\gtk-2.0\2.10.0\loaders\svg_loader.dll"
  SetOutPath "$INSTDIR\lib\gtk-2.0\2.4.0\engines"
  File "dist\py2exe\lib\gtk-2.0\2.4.0\engines\libmetal.dll"
  File "dist\py2exe\lib\gtk-2.0\2.4.0\engines\libredmond95.dll"
  SetOutPath "$INSTDIR\lib\gtk-2.0\include"
  File "dist\py2exe\lib\gtk-2.0\include\gdkconfig.h"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\gtk-win32-2.0.lib"
  SetOutPath "$INSTDIR\lib\gtkglext-1.0\include"
  File "dist\py2exe\lib\gtkglext-1.0\include\gdkglext-config.h"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\gtkglext-win32-1.0.lib"
  File "dist\py2exe\lib\iconv.lib"
  File "dist\py2exe\lib\intl.lib"
  File "dist\py2exe\lib\jpeg.lib"
  File "dist\py2exe\lib\libart_lgpl_2.dll.a"
  File "dist\py2exe\lib\libatk-1.0.dll.a"
  File "dist\py2exe\lib\libbz2.dll.a"
  File "dist\py2exe\lib\libcairo.dll.a"
  File "dist\py2exe\lib\libcroco-0.6.dll.a"
  File "dist\py2exe\lib\libfontconfig.dll.a"
  File "dist\py2exe\lib\libfreetype.dll.a"
  File "dist\py2exe\lib\libgdk-win32-2.0.dll.a"
  File "dist\py2exe\lib\libgdkglext-win32-1.0.dll.a"
  File "dist\py2exe\lib\libgdk_pixbuf-2.0.dll.a"
  File "dist\py2exe\lib\libglade-2.0.dll.a"
  File "dist\py2exe\lib\libglib-2.0.dll.a"
  File "dist\py2exe\lib\libgmodule-2.0.dll.a"
  File "dist\py2exe\lib\libgobject-2.0.dll.a"
  File "dist\py2exe\lib\libgsf-1.dll.a"
  File "dist\py2exe\lib\libgsf-win32-1.dll.a"
  File "dist\py2exe\lib\libgthread-2.0.dll.a"
  File "dist\py2exe\lib\libgtk-win32-2.0.dll.a"
  File "dist\py2exe\lib\libgtkglext-win32-1.0.dll.a"
  File "dist\py2exe\lib\libgw32c.a"
  File "dist\py2exe\lib\libiconv.dll.a"
  File "dist\py2exe\lib\libintl.dll.a"
  File "dist\py2exe\lib\libjpeg.dll.a"
  File "dist\py2exe\lib\libpango-1.0.dll.a"
  File "dist\py2exe\lib\libpangocairo-1.0.dll.a"
  File "dist\py2exe\lib\libpangoft2-1.0.dll.a"
  File "dist\py2exe\lib\libpangowin32-1.0.dll.a"
  File "dist\py2exe\lib\libpng.dll.a"
  File "dist\py2exe\lib\libpng12.dll.a"
  File "dist\py2exe\lib\libpopt.dll.a"
  File "dist\py2exe\lib\librsvg-2.dll.a"
  File "dist\py2exe\lib\libtiff.dll.a"
  File "dist\py2exe\lib\libxml2.dll.a"
  File "dist\py2exe\lib\libz.dll.a"
  SetOutPath "$INSTDIR\lib\pango\1.6.0\modules"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-arabic-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-arabic-lang.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-basic-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-basic-win32.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-hangul-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-hebrew-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-indic-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-indic-lang.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-khmer-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-syriac-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-thai-fc.dll"
  File "dist\py2exe\lib\pango\1.6.0\modules\pango-tibetan-fc.dll"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\pango-1.0.lib"
  File "dist\py2exe\lib\pangocairo-1.0.lib"
  File "dist\py2exe\lib\pangoft2-1.0.lib"
  File "dist\py2exe\lib\pangowin32-1.0.lib"
  SetOutPath "$INSTDIR\lib\pkgconfig"
  File "dist\py2exe\lib\pkgconfig\atk.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-ft.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-pdf.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-png.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-ps.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-svg.pc"
  File "dist\py2exe\lib\pkgconfig\cairo-win32.pc"
  File "dist\py2exe\lib\pkgconfig\cairo.pc"
  File "dist\py2exe\lib\pkgconfig\fontconfig.pc"
  File "dist\py2exe\lib\pkgconfig\freetype2.pc"
  File "dist\py2exe\lib\pkgconfig\gdk-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gdk-pixbuf-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gdk-win32-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gdkglext-1.0.pc"
  File "dist\py2exe\lib\pkgconfig\gdkglext-win32-1.0.pc"
  File "dist\py2exe\lib\pkgconfig\glib-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gmodule-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gmodule-export-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gmodule-no-export-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gobject-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gthread-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gtk+-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gtk+-unix-print-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gtk+-win32-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\gtk-engines-2.pc"
  File "dist\py2exe\lib\pkgconfig\gtkglext-1.0.pc"
  File "dist\py2exe\lib\pkgconfig\gtkglext-win32-1.0.pc"
  File "dist\py2exe\lib\pkgconfig\libart-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\libcroco-0.6.pc"
  File "dist\py2exe\lib\pkgconfig\libglade-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\libgsf-1.pc"
  File "dist\py2exe\lib\pkgconfig\libgsf-win32-1.pc"
  File "dist\py2exe\lib\pkgconfig\libpng.pc"
  File "dist\py2exe\lib\pkgconfig\libpng12.pc"
  File "dist\py2exe\lib\pkgconfig\librsvg-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\libxml-2.0.pc"
  File "dist\py2exe\lib\pkgconfig\pango.pc"
  File "dist\py2exe\lib\pkgconfig\pangocairo.pc"
  File "dist\py2exe\lib\pkgconfig\pangoft2.pc"
  File "dist\py2exe\lib\pkgconfig\pangowin32.pc"
  SetOutPath "$INSTDIR\lib"
  File "dist\py2exe\lib\png.lib"
  File "dist\py2exe\lib\popt.lib"
  File "dist\py2exe\lib\rsvg-2.lib"
  File "dist\py2exe\lib\tiff.lib"
  File "dist\py2exe\lib\xml2.lib"
  File "dist\py2exe\lib\xml2Conf.sh"
  File "dist\py2exe\lib\z.lib"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\libatk-1.0-0.dll"
  File "dist\py2exe\libcairo-2.dll"
  File "dist\py2exe\libfontconfig-1.dll"
  File "dist\py2exe\libfreetype-6.dll"
  File "dist\py2exe\libgdk-win32-2.0-0.dll"
  File "dist\py2exe\libgdk_pixbuf-2.0-0.dll"
  File "dist\py2exe\libglade-2.0-0.dll"
  File "dist\py2exe\libglib-2.0-0.dll"
  File "dist\py2exe\libgmodule-2.0-0.dll"
  File "dist\py2exe\libgobject-2.0-0.dll"
  File "dist\py2exe\libgthread-2.0-0.dll"
  File "dist\py2exe\libgtk-win32-2.0-0.dll"
  File "dist\py2exe\libpango-1.0-0.dll"
  File "dist\py2exe\libpangocairo-1.0-0.dll"
  File "dist\py2exe\libpangoft2-1.0-0.dll"
  File "dist\py2exe\libpangowin32-1.0-0.dll"
  File "dist\py2exe\libpng12.dll"
  File "dist\py2exe\libxml2.dll"
  File "dist\py2exe\linecache.pyc"
  File "dist\py2exe\locale.pyc"
  SetOutPath "$INSTDIR\logging"
  File "dist\py2exe\logging\__init__.pyc"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\macpath.pyc"
  File "dist\py2exe\macurl2path.pyc"
  File "dist\py2exe\mimetools.pyc"
  File "dist\py2exe\mimetypes.pyc"
  File "dist\py2exe\MSVCR71.dll"
  File "dist\py2exe\ntpath.pyc"
  File "dist\py2exe\nturl2path.pyc"
  File "dist\py2exe\opcode.pyc"
  File "dist\py2exe\os.pyc"
  File "dist\py2exe\os2emxpath.pyc"
  File "dist\py2exe\pango.pyc"
  File "dist\py2exe\pango.pyd"
  File "dist\py2exe\pangocairo.pyc"
  File "dist\py2exe\pangocairo.pyd"
  File "dist\py2exe\popen2.pyc"
  File "dist\py2exe\posixpath.pyc"
  File "dist\py2exe\pygtk.pyc"
  File "dist\py2exe\python24.dll"
  File "dist\py2exe\quopri.pyc"
  File "dist\py2exe\random.pyc"
  File "dist\py2exe\re.pyc"
  File "dist\py2exe\repr.pyc"
  File "dist\py2exe\rfc822.pyc"
  SetOutPath "$INSTDIR\share\aclocal"
  File "dist\py2exe\share\aclocal\freetype2.m4"
  File "dist\py2exe\share\aclocal\glib-2.0.m4"
  File "dist\py2exe\share\aclocal\glib-gettext.m4"
  File "dist\py2exe\share\aclocal\gtk-2.0.m4"
  File "dist\py2exe\share\aclocal\gtkglext-1.0.m4"
  File "dist\py2exe\share\aclocal\iconv.m4"
  File "dist\py2exe\share\aclocal\lib-ld.m4"
  File "dist\py2exe\share\aclocal\lib-link.m4"
  File "dist\py2exe\share\aclocal\lib-prefix.m4"
  File "dist\py2exe\share\aclocal\libxml.m4"
  File "dist\py2exe\share\aclocal\pkg.m4"
  SetOutPath "$INSTDIR\share\doc\fontconfig\fontconfig-devel"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\index.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1016.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1042.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1064.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1087.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1111.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1134.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1159.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1184.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r120.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1209.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1234.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1259.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1281.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1306.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1331.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1356.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1383.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r141.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1414.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1437.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1460.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1486.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1515.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1545.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1575.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1608.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r162.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1629.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1650.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1672.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1693.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1715.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1736.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1758.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1780.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1802.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1823.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r183.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1847.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1868.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1890.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1913.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1936.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1959.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r1980.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2009.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2034.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r204.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2062.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2099.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2130.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2157.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2181.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2207.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2231.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2255.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r228.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2280.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2304.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2328.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2350.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2378.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2399.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2420.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2443.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2469.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r249.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2491.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2513.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2535.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2557.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2579.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2600.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2621.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2646.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2682.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r270.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2717.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2745.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2770.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2791.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2816.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2841.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2866.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2892.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2914.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2936.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r295.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2958.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r2983.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3012.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3037.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3069.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3102.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3138.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3161.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3184.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3209.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r323.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r3231.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r344.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r372.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r401.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r476.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r504.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r591.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r632.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r655.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r676.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r704.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r726.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r750.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r771.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r792.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r818.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r839.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r862.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r883.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r917.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r940.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r963.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r99.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\r994.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\x19.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\x31.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel\x93.html"
  SetOutPath "$INSTDIR\share\doc\fontconfig"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-devel.txt"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-user.html"
  File "dist\py2exe\share\doc\fontconfig\fontconfig-user.txt"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27"
  File "dist\py2exe\share\doc\libxml2-2.6.27\Copyright"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\examples"
  File "dist\py2exe\share\doc\libxml2-2.6.27\examples\testHTML.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\examples\testSAX.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\examples\testXPath.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\examples\xmllint.c"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\DOM.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\encoding.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\examples.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\examples.xsl"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\FAQ.html"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\book1.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\home.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\index.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\left.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-c14n.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-catalog.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-chvalid.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-debugXML.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-dict.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-DOCBparser.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-encoding.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-entities.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-globals.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-hash.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-HTMLparser.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-HTMLtree.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-lib.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-list.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-nanoftp.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-nanohttp.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-parser.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-parserInternals.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-pattern.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-relaxng.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-SAX.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-SAX2.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-schemasInternals.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-schematron.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-threads.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-tree.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-uri.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-valid.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xinclude.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xlink.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlautomata.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlerror.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlexports.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlIO.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlmemory.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlmodule.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlreader.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlregexp.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlsave.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlschemas.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlschemastypes.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlstring.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlunicode.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlversion.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xmlwriter.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xpath.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xpathInternals.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\libxml-xpointer.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\right.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\html\up.png"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\index.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\io1.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\io1.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\io2.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\io2.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\libxml.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\Libxml2-Logo-180x168.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\Libxml2-Logo-90x34.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\parse1.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\parse2.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\parse3.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\parse4.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader1.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader1.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader2.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader3.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader3.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader4.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\reader4.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\redhat.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\smallfootonly.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\structure.gif"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\test1.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\test2.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\test3.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\testWriter.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tree1.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tree1.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tree2.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tree2.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tst.xml"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apa.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apb.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apc.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apd.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ape.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apf.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\apg.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\aph.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\api.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s02.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s03.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s04.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s05.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s06.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s07.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s08.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ar01s09.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\customfo.xsl"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\customhtml.xsl"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\blank.png"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\1.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\10.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\2.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\3.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\4.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\5.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\6.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\7.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\8.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\9.png"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\caution.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\draft.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\home.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\important.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\next.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\note.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\prev.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\tip.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\toc-blank.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\toc-minus.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\toc-plus.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\up.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\images\warning.png"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includeaddattribute.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includeaddkeyword.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includeconvert.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includegetattribute.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includekeyword.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includestory.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\includexpath.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\index.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\ix01.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\xmltutorial.pdf"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\tutorial\xmltutorial.xml"
  SetOutPath "$INSTDIR\share\doc\libxml2-2.6.27\html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\w3c.png"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\writer.xml"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\xml.html"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\xpath1.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\xpath1.res"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\xpath2.c"
  File "dist\py2exe\share\doc\libxml2-2.6.27\html\xpath2.res"
  SetOutPath "$INSTDIR\share\doc\zentrayicon"
  File "dist\py2exe\share\doc\zentrayicon\COPYRIGHT"
  SetOutPath "$INSTDIR\share\glade-2\gtk"
  File "dist\py2exe\share\glade-2\gtk\autogen.sh"
  SetOutPath "$INSTDIR\share\glib-2.0\gettext"
  File "dist\py2exe\share\glib-2.0\gettext\mkinstalldirs"
  SetOutPath "$INSTDIR\share\glib-2.0\gettext\po"
  File "dist\py2exe\share\glib-2.0\gettext\po\Makefile.in.in"
  SetOutPath "$INSTDIR\share\gtk-2.0\demo"
  File "dist\py2exe\share\gtk-2.0\demo\alphatest.png"
  File "dist\py2exe\share\gtk-2.0\demo\apple-red.png"
  File "dist\py2exe\share\gtk-2.0\demo\appwindow.c"
  File "dist\py2exe\share\gtk-2.0\demo\assistant.c"
  File "dist\py2exe\share\gtk-2.0\demo\background.jpg"
  File "dist\py2exe\share\gtk-2.0\demo\button_box.c"
  File "dist\py2exe\share\gtk-2.0\demo\changedisplay.c"
  File "dist\py2exe\share\gtk-2.0\demo\clipboard.c"
  File "dist\py2exe\share\gtk-2.0\demo\colorsel.c"
  File "dist\py2exe\share\gtk-2.0\demo\combobox.c"
  File "dist\py2exe\share\gtk-2.0\demo\dialog.c"
  File "dist\py2exe\share\gtk-2.0\demo\drawingarea.c"
  File "dist\py2exe\share\gtk-2.0\demo\editable_cells.c"
  File "dist\py2exe\share\gtk-2.0\demo\entry_completion.c"
  File "dist\py2exe\share\gtk-2.0\demo\expander.c"
  File "dist\py2exe\share\gtk-2.0\demo\floppybuddy.gif"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-applets.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-calendar.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-foot.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-fs-directory.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-fs-regular.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-gimp.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-gmush.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnome-gsame.png"
  File "dist\py2exe\share\gtk-2.0\demo\gnu-keys.png"
  File "dist\py2exe\share\gtk-2.0\demo\gtk-logo-rgb.gif"
  File "dist\py2exe\share\gtk-2.0\demo\hypertext.c"
  File "dist\py2exe\share\gtk-2.0\demo\iconview.c"
  File "dist\py2exe\share\gtk-2.0\demo\iconview_edit.c"
  File "dist\py2exe\share\gtk-2.0\demo\images.c"
  File "dist\py2exe\share\gtk-2.0\demo\list_store.c"
  File "dist\py2exe\share\gtk-2.0\demo\menus.c"
  File "dist\py2exe\share\gtk-2.0\demo\panes.c"
  File "dist\py2exe\share\gtk-2.0\demo\pickers.c"
  File "dist\py2exe\share\gtk-2.0\demo\pixbufs.c"
  File "dist\py2exe\share\gtk-2.0\demo\printing.c"
  File "dist\py2exe\share\gtk-2.0\demo\rotated_text.c"
  File "dist\py2exe\share\gtk-2.0\demo\sizegroup.c"
  File "dist\py2exe\share\gtk-2.0\demo\stock_browser.c"
  File "dist\py2exe\share\gtk-2.0\demo\textscroll.c"
  File "dist\py2exe\share\gtk-2.0\demo\textview.c"
  File "dist\py2exe\share\gtk-2.0\demo\tree_store.c"
  File "dist\py2exe\share\gtk-2.0\demo\ui_manager.c"
  SetOutPath "$INSTDIR\share\gtk-doc\html\cairo"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-errors.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-fonts.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-memory.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-overloading.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-path.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-patterns.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-return-values.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-streams.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\bindings-surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-cairo-font-face-t.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-cairo-matrix-t.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-cairo-surface-t.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-cairo-t.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Error-handling.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Font-Options.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-FreeType-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Image-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Paths.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Patterns.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-PDF-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-PNG-Support.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-PostScript-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Scaled-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-SVG-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Text.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Transformations.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Types.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Version-Information.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Win32-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-Win32-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo-XLib-Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo.devhelp"
  File "dist\py2exe\share\gtk-doc\html\cairo\cairo.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\cairo\Drawing.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\home.png"
  File "dist\py2exe\share\gtk-doc\html\cairo\index.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\cairo\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\language-bindings.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\left.png"
  File "dist\py2exe\share\gtk-doc\html\cairo\pt01.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\pt02.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\right.png"
  File "dist\py2exe\share\gtk-doc\html\cairo\style.css"
  File "dist\py2exe\share\gtk-doc\html\cairo\Support.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\Surfaces.html"
  File "dist\py2exe\share\gtk-doc\html\cairo\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\gdk"
  File "dist\py2exe\share\gtk-doc\html\gdk\arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\based_arrow_down.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\based_arrow_up.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\boat.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\bogosity.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\bottom_left_corner.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\bottom_right_corner.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\bottom_side.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\bottom_tee.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\box_spiral.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\center_ptr.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\circle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\clock.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\coffee_mug.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\cross.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\crosshair.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\cross_reverse.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\diamond_cross.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\dot.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\dotbox.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\double_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\draft_large.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\draft_small.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\draped_box.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\exchange.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\fleur.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Bitmaps-and-Pixmaps.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Cairo-Interaction.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Colormaps-and-Colors.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Cursors.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Drag-and-Drop.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Drawing-Primitives.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Event-Structures.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Events.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-GdkRGB.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-General.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Graphics-Contexts.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Images.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Input-Devices.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Input.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Keyboard-Handling.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Pango-Interaction.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Pixbufs.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Points-Rectangles-and-Regions.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Properties-and-Atoms.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Selections.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Threads.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Visuals.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-Windows.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk-X-Window-System-Interaction.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk.devhelp"
  File "dist\py2exe\share\gtk-doc\html\gdk\gdk.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\gdk\GdkDisplay.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\GdkDisplayManager.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\GdkScreen.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\gobbler.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\gumby.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\hand1.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\hand2.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\heart.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\home.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\icon.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\index.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\gdk\iron_cross.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\ix07.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\left.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\leftbutton.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\left_ptr.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\left_side.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\left_tee.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\ll_angle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\lr_angle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\man.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\middlebutton.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\mouse.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\multihead.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\pencil.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\pirate.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\plus.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\question_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\reference.html"
  File "dist\py2exe\share\gtk-doc\html\gdk\right.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\rightbutton.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\right_ptr.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\right_side.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\right_tee.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\rotated-text.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\rtl_logo.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sailboat.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_down_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_h_double_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_left_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_right_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_up_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sb_v_double_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\shuttle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\sizing.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\spider.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\spraycan.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\star.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\style.css"
  File "dist\py2exe\share\gtk-doc\html\gdk\target.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\tcross.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\top_left_arrow.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\top_left_corner.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\top_right_corner.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\top_side.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\top_tee.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\trek.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\ul_angle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\umbrella.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\up.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\ur_angle.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\watch.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\xterm.png"
  File "dist\py2exe\share\gtk-doc\html\gdk\X_cursor.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\gdk-pixbuf"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\apa.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\apas02.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\apas03.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\composite.png"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-animation.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-creating.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-csource.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-file-loading.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-file-saving.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-from-drawables.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-rendering.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-init.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-rendering.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-rgb.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-inline.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-Module-Interface.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-query-loaders.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-refcounting.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-scaling.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-util.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-Versioning.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf.devhelp"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\GdkPixbufLoader.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\home.png"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\index.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\left.png"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\license.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\right.png"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\rn01.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\rn02.html"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\style.css"
  File "dist\py2exe\share\gtk-doc\html\gdk-pixbuf\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\glib"
  File "dist\py2exe\share\gtk-doc\html\glib\file-name-encodings.png"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Arrays.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Asynchronous-Queues.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Atomic-Operations.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Automatic-String-Completion.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Balanced-Binary-Trees.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Base64-Encoding.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Basic-Types.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Bookmark-file-parser.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-building.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Byte-Arrays.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Byte-Order-Macros.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Caches.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-changes.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Character-Set-Conversion.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Commandline-option-parser.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-compiling.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-core.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-cross-compiling.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-data-types.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Datasets.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Date-and-Time-Functions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Double-ended-Queues.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Doubly-Linked-Lists.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Dynamic-Loading-of-Modules.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Error-Reporting.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-File-Utilities.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-fundamentals.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-gettextize.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Glob-style-pattern-matching.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Hash-Tables.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Hook-Functions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-I18N.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-IO-Channels.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Key-value-file-parser.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Keyed-Data-Lists.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Lexical-Scanner.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Limits-of-Basic-Types.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Memory-Allocation.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Memory-Allocators.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Memory-Chunks.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Memory-Slices.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Message-Logging.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Miscellaneous-Macros.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Miscellaneous-Utility-Functions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-N-ary-Trees.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Numerical-Definitions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Pointer-Arrays.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Quarks.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Random-Numbers.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Relations-and-Tuples.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-resources.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-running.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Shell-related-Utilities.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Simple-XML-Subset-Parser.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Singly-Linked-Lists.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Spawning-Processes.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Standard-Macros.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-String-Chunks.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-String-Utility-Functions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Strings.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-The-Main-Event-Loop.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Thread-Pools.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Threads.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Timers.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Trash-Stacks.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Type-Conversion-Macros.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Unicode-Manipulation.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-utilities.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Version-Information.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Warnings-and-Assertions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib-Windows-Compatibility-Functions.html"
  File "dist\py2exe\share\gtk-doc\html\glib\glib.devhelp"
  File "dist\py2exe\share\gtk-doc\html\glib\glib.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\glib\glib.html"
  File "dist\py2exe\share\gtk-doc\html\glib\home.png"
  File "dist\py2exe\share\gtk-doc\html\glib\index.html"
  File "dist\py2exe\share\gtk-doc\html\glib\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\glib\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix07.html"
  File "dist\py2exe\share\gtk-doc\html\glib\ix08.html"
  File "dist\py2exe\share\gtk-doc\html\glib\left.png"
  File "dist\py2exe\share\gtk-doc\html\glib\mainloop-states.gif"
  File "dist\py2exe\share\gtk-doc\html\glib\right.png"
  File "dist\py2exe\share\gtk-doc\html\glib\style.css"
  File "dist\py2exe\share\gtk-doc\html\glib\tools.html"
  File "dist\py2exe\share\gtk-doc\html\glib\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\gobject"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch01.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch01s02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch06s03.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch07s02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ch07s03.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\chapter-gobject.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\chapter-signal.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\glib-genmarshal.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\glib-mkenums.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\glue.png"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Boxed-Types.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Closures.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Enumeration-and-Flag-Types.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Generic-values.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-GParamSpec.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-memory.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-properties.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-query.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Signals.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Standard-Parameter-and-Value-Types.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-The-Base-Object-Type.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Type-Information.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Value-arrays.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject-Varargs-Value-Collection.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject.devhelp"
  File "dist\py2exe\share\gtk-doc\html\gobject\gobject.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\gobject\gtype-conventions.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gtype-instantiable-classed.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gtype-non-instantiable-classed.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\gtype-non-instantiable.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\GTypeModule.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\GTypePlugin.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\home.png"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject-chainup.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject-code.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject-construction.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject-destruction.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject-methods.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-gobject.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-interface-implement.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-interface-properties.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-interface.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\howto-signals.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\index.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix07.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\ix08.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\left.png"
  File "dist\py2exe\share\gtk-doc\html\gobject\pr01.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\pt01.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\pt02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\pt03.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\right.png"
  File "dist\py2exe\share\gtk-doc\html\gobject\rn01.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\rn02.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\signal.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\style.css"
  File "dist\py2exe\share\gtk-doc\html\gobject\tools-ginspector.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\tools-gob.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\tools-gtkdoc.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\tools-refdb.html"
  File "dist\py2exe\share\gtk-doc\html\gobject\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\gtk"
  File "dist\py2exe\share\gtk-doc\html\gtk\AbstractObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\accel-label.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\Actions.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\assistant.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\ButtonWidgets.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ch01.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ch02.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\check-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\checklist-gdkeventexpose-region.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\checklist-modifiers.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\checklist-named-icons.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\color-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\colorsel.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\combo-box-entry.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\combo-box.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\decorating-the-assistant-pages.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\DeprecatedObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\DisplayWidgets.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\entry.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\file-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\filechooser.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\font-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\fontsel.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\frame.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\glossary.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-about.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Accelerator-Maps.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-add.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-apply.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Bindings.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-bold.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-building.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-cancel.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-cdrom.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-changes-1-2.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-changes-2-0.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-clear.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Clipboards.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-close.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-color-picker.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-compiling.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-connect.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-convert.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-copy.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-cut.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-delete.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dialog-authentication.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dialog-error.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dialog-info.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dialog-question.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dialog-warning.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-directfb.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-directory.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-disconnect.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dnd-multiple.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-dnd.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Drag-and-Drop.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-edit.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-execute.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Feature-Test-Macros.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-file.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-find-and-replace.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-find.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-floppy.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-font.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-framebuffer.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-fullscreen.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-General.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-back-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-back-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-down.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-forward-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-forward-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-go-up.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-bottom.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-first-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-first-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-last-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-last-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-goto-top.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Graphics-Contexts.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-gtkfilefilter.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-GtkPaperSize.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-GtkTextIter.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-GtkTreeView-drag-and-drop.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-harddisk.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-help.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-High-level-Printing-API.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-home.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-indent-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-indent-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-index.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-info.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-italic.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-jump-to-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-jump-to-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-justify-center.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-justify-fill.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-justify-left.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-justify-right.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Keyboard-Accelerators.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-leave-fullscreen.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-forward-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-forward-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-next-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-next-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-pause.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-play-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-play-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-previous-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-previous-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-record.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-rewind-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-rewind-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-media-stop.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-checklist.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkAboutDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkAction.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkAssistant.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkColorButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkComboBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkFileChooser.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkIconView.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkLinkButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-migrating-GtkRecentChooser.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-missing-image.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-network.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-new.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-no.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-ok.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-open.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-orientation-landscape.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-orientation-portrait.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-orientation-reverse-landscape.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-orientation-reverse-portrait.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-osx.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-paste.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-preferences.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-print-preview.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-print.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-properties.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-query-immodules-2.0.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-question-index.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-quit.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-redo-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-redo-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-refresh.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-remove.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Resource-Files.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-resources.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-revert-to-saved-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-revert-to-saved-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-running.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-save-as.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-save.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-select-all.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-select-color.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Selections.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Signals.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-sort-ascending.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-sort-descending.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-spell-check.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Standard-Enumerations.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Stock-Items.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-stop.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-strikethrough.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Themeable-Stock-Images.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-Types.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-undelete-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-undelete-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-underline.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-undo-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-undo-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-unindent-ltr.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-unindent-rtl.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-update-icon-cache.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-windows.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-x11.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-yes.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-zoom-100.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-zoom-fit.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-zoom-in.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk-zoom-out.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk.devhelp"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtk.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAboutDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAccelLabel.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAccessible.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAction.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkActionGroup.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAdjustment.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAlignment.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkArrow.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAspectFrame.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkAssistant.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkbase.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkBin.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkButtonBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCalendar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellEditable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellLayout.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRenderer.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererAccel.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererCombo.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererPixbuf.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererProgress.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererSpin.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererText.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellRendererToggle.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCellView.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCheckButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCheckMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCList.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkColorButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkColorSelection.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkColorSelectionDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCombo.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkComboBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkComboBoxEntry.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkContainer.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCTree.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkCurve.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkDrawingArea.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkEditable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkEntry.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkEntryCompletion.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkEventBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkExpander.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkfilechooser-installing-extra-widgets.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkfilechooser-installing-preview.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkfilechooser-new-features.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkfilechooser-selection-modes.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFileChooser.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFileChooserButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFileChooserDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFileChooserWidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFileSelection.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFixed.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFontButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFontSelection.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFontSelectionDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkFrame.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkGammaCurve.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHandleBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHButtonBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHPaned.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHRuler.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHScale.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHScrollbar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkHSeparator.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkIconTheme.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkIconView.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkImage.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkImageMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkIMContext.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkIMContextSimple.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkIMMulticontext.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkInputDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkInvisible.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkItemFactory.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkLabel.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkLayout.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkLinkButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkList.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkListItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkListStore.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMenu.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMenuBar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMenuShell.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMenuToolButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMessageDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkMisc.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkNotebook.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkObject.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkobjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkOldEditable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkOptionMenu.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPageSetup.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPageSetupUnixDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPaned.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPixmap.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPlug.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPreview.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPrintContext.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPrinter.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPrintJob.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPrintSettings.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkPrintUnixDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkProgress.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkProgressBar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRadioAction.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRadioButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRadioMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRadioToolButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRange.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkrecent-advanced.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\gtkrecent-chooser.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentChooser.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentChooserDialog.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentChooserMenu.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentChooserWidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentFilter.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRecentManager.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkRuler.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkScale.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkScrollbar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkScrolledWindow.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSeparator.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSeparatorMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSeparatorToolItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSettings.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSizeGroup.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSocket.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkSpinButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkStatusbar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkStatusIcon.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkStyle.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTearoffMenuItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkText.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTextBuffer.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTextMark.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTextTag.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTextTagTable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTextView.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTipsQuery.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToggleAction.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToggleButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToggleToolButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToolbar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToolButton.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkToolItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTooltips.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTree.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeItem.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeModel.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeModelFilter.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeModelSort.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeSelection.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeSortable.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeStore.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeView.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkTreeViewColumn.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkUIManager.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVButtonBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkViewport.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVPaned.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVRuler.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVScale.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVScrollbar.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkVSeparator.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkWidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkWindow.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\GtkWindowGroup.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\home.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\icon-view.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\image.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\index.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ix07.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\label.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\LayoutContainers.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\left.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\link-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\list-and-tree.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\menubar.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\MenusAndCombos.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\messagedialog.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\migrating-gnomeuiinfo.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\migrating-GtkCombo.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\migrating.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\MiscObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\multiline-text.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\new-features-GtkComboBox.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\notebook.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\NumericEntry.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\Ornaments.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\pagesetupdialog.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\panes.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\PlugSocket.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\printdialog.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\Printing.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\progressbar.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\pt05.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\radio-group.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\recentchooserdialog.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\RecentDocuments.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\right.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\scales.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\scrolledwindow.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\ScrollingWidgets.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\SelectorWidgets.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\separator.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\setting-the-page-flow.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\SpecialObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\spinbutton.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\statusbar.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\style.css"
  File "dist\py2exe\share\gtk-doc\html\gtk\TextWidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\TextWidgetObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\toggle-button.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\toolbar.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\TreeWidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\TreeWidgetObjects.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\ui-manager.html"
  File "dist\py2exe\share\gtk-doc\html\gtk\up.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\window.png"
  File "dist\py2exe\share\gtk-doc\html\gtk\WindowWidgets.html"
  SetOutPath "$INSTDIR\share\gtk-doc\html\gtkglext"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\GdkGLExt-API.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\GtkGLExt-API.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-building.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglconfig.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglcontext.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkgldrawable.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglfont.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglinit.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglpixmap.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglquery.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglshapes.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkgltokens.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglversion.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglwindow.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gdkglx.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gtkglinit.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gtkglversion.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-gtkglwidget.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext-running.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\gtkglext.devhelp"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\home.png"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\index.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\left.png"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\Overview.html"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\right.png"
  File "dist\py2exe\share\gtk-doc\html\gtkglext\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\libglade"
  File "dist\py2exe\share\gtk-doc\html\libglade\GladeXML.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\home.png"
  File "dist\py2exe\share\gtk-doc\html\libglade\index.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\libglade\left.png"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-dtd-exceptions.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-dtd.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-embedding.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-extending.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-i18n.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-lib.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-Libglade-Build.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-Libglade-Initialisation.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-Libglade-SAX-Parser.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-modules.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade-notes.html"
  File "dist\py2exe\share\gtk-doc\html\libglade\libglade.devhelp"
  File "dist\py2exe\share\gtk-doc\html\libglade\right.png"
  File "dist\py2exe\share\gtk-doc\html\libglade\style.css"
  File "dist\py2exe\share\gtk-doc\html\libglade\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\pango"
  File "dist\py2exe\share\gtk-doc\html\pango\home.png"
  File "dist\py2exe\share\gtk-doc\html\pango\index.html"
  File "dist\py2exe\share\gtk-doc\html\pango\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\pango\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix02.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix03.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix04.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix05.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix06.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix07.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix08.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix09.html"
  File "dist\py2exe\share\gtk-doc\html\pango\ix10.html"
  File "dist\py2exe\share\gtk-doc\html\pango\layout.gif"
  File "dist\py2exe\share\gtk-doc\html\pango\left.png"
  File "dist\py2exe\share\gtk-doc\html\pango\lowlevel.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-ATSUI-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Cairo-Rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Coverage-Maps.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Engines.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Fonts.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-FreeType-Fonts-and-Rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Glyph-Storage.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-hierarchy.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Layout-Objects.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Miscellaneous-Utilities.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Modules.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-OpenType-Font-Handling.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-PangoRenderer.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-querymodules.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Scripts.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Tab-Stops.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Text-Attributes.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Text-Processing.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Version-Checking.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Vertical-Text.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Win32-Fonts-and-Rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-X-Fonts-and-Rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango-Xft-Fonts-and-Rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\pango.devhelp"
  File "dist\py2exe\share\gtk-doc\html\pango\pango.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\pango\pango.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoEngineLang.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoEngineShape.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoFcDecoder.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoFcFont.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoFcFontMap.html"
  File "dist\py2exe\share\gtk-doc\html\pango\PangoMarkupFormat.html"
  File "dist\py2exe\share\gtk-doc\html\pango\rendering.html"
  File "dist\py2exe\share\gtk-doc\html\pango\right.png"
  File "dist\py2exe\share\gtk-doc\html\pango\rotated-text.png"
  File "dist\py2exe\share\gtk-doc\html\pango\style.css"
  File "dist\py2exe\share\gtk-doc\html\pango\tools.html"
  File "dist\py2exe\share\gtk-doc\html\pango\up.png"
  SetOutPath "$INSTDIR\share\gtk-doc\html\rsvg"
  File "dist\py2exe\share\gtk-doc\html\rsvg\home.png"
  File "dist\py2exe\share\gtk-doc\html\rsvg\index.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\index.sgml"
  File "dist\py2exe\share\gtk-doc\html\rsvg\ix01.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\left.png"
  File "dist\py2exe\share\gtk-doc\html\rsvg\pt02.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\pt03.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\pt04.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\right.png"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg-Cairo.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg-Core-API.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg-GdkPixbuf.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg.devhelp"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg.devhelp2"
  File "dist\py2exe\share\gtk-doc\html\rsvg\rsvg.html"
  File "dist\py2exe\share\gtk-doc\html\rsvg\style.css"
  File "dist\py2exe\share\gtk-doc\html\rsvg\up.png"
  SetOutPath "$INSTDIR\share\gtkthemeselector\pixmaps"
  File "dist\py2exe\share\gtkthemeselector\pixmaps\gts.png"
  SetOutPath "$INSTDIR\share\pixmaps\glade-2"
  File "dist\py2exe\share\pixmaps\glade-2\glade_logo.png"
  SetOutPath "$INSTDIR\share\pixmaps"
  File "dist\py2exe\share\pixmaps\glade-2.png"
  SetOutPath "$INSTDIR\share\themes\Default\gtk-2.0-key"
  File "dist\py2exe\share\themes\Default\gtk-2.0-key\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Emacs\gtk-2.0-key"
  File "dist\py2exe\share\themes\Emacs\gtk-2.0-key\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Metal\gtk-2.0"
  File "dist\py2exe\share\themes\Metal\gtk-2.0\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Metal"
  File "dist\py2exe\share\themes\Metal\README.html"
  SetOutPath "$INSTDIR\share\themes\MS-Windows\gtk-2.0"
  File "dist\py2exe\share\themes\MS-Windows\gtk-2.0\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Raleigh\gtk-2.0"
  File "dist\py2exe\share\themes\Raleigh\gtk-2.0\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Redmond95\gtk-2.0"
  File "dist\py2exe\share\themes\Redmond95\gtk-2.0\gtkrc"
  SetOutPath "$INSTDIR\share\themes\Redmond95"
  File "dist\py2exe\share\themes\Redmond95\README.html"
  SetOutPath "$INSTDIR\share\xml\libglade"
  File "dist\py2exe\share\xml\libglade\glade-2.0.dtd"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\socket.pyc"
  File "dist\py2exe\sre.pyc"
  File "dist\py2exe\sre_compile.pyc"
  File "dist\py2exe\sre_constants.pyc"
  File "dist\py2exe\sre_parse.pyc"
  File "dist\py2exe\stat.pyc"
  File "dist\py2exe\string.pyc"
  File "dist\py2exe\StringIO.pyc"
  File "dist\py2exe\stringprep.pyc"
  File "dist\py2exe\tempfile.pyc"
  File "dist\py2exe\threading.pyc"
  File "dist\py2exe\token.pyc"
  File "dist\py2exe\tokenize.pyc"
  File "dist\py2exe\traceback.pyc"
  File "dist\py2exe\types.pyc"
  File "dist\py2exe\unicodedata.pyc"
  File "dist\py2exe\unicodedata.pyd"
  File "dist\py2exe\urllib.pyc"
  File "dist\py2exe\urllib2.pyc"
  File "dist\py2exe\urlparse.pyc"
  File "dist\py2exe\user.pyc"
  File "dist\py2exe\UserDict.pyc"
  File "dist\py2exe\uu.pyc"
  File "dist\py2exe\w9xpopen.exe"
  File "dist\py2exe\warnings.pyc"
  File "dist\py2exe\webbrowser.pyc"
  SetOutPath "$INSTDIR\zentrayicon"
  File "dist\py2exe\zentrayicon\config.pyc"
  SetOutPath "$INSTDIR\zentrayicon\pixmaps"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-blue.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-err.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-green.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-orange.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-red.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss-yellow.ico"
  File "dist\py2exe\zentrayicon\pixmaps\zenoss.ico"
  SetOutPath "$INSTDIR\zentrayicon"
  File "dist\py2exe\zentrayicon\zentrayicon.glade"
  File "dist\py2exe\zentrayicon\ZenTrayIcon.pyc"
  File "dist\py2exe\zentrayicon\__init__.pyc"
  SetOutPath "$INSTDIR"
  File "dist\py2exe\zentrayicon.exe"
  File "dist\py2exe\zlib.pyc"
  File "dist\py2exe\zlib.pyd"
  File "dist\py2exe\zlib1.dll"
  File "dist\py2exe\_cairo.pyd"
  File "dist\py2exe\_gobject.pyd"
  File "dist\py2exe\_gtk.pyd"
  File "dist\py2exe\_LWPCookieJar.pyc"
  File "dist\py2exe\_MozillaCookieJar.pyc"
  File "dist\py2exe\_socket.pyc"
  File "dist\py2exe\_socket.pyd"
  File "dist\py2exe\_ssl.pyc"
  File "dist\py2exe\_ssl.pyd"
  File "dist\py2exe\_strptime.pyc"
  File "dist\py2exe\_threading_local.pyc"
 
; Shortcuts
  !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
  CreateDirectory "$SMPROGRAMS\$ICONS_GROUP"
  CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\ZenTrayIcon.lnk" "$INSTDIR\zentrayicon.exe"
  CreateShortCut "$DESKTOP\ZenTrayIcon.lnk" "$INSTDIR\zentrayicon.exe"
  !insertmacro MUI_STARTMENU_WRITE_END
SectionEnd
 
Section -AdditionalIcons
  !insertmacro MUI_STARTMENU_WRITE_BEGIN Application
  CreateShortCut "$SMPROGRAMS\$ICONS_GROUP\Uninstall.lnk" "$INSTDIR\uninst.exe"
  !insertmacro MUI_STARTMENU_WRITE_END
SectionEnd
 
Section -Post
  WriteUninstaller "$INSTDIR\uninst.exe"
  WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\w9xpopen.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\w9xpopen.exe"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
  WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}"
SectionEnd
 
 
Function un.onUninstSuccess
  HideWindow
  MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer."
FunctionEnd
 
Function un.onInit
  MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2
  Abort
FunctionEnd
 
Section Uninstall
  !insertmacro MUI_STARTMENU_GETFOLDER "Application" $ICONS_GROUP
  Delete "$INSTDIR\uninst.exe"
  Delete "$INSTDIR\_threading_local.pyc"
  Delete "$INSTDIR\_strptime.pyc"
  Delete "$INSTDIR\_ssl.pyd"
  Delete "$INSTDIR\_ssl.pyc"
  Delete "$INSTDIR\_socket.pyd"
  Delete "$INSTDIR\_socket.pyc"
  Delete "$INSTDIR\_MozillaCookieJar.pyc"
  Delete "$INSTDIR\_LWPCookieJar.pyc"
  Delete "$INSTDIR\_gtk.pyd"
  Delete "$INSTDIR\_gobject.pyd"
  Delete "$INSTDIR\_cairo.pyd"
  Delete "$INSTDIR\zlib1.dll"
  Delete "$INSTDIR\zlib.pyd"
  Delete "$INSTDIR\zlib.pyc"
  Delete "$INSTDIR\zentrayicon.exe"
  Delete "$INSTDIR\zentrayicon\__init__.pyc"
  Delete "$INSTDIR\zentrayicon\ZenTrayIcon.pyc"
  Delete "$INSTDIR\zentrayicon\zentrayicon.glade"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-yellow.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-red.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-orange.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-green.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-err.ico"
  Delete "$INSTDIR\zentrayicon\pixmaps\zenoss-blue.ico"
  Delete "$INSTDIR\zentrayicon\config.pyc"
  Delete "$INSTDIR\webbrowser.pyc"
  Delete "$INSTDIR\warnings.pyc"
  Delete "$INSTDIR\w9xpopen.exe"
  Delete "$INSTDIR\uu.pyc"
  Delete "$INSTDIR\UserDict.pyc"
  Delete "$INSTDIR\user.pyc"
  Delete "$INSTDIR\urlparse.pyc"
  Delete "$INSTDIR\urllib2.pyc"
  Delete "$INSTDIR\urllib.pyc"
  Delete "$INSTDIR\unicodedata.pyd"
  Delete "$INSTDIR\unicodedata.pyc"
  Delete "$INSTDIR\types.pyc"
  Delete "$INSTDIR\traceback.pyc"
  Delete "$INSTDIR\tokenize.pyc"
  Delete "$INSTDIR\token.pyc"
  Delete "$INSTDIR\threading.pyc"
  Delete "$INSTDIR\tempfile.pyc"
  Delete "$INSTDIR\stringprep.pyc"
  Delete "$INSTDIR\StringIO.pyc"
  Delete "$INSTDIR\string.pyc"
  Delete "$INSTDIR\stat.pyc"
  Delete "$INSTDIR\sre_parse.pyc"
  Delete "$INSTDIR\sre_constants.pyc"
  Delete "$INSTDIR\sre_compile.pyc"
  Delete "$INSTDIR\sre.pyc"
  Delete "$INSTDIR\socket.pyc"
  Delete "$INSTDIR\share\xml\libglade\glade-2.0.dtd"
  Delete "$INSTDIR\share\themes\Redmond95\README.html"
  Delete "$INSTDIR\share\themes\Redmond95\gtk-2.0\gtkrc"
  Delete "$INSTDIR\share\themes\Raleigh\gtk-2.0\gtkrc"
  Delete "$INSTDIR\share\themes\MS-Windows\gtk-2.0\gtkrc"
  Delete "$INSTDIR\share\themes\Metal\README.html"
  Delete "$INSTDIR\share\themes\Metal\gtk-2.0\gtkrc"
  Delete "$INSTDIR\share\themes\Emacs\gtk-2.0-key\gtkrc"
  Delete "$INSTDIR\share\themes\Default\gtk-2.0-key\gtkrc"
  Delete "$INSTDIR\share\pixmaps\glade-2.png"
  Delete "$INSTDIR\share\pixmaps\glade-2\glade_logo.png"
  Delete "$INSTDIR\share\gtkthemeselector\pixmaps\gts.png"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg-GdkPixbuf.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg-Core-API.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\rsvg-Cairo.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\pt04.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\pt03.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\pt02.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\rsvg\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\pango\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\pango\tools.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\pango\rotated-text.png"
  Delete "$INSTDIR\share\gtk-doc\html\pango\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\pango\rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoMarkupFormat.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoFcFontMap.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoFcFont.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoFcDecoder.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoEngineShape.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\PangoEngineLang.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Xft-Fonts-and-Rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-X-Fonts-and-Rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Win32-Fonts-and-Rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Vertical-Text.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Version-Checking.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Text-Processing.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Text-Attributes.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Tab-Stops.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Scripts.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-querymodules.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-PangoRenderer.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-OpenType-Font-Handling.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Modules.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Miscellaneous-Utilities.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Layout-Objects.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-hierarchy.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Glyph-Storage.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-FreeType-Fonts-and-Rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Engines.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Coverage-Maps.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-Cairo-Rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\pango-ATSUI-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\lowlevel.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\pango\layout.gif"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix10.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix09.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix08.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix07.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\pango\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\pango\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-notes.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-modules.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-Libglade-SAX-Parser.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-Libglade-Initialisation.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-Libglade-Build.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-lib.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-i18n.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-extending.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-embedding.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-dtd.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\libglade-dtd-exceptions.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\libglade\GladeXML.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\Overview.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-running.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gtkglwidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gtkglversion.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gtkglinit.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglx.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglwindow.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglversion.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkgltokens.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglshapes.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglquery.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglpixmap.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglinit.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglfont.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkgldrawable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglcontext.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-gdkglconfig.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\gtkglext-building.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\GtkGLExt-API.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtkglext\GdkGLExt-API.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\WindowWidgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\window.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ui-manager.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\TreeWidgetObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\TreeWidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\toolbar.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\toggle-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\TextWidgetObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\TextWidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\statusbar.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\spinbutton.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\SpecialObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\setting-the-page-flow.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\separator.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\SelectorWidgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ScrollingWidgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\scrolledwindow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\scales.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\RecentDocuments.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\recentchooserdialog.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\radio-group.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\pt05.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\progressbar.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\Printing.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\printdialog.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\PlugSocket.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\panes.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\pagesetupdialog.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\Ornaments.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\NumericEntry.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\notebook.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\new-features-GtkComboBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\multiline-text.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\MiscObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\migrating.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\migrating-GtkCombo.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\migrating-gnomeuiinfo.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\messagedialog.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\MenusAndCombos.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\menubar.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\list-and-tree.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\link-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\LayoutContainers.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\label.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix07.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\image.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\icon-view.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkWindowGroup.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkWindow.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkWidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVSeparator.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVScrollbar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVScale.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVRuler.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVPaned.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkViewport.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVButtonBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkVBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkUIManager.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeViewColumn.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeView.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeStore.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeSortable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeSelection.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeModelSort.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeModelFilter.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeModel.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTreeItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTree.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTooltips.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToolItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToolButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToolbar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToggleToolButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToggleButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkToggleAction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTipsQuery.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTextView.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTextTagTable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTextTag.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTextMark.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTextBuffer.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkText.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTearoffMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkTable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkStyle.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkStatusIcon.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkStatusbar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSpinButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSocket.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSizeGroup.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSettings.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSeparatorToolItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSeparatorMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkSeparator.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkScrolledWindow.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkScrollbar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkScale.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRuler.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentManager.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentFilter.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentChooserWidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentChooserMenu.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentChooserDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRecentChooser.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkrecent-chooser.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkrecent-advanced.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRange.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRadioToolButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRadioMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRadioButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkRadioAction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkProgressBar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkProgress.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPrintUnixDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPrintSettings.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPrintJob.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPrinter.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPrintContext.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPreview.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPlug.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPixmap.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPaned.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPageSetupUnixDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkPageSetup.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkOptionMenu.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkOldEditable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkobjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkObject.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkNotebook.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMisc.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMessageDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMenuToolButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMenuShell.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMenuBar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkMenu.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkListStore.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkListItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkList.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkLinkButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkLayout.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkLabel.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkItemFactory.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkInvisible.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkInputDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkIMMulticontext.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkIMContextSimple.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkIMContext.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkImageMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkImage.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkIconView.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkIconTheme.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHSeparator.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHScrollbar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHScale.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHRuler.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHPaned.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHButtonBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkHandleBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkGammaCurve.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFrame.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFontSelectionDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFontSelection.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFontButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFixed.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFileSelection.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFileChooserWidget.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFileChooserDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFileChooserButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkFileChooser.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkfilechooser-selection-modes.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkfilechooser-new-features.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkfilechooser-installing-preview.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkfilechooser-installing-extra-widgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkExpander.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkEventBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkEntryCompletion.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkEntry.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkEditable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkDrawingArea.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCurve.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCTree.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkContainer.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkComboBoxEntry.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkComboBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCombo.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkColorSelectionDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkColorSelection.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkColorButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCList.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCheckMenuItem.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCheckButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellView.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererToggle.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererText.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererSpin.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererProgress.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererPixbuf.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererCombo.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRendererAccel.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellRenderer.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellLayout.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCellEditable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkCalendar.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkButtonBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkBin.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtkbase.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAssistant.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAspectFrame.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkArrow.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAlignment.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAdjustment.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkActionGroup.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAccessible.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAccelLabel.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\GtkAboutDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-zoom-out.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-zoom-in.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-zoom-fit.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-zoom-100.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-yes.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-x11.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-windows.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-update-icon-cache.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-unindent-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-unindent-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-undo-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-undo-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-underline.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-undelete-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-undelete-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Themeable-Stock-Images.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-strikethrough.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-stop.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Stock-Items.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Standard-Enumerations.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-spell-check.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-sort-descending.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-sort-ascending.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Signals.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Selections.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-select-color.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-select-all.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-save.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-save-as.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-running.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-revert-to-saved-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-revert-to-saved-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-resources.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Resource-Files.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-remove.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-refresh.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-redo-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-redo-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-quit.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-question-index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-query-immodules-2.0.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-properties.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-print.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-print-preview.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-preferences.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-paste.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-osx.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-orientation-reverse-portrait.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-orientation-reverse-landscape.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-orientation-portrait.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-orientation-landscape.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-open.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-ok.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-no.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-new.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-network.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-missing-image.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkRecentChooser.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkLinkButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkIconView.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkFileChooser.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkComboBox.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkColorButton.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkAssistant.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkAction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-GtkAboutDialog.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-migrating-checklist.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-stop.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-rewind-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-rewind-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-record.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-previous-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-previous-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-play-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-play-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-pause.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-next-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-next-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-forward-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-media-forward-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-leave-fullscreen.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Keyboard-Accelerators.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-justify-right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-justify-left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-justify-fill.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-justify-center.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-jump-to-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-jump-to-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-italic.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-info.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-index.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-indent-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-indent-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-High-level-Printing-API.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-help.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-harddisk.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-GtkTreeView-drag-and-drop.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-GtkTextIter.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-GtkPaperSize.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-gtkfilefilter.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Graphics-Contexts.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-top.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-last-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-last-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-first-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-first-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-goto-bottom.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-forward-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-forward-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-down.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-back-rtl.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-go-back-ltr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-General.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-fullscreen.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-framebuffer.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-font.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-floppy.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-find.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-find-and-replace.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-file.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Feature-Test-Macros.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-execute.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-edit.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Drag-and-Drop.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dnd.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dnd-multiple.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-disconnect.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-directory.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-directfb.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dialog-warning.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dialog-question.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dialog-info.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dialog-error.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-dialog-authentication.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-delete.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-cut.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-copy.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-convert.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-connect.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-compiling.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-color-picker.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-close.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Clipboards.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-clear.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-changes-2-0.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-changes-1-2.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-cdrom.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-cancel.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-building.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-bold.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Bindings.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-apply.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-add.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-Accelerator-Maps.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\gtk-about.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\glossary.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\frame.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\fontsel.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\font-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\filechooser.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\file-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\entry.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\DisplayWidgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\DeprecatedObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\decorating-the-assistant-pages.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\combo-box.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\combo-box-entry.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\colorsel.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\color-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\checklist-named-icons.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\checklist-modifiers.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\checklist-gdkeventexpose-region.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\check-button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ch02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ch01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\ButtonWidgets.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\button.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\assistant.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\Actions.html"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\accel-label.png"
  Delete "$INSTDIR\share\gtk-doc\html\gtk\AbstractObjects.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\tools-refdb.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\tools-gtkdoc.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\tools-gob.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\tools-ginspector.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\signal.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\rn02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\rn01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\pt03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\pt02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\pt01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\pr01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix08.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix07.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-signals.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-interface.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-interface-properties.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-interface-implement.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject-methods.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject-destruction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject-construction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject-code.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\howto-gobject-chainup.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\GTypePlugin.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\GTypeModule.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gtype-non-instantiable.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gtype-non-instantiable-classed.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gtype-instantiable-classed.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gtype-conventions.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Varargs-Value-Collection.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Value-arrays.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Type-Information.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-The-Base-Object-Type.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Standard-Parameter-and-Value-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Signals.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-query.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-properties.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-memory.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-GParamSpec.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Generic-values.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Enumeration-and-Flag-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Closures.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\gobject-Boxed-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\glue.png"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\glib-mkenums.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\glib-genmarshal.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\chapter-signal.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\chapter-gobject.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch07s03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch07s02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch06s03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch01s02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gobject\ch01.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\glib\tools.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\glib\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\glib\mainloop-states.gif"
  Delete "$INSTDIR\share\gtk-doc\html\glib\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix08.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix07.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\glib\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Windows-Compatibility-Functions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Warnings-and-Assertions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Version-Information.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-utilities.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Unicode-Manipulation.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Type-Conversion-Macros.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Trash-Stacks.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Timers.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Threads.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Thread-Pools.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-The-Main-Event-Loop.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Strings.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-String-Utility-Functions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-String-Chunks.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Standard-Macros.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Spawning-Processes.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Singly-Linked-Lists.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Simple-XML-Subset-Parser.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Shell-related-Utilities.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-running.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-resources.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Relations-and-Tuples.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Random-Numbers.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Quarks.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Pointer-Arrays.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Numerical-Definitions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-N-ary-Trees.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Miscellaneous-Utility-Functions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Miscellaneous-Macros.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Message-Logging.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Memory-Slices.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Memory-Chunks.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Memory-Allocators.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Memory-Allocation.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Limits-of-Basic-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Lexical-Scanner.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Keyed-Data-Lists.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Key-value-file-parser.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-IO-Channels.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-I18N.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Hook-Functions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Hash-Tables.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Glob-style-pattern-matching.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-gettextize.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-fundamentals.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-File-Utilities.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Error-Reporting.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Dynamic-Loading-of-Modules.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Doubly-Linked-Lists.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Double-ended-Queues.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Date-and-Time-Functions.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Datasets.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-data-types.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-cross-compiling.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-core.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-compiling.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Commandline-option-parser.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Character-Set-Conversion.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-changes.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Caches.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Byte-Order-Macros.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Byte-Arrays.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-building.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Bookmark-file-parser.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Basic-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Base64-Encoding.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Balanced-Binary-Trees.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Automatic-String-Completion.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Atomic-Operations.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Asynchronous-Queues.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\glib-Arrays.html"
  Delete "$INSTDIR\share\gtk-doc\html\glib\file-name-encodings.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\rn02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\rn01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\license.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\GdkPixbufLoader.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-Versioning.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-util.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-scaling.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-refcounting.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-query-loaders.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-Module-Interface.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-inline.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-rgb.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-init.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-xlib-from-drawables.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-rendering.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-gdk-pixbuf-from-drawables.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-file-saving.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-file-loading.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-csource.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-creating.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\gdk-pixbuf-animation.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\composite.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\apas03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\apas02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk-pixbuf\apa.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\X_cursor.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\xterm.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\watch.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ur_angle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\umbrella.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ul_angle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\trek.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\top_tee.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\top_side.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\top_right_corner.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\top_left_corner.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\top_left_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\tcross.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\target.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\star.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\spraycan.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\spider.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sizing.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\shuttle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_v_double_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_up_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_right_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_left_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_h_double_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sb_down_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\sailboat.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\rtl_logo.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\rotated-text.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\right_tee.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\right_side.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\right_ptr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\rightbutton.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\reference.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\question_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\plus.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\pirate.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\pencil.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\multihead.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\mouse.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\middlebutton.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\man.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\lr_angle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ll_angle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\left_tee.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\left_side.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\left_ptr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\leftbutton.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix07.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix06.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix05.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix04.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix03.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\iron_cross.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\icon.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\heart.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\hand2.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\hand1.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gumby.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gobbler.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\GdkScreen.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\GdkDisplayManager.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\GdkDisplay.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-X-Window-System-Interaction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Windows.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Visuals.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Threads.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Selections.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Properties-and-Atoms.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Points-Rectangles-and-Regions.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Pixbufs.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Pango-Interaction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Keyboard-Handling.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Input.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Input-Devices.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Images.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Graphics-Contexts.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-General.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-GdkRGB.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Events.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Event-Structures.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Drawing-Primitives.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Drag-and-Drop.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Cursors.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Colormaps-and-Colors.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Cairo-Interaction.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\gdk-Bitmaps-and-Pixmaps.html"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\fleur.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\exchange.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\draped_box.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\draft_small.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\draft_large.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\double_arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\dotbox.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\dot.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\diamond_cross.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\cross_reverse.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\crosshair.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\cross.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\coffee_mug.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\clock.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\circle.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\center_ptr.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\box_spiral.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\bottom_tee.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\bottom_side.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\bottom_right_corner.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\bottom_left_corner.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\bogosity.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\boat.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\based_arrow_up.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\based_arrow_down.png"
  Delete "$INSTDIR\share\gtk-doc\html\gdk\arrow.png"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\up.png"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\Support.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\style.css"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\right.png"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\pt02.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\pt01.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\left.png"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\language-bindings.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\ix02.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\ix01.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\index.sgml"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\index.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\home.png"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\Drawing.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo.devhelp2"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo.devhelp"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-XLib-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Win32-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Win32-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Version-Information.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Types.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Transformations.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Text.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-SVG-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Scaled-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-PostScript-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-PNG-Support.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-PDF-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Patterns.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Paths.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Image-Surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-FreeType-Fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Font-Options.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-Error-handling.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-cairo-t.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-cairo-surface-t.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-cairo-matrix-t.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\cairo-cairo-font-face-t.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-surfaces.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-streams.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-return-values.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-patterns.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-path.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-overloading.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-memory.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-fonts.html"
  Delete "$INSTDIR\share\gtk-doc\html\cairo\bindings-errors.html"
  Delete "$INSTDIR\share\gtk-2.0\demo\ui_manager.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\tree_store.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\textview.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\textscroll.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\stock_browser.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\sizegroup.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\rotated_text.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\printing.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\pixbufs.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\pickers.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\panes.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\menus.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\list_store.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\images.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\iconview_edit.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\iconview.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\hypertext.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\gtk-logo-rgb.gif"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnu-keys.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-gsame.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-gmush.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-gimp.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-fs-regular.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-fs-directory.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-foot.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-calendar.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\gnome-applets.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\floppybuddy.gif"
  Delete "$INSTDIR\share\gtk-2.0\demo\expander.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\entry_completion.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\editable_cells.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\drawingarea.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\dialog.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\combobox.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\colorsel.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\clipboard.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\changedisplay.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\button_box.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\background.jpg"
  Delete "$INSTDIR\share\gtk-2.0\demo\assistant.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\appwindow.c"
  Delete "$INSTDIR\share\gtk-2.0\demo\apple-red.png"
  Delete "$INSTDIR\share\gtk-2.0\demo\alphatest.png"
  Delete "$INSTDIR\share\glib-2.0\gettext\po\Makefile.in.in"
  Delete "$INSTDIR\share\glib-2.0\gettext\mkinstalldirs"
  Delete "$INSTDIR\share\glade-2\gtk\autogen.sh"
  Delete "$INSTDIR\share\doc\zentrayicon\COPYRIGHT"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\xpath2.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\xpath2.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\xpath1.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\xpath1.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\xml.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\writer.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\w3c.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\xmltutorial.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\xmltutorial.pdf"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ix01.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\index.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includexpath.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includestory.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includekeyword.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includegetattribute.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includeconvert.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includeaddkeyword.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\includeaddattribute.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\warning.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\up.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\toc-plus.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\toc-minus.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\toc-blank.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\tip.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\prev.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\note.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\next.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\important.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\home.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\draft.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\caution.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\9.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\8.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\7.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\6.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\5.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\4.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\3.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\2.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\10.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts\1.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\blank.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\customhtml.xsl"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\customfo.xsl"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s09.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s08.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s07.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s06.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s05.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s04.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s03.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ar01s02.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\api.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\aph.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apg.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apf.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\ape.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apd.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apc.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apb.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\apa.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tst.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tree2.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tree2.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tree1.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\tree1.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\testWriter.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\test3.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\test2.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\test1.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\structure.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\smallfootonly.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\redhat.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader4.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader4.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader3.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader3.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader2.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader1.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\reader1.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\parse4.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\parse3.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\parse2.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\parse1.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\Libxml2-Logo-90x34.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\Libxml2-Logo-180x168.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\libxml.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\io2.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\io2.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\io1.res"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\io1.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\index.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\up.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\right.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xpointer.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xpathInternals.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xpath.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlwriter.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlversion.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlunicode.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlstring.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlschemastypes.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlschemas.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlsave.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlregexp.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlreader.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlmodule.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlmemory.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlIO.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlexports.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlerror.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xmlautomata.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xlink.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-xinclude.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-valid.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-uri.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-tree.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-threads.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-schematron.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-schemasInternals.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-SAX2.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-SAX.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-relaxng.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-pattern.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-parserInternals.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-parser.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-nanohttp.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-nanoftp.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-list.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-lib.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-HTMLtree.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-HTMLparser.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-hash.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-globals.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-entities.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-encoding.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-DOCBparser.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-dict.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-debugXML.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-chvalid.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-catalog.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\libxml-c14n.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\left.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\index.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\home.png"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\html\book1.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\FAQ.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\examples.xsl"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\examples.xml"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\encoding.html"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\html\DOM.gif"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\examples\xmllint.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\examples\testXPath.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\examples\testSAX.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\examples\testHTML.c"
  Delete "$INSTDIR\share\doc\libxml2-2.6.27\Copyright"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-user.txt"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-user.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel.txt"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\x93.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\x31.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\x19.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r994.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r99.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r963.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r940.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r917.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r883.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r862.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r839.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r818.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r792.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r771.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r750.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r726.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r704.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r676.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r655.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r632.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r591.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r504.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r476.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r401.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r372.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r344.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3231.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r323.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3209.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3184.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3161.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3138.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3102.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3069.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3037.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r3012.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2983.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2958.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r295.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2936.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2914.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2892.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2866.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2841.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2816.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2791.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2770.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2745.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2717.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r270.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2682.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2646.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2621.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2600.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2579.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2557.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2535.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2513.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2491.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r249.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2469.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2443.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2420.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2399.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2378.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2350.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2328.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2304.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2280.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r228.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2255.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2231.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2207.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2181.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2157.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2130.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2099.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2062.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r204.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2034.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r2009.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1980.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1959.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1936.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1913.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1890.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1868.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1847.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r183.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1823.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1802.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1780.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1758.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1736.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1715.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1693.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1672.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1650.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1629.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r162.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1608.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1575.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1545.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1515.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1486.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1460.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1437.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1414.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r141.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1383.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1356.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1331.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1306.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1281.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1259.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1234.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1209.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r120.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1184.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1159.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1134.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1111.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1087.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1064.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1042.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\r1016.html"
  Delete "$INSTDIR\share\doc\fontconfig\fontconfig-devel\index.html"
  Delete "$INSTDIR\share\aclocal\pkg.m4"
  Delete "$INSTDIR\share\aclocal\libxml.m4"
  Delete "$INSTDIR\share\aclocal\lib-prefix.m4"
  Delete "$INSTDIR\share\aclocal\lib-link.m4"
  Delete "$INSTDIR\share\aclocal\lib-ld.m4"
  Delete "$INSTDIR\share\aclocal\iconv.m4"
  Delete "$INSTDIR\share\aclocal\gtkglext-1.0.m4"
  Delete "$INSTDIR\share\aclocal\gtk-2.0.m4"
  Delete "$INSTDIR\share\aclocal\glib-gettext.m4"
  Delete "$INSTDIR\share\aclocal\glib-2.0.m4"
  Delete "$INSTDIR\share\aclocal\freetype2.m4"
  Delete "$INSTDIR\rfc822.pyc"
  Delete "$INSTDIR\repr.pyc"
  Delete "$INSTDIR\re.pyc"
  Delete "$INSTDIR\random.pyc"
  Delete "$INSTDIR\quopri.pyc"
  Delete "$INSTDIR\python24.dll"
  Delete "$INSTDIR\pygtk.pyc"
  Delete "$INSTDIR\posixpath.pyc"
  Delete "$INSTDIR\popen2.pyc"
  Delete "$INSTDIR\pangocairo.pyd"
  Delete "$INSTDIR\pangocairo.pyc"
  Delete "$INSTDIR\pango.pyd"
  Delete "$INSTDIR\pango.pyc"
  Delete "$INSTDIR\os2emxpath.pyc"
  Delete "$INSTDIR\os.pyc"
  Delete "$INSTDIR\opcode.pyc"
  Delete "$INSTDIR\nturl2path.pyc"
  Delete "$INSTDIR\ntpath.pyc"
  Delete "$INSTDIR\MSVCR71.dll"
  Delete "$INSTDIR\mimetypes.pyc"
  Delete "$INSTDIR\mimetools.pyc"
  Delete "$INSTDIR\macurl2path.pyc"
  Delete "$INSTDIR\macpath.pyc"
  Delete "$INSTDIR\logging\__init__.pyc"
  Delete "$INSTDIR\locale.pyc"
  Delete "$INSTDIR\linecache.pyc"
  Delete "$INSTDIR\libxml2.dll"
  Delete "$INSTDIR\libpng12.dll"
  Delete "$INSTDIR\libpangowin32-1.0-0.dll"
  Delete "$INSTDIR\libpangoft2-1.0-0.dll"
  Delete "$INSTDIR\libpangocairo-1.0-0.dll"
  Delete "$INSTDIR\libpango-1.0-0.dll"
  Delete "$INSTDIR\libgtk-win32-2.0-0.dll"
  Delete "$INSTDIR\libgthread-2.0-0.dll"
  Delete "$INSTDIR\libgobject-2.0-0.dll"
  Delete "$INSTDIR\libgmodule-2.0-0.dll"
  Delete "$INSTDIR\libglib-2.0-0.dll"
  Delete "$INSTDIR\libglade-2.0-0.dll"
  Delete "$INSTDIR\libgdk_pixbuf-2.0-0.dll"
  Delete "$INSTDIR\libgdk-win32-2.0-0.dll"
  Delete "$INSTDIR\libfreetype-6.dll"
  Delete "$INSTDIR\libfontconfig-1.dll"
  Delete "$INSTDIR\libcairo-2.dll"
  Delete "$INSTDIR\libatk-1.0-0.dll"
  Delete "$INSTDIR\lib\z.lib"
  Delete "$INSTDIR\lib\xml2Conf.sh"
  Delete "$INSTDIR\lib\xml2.lib"
  Delete "$INSTDIR\lib\tiff.lib"
  Delete "$INSTDIR\lib\rsvg-2.lib"
  Delete "$INSTDIR\lib\popt.lib"
  Delete "$INSTDIR\lib\png.lib"
  Delete "$INSTDIR\lib\pkgconfig\pangowin32.pc"
  Delete "$INSTDIR\lib\pkgconfig\pangoft2.pc"
  Delete "$INSTDIR\lib\pkgconfig\pangocairo.pc"
  Delete "$INSTDIR\lib\pkgconfig\pango.pc"
  Delete "$INSTDIR\lib\pkgconfig\libxml-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\librsvg-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\libpng12.pc"
  Delete "$INSTDIR\lib\pkgconfig\libpng.pc"
  Delete "$INSTDIR\lib\pkgconfig\libgsf-win32-1.pc"
  Delete "$INSTDIR\lib\pkgconfig\libgsf-1.pc"
  Delete "$INSTDIR\lib\pkgconfig\libglade-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\libcroco-0.6.pc"
  Delete "$INSTDIR\lib\pkgconfig\libart-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtkglext-win32-1.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtkglext-1.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtk-engines-2.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtk+-win32-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtk+-unix-print-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gtk+-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gthread-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gobject-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gmodule-no-export-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gmodule-export-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gmodule-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\glib-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gdkglext-win32-1.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gdkglext-1.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gdk-win32-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gdk-pixbuf-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\gdk-2.0.pc"
  Delete "$INSTDIR\lib\pkgconfig\freetype2.pc"
  Delete "$INSTDIR\lib\pkgconfig\fontconfig.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-win32.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-svg.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-ps.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-png.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-pdf.pc"
  Delete "$INSTDIR\lib\pkgconfig\cairo-ft.pc"
  Delete "$INSTDIR\lib\pkgconfig\atk.pc"
  Delete "$INSTDIR\lib\pangowin32-1.0.lib"
  Delete "$INSTDIR\lib\pangoft2-1.0.lib"
  Delete "$INSTDIR\lib\pangocairo-1.0.lib"
  Delete "$INSTDIR\lib\pango-1.0.lib"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-tibetan-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-thai-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-syriac-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-khmer-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-indic-lang.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-indic-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-hebrew-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-hangul-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-basic-win32.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-basic-fc.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-arabic-lang.dll"
  Delete "$INSTDIR\lib\pango\1.6.0\modules\pango-arabic-fc.dll"
  Delete "$INSTDIR\lib\libz.dll.a"
  Delete "$INSTDIR\lib\libxml2.dll.a"
  Delete "$INSTDIR\lib\libtiff.dll.a"
  Delete "$INSTDIR\lib\librsvg-2.dll.a"
  Delete "$INSTDIR\lib\libpopt.dll.a"
  Delete "$INSTDIR\lib\libpng12.dll.a"
  Delete "$INSTDIR\lib\libpng.dll.a"
  Delete "$INSTDIR\lib\libpangowin32-1.0.dll.a"
  Delete "$INSTDIR\lib\libpangoft2-1.0.dll.a"
  Delete "$INSTDIR\lib\libpangocairo-1.0.dll.a"
  Delete "$INSTDIR\lib\libpango-1.0.dll.a"
  Delete "$INSTDIR\lib\libjpeg.dll.a"
  Delete "$INSTDIR\lib\libintl.dll.a"
  Delete "$INSTDIR\lib\libiconv.dll.a"
  Delete "$INSTDIR\lib\libgw32c.a"
  Delete "$INSTDIR\lib\libgtkglext-win32-1.0.dll.a"
  Delete "$INSTDIR\lib\libgtk-win32-2.0.dll.a"
  Delete "$INSTDIR\lib\libgthread-2.0.dll.a"
  Delete "$INSTDIR\lib\libgsf-win32-1.dll.a"
  Delete "$INSTDIR\lib\libgsf-1.dll.a"
  Delete "$INSTDIR\lib\libgobject-2.0.dll.a"
  Delete "$INSTDIR\lib\libgmodule-2.0.dll.a"
  Delete "$INSTDIR\lib\libglib-2.0.dll.a"
  Delete "$INSTDIR\lib\libglade-2.0.dll.a"
  Delete "$INSTDIR\lib\libgdk_pixbuf-2.0.dll.a"
  Delete "$INSTDIR\lib\libgdkglext-win32-1.0.dll.a"
  Delete "$INSTDIR\lib\libgdk-win32-2.0.dll.a"
  Delete "$INSTDIR\lib\libfreetype.dll.a"
  Delete "$INSTDIR\lib\libfontconfig.dll.a"
  Delete "$INSTDIR\lib\libcroco-0.6.dll.a"
  Delete "$INSTDIR\lib\libcairo.dll.a"
  Delete "$INSTDIR\lib\libbz2.dll.a"
  Delete "$INSTDIR\lib\libatk-1.0.dll.a"
  Delete "$INSTDIR\lib\libart_lgpl_2.dll.a"
  Delete "$INSTDIR\lib\jpeg.lib"
  Delete "$INSTDIR\lib\intl.lib"
  Delete "$INSTDIR\lib\iconv.lib"
  Delete "$INSTDIR\lib\gtkglext-win32-1.0.lib"
  Delete "$INSTDIR\lib\gtkglext-1.0\include\gdkglext-config.h"
  Delete "$INSTDIR\lib\gtk-win32-2.0.lib"
  Delete "$INSTDIR\lib\gtk-2.0\include\gdkconfig.h"
  Delete "$INSTDIR\lib\gtk-2.0\2.4.0\engines\libredmond95.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.4.0\engines\libmetal.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\svg_loader.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xpm.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-xbm.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-wbmp.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tiff.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-tga.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ras.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pnm.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-png.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-pcx.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-jpeg.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ico.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-gif.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-bmp.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\loaders\libpixbufloader-ani.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-viqr.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-ti-et.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-ti-er.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-thai.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-ipa.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-inuktitut.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-ime.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-cyrillic-translit.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-cedilla.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\immodules\im-am-et.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\libwimp.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\libsvg.dll"
  Delete "$INSTDIR\lib\gtk-2.0\2.10.0\engines\libpixmap.dll"
  Delete "$INSTDIR\lib\gthread-2.0.lib"
  Delete "$INSTDIR\lib\gsf-win32-1.lib"
  Delete "$INSTDIR\lib\gsf-1.lib"
  Delete "$INSTDIR\lib\gobject-2.0.lib"
  Delete "$INSTDIR\lib\gmodule-2.0.lib"
  Delete "$INSTDIR\lib\glib-2.0.lib"
  Delete "$INSTDIR\lib\glib-2.0\include\glibconfig.h"
  Delete "$INSTDIR\lib\glade-2.0.lib"
  Delete "$INSTDIR\lib\gdk_pixbuf-2.0.lib"
  Delete "$INSTDIR\lib\gdkglext-win32-1.0.lib"
  Delete "$INSTDIR\lib\gdk-win32-2.0.lib"
  Delete "$INSTDIR\lib\freetype.lib"
  Delete "$INSTDIR\lib\fontconfig.lib"
  Delete "$INSTDIR\lib\croco-0.6.lib"
  Delete "$INSTDIR\lib\charset.lib"
  Delete "$INSTDIR\lib\charset.alias"
  Delete "$INSTDIR\lib\cairo.lib"
  Delete "$INSTDIR\lib\bz2.lib"
  Delete "$INSTDIR\lib\atk-1.0.lib"
  Delete "$INSTDIR\lib\asprintf.lib"
  Delete "$INSTDIR\lib\art_lgpl_2.lib"
  Delete "$INSTDIR\intl.dll"
  Delete "$INSTDIR\inspect.pyc"
  Delete "$INSTDIR\iconv.dll"
  Delete "$INSTDIR\httplib.pyc"
  Delete "$INSTDIR\gtk\__init__.pyc"
  Delete "$INSTDIR\gtk\_lazyutils.pyc"
  Delete "$INSTDIR\gtk\_gtk.pyc"
  Delete "$INSTDIR\gtk\glade.pyc"
  Delete "$INSTDIR\gtk\deprecation.pyc"
  Delete "$INSTDIR\gopherlib.pyc"
  Delete "$INSTDIR\gobject\__init__.pyc"
  Delete "$INSTDIR\gobject\_gobject.pyc"
  Delete "$INSTDIR\glob.pyc"
  Delete "$INSTDIR\glade.pyd"
  Delete "$INSTDIR\getpass.pyc"
  Delete "$INSTDIR\getopt.pyc"
  Delete "$INSTDIR\ftplib.pyc"
  Delete "$INSTDIR\fnmatch.pyc"
  Delete "$INSTDIR\etc\pango\pango.modules"
  Delete "$INSTDIR\etc\pango\pango.aliases"
  Delete "$INSTDIR\etc\gtk-2.0\gtkrc"
  Delete "$INSTDIR\etc\gtk-2.0\gtk.immodules"
  Delete "$INSTDIR\etc\gtk-2.0\gdk-pixbuf.loaders"
  Delete "$INSTDIR\etc\fonts\fonts.dtd"
  Delete "$INSTDIR\etc\fonts\fonts.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\90-synthetic.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\80-delicious.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\69-unifont.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\65-nonlatin.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\65-fonts-persian.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\60-latin.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\51-local.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\50-user.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\49-sansserif.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\40-generic.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\30-urw-aliases.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\30-amt-aliases.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\20-unhint-small-vera.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\20-lohit-gujarati.conf"
  Delete "$INSTDIR\etc\fonts\conf.d\20-fix-globaladvance.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\README"
  Delete "$INSTDIR\etc\fonts\conf.avail\90-synthetic.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\80-delicious.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\70-yes-bitmaps.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\70-no-bitmaps.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\69-unifont.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\65-nonlatin.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\65-fonts-persian.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\60-latin.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\51-local.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\50-user.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\49-sansserif.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\40-generic.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\30-urw-aliases.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\30-amt-aliases.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\20-unhint-small-vera.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\20-lohit-gujarati.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\20-fix-globaladvance.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-unhinted.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-sub-pixel-vrgb.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-sub-pixel-vbgr.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-sub-pixel-rgb.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-sub-pixel-bgr.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-no-sub-pixel.conf"
  Delete "$INSTDIR\etc\fonts\conf.avail\10-autohint.conf"
  Delete "$INSTDIR\encodings\__init__.pyc"
  Delete "$INSTDIR\encodings\zlib_codec.pyc"
  Delete "$INSTDIR\encodings\uu_codec.pyc"
  Delete "$INSTDIR\encodings\utf_8.pyc"
  Delete "$INSTDIR\encodings\utf_7.pyc"
  Delete "$INSTDIR\encodings\utf_16_le.pyc"
  Delete "$INSTDIR\encodings\utf_16_be.pyc"
  Delete "$INSTDIR\encodings\utf_16.pyc"
  Delete "$INSTDIR\encodings\unicode_internal.pyc"
  Delete "$INSTDIR\encodings\unicode_escape.pyc"
  Delete "$INSTDIR\encodings\undefined.pyc"
  Delete "$INSTDIR\encodings\tis_620.pyc"
  Delete "$INSTDIR\encodings\string_escape.pyc"
  Delete "$INSTDIR\encodings\shift_jis_2004.pyc"
  Delete "$INSTDIR\encodings\shift_jisx0213.pyc"
  Delete "$INSTDIR\encodings\shift_jis.pyc"
  Delete "$INSTDIR\encodings\rot_13.pyc"
  Delete "$INSTDIR\encodings\raw_unicode_escape.pyc"
  Delete "$INSTDIR\encodings\quopri_codec.pyc"
  Delete "$INSTDIR\encodings\punycode.pyc"
  Delete "$INSTDIR\encodings\ptcp154.pyc"
  Delete "$INSTDIR\encodings\palmos.pyc"
  Delete "$INSTDIR\encodings\mbcs.pyc"
  Delete "$INSTDIR\encodings\mac_turkish.pyc"
  Delete "$INSTDIR\encodings\mac_roman.pyc"
  Delete "$INSTDIR\encodings\mac_latin2.pyc"
  Delete "$INSTDIR\encodings\mac_iceland.pyc"
  Delete "$INSTDIR\encodings\mac_greek.pyc"
  Delete "$INSTDIR\encodings\mac_cyrillic.pyc"
  Delete "$INSTDIR\encodings\latin_1.pyc"
  Delete "$INSTDIR\encodings\koi8_u.pyc"
  Delete "$INSTDIR\encodings\koi8_r.pyc"
  Delete "$INSTDIR\encodings\johab.pyc"
  Delete "$INSTDIR\encodings\iso8859_9.pyc"
  Delete "$INSTDIR\encodings\iso8859_8.pyc"
  Delete "$INSTDIR\encodings\iso8859_7.pyc"
  Delete "$INSTDIR\encodings\iso8859_6.pyc"
  Delete "$INSTDIR\encodings\iso8859_5.pyc"
  Delete "$INSTDIR\encodings\iso8859_4.pyc"
  Delete "$INSTDIR\encodings\iso8859_3.pyc"
  Delete "$INSTDIR\encodings\iso8859_2.pyc"
  Delete "$INSTDIR\encodings\iso8859_16.pyc"
  Delete "$INSTDIR\encodings\iso8859_15.pyc"
  Delete "$INSTDIR\encodings\iso8859_14.pyc"
  Delete "$INSTDIR\encodings\iso8859_13.pyc"
  Delete "$INSTDIR\encodings\iso8859_11.pyc"
  Delete "$INSTDIR\encodings\iso8859_10.pyc"
  Delete "$INSTDIR\encodings\iso8859_1.pyc"
  Delete "$INSTDIR\encodings\iso2022_kr.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp_ext.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp_3.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp_2004.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp_2.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp_1.pyc"
  Delete "$INSTDIR\encodings\iso2022_jp.pyc"
  Delete "$INSTDIR\encodings\idna.pyc"
  Delete "$INSTDIR\encodings\hz.pyc"
  Delete "$INSTDIR\encodings\hp_roman8.pyc"
  Delete "$INSTDIR\encodings\hex_codec.pyc"
  Delete "$INSTDIR\encodings\gbk.pyc"
  Delete "$INSTDIR\encodings\gb2312.pyc"
  Delete "$INSTDIR\encodings\gb18030.pyc"
  Delete "$INSTDIR\encodings\euc_kr.pyc"
  Delete "$INSTDIR\encodings\euc_jp.pyc"
  Delete "$INSTDIR\encodings\euc_jis_2004.pyc"
  Delete "$INSTDIR\encodings\euc_jisx0213.pyc"
  Delete "$INSTDIR\encodings\cp950.pyc"
  Delete "$INSTDIR\encodings\cp949.pyc"
  Delete "$INSTDIR\encodings\cp932.pyc"
  Delete "$INSTDIR\encodings\cp875.pyc"
  Delete "$INSTDIR\encodings\cp874.pyc"
  Delete "$INSTDIR\encodings\cp869.pyc"
  Delete "$INSTDIR\encodings\cp866.pyc"
  Delete "$INSTDIR\encodings\cp865.pyc"
  Delete "$INSTDIR\encodings\cp864.pyc"
  Delete "$INSTDIR\encodings\cp863.pyc"
  Delete "$INSTDIR\encodings\cp862.pyc"
  Delete "$INSTDIR\encodings\cp861.pyc"
  Delete "$INSTDIR\encodings\cp860.pyc"
  Delete "$INSTDIR\encodings\cp857.pyc"
  Delete "$INSTDIR\encodings\cp856.pyc"
  Delete "$INSTDIR\encodings\cp855.pyc"
  Delete "$INSTDIR\encodings\cp852.pyc"
  Delete "$INSTDIR\encodings\cp850.pyc"
  Delete "$INSTDIR\encodings\cp775.pyc"
  Delete "$INSTDIR\encodings\cp737.pyc"
  Delete "$INSTDIR\encodings\cp500.pyc"
  Delete "$INSTDIR\encodings\cp437.pyc"
  Delete "$INSTDIR\encodings\cp424.pyc"
  Delete "$INSTDIR\encodings\cp1258.pyc"
  Delete "$INSTDIR\encodings\cp1257.pyc"
  Delete "$INSTDIR\encodings\cp1256.pyc"
  Delete "$INSTDIR\encodings\cp1255.pyc"
  Delete "$INSTDIR\encodings\cp1254.pyc"
  Delete "$INSTDIR\encodings\cp1253.pyc"
  Delete "$INSTDIR\encodings\cp1252.pyc"
  Delete "$INSTDIR\encodings\cp1251.pyc"
  Delete "$INSTDIR\encodings\cp1250.pyc"
  Delete "$INSTDIR\encodings\cp1140.pyc"
  Delete "$INSTDIR\encodings\cp1026.pyc"
  Delete "$INSTDIR\encodings\cp1006.pyc"
  Delete "$INSTDIR\encodings\cp037.pyc"
  Delete "$INSTDIR\encodings\charmap.pyc"
  Delete "$INSTDIR\encodings\bz2_codec.pyc"
  Delete "$INSTDIR\encodings\big5hkscs.pyc"
  Delete "$INSTDIR\encodings\big5.pyc"
  Delete "$INSTDIR\encodings\base64_codec.pyc"
  Delete "$INSTDIR\encodings\ascii.pyc"
  Delete "$INSTDIR\encodings\aliases.pyc"
  Delete "$INSTDIR\email\__init__.pyc"
  Delete "$INSTDIR\email\_parseaddr.pyc"
  Delete "$INSTDIR\email\Utils.pyc"
  Delete "$INSTDIR\email\quopriMIME.pyc"
  Delete "$INSTDIR\email\Parser.pyc"
  Delete "$INSTDIR\email\Message.pyc"
  Delete "$INSTDIR\email\Iterators.pyc"
  Delete "$INSTDIR\email\Header.pyc"
  Delete "$INSTDIR\email\Generator.pyc"
  Delete "$INSTDIR\email\FeedParser.pyc"
  Delete "$INSTDIR\email\Errors.pyc"
  Delete "$INSTDIR\email\Encoders.pyc"
  Delete "$INSTDIR\email\Charset.pyc"
  Delete "$INSTDIR\email\base64MIME.pyc"
  Delete "$INSTDIR\dummy_threading.pyc"
  Delete "$INSTDIR\dummy_thread.pyc"
  Delete "$INSTDIR\dis.pyc"
  Delete "$INSTDIR\copy_reg.pyc"
  Delete "$INSTDIR\copy.pyc"
  Delete "$INSTDIR\cookielib.pyc"
  Delete "$INSTDIR\ConfigParser.pyc"
  Delete "$INSTDIR\codecs.pyc"
  Delete "$INSTDIR\calendar.pyc"
  Delete "$INSTDIR\cairo\__init__.pyc"
  Delete "$INSTDIR\cairo\_cairo.pyc"
  Delete "$INSTDIR\bz2.pyd"
  Delete "$INSTDIR\bz2.pyc"
  Delete "$INSTDIR\bisect.pyc"
  Delete "$INSTDIR\base64.pyc"
  Delete "$INSTDIR\atk.pyd"
  Delete "$INSTDIR\atk.pyc"
  Delete "$INSTDIR\atexit.pyc"
 
  Delete "$SMPROGRAMS\$ICONS_GROUP\Uninstall.lnk"
  Delete "$DESKTOP\ZenTrayIcon.lnk"
  Delete "$SMPROGRAMS\$ICONS_GROUP\ZenTrayIcon.lnk"
 
  RMDir "$SMPROGRAMS\$ICONS_GROUP"
  RMDir "$INSTDIR\zentrayicon\pixmaps"
  RMDir "$INSTDIR\zentrayicon"
  RMDir "$INSTDIR\share\xml\libglade"
  RMDir "$INSTDIR\share\themes\Redmond95\gtk-2.0"
  RMDir "$INSTDIR\share\themes\Redmond95"
  RMDir "$INSTDIR\share\themes\Raleigh\gtk-2.0"
  RMDir "$INSTDIR\share\themes\MS-Windows\gtk-2.0"
  RMDir "$INSTDIR\share\themes\Metal\gtk-2.0"
  RMDir "$INSTDIR\share\themes\Metal"
  RMDir "$INSTDIR\share\themes\Emacs\gtk-2.0-key"
  RMDir "$INSTDIR\share\themes\Default\gtk-2.0-key"
  RMDir "$INSTDIR\share\pixmaps\glade-2"
  RMDir "$INSTDIR\share\pixmaps"
  RMDir "$INSTDIR\share\gtkthemeselector\pixmaps"
  RMDir "$INSTDIR\share\gtk-doc\html\rsvg"
  RMDir "$INSTDIR\share\gtk-doc\html\pango"
  RMDir "$INSTDIR\share\gtk-doc\html\libglade"
  RMDir "$INSTDIR\share\gtk-doc\html\gtkglext"
  RMDir "$INSTDIR\share\gtk-doc\html\gtk"
  RMDir "$INSTDIR\share\gtk-doc\html\gobject"
  RMDir "$INSTDIR\share\gtk-doc\html\glib"
  RMDir "$INSTDIR\share\gtk-doc\html\gdk-pixbuf"
  RMDir "$INSTDIR\share\gtk-doc\html\gdk"
  RMDir "$INSTDIR\share\gtk-doc\html\cairo"
  RMDir "$INSTDIR\share\gtk-2.0\demo"
  RMDir "$INSTDIR\share\glib-2.0\gettext\po"
  RMDir "$INSTDIR\share\glib-2.0\gettext"
  RMDir "$INSTDIR\share\glade-2\gtk"
  RMDir "$INSTDIR\share\doc\zentrayicon"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images\callouts"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial\images"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\html\tutorial"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\html\html"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\html"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27\examples"
  RMDir "$INSTDIR\share\doc\libxml2-2.6.27"
  RMDir "$INSTDIR\share\doc\fontconfig\fontconfig-devel"
  RMDir "$INSTDIR\share\doc\fontconfig"
  RMDir "$INSTDIR\share\aclocal"
  RMDir "$INSTDIR\logging"
  RMDir "$INSTDIR\lib\pkgconfig"
  RMDir "$INSTDIR\lib\pango\1.6.0\modules"
  RMDir "$INSTDIR\lib\gtkglext-1.0\include"
  RMDir "$INSTDIR\lib\gtk-2.0\include"
  RMDir "$INSTDIR\lib\gtk-2.0\2.4.0\engines"
  RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\loaders"
  RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\immodules"
  RMDir "$INSTDIR\lib\gtk-2.0\2.10.0\engines"
  RMDir "$INSTDIR\lib\glib-2.0\include"
  RMDir "$INSTDIR\lib"
  RMDir "$INSTDIR\gtk"
  RMDir "$INSTDIR\gobject"
  RMDir "$INSTDIR\etc\pango"
  RMDir "$INSTDIR\etc\gtk-2.0"
  RMDir "$INSTDIR\etc\fonts\conf.d"
  RMDir "$INSTDIR\etc\fonts\conf.avail"
  RMDir "$INSTDIR\etc\fonts"
  RMDir "$INSTDIR\encodings"
  RMDir "$INSTDIR\email"
  RMDir "$INSTDIR\cairo"
  RMDir "$INSTDIR"
 
  DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
  DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}"
  SetAutoClose true
SectionEnd