aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/install.xml
blob: dff07683c0bfa4ce5687343e2aee668a8a59e54e (plain)
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
<?xml version="1.0" ?>
<llsd>
<map>
    <key>installables</key>
    <map>
      <key>GL</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 1991-2000 Silicon Graphics, Inc.</string>
        <key>description</key>
        <string>A standard for 3D Graphics rendering engine.</string>
        <key>license</key>
        <string>GL</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>0bd2795a2afe09f6c563f2f888f24cc9</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/GL-darwin-20080613.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>2ab29212a7f3acdaebf10059af816be0</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/GL-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>fb08eb25cb5a58765e2a33e70e62336d</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/GL-linux64-20100203.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>e6ba152b7edd4ad2c9db4f9ff7bd38e1</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/GL-windows-20080613.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>SDL</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga</string>
        <key>description</key>
        <string>The Simple DirectMedia Layer libraries are used for handling input and basic window/GL setup on the Linux client.</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>7b07e7121a3623b2553ed36fb9024b40</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/SDL-1.2.5-darwin-20080818.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>ce71bd658c3fa9fd7f46b7c5adacef1c</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/SDL-1.2.5-linux-20080818.tar.bz2</uri>
          </map>
          <key>linux32</key>
          <map>
            <key>md5sum</key>
            <string>45e8fca9a6e7ae7d36b0c5a21dfbe3b9</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/SDL-1.2.5-linux-i686-gcc-4.1-20080915.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>214fe53a11b3cdef115d36cb95aae185</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/SDL-1.2.12-linux64-20091230.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>149626b0c10d7eb8b9f9be96b5318218</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/SDL-1.2.5-windows-20080613.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>apr_suite</key>
      <map>
        <key>license</key>
        <string>apache 2.0</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>115d8ac44a91efdb173e9b3e478c46b6</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/apr_suite-1.3.7-darwin-20090805.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>7b84cd6a3c601a104d9c09e58ef2f50c</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/apr_suite-1.2.8-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>5ee61e2cffc9b6f2a1bc5027cd51529e</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/apr_suite-1.3.9-linux64-20091204.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>a02619c1e30a3db02d3883bf1ad7a1e6</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/apr_suite-1.3.8-windows-20090911.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>ares</key>
      <map>
        <key>copyright</key>
        <string>Copyright 1998 by the Massachusetts Institute of Technology.</string>
        <key>description</key>
        <string>Performs DNS requests and name resolves asynchronously. Used with libcurl to keep all HTTP operations async.</string>
        <key>license</key>
        <string>c-ares</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>d9ce3ace9235249b7edf6f564de83395</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/ares-1.4.0-darwin-20080731b.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>946c2e106f14f7a1e521d4a14e0e146f</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/ares-1.4.0-linux-20081202.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>301a1317c7d5bebbdc396e1a4874175b</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/ares-1.7.1-Linux-x86_64-20110405.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>f5cf8d121b26f2e7944f7e63cdbff04d</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/ares-1.6.0-windows-20091105.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>berkeley</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 1990-1999 Sleepycat Software. All rights reserved.</string>
        <key>description</key>
        <string>a high-performance, embedded database library</string>
        <key>license</key>
        <string>sleepycat</string>
      </map>
      <key>boost</key>
      <map>
        <key>copyright</key>
        <string>various</string>
        <key>description</key>
        <string>A set of portable C++ libraries which provide a wide set of functionality. Used primarily for tokenization. </string>
        <key>license</key>
        <string>boost</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>bb8552f22769da81593f7d47a51d83d8</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/boost-1.39.0-darwin-20100226.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>146ed8a8c2ef8ab3f0a6c4f214fc5c22</string>
            <key>url</key>
            <uri>http://automated-builds-secondlife-com.s3.amazonaws.com/hg/repo/3p-boost/rev/268347/arch/Linux/installer/boost-1.52.0-linux-20121218.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>b9dbe1ab34187a9a6f53fd89f88060d2</string>
            <key>url</key>
            <uri>https://bitbucket.org/kokua/3p-boost-64/downloads/boost-1.52.0-linux64-20130107.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>3d4bd78f30f118c6e35f8d367ec25fc2</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/boost-1.43.0-windows-20100902.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>curl</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 1996 - 2008, Daniel Stenberg, &lt;daniel@haxx.se&gt;.</string>
        <key>description</key>
        <string>Client-side URL transfer library. Handles moving data across the net in many different protocols. Used to GET/POST/PUT/DELETE web resources. </string>
        <key>license</key>
        <string>curl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>c426dfaad3b662405e49ed3701a55d38</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/curl-7.16.0-darwin-20080812.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>a88e8285b3d97a21bf43cc5f90e87eb9</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/curl-7.16.4-linux-20081202.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>7e698e37a1425d66f709163a36ce0b5a</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/curl-7.21.4-Linux-x86_64-20110405.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>d391c33898a5dbc7e7537bf0d9cda36e</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/curl-7.18.1-windows-20080723.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>dbghelp</key>
      <map>
        <key>copyright</key>
        <string>Copyright Microsoft Corporation</string>
        <key>description</key>
        <string>dbghelp: Debug helper from Microsoft Debugging Tools For Windows</string>
        <key>license</key>
        <string>MSDTW</string>
        <key>packages</key>
        <map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>d893094b001df170ab445577da4a41bf</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/dbghelp-6.11.1.404-windows-201010901.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>dbusglib</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 2002, 2003 CodeFactory AB / Copyright (C) 2003, 2004 Red Hat, Inc.</string>
        <key>description</key>
        <string>dbus/dbus-glib: headers only</string>
        <key>license</key>
        <string>AFL2.1</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>5bbf7e33dadc7d046dcf44883a9ec3d0</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/dbusglib-linux-20101031.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>09be41e3145e1a960e50f2f9ce0a5e7d</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/dbusglib-linux64-20101007.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>elfio</key>
      <map>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>82ea408af2f968cfe5f013ab241323ef</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/elfio-1.0.3-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>e829a52ba67e02b011cf2e372914d32f</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/elfio-1.0.3-linux64-20091129.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>expat</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd</string>
        <key>description</key>
        <string>An XML parser library written in C. It is a stream-oriented parser in which an application registers handlers for things the parser might find in the XML document (like start tags).</string>
        <key>license</key>
        <string>mit</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>c457a0a041ac4946265889a503d26c3d</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/expat-1.95.8-darwin-20090805.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>67b470fd446b08c9831d1039674eae4e</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/expat-1.95.8-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>fe25958da18039faf7a38845f2057561</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/expat-2.0.1-linux64-20091204.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>cca5ca3759f645d4a124d4b96df7f717</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/expat-1.95.8-windows-20080715.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>flac</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson</string>
        <key>description</key>
        <string>libFLAC - Free Lossless Audio Codec</string>
        <key>license</key>
        <string>xiph-bsd</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>0fc6d13b79a0c806f9d32c00f374de67</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/flac-1.2.1-darwin-20091107.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>fontconfig</key>
      <map>
        <key>license</key>
        <string>mit</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>7f15334750d440084782aecaf41de583</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/fontconfig-2.7.3-linux-20091104.tar.bz2</uri>
          </map>
          <key>linux64</key>
           <map>
             <key>md5sum</key>
             <string>d7242641aa40019af06214b1d2a10bec</string>
             <key>url</key>
             <uri>http://download.kokuaviewer.org/files/test-builds/fontconfig-2.7.3-Linux-x86_64-20110805.tar.bz2</uri>
           </map>
        </map>
      </map>
	  <key>freeglut</key>
			<map>
				<key>license</key>
				<string>mit</string>
				<key>packages</key>
				<map>
					<key>windows</key>
					<map>
						<key>md5sum</key>
						<string>fcbb695ff203775fad96d184bf5f34fc</string>
						<key>url</key>
						<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/freeglut-2.4.0-windows-20090608.tar.bz2</uri>
					</map>
				</map>
			</map>
      <key>freetype</key>
      <map>
        <key>copyright</key>
        <string>Copyright</string>
        <key>description</key>
        <string>Font</string>
        <key>license</key>
        <string>freetype</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>694173293a483c01472a30cc7d895c5a</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/freetype-2.1.5-darwin-20080812.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>efc845cf291073b1e4d381a271f194eb</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/freetype-2.3.11-linux-20091103.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>1b4624ab06a7ba30e29d1994424db41e</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/freetype-2.3.11-linux64-20091230.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>688944a961e16c2a89f81b60b2ff3acf</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/freetype-2.1.5-windows-20080822.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>glh_linear</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 2000 Cass Everitt; Copyright (c) 2000 NVIDIA Corporation; All rights reserved.</string>
        <key>description</key>
        <string>nVidia NVParse SDK: platform-indepenedent C++ Apple OpenGL helper library</string>
        <key>license</key>
        <string>glh_linear</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>23bd9a75e5a2365a827461e6c324f52b</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glh_linear-darwin-20080613.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>23bd9a75e5a2365a827461e6c324f52b</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glh_linear-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>2965646aea1d2a6aec1fbc431c02733f</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glh_linear-linux-20080613.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>38b9ddfe8dceff55ee4351016a937d1b</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glh_linear-windows-20080613.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>glib</key>
      <map>
        <key>description</key>
        <string>GLib is a library containing many useful C routines for things such as trees, hashes, and lists.</string>
        <key>license</key>
        <string>gpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>64a131bae070964de6431e1c7d5e7362</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/glib-2.12.0-darwin-20091107.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>566cc47a572303bc4aef12ca02670902</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/glib-2.20.5-linux32-20100529.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>f181d42b6f7b2e9ca68174dbf3d282a5</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/test-builds/glib-2.24.2-Linux-x86_64-20110806.tar.bz2</uri>
          </map>
        </map>
      </map>
	  <key>glui</key>
		<map>
			<key>license</key>
			<string>lgpl</string>
			<key>packages</key>
			<map>
				<key>darwin</key>
				<map>
					<key>md5sum</key>
					<string>84f792a860691d0fad6d1de6eeb31baa</string>
					<key>url</key>
					<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glui-2.36-darwin-20090623a.tar.bz2</uri>
				</map>
				<key>windows</key>
				<map>
					<key>md5sum</key>
					<string>5b8631fe510d4ebaeb965c673937e1e7</string>
					<key>url</key>
					<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/glui-2.3.6-windows-freeglut-20090608.tar.bz2</uri>
				</map>
			</map>
		</map>
      <key>google</key>
      <map>
        <key>license</key>
        <string>mit</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>40db900872612615e849f17cbdfd2c27</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/google-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>6a83ddce8673acb5057ed3a14769deee</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/google-linux64-20091203.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>gstreamer</key>
      <map>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>a0e055b52ac5c4dfecb3546f742fda42</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/gstreamer-0.10.22-darwin-20091107.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>2cd3f6499f8444f1d119d097e4047252</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/gstreamer-0.10.24-linux-20091125.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>7e6fc4e185e8444a07b58ba7c0df255a</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/gstreamer-0.10.24-linux64-20091230.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>bd07378834cd1a4ecf7de55d4e2a7da2</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/gstreamer-glib-iconv-libxml-windows-0.10.32-20110503.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>gstreamer-plugins</key>
      <map>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>27a111bd9b12f413b577ae239c10aa7c</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/gstreamer-plugins-darwin-20100826.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>76ad5a08f8f07f99c9e1545c2a0adc27</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/gstreamer-plugins-windows-0.10.32-20110503.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>gtk-etc</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
