summaryrefslogtreecommitdiffstats
path: root/extra/.checkouts
blob: e6fd3d2f20036243134687a154ea38dd3c8a8a2f (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
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
a2ps
a2ps/.footprint
a2ps/.md5sum
a2ps/Pkgfile
a2ps/a2ps-4.13c-fnmatch-replacement.patch
a2ps/a2ps-4.14-check-mempcpy.patch
a2ps/a2ps-4.14-fix-stpcpy-proto.patch
aalib
aalib/.footprint
aalib/.md5sum
aalib/Pkgfile
abiword
abiword/.footprint
abiword/.md5sum
abiword/Pkgfile
acetoneiso
acetoneiso/.footprint
acetoneiso/.md5sum
acetoneiso/Pkgfile
acidrip
acidrip/.footprint
acidrip/.md5sum
acidrip/Pkgfile
acidrip/acidrip.desktop
acidrip/crop-fixes.patch
acl
acl/.footprint
acl/.md5sum
acl/Pkgfile
afterstep
afterstep/.footprint
afterstep/.md5sum
afterstep/Pkgfile
aircrack-ng
aircrack-ng/.footprint
aircrack-ng/.md5sum
aircrack-ng/Pkgfile
akode
akode/.footprint
akode/.md5sum
akode/Pkgfile
akode/akode-2.0.2-flac14.patch
akode/gcc43.patch
alsa-lib
alsa-lib/.footprint
alsa-lib/.md5sum
alsa-lib/Pkgfile
alsa-oss
alsa-oss/.footprint
alsa-oss/.md5sum
alsa-oss/Pkgfile
alsa-plugins
alsa-plugins/.footprint
alsa-plugins/.md5sum
alsa-plugins/40-alsa.rules
alsa-plugins/Pkgfile
alsa-utils
alsa-utils/.footprint
alsa-utils/.md5sum
alsa-utils/40-alsa.rules
alsa-utils/Pkgfile
alsa-utils/alsaconf.patch
amrnb
amrnb/.footprint
amrnb/.md5sum
amrnb/Pkgfile
amrwb
amrwb/.footprint
amrwb/.md5sum
amrwb/Pkgfile
amsn
amsn/.footprint
amsn/.md5sum
amsn/Pkgfile
amule
amule/.footprint
amule/.md5sum
amule/Pkgfile
amule/amule-2.2.6-gcc-01.patch
ant
ant/.footprint
ant/.md5sum
ant/Pkgfile
ant/apache-ant.sh
apache
apache/.footprint
apache/.md5sum
apache/Pkgfile
apache/apache
apr
apr/.footprint
apr/.md5sum
apr/Pkgfile
aqemu
aqemu/.footprint
aqemu/.md5sum
aqemu/Pkgfile
arora
arora/.footprint
arora/.md5sum
arora/Pkgfile
asciidoc
asciidoc/.footprint
asciidoc/.md5sum
asciidoc/Pkgfile
aspell
aspell/.footprint
aspell/.md5sum
aspell/Pkgfile
atk
atk/.footprint
atk/.md5sum
atk/Pkgfile
attachwarner
attachwarner/.footprint
attachwarner/.md5sum
attachwarner/Pkgfile
aurora
aurora/.footprint
aurora/.md5sum
aurora/Pkgfile
automoc4
automoc4/.footprint
automoc4/.md5sum
automoc4/Pkgfile
autopano-sift-c
autopano-sift-c/.footprint
autopano-sift-c/.md5sum
autopano-sift-c/Pkgfile
avahi
avahi-server
avahi-server/.footprint
avahi-server/.md5sum
avahi-server/Pkgfile
avahi-server/avahid
avahi-server/network-wired.png
avahi/.footprint
avahi/.md5sum
avahi/Pkgfile
avahi/network-wired.png
avant-window-navigator
avant-window-navigator/.footprint
avant-window-navigator/.md5sum
avant-window-navigator/Pkgfile
avidemux
avidemux/.footprint
avidemux/.md5sum
avidemux/2.5.3_field_asm_fix.diff
avidemux/Pkgfile
beanshell
beanshell/.footprint
beanshell/.md5sum
beanshell/Pkgfile
blackbox
blackbox/.footprint
blackbox/.md5sum
blackbox/Pkgfile
blackbox/gcc43.patch
blender
blender/.footprint
blender/.md5sum
blender/Pkgfile
blender/blender.desktop
blender/blender.desktop~
blender/blender.install
blender/blender.install~
blender/blender.svg
blender/blender_x86_64.diff
blender/config.py
bluefish
bluefish/.footprint
bluefish/.md5sum
bluefish/Pkgfile
bluefish/bluefish.desktop
bluez
bluez/.footprint
bluez/.md5sum
bluez/Pkgfile
bluez/bluetooth.conf.d
bluez/rc.bluetooth
boost
boost/.footprint
boost/.md5sum
boost/Pkgfile
boost/layout-tagged.patch
boost/translate_exception.patch
brltty
brltty/.footprint
brltty/.md5sum
brltty/Pkgfile
brltty/brltty
brltty/brltty.conf
cairo
cairo/.fonts.cache-1
cairo/.footprint
cairo/.md5sum
cairo/Pkgfile
cairomm
cairomm/.footprint
cairomm/.md5sum
cairomm/Pkgfile
candido-engine
candido-engine/.footprint
candido-engine/.md5sum
candido-engine/Pkgfile
canon-ufr2
canon-ufr2/.footprint
canon-ufr2/.md5sum
canon-ufr2/Pkgfile
capseo
capseo/.footprint
capseo/.md5sum
capseo/Pkgfile
ccsm
ccsm/.footprint
ccsm/.md5sum
ccsm/Pkgfile
cdrkit
cdrkit/.footprint
cdrkit/.md5sum
cdrkit/Pkgfile
centerim
centerim/.footprint
centerim/.md5sum
centerim/Pkgfile
checkgmail
checkgmail/.footprint
checkgmail/.md5sum
checkgmail/Pkgfile
checkgmail/checkgmail.desktop
checkgmail/checkgmail.png
checkgmail/svn-33.patch
chm2pdf
chm2pdf/.footprint
chm2pdf/.md5sum
chm2pdf/Pkgfile
chromium
chromium/.footprint
chromium/.md5sum
chromium/Pkgfile
chromium/README
chromium/chromium-html5-video-mimetypes.patch
chromium/chromium.desktop
chromium/chromium.install
chromium/chromium.sh
chromium/createSource
chromium/createSource.htm
chromium/drop_sse2.patch
chromium/ffmpeg_branding_mime.patch
chromium/issue1620003_1_2.diff
chromium/issue2019002_21001.diff
chromium/libpng-1.4.patch
claws-mail
claws-mail/.footprint
claws-mail/.md5sum
claws-mail/Pkgfile
clementine
clementine/.footprint
clementine/.md5sum
clementine/Pkgfile
cluster
cluster/.footprint
cluster/.md5sum
cluster/Pkgfile
clutter
clutter-gtk
clutter-gtk/.footprint
clutter-gtk/.md5sum
clutter-gtk/Pkgfile
clutter/.footprint
clutter/.md5sum
clutter/Pkgfile
cmake
cmake/.footprint
cmake/.md5sum
cmake/Pkgfile
codeblocks
codeblocks/.footprint
codeblocks/.md5sum
codeblocks/Pkgfile
codeblocks/gcc44.patch
comix
comix/.footprint
comix/.md5sum
comix/Pkgfile
comix/post-install
compiz
compiz-bcop
compiz-bcop/.footprint
compiz-bcop/.md5sum
compiz-bcop/Pkgfile
compiz-plugins-extra
compiz-plugins-extra/.footprint
compiz-plugins-extra/.md5sum
compiz-plugins-extra/Pkgfile
compiz-plugins-main
compiz-plugins-main/.footprint
compiz-plugins-main/.md5sum
compiz-plugins-main/Pkgfile
compiz/.footprint
compiz/.md5sum
compiz/Pkgfile
compizconfig-python
compizconfig-python/.footprint
compizconfig-python/.md5sum
compizconfig-python/Pkgfile
conky
conky/.footprint
conky/.md5sum
conky/Pkgfile
consolekit
consolekit/.footprint
consolekit/.md5sum
consolekit/Pkgfile
cover-thumbnailer
cover-thumbnailer/.directory
cover-thumbnailer/.footprint
cover-thumbnailer/.md5sum
cover-thumbnailer/Pkgfile
cover-thumbnailer/post-install
crypto++
crypto++/.footprint
crypto++/.md5sum
crypto++/Pkgfile
cups
cups-pdf
cups-pdf/.footprint
cups-pdf/.md5sum
cups-pdf/Pkgfile
cups-pdf/cups-pdf.install
cups/.footprint
cups/.md5sum
cups/Pkgfile
cups/cups
cupsddk
cupsddk/.footprint
cupsddk/.md5sum
cupsddk/Pkgfile
curl
curl/.footprint
curl/.md5sum
curl/Pkgfile
cyrus-sasl
cyrus-sasl/.footprint
cyrus-sasl/.md5sum
cyrus-sasl/Pkgfile
cyrus-sasl/gcc44-1.patch
dbus
dbus-glib
dbus-glib/.footprint
dbus-glib/.md5sum
dbus-glib/Pkgfile
dbus-python
dbus-python/.footprint
dbus-python/.md5sum
dbus-python/Pkgfile
dbus/.footprint
dbus/.md5sum
dbus/Pkgfile
dbus/dbus
dbus/post-install
dbus/session-local.conf
deluge
deluge/.directory
deluge/.footprint
deluge/.md5sum
deluge/Pkgfile
deluge/deluge-web
deluge/deluge.install
deluge/deluged
deluge/deluged.conf.d
deluge/fix_freeze.patch
desktop-file-utils
desktop-file-utils/.footprint
desktop-file-utils/.md5sum
desktop-file-utils/Pkgfile
devede
devede/.footprint
devede/.md5sum
devede/Pkgfile
devicekit
devicekit-power
devicekit-power/.footprint
devicekit-power/.md5sum
devicekit-power/Pkgfile
devicekit/.footprint
devicekit/.md5sum
devicekit/Pkgfile
dhcp
dhcp/.footprint
dhcp/.md5sum
dhcp/Pkgfile
directfb
directfb/.footprint
directfb/.md5sum
directfb/Pkgfile
directfb/directfb#1.4.1-1.pkg.tar.gz
directfb/libpng-1.4.patch
djvulibre
djvulibre/.footprint
djvulibre/.md5sum
djvulibre/Pkgfile
docbook-xml
docbook-xml/.footprint
docbook-xml/.md5sum
docbook-xml/Pkgfile
docbook-xml/post-install
docbook-xsl
docbook-xsl/.footprint
docbook-xsl/.md5sum
docbook-xsl/Pkgfile
docbook-xsl/post-install
dvdauthor
dvdauthor/.footprint
dvdauthor/.md5sum
dvdauthor/Pkgfile
dvgrab
dvgrab/.footprint
dvgrab/.md5sum
dvgrab/Pkgfile
dvgrab/dvgrab-3.4-gcc43.patch
e17
e17/.footprint
e17/.md5sum
e17/E17.xinitrc
e17/Pkgfile
e17/e17.desktop
e_dbus
e_dbus/.footprint
e_dbus/.md5sum
e_dbus/Pkgfile
ebook-tools
ebook-tools/.footprint
ebook-tools/.md5sum
ebook-tools/Pkgfile
ecore
ecore/.footprint
ecore/.md5sum
ecore/Pkgfile
ede
ede/.footprint
ede/.md5sum
ede/Pkgfile
ede1
ede1/.footprint
ede1/.md5sum
ede1/EDE1.xinitrc
ede1/Editor.desktop
ede1/FileManager.desktop
ede1/Pkgfile
ede1/RootWallPaper.png
ede1/Terminal.desktop
ede1/WallPaper.jpg
ede1/ede.conf
ede1/logoutdialog.cpp
ede1/post-install
ede1/startede
edelib
edelib/.footprint
edelib/.md5sum
edelib/Pkgfile
edje
edje/.footprint
edje/.md5sum
edje/Pkgfile
eet
eet/.footprint
eet/.md5sum
eet/Pkgfile
efltk
efltk/.footprint
efltk/.md5sum
efltk/Pkgfile
efltk/efltk-2.0.8-filename-0.1.patch
efreet
efreet/.footprint
efreet/.md5sum
efreet/Pkgfile
eggdbus
eggdbus/.footprint
eggdbus/.md5sum
eggdbus/Pkgfile
eject
eject/.footprint
eject/.md5sum
eject/Pkgfile
ekiga
ekiga/.footprint
ekiga/.md5sum
ekiga/Pkgfile
ekiga/contact.patch
ekiga/post-install
elltube
elltube/.footprint
elltube/.md5sum
elltube/Pkgfile
embryo
embryo/.footprint
embryo/.md5sum
embryo/Pkgfile
emesene
emesene/.footprint
emesene/.md5sum
emesene/Pkgfile
emesene/emesene.run
emesene/setup.patch
enblend-enfuse
enblend-enfuse/.footprint
enblend-enfuse/.md5sum
enblend-enfuse/Pkgfile
enblend-enfuse/enblend-enfuse.install
enblend-enfuse/libpng-1.4.patch
enca
enca/.footprint
enca/.md5sum
enca/Pkgfile
enchant
enchant/.footprint
enchant/.md5sum
enchant/Pkgfile
epdfview
epdfview/.footprint
epdfview/.md5sum
epdfview/Pkgfile
esound
esound/.footprint
esound/.md5sum
esound/Pkgfile
eterm
eterm/.footprint
eterm/.md5sum
eterm/Eterm.desktop
eterm/Pkgfile
etherape
etherape/.footprint
etherape/.md5sum
etherape/Pkgfile
evas
evas/.footprint
evas/.md5sum
evas/Pkgfile
evilvte
evilvte/.footprint
evilvte/.md5sum
evilvte/Pkgfile
evilwm
evilwm/.footprint
evilwm/.md5sum
evilwm/Pkgfile
evilwm/evilwm.desktop
evince
evince/.footprint
evince/.md5sum
evince/Pkgfile
evince/evince.desktop
evince/post-install
exiv2
exiv2/.footprint
exiv2/.md5sum
exiv2/Pkgfile
faac
faac/.footprint
faac/.md5sum
faac/Pkgfile
farsight2
farsight2/.footprint
farsight2/.md5sum
farsight2/Pkgfile
feh
feh/.footprint
feh/.md5sum
feh/Pkgfile
ffmpeg
ffmpeg/.footprint
ffmpeg/.md5sum
ffmpeg/Pkgfile
ffmpeg/ffmpeg-20080826-14974-missing-header.patch
ffmpegthumbnailer
ffmpegthumbnailer/.footprint
ffmpegthumbnailer/.md5sum
ffmpegthumbnailer/Pkgfile
fftw
fftw/.footprint
fftw/.md5sum
fftw/Pkgfile
filezilla
filezilla/.footprint
filezilla/.md5sum
filezilla/Pkgfile
filezilla/filezilla.install
firefox
firefox/.footprint
firefox/.md5sum
firefox/Pkgfile
firefox/README
firefox/firefox.desktop
firefox/mozconfig
flac
flac/.footprint
flac/.md5sum
flac/Pkgfile
flac/gcc4.patch
fltk
fltk/.footprint
fltk/.md5sum
fltk/Pkgfile
fltk/libpng14.patch
fltk1
fltk1/.footprint
fltk1/.md5sum
fltk1/Pkgfile
fltk1/scandir_posix.patch
fluidsynth
fluidsynth/.footprint
fluidsynth/.md5sum
fluidsynth/Pkgfile
fluidsynth/fluidsynth.conf
fluidsynth/fluidsynthd
fluxbox
fluxbox/.footprint
fluxbox/.md5sum
fluxbox/Pkgfile
fluxbox/fluxbox.desktop
fontconfig
fontconfig/.footprint
fontconfig/.md5sum
fontconfig/Pkgfile
foomatic-db
foomatic-db-engine
foomatic-db-engine/.footprint
foomatic-db-engine/.md5sum
foomatic-db-engine/Pkgfile
foomatic-db/.footprint
foomatic-db/.md5sum
foomatic-db/Pkgfile
foomatic-filters
foomatic-filters/.footprint
foomatic-filters/.md5sum
foomatic-filters/Pkgfile
fox
fox/.footprint
fox/.md5sum
fox/Pkgfile
freeciv
freeciv/.footprint
freeciv/.md5sum
freeciv/Pkgfile
freeglut
freeglut/.footprint
freeglut/.md5sum
freeglut/Pkgfile
freeglut/glut-cursor-inherit.patch
frei0r-plugins
frei0r-plugins/.footprint
frei0r-plugins/.md5sum
frei0r-plugins/Pkgfile
fribidi
fribidi/.footprint
fribidi/.md5sum
fribidi/Pkgfile
fuseiso
fuseiso/.footprint
fuseiso/.md5sum
fuseiso/Pkgfile
fusion-icon
fusion-icon/.footprint
fusion-icon/.md5sum
fusion-icon/Pkgfile
fvwm
fvwm/.footprint
fvwm/.md5sum
fvwm/Pkgfile
fvwm/fvwm.desktop
galculator
galculator/.footprint
galculator/.md5sum
galculator/Pkgfile
gamin
gamin/.footprint
gamin/.md5sum
gamin/Pkgfile
gamin/gamin-0.1.9-ucred-headers.patch
gcc3
gcc3/.footprint
gcc3/.md5sum
gcc3/Pkgfile
gcc3/gcc-3.3.6-linkonce-1.patch
gcc3/gcc-3.3.6-no_fixincludes-1.patch
gcolor2
gcolor2/.footprint
gcolor2/.md5sum
gcolor2/Pkgfile
gcolor2/gcolor2.desktop
gcompris
gcompris/.footprint
gcompris/.md5sum
gcompris/Pkgfile
gconf
gconf/.footprint
gconf/.md5sum
gconf/01_xml-gettext-domain.patch
gconf/GConf-2.26.2-sysconfdir-1.patch
gconf/Pkgfile
gconf/gconf-merge-schema
gconf/gconf-reload (1).patch
gconf/gconf-reload.patch
gconf/gconf.install
gcstar
gcstar/.footprint
gcstar/.md5sum
gcstar/Pkgfile
gd
gd/.footprint
gd/.md5sum
gd/Pkgfile
gd/libpng14.patch
gdm
gdm/.footprint
gdm/.md5sum
gdm/NuTyXlogo.png
gdm/Pkgfile
gdm/defaults.conf
gdm/post-install
gdm/pre-install
geany
geany/.footprint
geany/.md5sum
geany/Pkgfile
gecko-mediaplayer
gecko-mediaplayer/.footprint
gecko-mediaplayer/.md5sum
gecko-mediaplayer/Pkgfile
gegl
gegl/.footprint
gegl/.md5sum
gegl/Pkgfile
gegl/gegl-20-configure-ac.patch
gegl/gegl-ffmpeg.patch
gestpkg
gestpkg-1.2
gestpkg-1.2/.footprint
gestpkg-1.2/.md5sum
gestpkg-1.2/Pkgfile
gestpkg-1.2/gestpkg.desktop
gestpkg-module
gestpkg-module/.footprint
gestpkg-module/.md5sum
gestpkg-module/Pkgfile
gestpkg/.footprint
gestpkg/.md5sum
gestpkg/Pkgfile
gftp
gftp/.footprint
gftp/.md5sum
gftp/Pkgfile
ggz-client-libs
ggz-client-libs/.footprint
ggz-client-libs/.md5sum
ggz-client-libs/Pkgfile
ghostscript
ghostscript/.footprint
ghostscript/.md5sum
ghostscript/Pkgfile
ghostscript/ghostscript-fPIC.patch
ghostscript/wget-log
giblib
giblib/.footprint
giblib/.md5sum
giblib/Pkgfile
giflib
giflib/.footprint
giflib/.md5sum
giflib/Pkgfile
gimp
gimp/.footprint
gimp/.md5sum
gimp/Pkgfile
gimp/gimp-splash-2009-2.png
gimp/gimp.desktop
gimp/libpng-1.4.patch
git
git/.footprint
git/.md5sum
git/Pkgfile
gitweb
gitweb/.footprint
gitweb/.md5sum
gitweb/Pkgfile
gkrellm
gkrellm/.footprint
gkrellm/.md5sum
gkrellm/Pkgfile
gkrellm/gkrellm.desktop
gkrellm/gkrellm.png
glade3
glade3/.footprint
glade3/.md5sum
glade3/Pkgfile
glade3/README
glew
glew/.footprint
glew/.md5sum
glew/Pkgfile
glibmm
glibmm/.footprint
glibmm/.md5sum
glibmm/Pkgfile
glitz
glitz/.footprint
glitz/.md5sum
glitz/Pkgfile
gmime
gmime/.footprint
gmime/.md5sum
gmime/Pkgfile
gnuchess
gnuchess/.footprint
gnuchess/.md5sum
gnuchess/Pkgfile
gnuchess/gcc4.patch
gnuchess/gnuchess-gcc4.patch
gnuchess/gnuchess-glibc210.patch
gnumeric
gnumeric/.footprint
gnumeric/.md5sum
gnumeric/Pkgfile
gnupg
gnupg/.footprint
gnupg/.md5sum
gnupg/Pkgfile
gnupg/gnupg.diff
gnupg1
gnupg1/.footprint
gnupg1/.md5sum
gnupg1/Pkgfile
gnupg1/buildfix.patch
gnutls
gnutls/.footprint
gnutls/.md5sum
gnutls/Pkgfile
gobject-introspection
gobject-introspection/.footprint
gobject-introspection/.md5sum
gobject-introspection/Pkgfile
goffice
goffice/.footprint
goffice/.md5sum
goffice/Pkgfile
goom
goom/.footprint
goom/.md5sum
goom/Pkgfile
gpa
gpa/.footprint
gpa/.md5sum
gpa/Pkgfile
gpa/gpa.desktop
gparted
gparted/.footprint
gparted/.md5sum
gparted/Pkgfile
gparted/gparted.desktop
gperf
gperf/.footprint
gperf/.md5sum
gperf/Pkgfile
gpgme
gpgme/.footprint
gpgme/.md5sum
gpgme/Pkgfile
gpick
gpick/.footprint
gpick/.md5sum
gpick/Pkgfile
gpick/gpick.desktop
gpicview
gpicview/.footprint
gpicview/.md5sum
gpicview/Pkgfile
gpsd
gpsd/.footprint
gpsd/.md5sum
gpsd/Pkgfile
gramps
gramps/.footprint
gramps/.md5sum
gramps/Pkgfile
graphicsmagick
graphicsmagick/.footprint
graphicsmagick/.md5sum
graphicsmagick/Pkgfile
graphviz
graphviz/.footprint
graphviz/.md5sum
graphviz/Pkgfile
grisbi
grisbi/.footprint
grisbi/.md5sum
grisbi/Pkgfile
grisbi/grisbi.desktop
grisbi/grisbi.png
grsync
grsync/.footprint
grsync/.md5sum
grsync/Pkgfile
grsync/grsync-root.desktop
grsync/grsync.desktop
grsync/grsync.png
grub
grub/.footprint
grub/.md5sum
grub/Pkgfile
grub/grub.cfg
gsfonts
gsfonts/.footprint
gsfonts/.md5sum
gsfonts/Pkgfile
gsfonts/post-install
gst-ffmpeg
gst-ffmpeg/.footprint
gst-ffmpeg/.md5sum
gst-ffmpeg/Pkgfile
gst-plugins-bad
gst-plugins-bad/.footprint
gst-plugins-bad/.md5sum
gst-plugins-bad/Pkgfile
gst-plugins-base
gst-plugins-base/.footprint
gst-plugins-base/.md5sum
gst-plugins-base/Pkgfile
gst-plugins-good
gst-plugins-good/.footprint
gst-plugins-good/.md5sum
gst-plugins-good/Pkgfile
gst-plugins-ugly
gst-plugins-ugly/.footprint
gst-plugins-ugly/.md5sum
gst-plugins-ugly/Pkgfile
gst-python
gst-python/.footprint
gst-python/.md5sum
gst-python/Pkgfile
gstreamer
gstreamer/.footprint
gstreamer/.md5sum
gstreamer/Pkgfile
gtk
gtk-chtheme
gtk-chtheme/.footprint
gtk-chtheme/.md5sum
gtk-chtheme/Pkgfile
gtk-doc
gtk-doc/.footprint
gtk-doc/.md5sum
gtk-doc/Pkgfile
gtk-engines
gtk-engines/.footprint
gtk-engines/.md5sum
gtk-engines/Pkgfile
gtk-recordmydesktop
gtk-recordmydesktop/.footprint
gtk-recordmydesktop/.md5sum
gtk-recordmydesktop/Pkgfile
gtk-theme-switch
gtk-theme-switch/.footprint
gtk-theme-switch/.md5sum
gtk-theme-switch/Pkgfile
gtk-theme-switch/build~
gtk-theme-switch/gtk-s-t.png
gtk-theme-switch/gtk-theme-switch.desktop
gtk-vnc
gtk-vnc/.footprint
gtk-vnc/.md5sum
gtk-vnc/Pkgfile
gtk/.footprint
gtk/.md5sum
gtk/Pkgfile
gtk/post-install
gtk1
gtk1/.footprint
gtk1/.md5sum
gtk1/Pkgfile
gtk1/aclocal-fixes.patch
gtk1/config.guess
gtk1/config.sub
gtk2-engines-ubuntulooks
gtk2-engines-ubuntulooks/.footprint
gtk2-engines-ubuntulooks/.md5sum
gtk2-engines-ubuntulooks/Pkgfile
gtkdialog
gtkdialog/.footprint
gtkdialog/.md5sum
gtkdialog/Pkgfile
gtkdialog/gtkdialog_0.7.20_glade.patch
gtkhtml
gtkhtml/.footprint
gtkhtml/.md5sum
gtkhtml/Pkgfile
gtkhtml2_viewer
gtkhtml2_viewer/.footprint
gtkhtml2_viewer/.md5sum
gtkhtml2_viewer/Pkgfile
gtkimageview
gtkimageview/.footprint
gtkimageview/.md5sum
gtkimageview/Pkgfile
gtkmm
gtkmm/.footprint
gtkmm/.md5sum
gtkmm/Pkgfile
gtksourceview
gtksourceview/.footprint
gtksourceview/.md5sum
gtksourceview/Pkgfile
gtkspell
gtkspell/.footprint
gtkspell/.md5sum
gtkspell/Pkgfile
gufw
gufw/.footprint
gufw/.md5sum
gufw/Pkgfile
gutenprint
gutenprint/.footprint
gutenprint/.md5sum
gutenprint/Pkgfile
gv
gv/.footprint
gv/.md5sum
gv/Pkgfile
gv/gv.desktop
gv/gv.install
gv/gv.png
hal
hal-info
hal-info/.footprint
hal-info/.md5sum
hal-info/Pkgfile
hal/.footprint
hal/.md5sum
hal/10-keymap.fdi
hal/Pkgfile
hal/haldaemon
hal/halusers.conf
hal/pre-install
hal/use_udevadm_not_udevinfo.patch.gz
hplip
hplip/.footprint
hplip/.md5sum
hplip/Pkgfile
hsqldb-java
hsqldb-java/.footprint
hsqldb-java/.md5sum
hsqldb-java/Pkgfile
hugin
hugin/.footprint
hugin/.md5sum
hugin/Pkgfile
hugin/hugin.install
hugin/libpng14.patch
icewm
icewm/.footprint
icewm/.md5sum
icewm/Pkgfile
icewm/icewm.desktop
icon-naming-utils
icon-naming-utils/.footprint
icon-naming-utils/.md5sum
icon-naming-utils/Pkgfile
icu
icu/.footprint
icu/.md5sum
icu/Pkgfile
idesk
idesk/.footprint
idesk/.md5sum
idesk/Pkgfile
iftop
iftop/.footprint
iftop/.md5sum
iftop/Pkgfile
ilmbase
ilmbase/.footprint
ilmbase/.md5sum
ilmbase/Pkgfile
imagemagick
imagemagick/.footprint
imagemagick/.md5sum
imagemagick/Pkgfile
imlib2
imlib2/.footprint
imlib2/.md5sum
imlib2/Pkgfile
ink
ink/.footprint
ink/.md5sum
ink/Pkgfile
inkscape
inkscape/.footprint
inkscape/.md5sum
inkscape/50-poppler-API.dpatch
inkscape/Pkgfile
inkscape/inkscape-0.47-gcc45.patch
intltool
intltool/.footprint
intltool/.md5sum
intltool/Pkgfile
iso-codes
iso-codes/.footprint
iso-codes/.md5sum
iso-codes/Pkgfile
isomaster
isomaster/.footprint
isomaster/.md5sum
isomaster/Pkgfile
isomaster/isomaster.desktop
itask
itask/.footprint
itask/.md5sum
itask/Pkgfile
jack-audio-connection-kit
jack-audio-connection-kit/.footprint
jack-audio-connection-kit/.md5sum
jack-audio-connection-kit/Pkgfile
jasper
jasper/.footprint
jasper/.md5sum
jasper/Pkgfile
jigdo
jigdo/.footprint
jigdo/.md5sum
jigdo/Pkgfile
junit
junit/.footprint
junit/.md5sum
junit/Pkgfile
jwm
jwm/.footprint
jwm/.md5sum
jwm/Pkgfile
jwm/jwm.desktop
kino
kino/.footprint
kino/.md5sum
kino/Pkgfile
kompozer
kompozer/.footprint
kompozer/.md5sum
kompozer/Pkgfile
kompozer/kompozer.desktop
kompozer/mozconfig
kover
kover/.footprint
kover/.md5sum
kover/Pkgfile
kover/directory.patch
kover/inexact_dialog.patch
kover/kover.desktop
ktsuss
ktsuss/.footprint
ktsuss/.md5sum
ktsuss/Pkgfile
ktsuss/gksu
ktsuss/ktsuss
lapack
lapack/.footprint
lapack/.md5sum
lapack/Makefile.blas
lapack/Makefile.lapack
lapack/Pkgfile
lapack/blas-link.patch
lapack/lapack-3.1.1-make.inc.patch
lapack/make.inc.archlinux
lbreakout2
lbreakout2/.footprint
lbreakout2/.md5sum
lbreakout2/Pkgfile
lbreakout2/lbreakout2.desktop
lbreakout2/lbreakout2.png
lcms
lcms/.footprint
lcms/.md5sum
lcms/Pkgfile
leafpad
leafpad/.footprint
leafpad/.md5sum
leafpad/Pkgfile
lensfun
lensfun/.footprint
lensfun/.md5sum
lensfun/Pkgfile
lesstif
lesstif/.footprint
lesstif/.md5sum
lesstif/Pkgfile
libao
libao/.footprint
libao/.md5sum
libao/Pkgfile
libassuan
libassuan/.footprint
libassuan/.md5sum
libassuan/Pkgfile
libast
libast/.footprint
libast/.md5sum
libast/Pkgfile
libavc1394
libavc1394/.footprint
libavc1394/.md5sum
libavc1394/Pkgfile
libbonobo
libbonobo/.footprint
libbonobo/.md5sum
libbonobo/Pkgfile
libbonobo/bonobo-activation-config.xml
libbonoboui
libbonoboui/.footprint
libbonoboui/.md5sum
libbonoboui/Pkgfile
libbonoboui/post-install
libcaca
libcaca/.footprint
libcaca/.md5sum
libcaca/Pkgfile
libcaca/build,v
libcanberra
libcanberra/.footprint
libcanberra/.md5sum
libcanberra/Pkgfile
libcanberra/post-install
libcap
libcap/.footprint
libcap/.md5sum
libcap/Pkgfile
libcap/libcap-2.16-drop-linux-workarounds.patch
libcap/libcap-2.16-makefile.patch
libcaptury
libcaptury/.footprint
libcaptury/.md5sum
libcaptury/Pkgfile
libcddb
libcddb/.footprint
libcddb/.md5sum
libcddb/Pkgfile
libcompizconfig
libcompizconfig/.footprint
libcompizconfig/.md5sum
libcompizconfig/Pkgfile
libcroco
libcroco/.footprint
libcroco/.md5sum
libcroco/Pkgfile
libcups
libcups/.footprint
libcups/.md5sum
libcups/Pkgfile
libdc1394
libdc1394/.footprint
libdc1394/.md5sum
libdc1394/Pkgfile
libdrm
libdrm/.footprint
libdrm/.md5sum
libdrm/Pkgfile
libdv
libdv/.footprint
libdv/.md5sum
libdv/Pkgfile
libdvdnav
libdvdnav/.footprint
libdvdnav/.md5sum
libdvdnav/Pkgfile
libdvdread
libdvdread/.footprint
libdvdread/.md5sum
libdvdread/Pkgfile
libesmtp
libesmtp/.footprint
libesmtp/.md5sum
libesmtp/Pkgfile
libetpan
libetpan/.footprint
libetpan/.md5sum
libetpan/Pkgfile
libgcrypt
libgcrypt/.footprint
libgcrypt/.md5sum
libgcrypt/Pkgfile
libgd
libgd/.footprint
libgd/.md5sum
libgd/Pkgfile
libgd/libpng14-enable-read-dither.patch
libgeotiff
libgeotiff/.footprint
libgeotiff/.md5sum
libgeotiff/Pkgfile
libglade
libglade/.footprint
libglade/.md5sum
libglade/Pkgfile
libgnome
libgnome/.footprint
libgnome/.md5sum
libgnome/Pkgfile
libgnome/nutyx2010_0.jpg
libgnome/post-install
libgnomecanvas
libgnomecanvas/.footprint
libgnomecanvas/.md5sum
libgnomecanvas/Pkgfile
libgnomecups
libgnomecups/.footprint
libgnomecups/.md5sum
libgnomecups/Pkgfile
libgnomeprint
libgnomeprint/.footprint
libgnomeprint/.md5sum
libgnomeprint/Pkgfile
libgnomeprintui
libgnomeprintui/.footprint
libgnomeprintui/.md5sum
libgnomeprintui/Pkgfile
libgpg-error
libgpg-error/.footprint
libgpg-error/.md5sum
libgpg-error/Pkgfile
libgphoto2
libgphoto2/.footprint
libgphoto2/.md5sum
libgphoto2/Pkgfile
libgpod
libgpod/.footprint
libgpod/.md5sum
libgpod/Pkgfile
libgraphite
libgraphite/.footprint
libgraphite/.md5sum
libgraphite/Pkgfile
libgsf
libgsf/.footprint
libgsf/.md5sum
libgsf/Pkgfile
libgsf/post-install
libgtkhtml
libgtkhtml/.footprint
libgtkhtml/.md5sum
libgtkhtml/Pkgfile
libgtop
libgtop/.footprint
libgtop/.md5sum
libgtop/Pkgfile
libgweather
libgweather/.footprint
libgweather/.md5sum
libgweather/01_gettext_not_xml.patch
libgweather/Pkgfile
libgweather/post-install
libidl
libidl/.footprint
libidl/.md5sum
libidl/Pkgfile
libidl/libIDL-0.8.7
libiec61883
libiec61883/.footprint
libiec61883/.md5sum
libiec61883/Pkgfile
libieee1284
libieee1284/.footprint
libieee1284/.md5sum
libieee1284/Pkgfile
libifp
libifp/.footprint
libifp/.md5sum
libifp/Pkgfile
libimobiledevice
libimobiledevice/.footprint
libimobiledevice/.md5sum
libimobiledevice/Pkgfile
libinklevel
libinklevel/.footprint
libinklevel/.md5sum
libinklevel/Pkgfile
libksba
libksba/.footprint
libksba/.md5sum
libksba/Pkgfile
liblastfm
liblastfm/.footprint
liblastfm/.md5sum
liblastfm/Pkgfile
libldap
libldap/.footprint
libldap/.md5sum
libldap/Pkgfile
libmatroska
libmatroska/.footprint
libmatroska/.md5sum
libmatroska/Pkgfile
libmcs
libmcs/.footprint
libmcs/.md5sum
libmcs/Pkgfile
libmms
libmms/.footprint
libmms/.md5sum
libmms/Pkgfile
libmng
libmng/.footprint
libmng/.md5sum
libmng/Pkgfile
libmp4v2
libmp4v2/.footprint
libmp4v2/.md5sum
libmp4v2/Pkgfile
libmp4v2/gcc44.patch
libmpcdec
libmpcdec/.footprint
libmpcdec/.md5sum
libmpcdec/Pkgfile
libmpeg3
libmpeg3/.footprint
libmpeg3/.md5sum
libmpeg3/Pkgfile
libmsn
libmsn/.footprint
libmsn/.md5sum
libmsn/Pkgfile
libmsn/openssl1.patch
libmspack
libmspack/.footprint
libmspack/.md5sum
libmspack/Pkgfile
libmtp
libmtp/.footprint
libmtp/.md5sum
libmtp/Pkgfile
libmusicbrainz
libmusicbrainz/.footprint
libmusicbrainz/.md5sum
libmusicbrainz/Pkgfile
libmusicbrainz/gcc4.patch
libmythes
libmythes/.footprint
libmythes/.md5sum
libmythes/Pkgfile
libnice
libnice/.footprint
libnice/.md5sum
libnice/Pkgfile
libnotify
libnotify/.footprint
libnotify/.md5sum
libnotify/Pkgfile
libotr
libotr/.footprint
libotr/.md5sum
libotr/Pkgfile
libpano13
libpano13/.footprint
libpano13/.md5sum
libpano13/Pkgfile
libplist
libplist/.footprint
libplist/.md5sum
libplist/Pkgfile
libpostgresql
libpostgresql/.footprint
libpostgresql/.md5sum
libpostgresql/Pkgfile
libpostgresql/build.patch
libpostgresql/nutyx-01.patch
libpostgresql/postgresql.pam
libproxy
libproxy/.footprint
libproxy/.md5sum
libproxy/Pkgfile
libpst
libpst/.footprint
libpst/.md5sum
libpst/Pkgfile
libquicktime
libquicktime/.footprint
libquicktime/.md5sum
libquicktime/Pkgfile
librep
librep/.footprint
librep/.md5sum
librep/Pkgfile
librsvg
librsvg/.footprint
librsvg/.md5sum
librsvg/Pkgfile
librsvg/post-install
libsamplerate
libsamplerate/.footprint
libsamplerate/.md5sum
libsamplerate/Pkgfile
libsexy
libsexy/.footprint
libsexy/.md5sum
libsexy/Pkgfile
libshout
libshout/.footprint
libshout/.md5sum
libshout/Pkgfile
libsndfile
libsndfile/.footprint
libsndfile/.md5sum
libsndfile/Pkgfile
libsoup
libsoup/.footprint
libsoup/.md5sum
libsoup/Pkgfile
libspectre
libspectre/.footprint
libspectre/.md5sum
libspectre/Pkgfile
libssh
libssh/.footprint
libssh/.md5sum
libssh/Pkgfile
libthai
libthai/.footprint
libthai/.md5sum
libthai/Pkgfile
libthai/footprint
libtheora
libtheora/.footprint
libtheora/.md5sum
libtheora/Pkgfile
libtiff
libtiff/.footprint
libtiff/.md5sum
libtiff/Pkgfile
libtorrent
libtorrent-rasterbar
libtorrent-rasterbar/.footprint
libtorrent-rasterbar/.md5sum
libtorrent-rasterbar/Pkgfile
libtorrent-rasterbar/disable-valloc.dpatch
libtorrent/.footprint
libtorrent/.md5sum
libtorrent/Pkgfile
libunique
libunique/.footprint
libunique/.md5sum
libunique/Pkgfile
libvorbis
libvorbis/.footprint
libvorbis/.md5sum
libvorbis/Pkgfile
libwnck
libwnck/.footprint
libwnck/.md5sum
libwnck/Pkgfile
libwpd
libwpd/.footprint
libwpd/.md5sum
libwpd/Pkgfile
libwpg
libwpg/.footprint
libwpg/.md5sum
libwpg/Pkgfile
libwps
libwps/.footprint
libwps/.md5sum
libwps/Pkgfile
libxklavier
libxklavier/.footprint
libxklavier/.md5sum
libxklavier/Pkgfile
libxklavier/lesstif-0.94.4
libxklavier/typescript
libxml2
libxml2/.footprint
libxml2/.md5sum
libxml2/Pkgfile
libxml2/largefile64.patch
libxml2/zlib.patch
libxslt
libxslt/.footprint
libxslt/.md5sum
libxslt/Pkgfile
linux-pam
linux-pam/.footprint
linux-pam/.md5sum
linux-pam/Pkgfile
linux-pam/other
linux-pam/pam.conf
live
live/.footprint
live/.md5sum
live/Pkgfile
lmms
lmms/.footprint
lmms/.md5sum
lmms/Pkgfile
loudmouth
loudmouth/.footprint
loudmouth/.md5sum
loudmouth/Pkgfile
loudmouth/loudmouth-gnutls28.patch
lpsolve
lpsolve/.footprint
lpsolve/.md5sum
lpsolve/Pkgfile
lpsolve/cflags.patch
lsdvd
lsdvd/.footprint
lsdvd/.md5sum
lsdvd/Pkgfile
lsdvd/stdint_usage.patch
lshw
lshw/.footprint
lshw/.md5sum
lshw/Pkgfile
lshw/abi_stdlib.diff
lshw/lshw-gcc-4.5.patch
lshw/lshw.desktop
lshw/lshw.png
lshw/lshw.svg
lua
lua/.footprint
lua/.md5sum
lua/Pkgfile
lxappearance
lxappearance/.footprint
lxappearance/.md5sum
lxappearance/Pkgfile
lxde
lxde-common
lxde-common/.footprint
lxde-common/.md5sum
lxde-common/Pkgfile
lxde-common/attapu.jpg
lxde-common/chrystal_red_root.png
lxde-common/config
lxde-common/lxde-common-0.5.0-nutyx-02.patch
lxde-common/nutyx2009_2.png
lxde-icon-theme
lxde-icon-theme/.footprint
lxde-icon-theme/.md5sum
lxde-icon-theme/Pkgfile
lxde/.footprint
lxde/.md5sum
lxde/LXDE.xinitrc
lxde/Pkgfile
lxde/lxde.desktop
lxlauncher
lxlauncher/.footprint
lxlauncher/.md5sum
lxlauncher/Pkgfile
lxmenu-data
lxmenu-data/.footprint
lxmenu-data/.md5sum
lxmenu-data/Pkgfile
lxml
lxml/.footprint
lxml/.md5sum
lxml/Pkgfile
lxnm
lxnm/.footprint
lxnm/.md5sum
lxnm/Pkgfile
lxpanel
lxpanel/.footprint
lxpanel/.md5sum
lxpanel/Pkgfile
lxpanel/lxpanel-0.5.5-batt-01.patch
lxpanel/volume.png
lxrandr
lxrandr/.footprint
lxrandr/.md5sum
lxrandr/Pkgfile
lxsession
lxsession/.footprint
lxsession/.md5sum
lxsession/Pkgfile
lxshortcut
lxshortcut/.footprint
lxshortcut/.md5sum
lxshortcut/Pkgfile
lxtask
lxtask/.footprint
lxtask/.md5sum
lxtask/Pkgfile
lxterminal
lxterminal/.footprint
lxterminal/.md5sum
lxterminal/Pkgfile
lzma
lzma/.footprint
lzma/.md5sum
lzma/Pkgfile
lzo
lzo/.footprint
lzo/.md5sum
lzo/Pkgfile
mcabber
mcabber/.footprint
mcabber/.md5sum
mcabber/Pkgfile
meanwhile
meanwhile/.footprint
meanwhile/.md5sum
meanwhile/Pkgfile
menu-cache
menu-cache/.footprint
menu-cache/.md5sum
menu-cache/Pkgfile
mimms
mimms/.footprint
mimms/.md5sum
mimms/Pkgfile
minefield
minefield/.footprint
minefield/.md5sum
minefield/Pkgfile
minefield/README
minefield/firefox.desktop
minefield/minefield.desktop
minefield/mozconfig
mktorrent
mktorrent/.footprint
mktorrent/.md5sum
mktorrent/Pkgfile
mlt
mlt/.footprint
mlt/.md5sum
mlt/Pkgfile
mlt/ffmpeg.patch
moc
moc/.footprint
moc/.md5sum
moc/Pkgfile
mono
mono/.footprint
mono/.md5sum
mono/Pkgfile
most
most/.footprint
most/.md5sum
most/Pkgfile
mowitz
mowitz/.footprint
mowitz/.md5sum
mowitz/Pkgfile
mozilla-common
mozilla-common/.footprint
mozilla-common/.md5sum
mozilla-common/Pkgfile
mozilla-common/mozilla-common.csh
mozilla-common/mozilla-common.install
mozilla-common/mozilla-common.sh
mpc
mpc/.footprint
mpc/.md5sum
mpc/Pkgfile
mpd
mpd/.footprint
mpd/.md5sum
mpd/Pkgfile
mpd/mpd
mplayer
mplayer-all-codecs
mplayer-all-codecs/.footprint
mplayer-all-codecs/.md5sum
mplayer-all-codecs/Pkgfile
mplayer/.footprint
mplayer/.footprint.old
mplayer/.md5sum
mplayer/.old
mplayer/.oldm
mplayer/Pkgfile
mplayer/asmrules_fix_20061231.diff
mplayer/cddb_fix_20070605.diff
mplayer/configure.patch
mplayer/liba52_gcc44.patch
mplayer/mplayer-1.0rc2_include-path-fix-dvd-common.patch
mplayer/mplayer.conf
mplayer/mplayer.desktop
mplayer/result
murrine
murrine/.footprint
murrine/.md5sum
murrine/Pkgfile
mutagen
mutagen/.footprint
mutagen/.md5sum
mutagen/Pkgfile
myodbc
myodbc/.footprint
myodbc/.md5sum
myodbc/Pkgfile
mypaint
mypaint/.footprint
mypaint/.md5sum
mypaint/Pkgfile
mysql
mysql/.footprint
mysql/.md5sum
mysql/Pkgfile
mysql/README
mysql/my.cnf
mysql/mysql-5.1-gcc45-apicheck.patch
mysql/mysql-5.1.46-skip-abi-check.patch
mysql/mysql.nutyx.patch
mysql/post-install
mysqlclient
mysqlclient/.footprint
mysqlclient/.md5sum
mysqlclient/Pkgfile
mysqlclient/mysql-fix-libs.patch
nas
nas/.footprint
nas/.md5sum
nas/Pkgfile
ncmpc
ncmpc/.footprint
ncmpc/.md5sum
ncmpc/Pkgfile
neon
neon/.footprint
neon/.md5sum
neon/Pkgfile
networkmanager
networkmanager/.footprint
networkmanager/.md5sum
networkmanager/Pkgfile
newt
newt/.footprint
newt/.md5sum
newt/Pkgfile
nextaw
nextaw/.footprint
nextaw/.md5sum
nextaw/Pkgfile
nfs-utils
nfs-utils-server
nfs-utils-server/.footprint
nfs-utils-server/.md5sum
nfs-utils-server/Pkgfile
nfs-utils-server/nfs-server
nfs-utils-server/nfs-server.sh
nfs-utils/.footprint
nfs-utils/.md5sum
nfs-utils/Pkgfile
nitrogen
nitrogen/.footprint
nitrogen/.md5sum
nitrogen/Pkgfile
nitrogen/nitrogen-48.png
nitrogen/nitrogen.desktop
nmap
nmap/.footprint
nmap/.footprint.old
nmap/.md5sum
nmap/Pkgfile
normalize
normalize/.footprint
normalize/.md5sum
normalize/Pkgfile
notification_plugin
notification_plugin/.footprint
notification_plugin/.md5sum
notification_plugin/Pkgfile
nss
nss-mdns
nss-mdns/.footprint
nss-mdns/.md5sum
nss-mdns/Pkgfile
nss-mdns/mdns.allow
nss/.footprint
nss/.md5sum
nss/Pkgfile
nss/nss-config.in
nss/nss.pc
ntfsprogs
ntfsprogs/.footprint
ntfsprogs/.md5sum
ntfsprogs/Pkgfile
ntp
ntp/.footprint
ntp/.md5sum
ntp/Pkgfile
ntp/ntp-4.2.4_p7-nano.patch
nvidia-settings
nvidia-settings/.footprint
nvidia-settings/.md5sum
nvidia-settings/Pkgfile
obconf
obconf/.footprint
obconf/.md5sum
obconf/Pkgfile
obex-data-server
obex-data-server/.footprint
obex-data-server/.md5sum
obex-data-server/Pkgfile
obmenu
obmenu/.footprint
obmenu/.md5sum
obmenu/Pkgfile
ode
ode/.footprint
ode/.md5sum
ode/Pkgfile
opal
opal/.footprint
opal/.md5sum
opal/Pkgfile
openal
openal/.footprint
openal/.md5sum
openal/Pkgfile
openbox
openbox/.footprint
openbox/.md5sum
openbox/Pkgfile
openbox/openbox.xinitrc
opencv
opencv/.footprint
opencv/.md5sum
opencv/Pkgfile
opencv/libpng-1.4.patch
opencv/opencv-1.0.0-gcc44.patch
openexr
openexr/.footprint
openexr/.md5sum
openexr/Pkgfile
openexr/openexr-gcc4.patch
openjpeg
openjpeg/.footprint
openjpeg/.md5sum
openjpeg/30_fix_build_for_debian.dpatch
openjpeg/Pkgfile
openldap
openldap/.footprint
openldap/.md5sum
openldap/Pkgfile
openobex
openobex/.footprint
openobex/.md5sum
openobex/Pkgfile
openoffice
openoffice/.footprint
openoffice/.md5sum
openoffice/Pkgfile
openoffice/buildfix-gcc43.diff
openoffice/buildfix-gcc44.diff
openoffice/buildfix-openjdk-6-no-rhino.diff
openoffice/buildfix_FormulaMissingHeader.diff
openoffice/buildfix_system_db48.diff
openoffice/default-no-startup-wizard.diff
openoffice/default-system-fpicker.diff
openoffice/libxmlsec-findcerts.diff
openoffice/ooffice.desktop
openoffice/ooo_getline.diff
openoffice/openoffice.install
openoffice/openoffice.profile
openoffice/shell.patch
openoffice/soffice-detect-mozilla-certificates.diff
openoffice/startcenter.desktop
openoffice/system_hsqldb.diff
openslp
openslp/.footprint
openslp/.md5sum
openslp/Pkgfile
openssh-server
openssh-server/.footprint
openssh-server/.md5sum
openssh-server/Pkgfile
openssh-server/service-01.patch
openvpn
openvpn/.footprint
openvpn/.md5sum
openvpn/Pkgfile
orbit2
orbit2/.footprint
orbit2/.md5sum
orbit2/Pkgfile
ortp
ortp/.footprint
ortp/.md5sum
ortp/Pkgfile
oxygenrefit2-red
oxygenrefit2-red/.footprint
oxygenrefit2-red/.md5sum
oxygenrefit2-red/Pkgfile
p5-cairo
p5-cairo/.footprint
p5-cairo/.md5sum
p5-cairo/Pkgfile
p5-crypt-ssleay
p5-crypt-ssleay/.footprint
p5-crypt-ssleay/.md5sum
p5-crypt-ssleay/Pkgfile
p5-extutils-depends
p5-extutils-depends/.footprint
p5-extutils-depends/.md5sum
p5-extutils-depends/Pkgfile
p5-extutils-pkgconfig
p5-extutils-pkgconfig/.footprint
p5-extutils-pkgconfig/.md5sum
p5-extutils-pkgconfig/Pkgfile
p5-glib
p5-glib/.footprint
p5-glib/.md5sum
p5-glib/Pkgfile
p5-gtk2
p5-gtk2-ex-formfactory
p5-gtk2-ex-formfactory/.footprint
p5-gtk2-ex-formfactory/.md5sum
p5-gtk2-ex-formfactory/Pkgfile
p5-gtk2-ex-utils
p5-gtk2-ex-utils/.footprint
p5-gtk2-ex-utils/.md5sum
p5-gtk2-ex-utils/Pkgfile
p5-gtk2-sexy
p5-gtk2-sexy/.footprint
p5-gtk2-sexy/.md5sum
p5-gtk2-sexy/Pkgfile
p5-gtk2-trayicon
p5-gtk2-trayicon/.footprint
p5-gtk2-trayicon/.md5sum
p5-gtk2-trayicon/Pkgfile
p5-gtk2/.footprint
p5-gtk2/.md5sum
p5-gtk2/Pkgfile
p5-libwww
p5-libwww/.footprint
p5-libwww/.md5sum
p5-libwww/Pkgfile
p5-pycurl
p5-pycurl/.footprint
p5-pycurl/.md5sum
p5-pycurl/Pkgfile
p5-tk
p5-tk/.footprint
p5-tk/.md5sum
p5-tk/Pkgfile
p5-x11-protocol
p5-x11-protocol/.footprint
p5-x11-protocol/.md5sum
p5-x11-protocol/Pkgfile
p5-xml-parser
p5-xml-parser/.footprint
p5-xml-parser/.md5sum
p5-xml-parser/Pkgfile
pango
pango/.footprint
pango/.md5sum
pango/Pkgfile
pango/pango.modules
pangomm
pangomm/.footprint
pangomm/.md5sum
pangomm/Pkgfile
parcellite
parcellite/.footprint
parcellite/.md5sum
parcellite/Pkgfile
parted
parted/.footprint
parted/.md5sum
parted/Pkgfile
parted/parted-1.9.0-btrfs-02.patch
partimage
partimage/.footprint
partimage/.md5sum
partimage/Pkgfile
partimage/partimage-0.6.8-gcc44.patch
pcmanfm
pcmanfm/.footprint
pcmanfm/.md5sum
pcmanfm/Pkgfile
pcmanfm/build~
pekwm
pekwm/.footprint
pekwm/.md5sum
pekwm/Pkgfile
pekwm/pekwm.desktop
phatch
phatch/.footprint
phatch/.md5sum
phatch/Pkgfile
php
php/.footprint
php/.md5sum
php/Pkgfile
php/oldbuild
pidgin
pidgin/.footprint
pidgin/.md5sum
pidgin/Pkgfile
pigment
pigment/.footprint
pigment/.md5sum
pigment/Pkgfile
pil
pil/.footprint
pil/.md5sum
pil/Pkgfile
pilot-link
pilot-link/.footprint
pilot-link/.md5sum
pilot-link/Pkgfile
pilot-link/pilot-link-png14.patch
pinentry
pinentry/.footprint
pinentry/.md5sum
pinentry/Pkgfile
pinentry/pinentry-0.7.5.patch
playonlinux
playonlinux/.footprint
playonlinux/.md5sum
playonlinux/Pkgfile
plotutils
plotutils/.footprint
plotutils/.md5sum
plotutils/Pkgfile
policykit
policykit/.footprint
policykit/.md5sum
policykit/Pkgfile
policykit/policykit-no-pam.patch
polkit
polkit-qt
polkit-qt/.footprint
polkit-qt/.md5sum
polkit-qt/Pkgfile
polkit/.footprint
polkit/.md5sum
polkit/Pkgfile
poppler
poppler-glib
poppler-glib/.footprint
poppler-glib/.md5sum
poppler-glib/Pkgfile
poppler-glib/poppler-0.10-bindings.patch
poppler/.footprint
poppler/.md5sum
poppler/Pkgfile
portaudio
portaudio/.footprint
portaudio/.md5sum
portaudio/Pkgfile
postgresql
postgresql/.footprint
postgresql/.md5sum
postgresql/Pkgfile
postgresql/build.patch
postgresql/nutyx-01.patch
postgresql/post-install
postgresql/postgresql.pam
ppp
ppp/.footprint
ppp/.md5sum
ppp/Pkgfile
ppp/pppd
ppp/pre-install
pptp
pptp/.footprint
pptp/.md5sum
pptp/Pkgfile
proj
proj/.footprint
proj/.md5sum
proj/Pkgfile
protobuf-python
protobuf-python/.footprint
protobuf-python/.md5sum
protobuf-python/Pkgfile
pstoedit
pstoedit/.footprint
pstoedit/.md5sum
pstoedit/Pkgfile
psutils
psutils/.footprint
psutils/.md5sum
psutils/Pkgfile
psutils/psutils-1.17.diff
pth
pth/.footprint
pth/.md5sum
pth/Pkgfile
pyalsaaudio
pyalsaaudio/.footprint
pyalsaaudio/.md5sum
pyalsaaudio/Pkgfile
pycairo
pycairo/.footprint
pycairo/.md5sum
pycairo/Pkgfile
pycrypto
pycrypto/.footprint
pycrypto/.md5sum
pycrypto/Pkgfile
pycrypto/pycrypto-2.0.1
pycups
pycups/.footprint
pycups/.md5sum
pycups/Pkgfile
pycups/pycups-1.9.49-python-2.5.patch
pydialog
pydialog/.footprint
pydialog/.md5sum
pydialog/Pkgfile
pyfeedparser
pyfeedparser/.footprint
pyfeedparser/.md5sum
pyfeedparser/Pkgfile
pyfeedparser/feedparser_utf8_decoding.patch
pygobject
pygobject/.footprint
pygobject/.md5sum
pygobject/Pkgfile
pygtk
pygtk/.footprint
pygtk/.md5sum
pygtk/Pkgfile
pygtksourceview
pygtksourceview/.footprint
pygtksourceview/.md5sum
pygtksourceview/Pkgfile
pyopenssl
pyopenssl/.footprint
pyopenssl/.md5sum
pyopenssl/Pkgfile
pyorbit
pyorbit/.footprint
pyorbit/.md5sum
pyorbit/Pkgfile
pyqt
pyqt/.footprint
pyqt/.md5sum
pyqt/Pkgfile
pyrex
pyrex/.footprint
pyrex/.md5sum
pyrex/Pkgfile
pysdm
pysdm/.footprint
pysdm/.md5sum
pysdm/Pkgfile
pysdm/pysdm.desktop
pysdm/pysdm.png
python
python-chardet
python-chardet/.footprint
python-chardet/.md5sum
python-chardet/Pkgfile
python-mpd
python-mpd/.footprint
python-mpd/.md5sum
python-mpd/Pkgfile
python-notify
python-notify/.footprint
python-notify/.md5sum
python-notify/Pkgfile
python-numpy
python-numpy/.Pkgfile.swp
python-numpy/.footprint
python-numpy/.md5sum
python-numpy/Pkgfile
python-pigment
python-pigment/.footprint
python-pigment/.md5sum
python-pigment/Pkgfile
python-sqlite
python-sqlite/.footprint
python-sqlite/.md5sum
python-sqlite/Pkgfile
python-sqlite/setup.cfg
python/.footprint
python/.md5sum
python/Pkgfile
pyxdg
pyxdg/.footprint
pyxdg/.md5sum
pyxdg/Pkgfile
pyxml
pyxml/.footprint
pyxml/.md5sum
pyxml/Pkgfile
qca
qca/.footprint
qca/.md5sum
qca/Pkgfile
qemu
qemu/.footprint
qemu/.md5sum
qemu/Pkgfile
qt
qt-recordmydesktop
qt-recordmydesktop/.footprint
qt-recordmydesktop/.md5sum
qt-recordmydesktop/Pkgfile
qt/.footprint
qt/.md5sum
qt/Pkgfile
qt/phonon.patch
qt/post-install
qt/wget-log
quodlibet
quodlibet/.footprint
quodlibet/.md5sum
quodlibet/Pkgfile
rarian
rarian/.footprint
rarian/.md5sum
rarian/Pkgfile
rarian/user-segfault.patch
ratpoison
ratpoison/.footprint
ratpoison/.md5sum
ratpoison/Pkgfile
ratpoison/ratpoison.desktop
rdesktop
rdesktop/.footprint
rdesktop/.md5sum
rdesktop/Pkgfile
recordmydesktop
recordmydesktop/.footprint
recordmydesktop/.md5sum
recordmydesktop/Pkgfile
rezlooks
rezlooks/.footprint
rezlooks/.md5sum
rezlooks/Pkgfile
rox
rox/.footprint
rox/.md5sum
rox/Pkgfile
rox/rox.desktop
rox/rox.svg
roxterm
roxterm/.footprint
roxterm/.md5sum
roxterm/Pkgfile
rpmextract
rpmextract/.footprint
rpmextract/.md5sum
rpmextract/Pkgfile
rpmextract/rpm2cpio
rpmextract/rpmextract.sh
rsync-server
rsync-server/.footprint
rsync-server/.md5sum
rsync-server/Pkgfile
rtorrent
rtorrent/.footprint
rtorrent/.md5sum
rtorrent/Pkgfile
ruby
ruby/.footprint
ruby/.md5sum
ruby/Pkgfile
ruby/openssl-1.0.patch
rxvt-unicode
rxvt-unicode/.footprint
rxvt-unicode/.md5sum
rxvt-unicode/Pkgfile
rxvt-unicode/font-width-fix.patch
rxvt-unicode/rxvt-unicode.desktop
rxvt-unicode/rxvt-unicode.png
samba3
samba3-server
samba3-server/.footprint
samba3-server/.md5sum
samba3-server/Pkgfile
samba3-server/smb.conf
samba3/.footprint
samba3/.md5sum
samba3/Pkgfile
samba3/smb.conf
sane
sane/.footprint
sane/.md5sum
sane/Pkgfile
saxon
saxon/.footprint
saxon/.md5sum
saxon/Pkgfile
saxon/saxon.sh
scons
scons/.footprint
scons/.md5sum
scons/Pkgfile
screen
screen/.footprint
screen/.md5sum
screen/Pkgfile
scribus
scribus/.footprint
scribus/.md5sum
scribus/Pkgfile
scrot
scrot/.footprint
scrot/.md5sum
scrot/Pkgfile
sdl
sdl/.footprint
sdl/.md5sum
sdl/Pkgfile
sdl_image
sdl_image/.footprint
sdl_image/.md5sum
sdl_image/Pkgfile
sdl_mixer
sdl_mixer/.footprint
sdl_mixer/.md5sum
sdl_mixer/Pkgfile
sdl_net
sdl_net/.footprint
sdl_net/.md5sum
sdl_net/Pkgfile
sdl_sound
sdl_sound/.footprint
sdl_sound/.md5sum
sdl_sound/Pkgfile
sdl_sound/flac.patch
sdl_ttf
sdl_ttf/.footprint
sdl_ttf/.md5sum
sdl_ttf/Pkgfile
sdl_ttf/sdl_ttf-noftinternals.patch
setuptools
setuptools/.footprint
setuptools/.md5sum
setuptools/Pkgfile
shared-mime-info
shared-mime-info/.footprint
shared-mime-info/.md5sum
shared-mime-info/Pkgfile
shared-mime-info/post-install
siag
siag/.footprint
siag/.md5sum
siag/Pkgfile
siag/siag.desktop
simple-scan
simple-scan/.footprint
simple-scan/.md5sum
simple-scan/Pkgfile
sip
sip/.footprint
sip/.md5sum
sip/Pkgfile
slib
slib/.footprint
slib/.md5sum
slib/Pkgfile
slib/slibcat
smile
smile/.footprint
smile/.md5sum
smile/Pkgfile
smile/smile.desktop
smpeg
smpeg/.footprint
smpeg/.md5sum
smpeg/Pkgfile
smpeg/smpeg-mpegaudiosdl.patch
sonata
sonata/.footprint
sonata/.md5sum
sonata/Pkgfile
sox
sox/.footprint
sox/.md5sum
sox/Pkgfile
speex
speex/.footprint
speex/.md5sum
speex/Pkgfile
sqlite3
sqlite3/.footprint
sqlite3/.md5sum
sqlite3/Pkgfile
sshfs
sshfs/.footprint
sshfs/.md5sum
sshfs/Pkgfile
startup-notification
startup-notification/.footprint
startup-notification/.md5sum
startup-notification/Pkgfile
streamripper
streamripper/.footprint
streamripper/.md5sum
streamripper/Pkgfile
streamtuner
streamtuner/.footprint
streamtuner/.md5sum
streamtuner/Pkgfile
subversion
subversion/.footprint
subversion/.md5sum
subversion/Pkgfile
sylpheed
sylpheed/.footprint
sylpheed/.md5sum
sylpheed/Pkgfile
sylpheed/sylpheed.desktop
syslinux
syslinux/.footprint
syslinux/.md5sum
syslinux/Pkgfile
system-config-printer
system-config-printer/.footprint
system-config-printer/.md5sum
system-config-printer/Pkgfile
system-tools-backends
system-tools-backends/.footprint
system-tools-backends/.md5sum
system-tools-backends/.oldfootprint
system-tools-backends/Pkgfile
taglib
taglib-extras
taglib-extras/.footprint
taglib-extras/.md5sum
taglib-extras/Pkgfile
taglib/.footprint
taglib/.md5sum
taglib/Pkgfile
tango-icon-theme
tango-icon-theme/.footprint
tango-icon-theme/.md5sum
tango-icon-theme/Pkgfile
testdisk
testdisk/.footprint
testdisk/.md5sum
testdisk/Pkgfile
testdisk/testdisk.log
texi2html
texi2html/.footprint
texi2html/.md5sum
texi2html/Pkgfile
thunderbird
thunderbird/.footprint
thunderbird/.md5sum
thunderbird/Pkgfile
thunderbird/thunderbird.desktop
thunderbird/thunderbird.png
tightvnc-viewer
tightvnc-viewer/.footprint
tightvnc-viewer/.md5sum
tightvnc-viewer/Pkgfile
tint2
tint2/.footprint
tint2/.md5sum
tint2/Pkgfile
tk
tk/.footprint
tk/.md5sum
tk/Pkgfile
tomcat
tomcat/.footprint
tomcat/.md5sum
tomcat/Pkgfile
tomcat/post-install
tomcat/tomcat
tomcat/tomcat.conf.d
tomcat/tomcat.install
tor
tor/.directory
tor/.footprint
tor/.md5sum
tor/Pkgfile
transcode
transcode/.footprint
transcode/.md5sum
transcode/Pkgfile
transmission
transmission/.footprint
transmission/.md5sum
transmission/Pkgfile
transmission/Pkgfile~
transmission/transmission.desktop
transset-df
transset-df/.footprint
transset-df/.md5sum
transset-df/Pkgfile
twisted
twisted/.footprint
twisted/.md5sum
twisted/Pkgfile
twistedweb2
twistedweb2/.footprint
twistedweb2/.md5sum
twistedweb2/Pkgfile
txt2tags
txt2tags/.footprint
txt2tags/.md5sum
txt2tags/Pkgfile
ufraw
ufraw/.footprint
ufraw/.md5sum
ufraw/Pkgfile
ufw
ufw/.footprint
ufw/.md5sum
ufw/Pkgfile
ufw/ufwd
unetbootin
unetbootin/.footprint
unetbootin/.md5sum
unetbootin/Pkgfile
urwid
urwid/.footprint
urwid/.md5sum
urwid/Pkgfile
usbmuxd
usbmuxd/.footprint
usbmuxd/.md5sum
usbmuxd/Pkgfile
usbmuxd/usbmuxd-udevuser.patch
usbmuxd/usbmuxd.install
usbutils
usbutils/.footprint
usbutils/.md5sum
usbutils/Pkgfile
vcdimager
vcdimager/.footprint
vcdimager/.md5sum
vcdimager/Pkgfile
verbiste
verbiste/.directory
verbiste/.footprint
verbiste/.md5sum
verbiste/Pkgfile
vigra
vigra/.footprint
vigra/.md5sum
vigra/Pkgfile
vigra/libpng-1.4.patch
virtualbox-bin
virtualbox-bin/.footprint
virtualbox-bin/.md5sum
virtualbox-bin/Pkgfile
vlc
vlc-plugin
vlc-plugin/.footprint
vlc-plugin/.md5sum
vlc-plugin/Pkgfile
vlc-plugin/vlc-1.0.4-new-xulrunner.patch
vlc/.footprint
vlc/.md5sum
vlc/Pkgfile
vlc/libpng-1.4.patch
vpnc
vpnc/.footprint
vpnc/.md5sum
vpnc/Pkgfile
vte
vte/.footprint
vte/.md5sum
vte/Pkgfile
wallpapoz
wallpapoz/.footprint
wallpapoz/.md5sum
wallpapoz/Pkgfile
webkit
webkit/.footprint
webkit/.md5sum
webkit/Pkgfile
weechat
weechat/.footprint
weechat/.md5sum
weechat/Pkgfile
wgetpaste
wgetpaste/.footprint
wgetpaste/.md5sum
wgetpaste/Pkgfile
wicd
wicd/.footprint
wicd/.md5sum
wicd/Pkgfile
wicd/wicd-locale.patch
wicd/wicd.desktop
wicd/wicd_in_usr.patch
wine
wine/.footprint
wine/.md5sum
wine/Pkgfile
wireless_tools
wireless_tools/.footprint
wireless_tools/.md5sum
wireless_tools/Pkgfile
wireshark
wireshark/.footprint
wireshark/.md5sum
wireshark/Pkgfile
wireshark/wireshark.desktop
wireshark/wireshark.png
wpa_supplicant
wpa_supplicant/.footprint
wpa_supplicant/.md5sum
wpa_supplicant/Pkgfile
wpa_supplicant/config
wv
wv/.footprint
wv/.md5sum
wv/Pkgfile
wv2
wv2/.footprint
wv2/.md5sum
wv2/Pkgfile
wxdfast
wxdfast/.footprint
wxdfast/.md5sum
wxdfast/Pkgfile
wxgtk
wxgtk/.footprint
wxgtk/.md5sum
wxgtk/Pkgfile
wxgtk/glib-2.21.patch
wxgtk/overflow.patch
wxpython
wxpython/.footprint
wxpython/.md5sum
wxpython/Pkgfile
wxpython/editra-ebmlib.diff
x11vnc
x11vnc/.footprint
x11vnc/.md5sum
x11vnc/Pkgfile
x264
x264/.footprint
x264/.md5sum
x264/Pkgfile
xaw3d
xaw3d/.footprint
xaw3d/.md5sum
xaw3d/LICENSE
xaw3d/Pkgfile
xaw3d/Xaw3d-1.5-box.c.patch
xaw3d/Xaw3d-1.5-debian-fixes.patch
xaw3d/Xaw3d-1.5-i18n.patch
xaw3d/Xaw3d-1.5E-warnings.patch
xaw3d/Xaw3d-1.5E-xorg-imake.patch
xaw3d/Xaw3d-ia64.patch
xaw3d/xaw3d.patch
xawm
xawm/.footprint
xawm/.md5sum
xawm/Pkgfile
xcfa
xcfa/.footprint
xcfa/.md5sum
xcfa/Pkgfile
xchat
xchat/.footprint
xchat/.md5sum
xchat/Pkgfile
xchat/xchat-gtk2.19.7.patch
xchat/xchat-gtk2.patch
xdg-utils
xdg-utils/.footprint
xdg-utils/.md5sum
xdg-utils/Pkgfile
xdg-utils/xdg-utils-1.0.2-midori-1.patch
xdialog
xdialog/.footprint
xdialog/.md5sum
xdialog/Pkgfile
xerces-c
xerces-c/.footprint
xerces-c/.md5sum
xerces-c/Pkgfile
xfe
xfe/.footprint
xfe/.md5sum
xfe/Pkgfile
xfe/gcc4.5.patch
xfe/xfe-1.32.1-pos-01.patch
xine-lib
xine-lib/.footprint
xine-lib/.md5sum
xine-lib/Pkgfile
xine-lib/xine-lib-1.1.1-configure-no-mcpu-march.patch
xmlsec
xmlsec/.footprint
xmlsec/.md5sum
xmlsec/Pkgfile
xmlto
xmlto/.footprint
xmlto/.md5sum
xmlto/Pkgfile
xmms
xmms/.footprint
xmms/.md5sum
xmms/Pkgfile
xmms/aclocal-fixes.patch
xmms/xmms-1.2.10-crossfade-0.3.9.patch
xmms/xmms-1.2.10-fonts.patch
xmms/xmms-1.2.10-recode-id3.patch
xmms/xmms-1.2.11-3dse.patch
xmms/xmms-fix.diff
xmms/xmms-menu.patch
xmms/xmms.desktop
xmms/xmms.desktop.ede
xmms/xmms.png
xmoto
xmoto/.footprint
xmoto/.md5sum
xmoto/Pkgfile
xmoto/libpng-14.patch
xmoto/xmoto.desktop
xonclock
xonclock/.footprint
xonclock/.md5sum
xonclock/Pkgfile
xpdf
xpdf/.footprint
xpdf/.md5sum
xpdf/Pkgfile
xpdf/patch.patch
xpdf/xpdf.desktop
xsane
xsane/.footprint
xsane/.md5sum
xsane/Pkgfile
xsane/build.old
xsane/xsane.desktop
xscreensaver
xscreensaver/.footprint
xscreensaver/.md5sum
xscreensaver/Pkgfile
xulrunner
xulrunner/.footprint
xulrunner/.md5sum
xulrunner/Pkgfile
xulrunner/mozconfig
xulrunner/xulrunner.diff
xv
xv/.footprint
xv/.md5sum
xv/Pkgfile
xv/xv-3.10a-Makefile.diff
xv/xv-3.10a-manpage.diff
xvid
xvid/.footprint
xvid/.md5sum
xvid/Pkgfile
xvidcap
xvidcap/.footprint
xvidcap/.md5sum
xvidcap/Pkgfile
yacpi
yacpi/.footprint
yacpi/.md5sum
yacpi/Pkgfile
zope-interface
zope-interface/.footprint
zope-interface/.md5sum
zope-interface/.mplayer
zope-interface/.mplayer/config
zope-interface/Pkgfile
zope-interface/ZopeInterface-3.1.0c1
zsh
zsh/.footprint
zsh/.md5sum
zsh/Pkgfile