atk: Copyright 2001 Sun Microsystems Inc.
cairo: Copyright © 2002 University of Southern California, Copyright © 2005 Red Hat, Inc.

</string>
        <key>description</key>
        <string>GTK+ and associated libraries (atk, cairo, pango, pixman)</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>349ee367e0ac1e878b24b66e449c6ff8</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/gtk-etc-linux-20101106.1.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>e373ea5a705ec84de48c0dd9306d3dd5</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/test-builds/gtk-etc-Linux-x86_64-20110806.tar.bz2</uri>
          </map>
        </map>
      </map>
	    <key>hunspell</key>
		  <map>
			  <key>copyright</key>
			  <string>various</string>
			  <key>description</key>
			  <string>A open source spell check library</string>
			  <key>license</key>
			  <string>lgpl</string>
			  <key>packages</key>
			  <map>
				  <key>windows</key>
				  <map>
					  <key>md5sum</key>
					  <string>1eb49bf9bcce30f5fe0dddaed2a3c628</string>
					  <key>url</key>
					  <uri>http://imprudenceviewer.org/download/libs/windows_hunspell.tar.bz2</uri>
				  </map>
				  <key>linux</key>
				  <map>
					  <key>md5sum</key>
					  <string>dbe264ef2e932980e31db646ea29bbe7</string>
					  <key>url</key>
					  <uri>http://imprudenceviewer.org/download/libs/hunspell-1.2-linux32-20100902.tar.bz2</uri>
				  </map>
				  <key>linux64</key>
				  <map>
					  <key>md5sum</key>
					  <string>5388725d012c3bfabcc420be53442018</string>
					  <key>url</key>
					  <uri>http://imprudenceviewer.org/download/libs/hunspell-1.2-linux64-20100902.tar.bz2</uri>
				  </map>
				  <key>darwin</key>
				  <map>
					  <key>md5sum</key>
					  <string>9b970abfc9df40ad6d183a4b1f732fb2</string>
					  <key>url</key>
					  <uri>http://imprudenceviewer.org/download/libs/hunspell-1.2-darwin.tar.gz</uri>
				  </map>
			  </map>
		  </map>
      <key>jpeglib</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 2003, Yves Piguet.</string>
        <key>description</key>
        <string>An open-source JPEG (JFIF) library</string>
        <key>license</key>
        <string>jpeglib</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>1007ddeeca66145b75055f81462364cd</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/jpeg-6b-darwin-20091108.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>8aa8e01e0c21f60f0ede0ffb04e9214f</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/jpeglib-6b-linux-20081218.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
          <key>md5sum</key>
            <string>64e7fa98568ef52b3b9d4a18b3515090</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/jpeglib-7-linux64-20091230.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>e40d2df9aaefb3bd57289fe96766353a</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/jpeglib-6b-windows-20080723.tar.bz2</uri>
          </map>
        </map>
      </map>
	  <key>jsoncpp</key>
		<map>
			<key>copyright</key>
			<string>json-cpp library released to Public Domain by Baptiste Lepilleur &lt;blep@users.sourceforge.net&gt;</string>
			<key>description</key>
			<string>jsoncpp is an implementation of a JSON (http://json.org) reader and writer in C++.</string>
			<key>license</key>
			<string>jsoncpp</string>
			<key>packages</key>
			<map>
				<key>darwin</key>
				<map>
					<key>md5sum</key>
					<string>4c6b949778099a63550898f00f3e6a5e</string>
					<key>url</key>
					<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/jsoncpp-svn-r69-darwin-20090923.tar.bz2</uri>
				</map>
				<key>linux</key>
				<map>
					<key>md5sum</key>
					<string>a2a94b8ca1d32f23e3e668d64023514e</string>
					<key>url</key>
					<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/jsoncpp-svn-r69-linux-20090922.tar.bz2</uri>
				</map>
				<key>linux64</key>
				<map>
					<key>md5sum</key>
					<string>a06ab38628ab7b53b8f3326cd942a6a8</string>
					<key>url</key>
					<uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/jsoncpp-svn-r69-linux64-20090922.tar.bz2</uri>
				</map>
				<key>windows</key>
				<map>
					<key>md5sum</key>
					<string>6912b5137a8533096a731f77fb1363b4</string>
					<key>url</key>
					<uri>http://imprudenceviewer.org/download/libs/json-windows.tar.bz2</uri>
				</map>
			</map>
		</map>
      <key>libmono</key>
      <map>
        <key>copyright</key>
        <string>(C) 2005 Novell, Inc. http://www.novell.com</string>
        <key>description</key>
        <string>An open source implementation of the ECMA/ISO ECMA-334 Common L\
anguage Infrstructure (CLI) international standard</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>39a803fcbe6f11b72358fc78b7777b6c</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libmono-darwin-20080724.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>9bc0f8b7d5e0ff194b6d5635daf9ae3a</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libmono-1.2.6-linux-20080816a.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>451521b4cb57c35caf3efb8dcf99b99e</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libmono-1.2.6-linux64-20080926.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>6712a09311a914752f47d5d62562a239</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libmono-1.2.6-windows-20080903.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>liboil</key>
      <map>
        <key>copyright</key>
        <string>Portions copyright 2002,2003,2004,2005 David A. Schleef &lt;ds@schleef.org&gt;
Portions copyright Motorola, Inc. 2003
Portions copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura
</string>
        <key>license</key>
        <string>liboil</string>
        <key>description</key>
        <string>Optimized Inner Loops library</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>23c41164df134e50c887ded186f8144e</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/liboil-0.3.15-darwin-20091107.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>85219034b4e4c17e792f8bb54a1973f7</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/liboil-0.3.16-linux-20091125.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>15d8f97d5ec3a27f643708511ca8bee6</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/liboil-0.3.16-linux64-20091130.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>libpng</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson</string>
        <key>description</key>
        <string>An open, extensible image format with lossless compression. PNG Reference Library </string>
        <key>license</key>
        <string>libpng</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>13fd90d50a0bd7ea9b8c8db5bf97cc5e</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/libpng-1.2.35-darwin-20091107.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>f5e84c991f6e3caacb26db259593cbea</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libpng-1.2.35-linux-20090304.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>4485dc95183c9441042cabebfa72fbea</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/libpng-1.2.41-linux64-20100227.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>c781cd9846cf20afb90ac40ad1a0ce9d</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libpng-1.2.35-windows-20090917.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>libuuid</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 2007 Free Software Foundation, Inc. &lt;http://fsf.org/&gt;</string>
        <key>description</key>
        <string>Generates UUIDs under Linux. Originally a part of the ext2fs filesystem. Also see lluuid.cpp for all platforms. Part of the e2fsprogs package.</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>b5cc6062bd2f7421f606f7e1a5228829</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/libuuid-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>3f2a0b553a2a72d3b9a39f528f057b18</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/libuuid-linux64-lenny-20091130.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>libxml</key>
      <map>
        <key>license</key>
        <string>mit</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>d48a1680e60496bf3324d3fd2e11d8a8</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/libxml-2.6.27-darwin-20091107.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>kokua-qt</key>
      <map>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>380775ee42191982c22fa5f5f5428250</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/kokua-qt4.7.4-Linux-i686-20110620.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>4c6c0f607f7cc9ebaa5446fd9ca3371a</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/kokua-qt4.7.4-Linux-x86_64-20110620.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>llqtwebkit</key>
      <map>
        <key>license</key>
        <string>gpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>becffca6bd8dcb239de284ea2a8b485b</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/llqtwebkit-4.6+cookies-darwin-20100617.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>d2f69c0d72e28037f5377538d4ec8dfe</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/kokua-llqtwebkit-Linux-i686-20110620.tar.bz2</uri>
          </map>
          <key>linux64</key>
           <map>
             <key>md5sum</key>
              <string>28fe808f318a2b66146e4bbcf1f96306</string>
              <key>url</key>
              <uri>http://download.kokuaviewer.org/files/libs/kokua-llqtwebkit-Linux-x86_64-20110620.tar.bz2</uri>
           </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>df1bdd683128e060d60e435f65d8f7e8</string>
            <key>url</key>
            <uri>http://viewer-source-downloads.s3.amazonaws.com/install_pkgs/llqtwebkit-windows-qt4.6-20100617.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>mesa</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1999-2007  Brian Paul All Rights Reserved.</string>
        <key>description</key>
        <string>Mesa 3-D graphics library. Provides the required Apple OpenGL headers under Linux.</string>
        <key>license</key>
        <string>mesa</string>
        <key>packages</key>
        <map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>70d0bbe1145fff29a0131349c898260e</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/mesa-7.0-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>56630977f9261bd82039b0da08a0685c</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/mesa-6.2.1-linux64-20081016.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>82cdcdcb2d0615389a7480485ea35f4c</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/mesa-7.0-windows-20080613.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>neon</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1999-2006 Joe Orton &lt;joe@manyfish.co.uk&gt;
Portions are:
Copyright (C) 1999-2000 Tommi Komulainen &lt;Tommi.Komulainen@iki.fi&gt;
Copyright (C) 1999-2000 Peter Boos &lt;pedib@colorfullife.com&gt;
Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
Copyright (C) 2004 Aleix Conchillo Flaque &lt;aleix@member.fsf.org&gt;
Copyright (C) 2004 Jiang Lei &lt;tristone@deluxe.ocn.ne.jp&gt;
Copyright (C) 2004-2005 Vladimir Berezniker @ http://public.xdi.org/=vmpn
</string>
        <key>description</key>
        <string>HTTP and WebDAV client library</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>c8582be73def7f40fdc236ba9e33b4ac</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/neon-0.28.4-darwin-20091109.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>ndofdev</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 2007, 3Dconnexion, Inc. - All rights reserved.</string>
        <key>description</key>
        <string>in use on windows and darwin for joystick support.</string>
        <key>license</key>
        <string>linden</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>17999c47e17f2dd9e12a22372ce8ff14</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/ndofdev-darwin-20080812.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>38abfe002ba073b6824016db98269972</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/ndofdev-linux32-0.3.1-20100817.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>d1986d287655f159be50d661c125ba19</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/ndofdev-linux64-0.3.1-20100817.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>8ac100b5b711231b06be891c91cb68f3</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/ndofdev-windows-20080723.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>ogg-vorbis</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) Xiph.org Foundation</string>
        <key>description</key>
        <string>Ogg: container format; Vorbis: audio compression scheme</string>
        <key>license</key>
        <string>xiph-bsd</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>30c75ce29c2ce2f6e8063067db31989d</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/ogg-vorbis-darwin-1.2.2-1.3.2-20110517.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>a132634c28f0d7fb0e7e4f62c82a0579</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/ogg-vorbis-linux-1.2.2-1.3.2-20110514.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>dded849d4d46fb5d94f088c86407ec98</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/ogg-vorbis-linux64-1.2.2-1.3.2-20110514.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>946bab72f6774220eaf139ce378ba671</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/ogg-vorbis-windows-1.2.2-1.3.2-20110511.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>openal</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 2008 by authors.</string>
        <key>description</key>
        <string>3D Audio library</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>dfa26aab94c6f1ec09ce432777e18d2f</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/openal-darwin-20091118.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>cb1acfef8c0c44e86b539bae0e255a2e</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/openal-1.13-Linux-i686-20110708.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
             <key>md5sum</key>
            <string>7b1039886ab997d2926604540426961f</string>
             <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/openal-1.13-Linux-x86_64-20110708.tar.bz2</uri>
           </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>8ded552db94e06574db77a83ff672420</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/openal-soft-1.13-windows-20110624.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>openSSL</key>
      <map>
        <key>license</key>
        <string>openSSL</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>a7b49e0f3eedbd5de117a3524c414b3a</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openSSL-0.9.7c-darwin-20080812.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>f219ef07b02e2abb9282345c3a8f2b39</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openSSL-0.9.7c-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux32</key>
          <map>
            <key>md5sum</key>
            <string>1037114c5b7ad906daca2b4820080b5b</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openSSL-0.9.8g-linux-i686-gcc-4.1-20080915.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>d02fd5e08e7300e418ac86f00a321b23</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/openSSL-1.0.0-Linux-x86_64-20110405.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>dd85209081b832e836de6e1538541d89</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/openSSL-0.9.8j-windows-20090129.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>openjpeg</key>
      <map>
        <key>copyright</key>
        <string>Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium</string>
        <key>description</key>
        <string>An open-source JPEG-2000 library; a slower alternative to Kadaku. Used in the open source release </string>
        <key>license</key>
        <string>openjpeg</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>f897280ac9338127ff90198e0e2e6d1c</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/openjpeg-1.4.565-darwin-20100620.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>d4754fa473cbeea6757e560d67b28144</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/openjpeg-1.4-linux32-20100526.tar.bz2</uri>
          </map>
          <key>linux64</key>
           <map>
             <key>md5sum</key>
             <string>5b812951f5a300540a7a51dcf65c39f0</string>
             <key>url</key>
             <uri>http://imprudenceviewer.org/download/libs/openjpeg-1.4-linux64-20100526.tar.bz2</uri>
           </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>8e611d266d9e589bc3913dbe0a08853c</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/openjpeg-1.4.565-windows-20100514.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>pulseaudio</key>
      <map>
        <key>copyright</key>
        <string>Copyright 2004-2006 Lennart Poettering, Copyright 2006 Pierre Ossman (ossman@cendio.se) for Cendio AB</string>
        <key>description</key>
        <string>pulseaudio: headers only</string>
        <key>license</key>
        <string>lgpl</string>
        <key>packages</key>
        <map>
<!--          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>30cb00069fe2a545fbf7be1070386236</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/linux-pulse-headers-0.9.14.tar.bz2</uri>
          </map>
          <key>linux64</key>--><key>common</key>
          <map>
            <key>md5sum</key>
            <string>c5c3b840bb77ee41fa06970663c15302</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/pulseaudio-headers-0.9.21-63-gd3efa-dirty.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>quicktime</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1990-2006 by Apple Computer, Inc., all rights reserved.</string>
        <key>description</key>
        <string>Separate download. Used to play in-world video clips on a prim. </string>
        <key>license</key>
        <string>quicktime</string>
        <key>packages</key>
        <map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>7a2e6fc89b1ef027f3a36ebb46fb0c8a</string>
            <key>url</key>
            <uri>scp:install-packages.lindenlab.com:/local/www/install-packages/doc/quicktime-windows-20080611.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>smartheap</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1991-2000 Compuware Corporation. All Rights Reserved.</string>
        <key>description</key>
        <string>Memory Management Library</string>
        <key>license</key>
        <string>smartheap</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>f54131b5f228e805c64c2e4e6c96579a</string>
            <key>url</key>
            <uri>scp:install-packages.lindenlab.com:/local/www/install-packages/doc/smartheap-6.0.2-darwin-20080610.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>499208522bf7d7843e1d014d64214e06</string>
            <key>url</key>
            <uri>scp:install-packages.lindenlab.com:/local/www/install-packages/doc/smartheap-6.0.2-linux-20080610.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>78fd47017f21d11eae43bca3e38a3e1e</string>
            <key>url</key>
            <uri>scp:install-packages.lindenlab.com:/local/www/install-packages/doc/smartheap-6.0.2-windows-20080611.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>theora</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 2002-2009 Xiph.org Foundation</string>
        <key>description</key>
        <string>Ogg Theora video format</string>
        <key>license</key>
        <string>xiph-bsd</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>ba438bfe25ada5c7be7051f9a91ca300</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/theora-1.0alpha5-darwin-20091107.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>e01af61872bc77d74eb0620a9f4c9f4e</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/theora-linux-20091115.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>b1141b53eb3576cc0c32997bf0fb097c</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/theora-linux64-20091202.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>tut</key>
      <map>
        <key>copyright</key>
        <string>Copyright 2002-2006 Vladimir Dyuzhev, Copyright 2007 Denis Kononenko, Copyright 2008 Michal Rzechonek</string>
        <key>description</key>
        <string>C++ Template Unit Test</string>
        <key>license</key>
        <string>bsd</string>
        <key>packages</key>
        <map>
          <key>common</key>
          <map>
            <key>md5sum</key>
            <string>a1b8a118ba9df1f2a73f6aafa7980e83</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/tut-2008-11-30-common-20081208.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>unistd</key>
      <map>
        <key>copyright</key>
        <string>(c) 2008 Linden Lab.</string>
        <key>description</key>
        <string>Placeholder file to make flex happy on windows.</string>
        <key>license</key>
        <string>linden</string>
        <key>packages</key>
        <map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>6353aff33d7d03b22055aec76f53a866</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/unistd-windows-20080611.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>vivox</key>
      <map>
        <key>copyright</key>
        <string> </string>
        <key>license</key>
        <string>vivox</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>8675b5eedef038b514338b17f0e55961</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6270-darwin-20090309.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>01573510dce7f380f44e561ef2f3dd9f</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6270-linux-20090309.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>01573510dce7f380f44e561ef2f3dd9f</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6270-linux-20090309.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>752daa90e07c05202d1f76980cb955eb</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/vivox-2.1.3010.6270-windows-20090309.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>xmlrpc-epi</key>
      <map>
        <key>copyright</key>
        <string>Copyright 2000 Epinions, Inc.</string>
        <key>description</key>
        <string>Implementation of the xmlrpc protocol in C that provides an API for developers to serialize RPC requests to and from XML. </string>
        <key>license</key>
        <string>xmlrpc-epi</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>2d3a918c88d756422c1a8139ebe15f56</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/xmlrpc-epi-0.51-darwin-20080812.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>84a219199240ea70f54439c02acef0cd</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/xmlrpc-epi-0.51-linux-20080812.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>dc67b896c56116df8e18f2d1bbd07031</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/xmlrpc-epi-0.51-linux64-20080909.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>789988ea1fd8615137f843fbbe5b6bfa</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/xmlrpc-epi-0.51-windows-20080723.tar.bz2</uri>
          </map>
        </map>
      </map>
      <key>zlib</key>
      <map>
        <key>copyright</key>
        <string>Copyright (C) 1995-2003 Jean-loup Gailly and Mark Adler</string>
        <key>description</key>
        <string>A Massively Spiffy Yet Delicately Unobtrusive Compression Library (Also Free, Not to Mention Unencumbered by Patents)</string>
        <key>license</key>
        <string>zlib</string>
        <key>packages</key>
        <map>
          <key>darwin</key>
          <map>
            <key>md5sum</key>
            <string>c844e1b05723ce078dbbd5aea9cdd3ad</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/zlib-1.1.4-darwin-20080818.tar.bz2</uri>
          </map>
          <key>linux</key>
          <map>
            <key>md5sum</key>
            <string>806637b1834825ab8888d5e487085df8</string>
            <key>url</key>
            <uri>http://s3.amazonaws.com/viewer-source-downloads/install_pkgs/zlib-1.1.4-linux-20080818.tar.bz2</uri>
          </map>
          <key>linux64</key>
          <map>
            <key>md5sum</key>
            <string>36716acbb29ed2adbc8d82d9ddbdec65</string>
            <key>url</key>
            <uri>http://download.kokuaviewer.org/files/libs/z-lib-1.2.5-Linux-x86_64-20110405.tar.bz2</uri>
          </map>
          <key>windows</key>
          <map>
            <key>md5sum</key>
            <string>8695136860ee3fbad7f5e793232b50eb</string>
            <key>url</key>
            <uri>http://imprudenceviewer.org/download/libs/zlib-1.2.3-windows-20091112.tar.bz2</uri>
          </map>
        </map>
      </map>
    </map>
    <key>licenses</key>
    <map>
      <key>AFL2.1</key>
      <map>
        <key>url</key>
        <string>http://opensource-definition.org/licenses/afl-2.1.html</string>
      </map>
      <key>GL</key>
      <map>
        <key>url</key>
        <string>http://www.xfree86.org/4.4.0/LICENSE9.html#sgi</string>
      </map>
      <key>MSDTW</key>
      <map>
        <key>text</key>
        <string>MICROSOFT SOFTWARE LICENSE TERMS 
MICROSOFT DEBUGGING TOOLS FOR WINDOWS 
These license terms are an agreement between Microsoft Corporation (or based on where you live, one of 
its affiliates) and you.  Please read them.  They apply to the software named above, which includes the 
media on which you received it, if any.  The terms also apply to any Microsoft
*	updates,
*	supplements,
*	Internet-based services 
*	support services, and
*	Debugging symbol files that you may access over the internet 
for this software, unless other terms accompany those items.  If so, those terms apply.
By using the software, you accept these terms.  If you do not accept them, do not use the 
software.
If you comply with these license terms, you have the rights below.
1.	INSTALLATION AND USE RIGHTS.  One user may install and use any number of copies of the 
software on your devices to design, develop, debug and test your programs.
2.	ADDITIONAL LICENSING REQUIREMENTS AND/OR USE RIGHTS.
a.	Distributable Code.  The software contains code that you are permitted to distribute in programs 
you develop if you comply with the terms below.
i.	Right to Use and Distribute.  The code and text files listed below are “Distributable Code.”
*	REDIST.TXT Files.  You may copy and distribute the object code form of code listed in 
REDIST.TXT files.
*	Sample Code.  You may modify, copy, and distribute the source and object code form of 
code marked as “sample.”
*	Third Party Distribution.  You may permit distributors of your programs to copy and 
distribute the Distributable Code as part of those programs.
ii.	Distribution Requirements.  For any Distributable Code you distribute, you must
*	add significant primary functionality to it in your programs;
*	require distributors and external end users to agree to terms that protect it at least as much 
as this agreement; 
*	display your valid copyright notice on your programs; and
*	indemnify, defend, and hold harmless Microsoft from any claims, including attorneys’ fees, 
related to the distribution or use of your programs.
iii.	Distribution Restrictions.  You may not
*	alter any copyright, trademark or patent notice in the Distributable Code; 
*	distribute any symbol files which you may access or use under these license terms for the 
software;
*	use Microsoft’s trademarks in your programs’ names or in a way that suggests your 
programs come from or are endorsed by Microsoft; 
*	distribute Distributable Code to run on a platform other than the Windows platform;
*	include Distributable Code in malicious, deceptive or unlawful programs; or
*	modify or distribute the source code of any Distributable Code so that any part of it 
becomes subject to an Excluded License.  An Excluded License is one that requires, as a 
condition of use, modification or distribution, that
*	the code be disclosed or distributed in source code form; or 
*	others have the right to modify it.
3.	SCOPE OF LICENSE.  The software is licensed, not sold. This agreement only gives you some rights 
to use the software.  Microsoft reserves all other rights.  Unless applicable law gives you more rights 
despite this limitation, you may use the software only as expressly permitted in this agreement.  In 
doing so, you must comply with any technical limitations in the software that only allow you to use it in 
certain ways.    You may not
*	work around any technical limitations in the software;
*	reverse engineer, decompile or disassemble the software, except and only to the extent that 
applicable law expressly permits, despite this limitation;
*	make more copies of the software than specified in this agreement or allowed by applicable law, 
despite this limitation;
*	publish the software for others to copy;
*	rent, lease or lend the software;
*	transfer the software or this agreement to any third party; or
*	use the software for commercial software hosting services.   
4.	INTERNET-BASED SERVICES.  Microsoft provides Internet-based services with the software.  It may 
change or cancel them at any time.
a.	Consent for Internet-Based Services.  The software contains features which may connect to 
Microsoft or service provider computer systems over the Internet.  In some cases, you will not 
receive a separate notice when they connect.  You may switch these features on or you may 
choose not to use them.  For more information about these features, see 
http://www.microsoft.com/info/privacy/default.mspx.  By using these features, you consent to the transmission of 
this information.  Microsoft does not use the information to identify or contact you.
b.	Misuse of Internet-based Services.  You may not use these services in any way that could 
harm them or impair anyone else’s use of them.  You may not use the services to try to gain 
unauthorized access to any service, data, account or network by any means.     
  
5.	BACKUP COPY.  You may make one backup copy of the software.  You may use it only to reinstall the 
software.
6.	DOCUMENTATION.  Any person that has valid access to your computer or internal network may copy 
and use the documentation for your internal, reference purposes.
7.	EXPORT RESTRICTIONS.  The software is subject to United States export laws and regulations.  You 
must comply with all domestic and international export laws and regulations that apply to the software.  
These laws include restrictions on destinations, end users and end use.  For additional information, see 
www.microsoft.com/exporting.
8.	SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it.
9.	ENTIRE AGREEMENT.  This agreement, and the terms for supplements, updates, Internet-based 
services and support services that you use, are the entire agreement for the software and support 
services.
10.	APPLICABLE LAW.
a.	United States.  If you acquired the software in the United States, Washington state law governs 
the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of 
laws principles.  The laws of the state where you live govern all other claims, including claims under 
state consumer protection laws, unfair competition laws, and in tort.
b.	Outside the United States.  If you acquired the software in any other country, the laws of that 
country apply.
11.	LEGAL EFFECT.  This agreement describes certain legal rights.  You may have other rights under the 
laws of your country.  You may also have rights with respect to the party from whom you acquired the 
software.  This agreement does not change your rights under the laws of your country if the laws of 
your country do not permit it to do so.
12.	DISCLAIMER OF WARRANTY.   The software is licensed “as-is.”  You bear the risk of using 
it.  Microsoft gives no express warranties, guarantees or conditions.  You may have 
additional consumer rights under your local laws which this agreement cannot change.  To 
the extent permitted under your local laws, Microsoft excludes the implied warranties of 
merchantability, fitness for a particular purpose and non-infringement.
13.	LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES.   You can recover from 
Microsoft and its suppliers only direct damages up to U.S. $5.00.  You cannot recover any 
other damages, including consequential, lost profits, special, indirect or incidental 
damages.
This limitation applies to
*	anything related to the software, services, content (including code) on third party Internet sites, or 
third party programs; and
*	claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, 
or other tort to the extent permitted by applicable law.
It also applies even if Microsoft knew or should have known about the possibility of the damages.  The 
above limitation or exclusion may not apply to you because your country may not allow the exclusion or 
limitation of incidental, consequential or other damages.
		</string>
      </map>
      <key>apache 2.0</key>
      <map>
        <key>url</key>
        <string>http://www.apache.org/licenses/LICENSE-2.0</string>
      </map>
      <key>boost</key>
      <map>
        <key>url</key>
        <string>http://www.boost.org/LICENSE_1_0.txt</string>
      </map>
      <key>bsd</key>
      <map>
        <key>url</key>
        <string>http://www.opensource.org/licenses/bsd-license.php</string>
      </map>
      <key>c-ares</key>
      <map>
        <key>text</key>
        <string>http://daniel.haxx.se/projects/c-ares/license.html</string>
      </map>
      <key>creative commons attribution-share alike 3.0</key>
      <map>
        <key>url</key>
        <string>http://creativecommons.org/licenses/by-sa/3.0/legalcode</string>
      </map>
      <key>curl</key>
      <map>
        <key>url</key>
        <string>http://curl.haxx.se/docs/copyright.html</string>
      </map>
      <key>fmod</key>
      <map>
        <key>url</key>
        <string>http://www.fmod.org/ifmodlicense.html</string>
      </map>
      <key>freetype</key>
      <map>
        <key>url</key>
        <string>http://freetype.sourceforge.net/FTL.TXT</string>
      </map>
      <key>glh_linear</key>
      <map>
        <key>text</key>
        <string>glh - is a platform-indepenedent C++ OpenGL helper library 

Copyright (c) 2000 Cass Everitt
Copyright (c) 2000 NVIDIA Corporation
All rights reserved.

Redistribution and use in source and binary forms, with or
without modification, are permitted provided that the following
conditions are met:

Redistributions of source code must retain the above
copyright notice, this list of conditions and the following
disclaimer. 
Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution. 
The names of contributors to this software may not be used
to endorse or promote products derived from this software
without specific prior written permission. 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE. 

Cass Everitt - cass@r3.nu

</string>
      </map>
      <key>gpl</key>
      <map>
        <key>url</key>
        <string>http://www.gnu.org/licenses/gpl.html</string>
      </map>
      <key>havok</key>
      <map>
        <key>text</key>
        <string>on file</string>
      </map>
      <key>hunspell</key>
      <map>
        <key>url</key>
        <string>http://www.gnu.org/licenses/gpl.html</string>
      </map>
      <key>hunspell-dictionaries</key>
      <map>
        <key>url</key>
        <string>http://www.gnu.org/licenses/gpl.html</string>
      </map>
      <key>intel</key>
      <map>
        <key>text</key>
        <string>Haven't yet found.
</string>
      </map>
      <key>jpeglib</key>
      <map>
        <key>text</key>
        <string>http://nyctergatis.com/jpeglib/</string>
      </map>
      <key>jsoncpp</key>
      <map>
        <key>text</key>
        <string>The json-cpp library and this documentation are in Public Domain. Retrieved from http://jsoncpp.sourceforge.net/ on 2009-09-04.</string>
        <key>url</key>
        <string>http://jsoncpp.sourceforge.net</string>
      </map>
      <key>kdu</key>
      <map>
        <key>text</key>
        <string>jpeg2000 license #00024 (on file)</string>
      </map>
      <key>lgpl</key>
      <map>
        <key>url</key>
        <string>http://www.gnu.org/copyleft/lgpl.html</string>
      </map>
      <key>libpng</key>
      <map>
        <key>text</key>
        <string>http://www.libpng.org/pub/png/src/libpng-LICENSE.txt</string>
      </map>
      <key>liboil</key>
      <map>
        <key>url</key>
        <string>http://cgit.freedesktop.org/liboil/tree/COPYING</string>
      </map>
      <key>linden</key>
      <map>
        <key>text</key>
        <string>Using this license for Linden Lab owned library files</string>
      </map>
      <key>mesa</key>
      <map>
        <key>url</key>
        <string>http://www.mesa3d.org/license.html</string>
      </map>
      <key>mit</key>
      <map>
        <key>text</key>
        <string>http://www.jclark.com/xml/copying.txt</string>
      </map>
      <key>multiple</key>
      <map>
        <key>text</key>
        <string>Multiple licenses. See package contents for details.</string>
      </map>
      <key>xiph-bsd</key>
      <map>
        <key>url</key>
        <string>http://www.xiph.org/licenses/bsd/</string>
      </map>
      <key>openSSL</key>
      <map>
        <key>url</key>
        <string>http://www.openssl.org/source/license.html</string>
      </map>
      <key>openjpeg</key>
      <map>
        <key>url</key>
        <string>http://www.openjpeg.org/BSDlicense.txt</string>
      </map>
      <key>quicktime</key>
      <map>
        <key>text</key>
        <string>ENGLISH

Apple Computer, Inc.
QuickTime 7 Software Developer Kit (SDK) 
Software License Agreement

PLEASE READ THIS SOFTWARE LICENSE AGREEMENT ("LICENSE") BEFORE USING THE SOFTWARE.  BY USING THE SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE.  IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, SIGNIFY YOUR AGREEMENT TO BE BOUND BY THE TERMS OF THIS LICENSE BY CLICKING THE "AGREE/ACCEPT" BUTTON. IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, RETURN THE APPLE SOFTWARE TO THE PLACE WHERE YOU OBTAINED IT FOR A REFUND OR, IF THE SOFTWARE WAS ACCESSED ELECTRONICALLY, CLICK "DISAGREE/DECLINE".

IMPORTANT NOTE: To the extent this software may be used to reproduce materials, it is licensed to you only for reproduction of materials you are authorized or legally permitted to reproduce.  

1. License.  Any software, tools, utilities, sample code, documentation, fonts, API?s, header files and other materials accompanying this License, whether on disk, print or electronic documentation, in read only memory, or any other media, (collectively, the "Apple Software") are licensed, not sold, to you by Apple Computer, Inc. ("Apple") for use only under the terms of this License, and Apple reserves all rights not expressly granted to you.  The rights granted herein are limited to Apple's and its licensors' intellectual property rights in the Apple Software and do not include any other patents or intellectual property rights.   You own the media on which the Apple Software is recorded but Apple and/or Apple's licensor(s) retain ownership of the Apple Software itself.  The Apple Software in this package and any copies, modifications and derivative works that this License authorizes you to make are subject to this License.  

2. Permitted Uses and Restrictions.  You may use the Apple Software to develop application software that is compatible with, and runs only on Mac OS X and/or Windows platforms with QuickTime installed.  Except for compiling header files and linking libraries as necessary to build your application software, you have no right to modify, incorporate into or include in combination with your own programs, license or otherwise redistribute any portion of the Apple Software. Your software application may not interfere with the functionality of QuickTime Player or the QuickTime Plug-in, including but not limited to file type or MIME type associations that are registered to QuickTime. You may make only as many internal use copies of the Apple Software as reasonably necessary to use the Apple Software as permitted in this paragraph and distribute such copies only to your employees whose job duties require them to so use the Apple Software. You must reproduce on each copy of the Apple Software or portion thereof, the Apple copyright notice and any other proprietary legends that were on the original copy of the Apple Software.  Except as expressly permitted in this License, you may not decompile, reverse engineer, disassemble, modify, rent, lease, loan, sublicense, distribute or create derivative works based upon the Apple Software in whole or part.  Your rights under this License will terminate automatically without notice from Apple if you fail to comply with any term(s) of this License. In addition, Apple reserves the right to terminate this License if a new version of Apple's operating system software or the Apple Software is released which is incompatible with the Apple Software.  

3. Disclaimer Of Warranty.  The Apple Software may be "alpha", "beta", "development", pre-release, untested, and/or not fully tested and may contain errors that could cause failures or loss of data, be incomplete or contain inaccuracies.  YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE APPLE SOFTWARE IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE IS PROVIDED "AS IS", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE PURPOSES OF SECTIONS 4 AND 5) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS.  APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE, THAT THE FUNCTIONS CONTAINED IN THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY.  SHOULD THE APPLE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.  SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU.  

4. Limitation Of Liability. TO THE EXTENT NOT PROHIBITED BY LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU.  In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00).  The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.

5. Export Control. You may not use or otherwise export or reexport the Apple Product except as authorized by United States law and the laws of the jurisdiction in which the Apple Product was obtained. In particular, but without limitation, the Apple Product may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person?s List or Entity List.  By using the Apple Product, you represent and warrant that you are not located in any such country or on any such list. 

6. Government End Users.  The Apple Software and related documentation are "Commercial Items", as that term is defined at 48 C.F.R. ?2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation", as such terms are used in 48 C.F.R. ?12.212 or 48 C.F.R. ?227.7202, as applicable.  Consistent with 48 C.F.R. ?12.212 or 48 C.F.R. ?227.7202-1through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein.  Unpublished-rights reserved under the copyright laws of the United States.

7. Controlling Law and Severability.  This License will be governed by and construed in accordance with the laws of the State of California, as applied to agreements entered into and to be performed entirely within California between California residents. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect.  

8. Complete Agreement.  This License constitutes the entire agreement between the parties with respect to the use of the Apple Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter.  No amendment to or modification of this License will be binding unless in writing and signed by Apple. Any translation of this License is done for local requirements and in the event of a dispute between the English and any non-English versions, the English version of this License shall govern.

EA0300
</string>
      </map>
      <key>sleepycat</key>
      <map>
        <key>url</key>
        <string>http://opensource.org/licenses/sleepycat.php</string>
      </map>
      <key>smartheap</key>
      <map>
        <key>text</key>
        <string>on file
</string>
      </map>
      <key>things</key>
      <map>
      </map>
      <key>vivox</key>
      <map>
        <key>text</key>
        <string>on file</string>
      </map>
      <key>xmlrpc-epi</key>
      <map>
        <key>url</key>
        <string>http://xmlrpc-epi.sourceforge.net/main.php?t=license</string>
      </map>
      <key>zlib</key>
      <map>
        <key>url</key>
        <string>http://www.gzip.org/zlib/zlib_license.html</string>
      </map>
    </map>
  </map>
</llsd>