summaryrefslogtreecommitdiffstats
path: root/perl-install/drakxtools.spec
blob: 65b1c5653880f77b9e37a449273360f916e12d32 (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
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Name:    drakxtools
Version: 10.2
Release: 7mdk
Url: http://www.mandrakelinux.com/en/drakx.php3
Source0: %name-%version.tar.bz2
License: GPL
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Gtk2 >= 1.072-1mdk, perl-Glib >= 1.072-1mdk, /usr/X11R6/bin/xtest, font-tools, usermode >= 1.63-5mdk, perl-MDK-Common >= 1.1.18-1mdk, mandrake-doc-common >= 9.2-5mdk
Requires: foomatic-db-engine
Conflicts: drakconf < 10.1-0.6mdk
Conflicts: rpmdrake < 2.1-29mdk
Conflicts: mandrake_doc-drakxtools-en < 9.2, mandrake_doc-drakxtools-es < 9.2, mandrake_doc-drakxtools-fr < 9.2
Conflicts: bootloader-utils < 1.8-4mdk, bootsplash < 2.1.7-1mdk
BuildRequires: gettext, gtk+2-devel, ldetect-devel >= 0.5.3-1mdk, ncurses-devel, newt-devel, perl-devel >= 1:5.8.0-20mdk, libext2fs-devel, perl-MDK-Common-devel >= 1.1.8-3mdk
BuildRequires: rpm-devel
BuildRoot: %_tmppath/%name-buildroot
Provides: draksec
Obsoletes: draksec
%define _requires_exceptions perl(Net::FTP)\\|perl(Time::localtime)\\|perl(URPM)

%package newt
Summary: The drakxtools (XFdrake, diskdrake, keyboarddrake, mousedrake...)
Group: System/Configuration/Other
Requires: perl-base >= 2:5.8.6-1mdk, urpmi >= 4.6.13, modutils >= 2.3.11, usermode-consoleonly >= 1.44-4mdk, msec >= 0.38-5mdk
Requires: %{name}-backend = %version-%release
Requires: monitor-edid
Requires: netprofile
Obsoletes: diskdrake kbdconfig mouseconfig printtool setuptool drakfloppy
Provides: diskdrake, kbdconfig mouseconfig printtool setuptool, drakfloppy = %version-%release
Provides: perl(Newt::Newt)
Provides: perl(network::isdn_consts)

%package backend
Summary: Drakxtools libraries and background tools 
Group: System/Configuration/Other
Requires: ldetect-lst >= 0.1.25-1mdk
Requires: dmidecode
Conflicts: drakxtools-newt < 10-51mdk


%package http
Summary: The drakxtools via http
Group: System/Configuration/Other
Requires: %{name}-newt = %version-%release, perl-Net_SSLeay >= 1.22-1mdk, perl-Authen-PAM >= 0.14-1mdk, perl-CGI >= 2.91-1mdk
PreReq: rpm-helper

%package -n drakx-finish-install
Summary: First boot configuration
Group: System/Configuration/Other
Requires: %{name} = %version-%release

%package -n harddrake
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %{name}-newt = %version-%release
Requires: hwdb-clients
Obsoletes: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Provides: kudzu, kudzu-devel, libdetect0, libdetect0-devel, libdetect-lst, libdetect-lst-devel, detect, detect-lst
Prereq: rpm-helper

%package -n harddrake-ui
Summary: Main Hardware Configuration/Information Tool
Group: System/Configuration/Hardware
Requires: %name = %version-%release
Requires: sane-backends

%description
Contains many Mandrakelinux applications simplifying users and
administrators life on a Mandrakelinux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

drakbug: interactive bug report tool

drakbug_report: help find bugs in DrakX

drakclock: date & time configurator

drakfloppy: boot disk creator

drakfont: import fonts in the system

draklog: show extracted information from the system logs

draknet_monitor: connection monitoring

drakperm: msec GUI (permissions configurator)

drakprinter: detect and configure your printer

draksec: security options managment / msec frontend

draksplash: bootsplash themes creation

drakTermServ: terminal server configurator

listsupportedprinters: list printers

net_applet: applet to check network connection

%description backend
See package %name

%description newt
Contains many Mandrakelinux applications simplifying users and
administrators life on a Mandrakelinux machine. Nearly all of
them work both under XFree (graphical environment) and in console
(text environment), allowing easy distant work.

adduserdrake: help you adding a user

diskdrake: DiskDrake makes hard disk partitioning easier. It is
graphical, simple and powerful. Different skill levels are available
(newbie, advanced user, expert). It's written entirely in Perl and
Perl/Gtk. It uses resize_fat which is a perl rewrite of the work of
Andrew Clausen (libresize).

drakauth: configure authentification (LDAP/NIS/...)

drakautoinst: help you configure an automatic installation replay

drakbackup: backup and restore your system

drakboot: configures your boot configuration (Lilo/GRUB,
Bootsplash, X, autologin)

drakconnect: LAN/Internet connection configuration. It handles
ethernet, ISDN, DSL, cable, modem.

drakfirewall: simple firewall configurator

drakgw: internet connection sharing

drakkeyboard: configure your keyboard (both console and X)

draklocale: language configurator, available both for root
(system wide) and users (user only)

drakmouse: autodetect and configure your mouse

drakproxy: proxies configuration

drakscanner: scanner configurator

draksound: sound card configuration

drakx11: menu-driven program which walks you through setting up
your X server; it autodetects both monitor and video card if
possible

drakxservices: SysV services and dameaons configurator

drakxtv: auto configure tv card for xawtv grabber

lsnetdrake: display available nfs and smb shares

lspcidrake: display your pci information, *and* the corresponding
kernel module

%description http
This add the capability to be runned behind a web server to the drakx tools.
See package %name


%description -n drakx-finish-install
For OEM-like duplications, it allows at first boot:
- network configuration
- creating users
- setting root password
- choosing authentication


%description -n harddrake
The harddrake service is a hardware probing tool run at system boot
time to determine what hardware has been added or removed from the
system.
It then offer to run needed config tool to update the OS
configuration.


%description -n harddrake-ui
This is the main configuration tool for hardware that calls all the
other configuration tools.
It offers a nice GUI that show the hardware configuration splitted by
hardware classes.


%prep
%setup -q

%build
%make CFLAGS="$RPM_OPT_FLAGS"

%install
rm -rf $RPM_BUILD_ROOT

%make PREFIX=$RPM_BUILD_ROOT install
mkdir -p $RPM_BUILD_ROOT/{%_initrddir,%_sysconfdir/{X11/xinit.d,sysconfig/harddrake2}}
touch $RPM_BUILD_ROOT/etc/sysconfig/harddrake2/previous_hw

dirs1="usr/lib/libDrakX usr/share/libDrakX"
(cd $RPM_BUILD_ROOT ; find $dirs1 usr/bin usr/sbin ! -type d -printf "/%%p\n")|egrep -v 'bin/.*harddrake' > %{name}.list
(cd $RPM_BUILD_ROOT ; find $dirs1 -type d -printf "%%%%dir /%%p\n") >> %{name}.list

perl -ni -e '/activefw\.pm|clock|drak(backup|bug|clock|floppy|font|log|net_monitor|perm|printer|sec|splash|TermServ)|gtk|icons|logdrake|net_applet|net_monitor|pixmaps|printer|xf86misc|\.png$/ ? print STDERR $_ : print' %{name}.list 2> %{name}-gtk.list
perl -ni -e '/http/ ? print STDERR $_ : print' %{name}.list 2> %{name}-http.list
perl -ni -e 'm!lib/libDrakX|bootloader-config|fileshare|lsnetdrake|drakupdate_fstab|rpcinfo|serial_probe! && !/newt/i ? print STDERR $_ : print' %{name}.list 2> %{name}-backend.list

#mdk menu entry
mkdir -p $RPM_BUILD_ROOT/%_menudir

cat > $RPM_BUILD_ROOT%_menudir/drakxtools-newt <<EOF
?package(drakxtools-newt): \
	needs="X11" \
	section="System/Configuration/Other" \
	title="LocaleDrake (System)" \
	longtitle="System wide language configurator" \
	command="/usr/bin/drakconf --start-with=Localization" \
	icon="localedrake.png"

?package(drakxtools-newt): \
	needs="X11" \
	section="System/Configuration/Other" \
	title="LocaleDrake (User)" \
	longtitle="Language configurator" \
	command="/usr/bin/localedrake" \
	icon="localedrake.png"

EOF
 
cat > $RPM_BUILD_ROOT%_menudir/harddrake-ui <<EOF
?package(harddrake-ui):\
	needs="X11"\
	section="Configuration/Hardware"\
	title="HardDrake"\
	longtitle="Hardware Central Configuration/information tool"\
	command="/usr/sbin/harddrake2"\
	icon="harddrake.png"
EOF

cat > $RPM_BUILD_ROOT%_menudir/net_applet <<EOF
?package(drakxtools):\
        needs="X11"\
        section="System/Monitoring"\
        title="NetApplet"\
        longtitle="Network monitoring applet"\
        command="/usr/bin/net_applet"\
        icon="/usr/share/libDrakX/pixmaps/connected.png"
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2 <<EOF
#!/bin/sh
exec /usr/share/harddrake/service_harddrake X11
EOF

cat > $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/net_applet <<EOF
#!/bin/sh
DESKTOP=\$1
case \$DESKTOP in
   KDE|GNOME|IceWM|Fluxbox|XFce4) exec /usr/bin/net_applet;;
esac
EOF

mv $RPM_BUILD_ROOT%_sbindir/service_harddrake_confirm $RPM_BUILD_ROOT%_datadir/harddrake/confirm

chmod +x $RPM_BUILD_ROOT{%_datadir/harddrake/*,%_sysconfdir/X11/xinit.d/{harddrake2,net_applet}}
# temporary fix until we reenable this feature
rm -f $RPM_BUILD_ROOT%_sysconfdir/X11/xinit.d/harddrake2

%find_lang libDrakX
cat libDrakX.lang >> %name.list

%clean
rm -rf $RPM_BUILD_ROOT

%post
[[ ! -e %_sbindir/kbdconfig ]] && %__ln_s -f keyboarddrake %_sbindir/kbdconfig
[[ ! -e %_sbindir/mouseconfig ]] && %__ln_s -f mousedrake %_sbindir/mouseconfig
[[ ! -e %_bindir/printtool ]] && %__ln_s -f ../sbin/printerdrake %_bindir/printtool
:

%postun
for i in %_sbindir/kbdconfig %_sbindir/mouseconfig %_bindir/printtool;do
    [[ -L $i ]] && %__rm -f $i
done
:

%post http
%_post_service drakxtools_http

%preun http
%_preun_service drakxtools_http

%post newt
%update_menus

%postun newt
%clean_menus

%post -n harddrake-ui
%update_menus

%postun -n harddrake-ui
%clean_menus

%post -n harddrake
%_post_service harddrake

%preun -n harddrake
%_preun_service harddrake

%postun -n harddrake
file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrake/convert || :

%files backend -f %{name}-backend.list
%defattr(-,root,root)
%config(noreplace) /etc/security/fileshare.conf
%attr(4755,root,root) %_sbindir/fileshareset

%files newt -f %name.list
%defattr(-,root,root)
%_menudir/drakxtools-newt
%doc diskdrake/diskdrake.html
%_iconsdir/localedrake.png
%_iconsdir/large/localedrake.png
%_iconsdir/mini/localedrake.png
%_mandir/*/*

%files -f %{name}-gtk.list
%defattr(-,root,root)
/usr/X11R6/bin/*
%_sysconfdir/X11/xinit.d/net_applet
%_menudir/net_applet

%files -n harddrake
%defattr(-,root,root)
%config(noreplace) %_initrddir/harddrake
%dir /etc/sysconfig/harddrake2/
%config(noreplace) /etc/sysconfig/harddrake2/previous_hw
%dir %_datadir/harddrake/
%_datadir/harddrake/*
#%_sysconfdir/X11/xinit.d/harddrake2

%files -n harddrake-ui
%defattr(-,root,root)
%dir /etc/sysconfig/harddrake2/
%_sbindir/harddrake2
%_datadir/pixmaps/harddrake2
%_menudir/harddrake-ui
%_iconsdir/large/harddrake.png
%_iconsdir/mini/harddrake.png
%_iconsdir/harddrake.png

%files -n drakx-finish-install
%defattr(-,root,root)
%config(noreplace) %_sysconfdir/sysconfig/finish-install
%_sysconfdir/X11/xsetup.d/finish-install.xsetup
%_sbindir/finish-install

%files http -f %{name}-http.list
%defattr(-,root,root)
%dir %_sysconfdir/drakxtools_http
%config(noreplace) %_sysconfdir/pam.d/miniserv
%config(noreplace) %_sysconfdir/init.d/drakxtools_http
%config(noreplace) %_sysconfdir/drakxtools_http/conf
%config(noreplace) %_sysconfdir/drakxtools_http/authorised_progs
%config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http

%changelog
* Thu Mar 17 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-7mdk
- drakconnect:
  o fix localized sorting (#14634)
  o manage interface (blino):
    * allow to modify non configured devices
    * really detect wireless devices
- harddrake: fix adsl devices detection (blino, #14747)
- logdrake: fix save dialog (blino)
- printerdrake: fix queue name auto-generation, it sometimes hanged in
  an endless loop (till, #14426, #14525, #14563)
- XFdrake (pixel): 
  o instead of having xorg.conf symlinked to XF86Config, do the
    contrary
  o use monitor-probe-using-X
  o remove the "ratio" combo and have the resolutions from current
    ratio by default and allow "Other" to see all others

* Wed Mar 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-6mdk
- drakboot: fix dropping line macos in yaboot.conf (pixel, #14642)
- drakconnect (blino):
  o allow to display multiple instances of the similar adsl devices
  o fix unicorn packages installation
- interactive layer: fix some nasty bug
- localekdrake:
  o preserve utf-8 setting (#12308)
  o properly set UTF-8 for HAL mount options if needed (#13833)
  o enable to enable/disable utf-8
  o install scim-input-pad when switching IM for japanese
  o ensure there's never a "previous" button on first step (even when
    stepping back)
- printerdrake: fix setting of default printer on daemon-less CUPS
  client (till, #13940)
- XFdrake: probe DDC, then fallbacks on DMI

* Tue Mar 15 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-5mdk
- diskdrake: add support for XBox (stew, pixel)
- drakboot: don't die when we have no entries in grub menu.lst (pixel)
- drakconnect (blino):
  o allow not to set gateway device (#14633)
  o fix and force CMVs symlink creation for eagle-usb
- drakfirewall: allow connections from local net to firewall (blino,
  #14586)
- XFdrake (pixel):
  o for 1400x1050, put the resolutions (60 and 75Hz are already in
    extramodes, but they are GTF modelines, we can overrule them) 
  o don't add modelines for 1280x1024, they are already in standard
    vesamodes (builtin Xorg)
  o when adding gtf modelines, sort them with high frequencies first
    (since Xorg prefer the first matching modeline (!))

* Thu Mar 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-4mdk
- harddrake2: enable to upload the hardware list
- XFdrake:
  o fix crash when called from hwdb-clients
  o skip the 4/3 detailed_timings otherwise they conflict with the
    Xorg builtin vesamodes (pixel)
- drakconnect (blino):
  o use a higher timeout for modem dialing (#10814)
  o make wpa_supplicant.conf readable by root only

* Wed Mar  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-3mdk
- drakconnect:
  o workaround buggy sk98lin kernel driver (#14163)
  o write selected dhcp client in ifcfg files (blino)
- draksec: fix setting null values (#14364)

* Tue Mar  8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-2mdk
- drakconnect (oblin):
  o scan hidden ssid
  o manage interface:
    * handle more DHCP options
    * move DHCP settings in a notebook page
- XFdrake: choose a 4/3 resolution by default (pixel)
- XBox support (stew)

* Mon Mar  7 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-1mdk
- diskdrake: allow live resizing of reiserfs on lvm (pixel)
- drakboot: fix detecting yaboot (pixel)
- drakconnet (blino):
  o configure CMV for sagem modems
  o delete gateway:
    * if reconfiguring the gateway interface to dhcp
    * if gateway device is invalid (#11761)
    * if needed when configuring DSL devices (#13978)
  o manage interface:
    * detect all ethernet interfaces
    * allow to modify DHCP settings
- localedrake: let's be able to setup gcin (funda wang)
- printerdrake: detect if the user has manually edited
  /etc/cups/client.conf (till)
- XFdrake: still improving monitors support (pixel)

* Wed Mar  2 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.35mdk
- drakboot (pixel):
  o fix corrupted "Precise RAM size" field (#13874)
  o handle boot-as and master-boot (#13846)
- drakconnect: workaround buggy kernel (#12609)
- net_applet: refresh every second, and do not reread network conf on
  each refresh (blino, #11467)
- printerdrake (till):
  o add possibility to add a remote LPD printer in beginner's mode (#13734)
  o fix incorrect display of accentuated characters in PPD options
    also for boolean options (#13928)
  o let detected LPD printer model be shown in a pop-up window and not
    in the add printer wizard
  o let detected socket printer model be shown if the IP/port was
    manually entered
  o fix selection of test pages
  o ensure that recommended driver is preselected in expert mode, even
    if the recommended driver is a manufacturer-supplied PPD with
    language tag
- ugtk2 layer: misc fixes
- XFdrake (pixel):
  o add a ratio choice, and restrict the resolutions to this choice
  o add 1280x600 for VAIO PCG-C1M (#5192)
  o fix section with only comments
  o "keyboard" InputDevice can also be called "kbd"
  o do not only add modelines not defined in xorg, otherwise xorg will
    prefer the modelines we provide (eg: it will use 1024x768@50
    whereas it could have used 1024x768@60)
- configure iocharset and codepage option for hal (pixel, #13833)

* Tue Mar  1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.34mdk
- diskdrake: allow to choose encryption algorithm (blino, #13472)
- drakhelp, drakbug: use www-browser (daouda)
- printerdrake: fix "add printer" wizard chen embedded in the MCC (#13929)
- XFdrake: further monitor fixes (pixel)

* Tue Mar  1 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.33mdk
- drakconnect: enhance "wrong network mask format" message (blino, #10712)
- drakTermServ: sort list of nbis (stew, #13998)
- keyboardrake: set compose key as "rwin" if not set (pablo)
- XFdrake (pixel):
  o replaced by use monitor-edid instead of ddcxinfos
  o add many resolutions
  o set the "Monitor preferred modeline" from EDID in xorg.conf
  o handle lower than 640 resolutions
  o set better resolution

* Mon Feb 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.32mdk
- drakboot: make sure /boot/grub/install.sh is 755 (pixel)
- drakconnect (blino):
  o allow to alter DHCP timeout (# 11435)
  o add support for PEERDNS, PEERYP and PEERNTPD (#9982)
  o workaround broken ethtool from hostap drivers (#13979)
  o handle USERCTL settings for modems too
- net_applet (blino):
  o add menu entry (#11898)
  o netprofile support (#12094)
  o allow to select watched interface
- printerdrake: let country and not language decide about default
  paper size (till)

* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.31mdk
- drakconnect (blino):
  o allow users to start the connection (#12837)
  o pre-detect modem device
- keyboarddrake: new default keyboard is "us" for Chinese (pablo)
- printerdrake: driver "oki4w" was renamed to "oki4drv" (till)

* Fri Feb 25 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.30mdk
- drakconnect :allow to select "unlisted" provider in adsl provider
  list (blino)
- drakfont: fix uninstalling fonts (#9324)
- drakproxy: do not update kde config file if kde isn't installed (blino)

* Thu Feb 24 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.29mdk
- drakconnect:
  o add norwegian ADSL providers (Eskild Hustvedt)
  o remove all non-digit characters in phone number (blino, #10813)
  o minimal WPA support (blino)
- drakxtv: scan TV channels for TV cards that do not require any
  driver configuration (#13865)
- drakups:
  o fix crash due to latest perl-Libconf 
  o fix reading UPS db
- net_applet: fix name of mcc tool (blino & me, #13896)
- printerdrake:
  o enable to alter options of a not set up non-Foomatic queu
  o fix accentuated characters in PPDs not correctly reproduced in the
   printer options dialog
- GUI layers:
  o fix displaying "Advanced" instead of "Basic" in advanced_state by
    default (pixel, #13944)
  o force to open file selector as a modal window (rafael, #13942)

* Tue Feb 22 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.28mdk
- drakfont: allow to select multiple files (blino)
- localedrake:
  o adapt to new uim splitting (UTUMI Hirosi)
  o adapt to new scim packages splitting (Funda Wang)
  o fix koi8-u font size (Funda Wang, #13809)
- keyboardrake: handle lb locale (pablo)
- printerdrake: if a printer is set up with HPLIP and has still an old
  HPOJ configuration, it will be automatically removed (till)
- scannerdrake (till):
  o display unsupported scanners as such in the scanners list (#12049)
  o load kernel modules (and make them loaded on boot) if specified in
    ScannerDB
  o tell user if his scanner requires manual editing of config files
    to work (the appropriate scanner models are marked in ScannerDB)

* Wed Feb 16 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.27mdk
- drakboot: make it more robust (pixel)
- drakproxy: set up KDE too (blino)
- harddrake: list usb mice that are not listed in usbtable (#13575)
- interactive layer: use the new gtk+ file chooser (pixel)
- keyboarddrake: make keyboard layout more user friendly
- printerdrake (till):
  o force only ASCII letters, numbers, and underscores being used in
    print queue names
  o wait for CUPS being ready before querying the printer states for
    the printer list in the main window
- reduce drakxtools-backend's requires (pixel)

* Mon Feb 14 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.26mdk
- draksound, service_harddrake: handle more sound cards
- localedrake: alter font settings for zh_CN and zh_TW (funda wang)
- printerdrake (till):
  o allow HPLIP setup also when setting up the print queue manually
  o fix undetection of network printers without DNS hostname entry
  o longer timeouts for "ping", as some network printers were missed
- service_harddrake: handle removal of cards (#7049)

* Fri Feb 11 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.25mdk
- harddrake service: fix removing PCMCIA controller
- hardware support: detect & load modules for RNG (crypto hw)

* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.24mdk
- drakxtv:
  o only offer to configure tv cards that (may) need to be configured
  o do not complain about no tv cards when there're but they do not
    require any configuration beyond loading proper module (#7443,
    #11270, ...)
- harddrake:
  o detect more webcams
  o do not detect speakers as keyboards
- printerdrake: misc fixes (till)

* Thu Feb 10 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.23mdk
- printerdrake (till):
  o add automatic setup of HP printers with HPLIP
  o fixes for embedded mode
- drakconnect:
  o add support for ACP (Mwave) modems
  o fix stepping back from lan interface step with ndiswrapper
  o fix ndiswrapper installing
- interactive layer: fix selecting a file (eg: ndiswrapper's drivers)
- hardware support:
  o detect & load modules for:
    * toshiba driver for some laptops
    * some multiport serial cards
    * DVB
    * joysticks
  o add support for multiple different AGP controllers
  o handle a few more special serial port cards

* Wed Feb  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.22mdk
- localedrake: switch arabic font for KDE from "Roya" to "Terafik"
  that supports ascii glyphs (pablo)
- ugtk2: API changes for rpmdrake (rafael)

* Wed Feb  9 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.21mdk
- drakboot: fix ACPI checkbox (pixel, #13335)
- drakkeyboard: synchronized keyboards with X11 (pablo)
- harddrake service: prevent adding spurious empty lines at end of
  /etc/hotplub/blacklist on stop
- printerdrake: updates

* Tue Feb  8 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.20mdk
- drakconnect (blino):
  o add basic ndiswrapper support
  o select manual adsl connection type if the network interface was
    static
  o add missing protocol for Free and Telecom Italia in ISB DB
- drakproxy: support gnome proxy (blino)
- printerdrake (till):
  o adapt to new printer drivers packages
  o limit automatically generated print queue names to 12 characters
    and warn user if he manually enters longer names (which will make
    the printer unaccessible for some Windows clients) (#12674).
- allow upper case letters in users' real names (rafael)
- net_applet: automatically start in fluxbox and XFce4 too (blino)

* Fri Feb  4 2005 Olivier Blin <blino@mandrake.org> 10.2-0.19mdk
- drakconnect: add bpalogin support for cable connections

* Thu Feb  3 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.18mdk
- drakconnect: fix CAPI kernel drivers installation (blino)
- drakfirewall: port 445 is used for Samba (w/o NetBios) (blino)

* Fri Jan 28 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.17mdk
- diskdrake: fix autocheck flag in /etc/fstab for / (pixel, #13283)
- drakbackup: Wizard, System Backup configuration problems (stew, #13235)
- harddrake service:
  o fix PCMCIA autoconfig
  o make --force force harddrake to reconfigure everything

* Wed Jan 26 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.16mdk
- diskdrake: use the new option auto=dev instead of auto=yes when
  configuring mdadm (pixel)
- drakTermServ (stew):
  o drop quasi-pxe setup in dhcp.conf as we can use real pxe now
  o portmap check, dhcpd.conf.pxe.include (#13138 & #13139)
- package installation: use the new --gui option to urpmi for the
  drakxtools to ask for media change (rafael)
- mygtk2 related fixes (pixel)

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.15mdk
- fix mygtk2 for drakloop (pixel)
- printerdrake: fix main loop (daouda)

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.14mdk
- drakconnect: update ISP db (baud)
- harddrake: fix pcmcia controllers detection

* Fri Jan 21 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.13mdk
- keyboarddrake: minimal XkbModel support (pixel)
- diskdrake (pixel):
  o don't write /etc/mdadm.conf when no raid
  o use option "auto=yes" in mdadm.conf to ensure mdadm will create
    /dev/mdX devices when needed
- printerdrake:
  o fix subdialogs when embedded in mcc
  o fix banner's title by initializing l10n domains before ugtk2

* Wed Jan 19 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.12mdk
- diskdrake: progress bar when formatting ext3 (pixel)
- drakauth: fix switching back nsswitch.conf to local authentication
  (pixel, #13024)
- drakbackup: custom cron configuration (stew, #13056)
- drakboot: do not create a maping table when uneeded (#12307)
- drakconnect: fix bug introduced by mygtk2 (pixel)
- drakfirewall: fix ethernet card detection (pixel, #12996)
- harddrake2: fix crash on opening help windows
- interactive layer: separate alignement for basic and advanced
  entries (pixel)
- XFdrake (pixel):
  o when reading an existing X config file, ensure it is not too bad,
    otherwise propose to start from scratch (#8548)
  o set up framebuffer in standalone mode too
  o for fbdev, advise to reboot instead of restarting X server

* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.11mdk
- harddrake2: display the menubar and the banner when embedded

* Wed Jan 12 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.10mdk
- drakbackup, drakTermServ: silent install of terminal-server (urpmi
  --X is deprecated) (rafael)
- localedrake (Funda Wang):
  o install scim-chewing for zh locale
  o fix font setting for zh_CN
- printerdrake: show banner when embedded
- write in lilo.conf the global root= (pixel, #12312)

* Thu Jan  6 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.9mdk
- diskdrake: display a progress bar while formating (pixel)
- localedrake: fix UIM config b/c of new UIM-0.4.5

* Wed Jan  5 2005 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.8mdk
- drakauth: "Administrator (root)" is more user-friendly than "root"
- drakbackup (stew):
  o directories with spaces Mandrakeclub
  o perms on tarballs too (#12861)
- drakconnect: update ADSL ISPs list (baud)
- drakfirewall: "Samba server" is better named "Windows Files Sharing
  (SMB)" (pixel, #10585)
- draksound, harddrake service: handle a couple of new ALSA drivers
- handle handle spaces in SMB username (pixel)
- keyboardrake: handle various new keyboard layouts (pablo)
- localedrake: do not localize console in japanese (Funda Wang)
- remove codepage= option for fs types which don't handle it (eg:
  ntfs) (pixel)

* Thu Dec 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.7mdk
- detect more floppies when dmidecode is supported (pixel)
- drakconnect:
  o do not crash when configuring a modem
  o fix NETMASK autofilling
- localedrake: do not localize console when using jp (Funda Wang)
- XFdrake: make "XFdrake --auto" fully automatic (pixel)

* Wed Dec 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.6mdk
- handle more PCMCIA/CardBus cards
- do not try to load floppy module if there's no floppy drive (#8211)
- drakTermServ: misc GUI enhancements (pixel, stew)
- harddrake service: configure PCMCIA host controller if needed
- new package drakx-finish-install (pixel)
- new mygtk2 layer

* Fri Nov 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.5mdk
- diskdrake: handle common geometry XXX/240/63 is quite common thus
  fixing yet another infamous "XP doesn't boot" (though it should
  already be fixed via EDD) (pixel)
- XFdrake: don't write X config when there is none (otherwise we write
  a partial and broken X config)

* Thu Nov 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.4mdk
- diskdrake: more intelligent sort of fstab to handle loopback files
  or bind directory (pixel, bug anthil #1198)
- drakboot: detect on lilo on floppy (pixel, #12213)
- drakconnect: in "ADSL provider" step, reset the protocol on provider
  switch
- draksound: handle new sound drivers from kernel-tmb and kernel-multimedia
- drakupdate_fstab: fix /dev//dev/foobar in /etc/fstab (pixel, #12224)
- harddrake service:
  o fix setting scsi and usb probell in live CD (thus fixing
    mousedrake --auto with USB mice on live CD)
  o do not die if sound never was configured (aka on first boot from a
    live CD)

* Wed Nov 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.3mdk
- bootloader: let be kernel-i686-up-64GB aware (pixel)
- diskdrake: LVM/DM/MD fixes (pixel)
- drakupdate_fstab: use the right encoding when creating an entry for
  /etc/fstab (pixel, #12387)
- PPC fixes (Christiaan Welvaart, pixel)
- service_harddrake: on startup, redo ethX aliases

* Fri Nov 12 2004 Rafael Garcia-Suarez <rgarciasuarez@mandrakesoft.com> 10.2-0.2mdk
- Rebuild for new perl
- drakauth (pixel):
  o correctly restore pam.d/system-auth when setting "local" authentication 
  o no use_first_pass on "auth sufficient pam_unix.so" line for pam_castella
- localedrake: switch zh_CN to GBK (Funda Wang)
- logdrake: speed it up

* Wed Nov 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.2-0.1mdk
- drakauth: add SmartCard authentication (pixel)
- drakbackup: advise user about anacron (stew, anthill #1134)
- drakconnect:
  o add support for Philips Semiconductors DSL card (blino)
  o security fix: let ifcfg files be readable only by root when a WEP
    key is set (blino, #12177)
  o update/add ADSL ISP entries (baud)
- drakTermServ (stew):
  o create cfg dir if needed
  o use xorg.conf
  o touch /etc/dhcpd.conf.etherboot.kernel if missing
  o ignore vmnet for broadcast address
  o start reworking PXE support.
- harddrake2: display more information about memory
- localedrake: fix configuring fcitx IM (Funda Wang)
- XFdrake: do not detect smartcards (pixel)

* Thu Oct 28 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-27mdk
- bootloader: run grub chrooted (gwenole)
- diskdrake:
  o show older partition types (eg: ntfs) on x86_64 (gwenole)
  o newly created raids must have a fs_type (pixel)
- drakconnect:
  o add support for freebox v4 ADSL modem with USB link
  o show correct strings for freebox and n9box ADSL modems
- drakups: fix again MGE USB UPSes

* Tue Oct 12 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-26mdk
- bootloader-config: in grub menu.lst, keep previous "serial ..." and
  "terminal ..." lines (pixel, #12054)
- drakconnect:
  o fix crash in delete wizard
  o workaround more buggy drivers that returns a bogus driver name for
    the GDRVINFO command of the ETHTOOL ioctl

* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-25mdk
- drakconnect: workaround buggy prism2_usb that returns a bogus driver
  name for the GDRVINFO command of the ETHTOOL ioctl

* Mon Oct 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-24mdk
- drakconnect (blino):
  o delete wizard: remove /etc/sysconfig/network-scripts/ethX files
  o ADSL configuration:
    * remove /etc/sysconfig/network-scripts/ethX files that may have
      been created by sagem scripts
    * don't write ifcfg-ppp0 for static/dhcp connections

* Fri Oct  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-23mdk
- drakconnect:
  o fix encapsulation for chinese ISPs (Funda Wang, #10965)
  o fix H[CS]F modems configuration (adapt to new kernel packages
    names)
  o start slmodemd when installing it (thus preventing the average
    user to have to restart his machine in order to get a working
    connection)
  o try /dev/ttyS14 too for serial modems (ie internal PCI modems that
    don't need any driver but export a serial port instead)

* Fri Oct  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-22mdk
- bootloader-config: on a recent kernel, remove any existing devfs=
  kernel option in order to enable udev (pixel)
- drakconnect: add chinese ISPs (Funda Wang, #10965)
- XFdrake: fix parsing fully commented Section (pixel)

* Wed Oct  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-21mdk
- bootloader-config: fix installing kernel-2.6.8.1-12.1mdk (pixel)
- drakups: fix brown paper bug in USB detection

* Tue Oct  5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-20mdk
- drakups:
  o fix port for MGE's USB UPSes
  o fix drivers for MGE UPSes
  o fix installing nut
  o add support for "American Power Conversion" UPSes
  o restart upsd daemon once nut config is written
  o write config in pure wizard mode
  o when manual adding an UPS:
   * fix reading driver DB
   * fix reading driver from the list
- diskdrake: do not fail with c0d0p* devices (pixel)
- drakconnect: applying changes can be quite time expensive,
  especially with ppp and wifi connections thus let's show a "wait"
  message
- drakfont: fix closing import dialog (#11052)

* Tue Oct  5 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-19mdk
- drakconnect: 
  o ADSL DB (baud):
    * add a few new ADSL ISPs
    * fix wrong VCI which wasn't in hexa for brazililan Velox/Telemar ISP
  o manage interface (blino:
    * recompute NETWORK and BROADCAST fiels
    * use both type and device name in non-ethernet interfaces list
    * do not crash if BOOTPROTO is empty, use 'none' by default (#11899)

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-18mdk
- drakconnect: do not lose GATEWAYDEV if it is a non wireless one and
  a static wireless card is configured (and vice versa) (blino)

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-17mdk
- 64-bit fixes (gwenole)
- drakconnect: write wlan-ng config files for prism2 drivers (blino)
- harddrake service: 
  o do not disable glx when switching from nvidia driver to nv
    (indirect support, #11285)
  o do not fail when hw db is corrupted

* Mon Oct  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-16mdk
- drakconnect (blino):
  o only write TYPE field in ifcfg files for xDSL connection
  o do not lose ONBOOT setting for manual/DHCP DSL connections
  o fix the "IP %s address is usually reserved" warning
  o sagem modems:
    * fix again DHCP/static connections with sagem
    * write static IP in eagle-usb.conf if needed
    * load specific modules/programs before config is written
    * do not reset IP address when configuring
    * automatically guess gateway for static connections

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-15mdk
- fix serial UPS detection

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-14mdk
- mousedrake, harddrake service: do not crash with touchpads (blino)
- harddrake service: on stop, blacklist snd-usb-audio (#8004)

* Fri Oct  1 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-13mdk
- diskdrake: don't die when device-mapper is missing (eg on 2.4
  kernel) (pixel, #11834)
- drakconnect : call the scripts in
  /etc/sysconfig/network-scripts/hostname.d like the network scripts
  are doing when changing the hostname (fredl)
- drakups:
  o add --wizard option in order to directly run the wizard
  o do not show banner when embedded
- harddrake:
  o list tablets with mice
  o fix UPS devices listed in both "UPS" and "unknown" classes
  o provide more data on UPS
- localedrake:
  o set KDE in m17n emvironment if needed
  o split its menu entry in two (one for user config, one for system
    embedded in mcc)

* Thu Sep 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-12mdk
- disable the new gtk smart search which display an entry box (pixel)
- preload nvram on laptops
- print translated usage message (#5657)
- bootloader-config, drakboot: add raid-extra-boot=mbr when installing
  on mdX (pixel, #11699)
- diskdrake (pixel):
  o fix LVM2 support
  o fix "Illegal division by zero" when installing lilo (#11738)
  o skip unopenable devices when looking for device geometry
- drakperm: list users rather than groups when requested for (anthill #1161)
- drakroam: specify device to iwconfig when applying settings (blino,
  #11279)
- localedrake:
  o fix KDE font names to match currently shiped Xfs font names (pablo)
  o fix setting fonts at install time
- drakconnect (blino):
  o all linmodems (including Hsf and Hcf ones) are now supported with
    2.6 kernels
  o ask to connect for modem/isdn connections again
  o better default connection detection
  o check if IP address is already used for static interfaces
  o handle madwifi (fredl)
  o try to detect default connection in adsl > isdn > modem > ethernet
    order
- drakups: really fix refreshing UPS list when adding a new UPS though
  the add wizard
- harddrake: list all mice and keyboards (thus lowering unknown
  hardware in hwdb-clients)
- mousedrake, XFdrake: use input/mice instead of psaux for synaptics
  touchpads with 2.6 kernels (blino, #11771)
- net_applet (blino):
  o do not destroy/re-create menu if state hasn't changed, or else the
    menu may disappear without any reason
  o fix again running processes detection
- net_monitor (blino):
  o fix start/stop
  o check every 5 seconds (instead of 20) for new or disconnected
    interfaces (#11780)
- printerdrake: misc fixes (pixel)
- XFdrake: use driver "keyboard" instead of "Keyboard" (fix Xorg-6.8
  support) (pixel)

* Fri Sep 24 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-11mdk
- handle aes-i586 instead of aes (pixel, #11588)
- bootloader-config: fix typos in usage (pixel)
- diskdrake (pixel):
  o get geometry from EDD
  o don't add /dev/pts line in fstab anymore (already done in initrd
    and by udev)
  o log more explanations
  o remove every PVs when destroying a VG (#11579)
  o handle renamed devices (eg: hde->hda or hda->sda)
  o silently ignore encrypted filesystems with no encrypt_key
- drakconnect (blino):
  o zeroconf:
    * really enable zeroconf if zeroconf is requested
    * write blank zeroconf hostname if zeroconf is disabled
    * fix disabling zeroconf
    * do not disable not installed (prevent warnings in console)
    * zcip isn't a service,
    * stop tmdns service if zeroconf is disabled,
  o move "Start at boot" step for lan-like adsl/cable connections
  o do not disable ifplugd support for wireless cards
  o do not let speedtouch-start launch connection
  o fix installing kernel packages for winmodems
  o fix /dev/modem symlink on ttySL0 (#8947 again)
  o use avmadsl option for capi cards to use settings generated by
    drdsl
  o PPPoA: fix reseting vpi and vci if vpi equals zero
  o ADSL provider DB: rename "Télé2 128k " as "Télé2"
- drakupdate_fstab: allow SYNC=no option in /etc/sysconfig/dynamic
  (blino)
- drakups:
  o refresh UPS list when adding a new UPS though the add wizard
  o fix automatically detect/add an UPS
  o default to automatic detection
- localedrake:
  o add support for SKIM IM
  o install x-unikey when switching to vietnamese
  o always use "Sazanami Gothic" font in japanese
- mousedrake: prevent a broken X configuration to break mouse
  configuration (pixel)
- net_monitor: remove connection time timer if connection fails (#11590)
- XFdrake: allow ignoring X config file when it contains errors (pixel)

* Fri Sep 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-10mdk
- drakbackup: use radio buttons in media selection (wildman)
- drakconnect (blino):
  o better looking description list in drivers list (me)
  o remove the "speedtch off" alias (fix mdk10.0 upgrade)
  o don't write aliases for pcmcia cards, thus fixing the pcmcia
    service startup
  o stop capi service before new config is written so that capiinit
    can unload the old driver
  o make isdn over capi work again
  o do not ask which driver to use when only capidrv is supported
  o install unicorn-kernel package for Bewan modems if available
  o add "Unlisted - edit manually" entry in modem provider list (#11549)
- harddrake service (blino):
  o probe firewire and pcmcia network devices too
  o update iftab when new ethernet devices are detected

* Wed Sep 15 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-9mdk
- drakconnect:
  o don't create empty pppoe.conf if the package isn't installed
  o load modules and run start programs
- bootloader-config: fix crash when when removing some break entries (pixel)
- keyboarddrake, XFdrake: better turkish support (pablo)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-8mdk
- localedrake: offer to select IM if language has one preselected
  (eg: CJKV, else option is only availlable in advanced mode)
- harddrake service: adapt to new nvidia driver location

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-7mdk
- add man pages for drakbackup and drakconnect
- drakauth: misc fixes (stew)
- drakconnect:
  o misc cleanups (blino)
  o setup slmodem (blino)
  o workaround buggy eth1394 that returns a bogus driver name for the
    GDRVINFO command of the ETHTOOL ioctl (so that we set a
    sensible name for firewire network adapters in GUIes)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-6mdk
- drakconnect: install firmware if needed for CAPI devices (blino)
- harddrake:
  o detect not yet supported ethernet cards too
  o detect more bridges and the like
- scannerdrake: try harder not to detect non scanner USB devices (#7057)

* Tue Sep 14 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-5mdk
- drakbackup:
  o fix crashes in CD/Tape setup (stew)
  o fix wizard's UI behavior (Nicolas Adenis-Lamarre)
- drakconnect (blino):
  o handle CAPI drivers
  o add support for xDSL over CAPI (eg: AVM cards)
  o fix pppoe configuration
- draksec: move help from tooltips into separate page (#9894)
- scannerdrake: fix "dynamic()" in scannerdrake to do not contain
  anything interactive (till)

* Mon Sep 13 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-4mdk
- drakbug_report: fix crash
- XFdrake: adapt to new proprietary package naming (pixel)

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-3mdk
- net_applet (blino):
  o fix crash on connect/disconnect (#11389)
  o refresh status on every 5 second

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-2mdk
- description
  o split drakxtools description in drakxtools and drakxtools-newt
  o describe missing tools
  o sanitize tool names
- drakconnect: do not ask twice if network should be started on boot
  for ADSL modem (blino)
- keyboarddrake, XFdrake (pablo):
  o fix compose:rwin
  o fix some keyboard layout on xorg in order to match to match x.org

* Fri Sep 10 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-1mdk
- fix console UIs (pixel)
- drakboot: do not kill the whole bootsplash wizard when embedded (blino)
- drakconnect: fix cnx status in "internet" interface (blino)
- harddrake service: autoconfigure mice if needed
- localedrake: fix ENC setting when IM is disabled

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.27mdk
- localedrake:
  o really reset IM on language switch
  o set ENC and locale specific stuff even when IM is disabled
  o fix thai IM

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.26mdk
- bootloader-config: handle raid-extra-boot (pixel, #11350)
- drakboot: handles more cases where lilo wants to assign a new Volume
  ID (pixel)
- localedrake:
  o install miniChinput when configuring chinput
  o fix miniChinput configuration for Singapore 
  o handle languages with default IM w/o any configured IM (aka keep
    "none" user choice) but default to per locale default IM when
    switching between locales
  o fix configuration of IM when altering depending on encoding (eg:
    miniChinput)

* Thu Sep  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.25mdk
- bootloader-config (pixel):
  o fix regexp to work with "linux-2.6.8.1-10mdk"
  o handle lilo "static-bios-codes" option
  o prevent LILO from reading from tty
  o only expand symlinks when renaming "linux" into the kernel version
    based label (eg: "2681-10")
- drakboot:
  o ensure ~/.dmrc is owned by user else GDM complains about
  o handles the lilo case where it wants to assign a new Volume ID (pixel)
- drakconnect: 
  o ignore rpm's backups (#10816)
  o always update iftab when config is written (blino)
  o detect slamr, slusb and ltmodem modules for modems (fredl)
- drakupdate_fstab: handle options in any order (fix harddrake service
  regarding amove media as well as regarding cdroms, burners and dvds)
- harddrake service: log which tools are runned

* Wed Sep  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.24mdk
- drakboot (blino, #11282):
  o update splash when removed too
  o use Mandrakelinux theme by default
  o don't give theme name to remove-theme
- drakconnect: fix empty "manage interface" (blino, #11287)
- drakperm: fix freeze (#11274)
- harddrake service: fix X11 autoconfiguration

* Tue Sep  7 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.23mdk
- bootloader-config: take care of symlink based bootloader entries (pixel)
- diskdrake (pixel):
  o ignore first line of /proc/swaps
  o partially handle /udev/xxx device names in fstab
  o ignore rootfs "device"
  o don't warn for loopback files
- drakbug: fix --report and --incident (daouda)
- drakconnect (blino):
  o "delete network interface" wizard:
    * use long device names
    * be aware of internet service -> regular ifcfg files
  o misc fixes (especially regarding sagem ADSL modems)
- harddrake service: really autoconf TV cards
- more synaptics fixes (blino)
- use "users" options for removable devices (so that users can unmount
  them if the devices were mounted by root) (blino)

* Mon Sep  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.22mdk
- diskdrake (pixel):
  o detect linux software raid magic
  o detect LVM2
  o misc fixes
  o fix displaying "mdmd0" instead of "md0"
- drakboot: ensure we do not enable autologin w/o any user
- drakconnect (blino):
  o fix detection in 2.4 kernel for net devices with high traffic
  o only complain about kernel-2.4.x for h[cs]f modems
  o fix kppp config reread
  o read kppp config when user dir is configured
  o use /dev/modem if no modem was detected (do not crash when we edit
    a connection whose modem is unplugged)
- harddrake service: everything should be done automagically now
- localedrake:
  o list specific packages to install for japanese when using SCIM
  o install scim-m17n as well for generic SCIM configuration (more
    input methods)
  o log more explanations
  o set QT_IM_MODULE too since it's needed by Qt-immodule-20040819
    (UTUMI Hirosi)
  o disable translations on console for kn, pa, ug too (pablo)

* Mon Sep  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.21mdk
- misc GUI enhancements
- diskdrake: be more failsafe with half broken existing raids (pixel)
- drakconnect: fix crashes (#11100)
- harddrake service: really add module for storage controllers, AGP
  controllers, TV cards
- mousedrake, XFdrake: fix synaptics configuration (blino)

* Fri Sep  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.20mdk
- detect more devices
- misc GUI cleanups
- netconnect: support DHCP and static for sagem devices (blino)

* Thu Sep  2 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.19mdk
- add icons to most tools' windows
- drakboot: do not crash if default autologin or default desktop
  doesn't exist (blino)
- drakupdate_fstab: do not use supermount by default for removable
  devices (blino)
- localedrake:
  o enable SCIM for Amharic language
  o fix missing banner title
- net_applet: tell when internet connection is not configured (blino)
- printerdrake: misc enhancements (till)
- service_harddrake: add modules to conf files if a tv card is detected (blino)

* Tue Aug 31 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.18mdk
- drakclock (warly):
  o check if the ntpdate command succeed or not
  o do not perform a date command when we use ntpdate
  o fix hour setting though mouse on the clock
  o make the hour tick shorter
  o repaint the calendar (especially when the day changed)
- drakconnect:
  o fix crashes (#11100)
  o misc fixes (blino)
- drakfirewall: use the loc zone in sharewall policy only if the loc
  interface exists (florin, #10539)
- harddrake2:
  o add UPS class (fredl)
  o be more enable friendly regarding themes (eg font size properly
    adapt to theme changes)
- net_applet: make it start again

* Mon Aug 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.17mdk
- drakclock: fix layout so that NTP frame is not badly cut on small
  resolution (#10971)
- net_applet:
  o allow to connect/disconnect from net_applet
  o launch net_monitor once
  o launch net_monitor in background
- printerdrake:
  o add column to show whether the printers are enabled or disabled to
    the list of available print queues in the main window
  o add command to the edit-printer window to enable and disable print
    queues
  o fix managment of "--expert" command line option

* Sun Aug 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.16mdk
- drakconnect: add metric support according to connection type (blino)
- drakroam (Austin):
  o fix "Add" button behavior
  o don't show channel 0 for auto mode
  o move DHCP column to left for better sizing
- drakupdate_fstab: do not mount and add/delete in fstab when many
  partitions (blino, #11005)
- logdrake: fix displaying only last parsed file
- printerdrake (till):
  o add support for daemon-less CUPS client
  o fix graying out of buttons/menu entries in the main window
  o fix unrecognized local queues when the spooler daemon is not
    running during printerdrake startup
- XFdrake: fix crash on resolution change

* Fri Aug 27 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.15mdk
- GUI cleanups:
  o drakboot: fix canceling first step
  o localedrake: let's look & behave like a wizard (fix cancel on
    country choice)
- drakconnect: detect Intel & ATI PCI modems
- localedrake: really install proper packages depending on (locale,
  input method) tuple (and not just those depending on IM)
- XFdrake: add dell D800 specific modeline and resolution (Olivier
  Thauvin)

* Thu Aug 26 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.14mdk
- fix ddcprobe for other archictectures
- drakconnect: restart network for non ethernet adsl devices (blino)
- harddrake service:
  o add --force parameter (#9613)
  o do run configurator
  o restore bootsplash (blino)
- printerdrake: prepare support for daemonless CUPS client (till)
- XFdrake: fix synaptics configuration (blino)

* Wed Aug 25 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.13mdk
- fix modules conf parsing (blino)
- ddcxinfos: extensive rewrite and cleanups to use the new int10
  interface and a last-resort means to get VBE/EDID information from
  special -BOOT kernel during early boot (gwenole)
- drakconnect (blino):
  o add Siol (the bigest ADSL provider in Slovenia) in ADSL providers
    DB (Gregor Pirnaver)
  o allow multiple aliases per host
  o always add an hostname alias and add it on the loopback device
    (#10345)
  o do not ask the user to do an inifinite looping in MCC ...
  o prevent recognize ppp0 as both modem and adsl (#10772)
- drakroam: fix crash when config directory does not exist (#10935)
- listsupportedprinters (till): introduce it for auto-generation of
  Mandrakelinux hardware support DB
- localedrake: 
  o fix country selection (blino, #10938)
  o install proper packages depending on (locale, input method) tuple
- mousedrake, XFdrake (blino):
  o synaptics touchpad support
  o fix wacom support
- printerdrake:
  o fix crash
  o handle print queues with the "lbp660" and "ml85p" drivers (which
    directly communicate with the printer instead of sending the
    output to a CUPS backend) (till)
  o prevent queues using "lbp660" and "ml85p" from opening message
    windows when the print queues are auto-generated by
    dynamic/hotplug (till)
  o if the user gets an error/warning message during setup of a
    lbp660/ml85p queue, he is automatically put back to the previous
    step in the add-printer wizard (till)
  o do not embedd warning messages in the add-printer wizard, as they
    have no "Previous" button (till)

* Mon Aug 23 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.12mdk
- really fix drakxtools build for ppc & sparc
- use sysfs to detect firewire devices thus fixing eth1394 detection
  (blino)
- drakconnect (blino):
  o ensure iftab is always up-to-date
  o fix spurious ifcfg-ippp0 creation
- net_monitor (blino):
  o do not assume internet isn't configured if obsoleted cnx scripts
    do not exist
  o fix connect button sensitivity
  o watch connection time, not disconnection time
- printerdrake:
  o added fully automatic, non-interactive, X-less print queue set up
    by the "autosetupprintqueues" command, preferrably to be started
    by hotplug
  o fix file check for package installation
  o fix problem of Brother laser printer on parallel port not showing
    its name in auto-detection result.
  o let printer name, description, location be entered after
    determining the model in the add printer wizard
  o let default print queue name be derived from the model instead of
    being "Printer", "Printer1", ...
  o simplify print queue name generation in non-interactive printer
    setup
  o fix "Previous" button in the test page step of the add printer
    wizard
- XFdrake: do not set DRI mode anymore which is not needed anymore
  with latest PAM

* Thu Aug 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.11mdk
- drakconnect: use mac_ieee1394 descriptor in iftab for firewire links
  (WIP) (oblin)
- fix drakxtools build for ppc & sparc
- keyboarddrake: fix it not modifying xkb (pixel)
- printerdrake:
  o fix crash
  o prevent potential crashes (blino)
  o do not ignore some internal errors (blino)
  o fix unloaded "usblp" kernel module before local printer
    auto-detection (blino)
  o do not install anymore gimpprint (included in gimp2_0) (till) 
  o do not configure GIMP and OpenOffice.org which were patched so
    that they do not need anymore to be configured regarding print
    queues (till)
  o text fix for scanners in HP's multi-function devices (till)
- service_harddrake: check usb controllers on boot (oblin, #9613)

* Wed Aug 18 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.10mdk
- drakconnect (oblin):
  o do not write 'ifcfg-Manually load a driver' file
  o fix sagem pty in pppd config
  o prevent boot from timeoutingforever if modem can't be synchronized
- localedrake: fix default IM setting when switching language (#10831)
- net_applet: fix tooltip's messages
- harddrake: add a PCMCIA controllers class

* Tue Aug 17 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.9mdk
- drakboot:
  o install acpi and acpid if needed (pixel, #10760)
  o allow to choose net profile in advanced mode (oblin)
  o enable to allow to choose a video mode if boot is not graphical
    while configuring bootsplash (oblin)
- drakbug: better wrapping
- drakconnect (oblin):
  o do not use noipdefault pppd option for pptp connections
  o fix pppoe with sagem ADSL modem
  o write MAC addresses into /etc/iftab
  o pppoe/pptp fixes
- drakroam: support multiple roaming daemons support (oblin)
- drakupdate_fstab: fix adding usb medias (oblin, #10399)
- drakvpn: do not assume drakvpn is already configured if the tunnel
  file is made of comments only (oblin)
- localedrake: handle turkmen and tatar (pablo)
- net_monitor:
  o let's be more l10n-friendly
  o fix default connection time (Fabrice FACORAT)
- XFdrake (pixel):
  o do not use XF86Config-4 anymore
  o handle /etc/X11/xorg.conf
- typo fixes (#10713, ...)

* Wed Aug 11 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.8mdk
- bootloader-config: log command on mkinitrd faillure
- drakbug (olivier):
  o update product list and fix case (bugzilla is case sensitive)
  o fix product, component and version for bugzilla
  o fix bugzilla url
- drakhelp (daouda):
  o use webclient-kde instead of konqueror
  o add epiphany browser
- drakroam:
  o initial import of wlandetect version, from Austin Action
- mousedrake, diskdrake: create /etc/udev/conf.d/xxx.conf as well as
  devfsd rules (pixel)
- net_monitor:
  o add a horizontal separator in stats to prevent visual disguts
    between supposed non aligned labels
  o fix looking aka vertical alignment of labels (Fabrice FACORAT, #10300)
  o fix resizing (Fabrice FACORAT, #10300)
- XFdrake: s/XFree/Xorg/ (pixel)

* Mon Aug  9 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.7mdk
- diskdrake: switch from raidtools to mdadm (pixel)
- drakboot: sort themes, users and WMs lists
- drakupdate_fstab: do not complain about ips in /etc/fstab (pixel)
- localedrake:
  o changed default font for gb2312 (Funda Wang)
  o rename the "More" button as "Other Countries" (pixel)
- net_applet:
  o do not die when gateway canot be guessed (Joe Bolin)
  o fix status toolip
  o allow multiple instances, but only one per user (Joe Bolin)

* Fri Aug  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.6mdk
- add a 6px border around scrolled TextViews (Fabrice FACORAT, #10561)
- drakbackup: fix crash when selecting an entry in pull down menus
- localedrake:
  o fix configuring IM
  o fix x-unikey support (Larry Nguyen)

* Fri Aug  6 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.5mdk
- drakclock: if ntp is used, get the new time before updating the
  hwclock (Emmanuel Blindauer, #10537)
- drakconnect (oblin):
  o install kdenetwork-kppp-provider when configuring a modem
  o fix external ISDN modem configuration (Anthill #1033)
  o use ifup/ifdown rather than restarting the network service for
    ADSL & ISDN
- draksound:
  o add support for ALSA on PPC and SPARC
  o update sound drivers list
  o map dmasound_pmac <=> snd-powermac (Christiaan Welvaart)
- fix autologin somewhat (pixel)
- localedrake:
  o add x-unikey support for Vietnamese
  o switch korean to scim-hangul IM by default
- update ppc support (Christiaan Welvaart, pixel)
- XFdrake: replaced XFree86 and XFree with Xorg (pixel, #10531)

* Wed Aug  4 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.4mdk
- don't set /etc/sysconfig/desktop anymore, configure ~/.wmrc,
  ~/.gnome2/gdm and ~/.desktop instead (pixel)

* Tue Aug  3 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.3mdk
- bootloader-config (pixel):
  o try to keep the order of kernel options
  o don't allow unknown kernel names to mess everything
  o handle win4lin kernels
- draksec: sanitize GUI:
  o upcase fields values
  o fix spacing issues
- localedrake:
  o fix current IM setting reading
  o reset IM setting when switching to a new IM
  o support nabi input method too
- net_applet: automatic launch for KDE, GNOME and IceWM (daouda)
- misc typo fixes
- diskdrake: fix LMV resizing (anthill #994) (pixel)
- service_harddrake: fix nuking x.org config on 2.4.x <-> 2.6.x kernel
  switch (#10487) (pixel)

* Fri Jul 30 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.2mdk
- drakbackup (stew):
  o fixes Anthill #1009 and #1010 (DVD recording, disk quota)
  o direct-to-tape enahancement
- drakconnect:
  o do not restart the network service if ethernet modem
  o only restart network for ADSL if we use an ethernet modem
  o fix sagem ADLS modem support (olivier)
- draksec: sync with msec-0.44
- draksplash:
  o do not crash when the image format is unknown
  o fix preview refresh
- localedrake:
  o enable to choose input method in advanced mode
  o support im-ja input method too
- service_harddrake: do not offer to configure mouse if we've already
  automatically reconfigure it b/c of 2.4.x vs 2.6.x switch

* Thu Jul 29 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10.1-0.1mdk
- diskdrake: fix Compaq Smart Array support (pixel)
- drakauth: misc (vincent)
- drakbackup, drakTermServ: fix crashes on append_set (stew)
- drakbug: (daouda)
  o scroll down text while typing
  o many cleanups
  o stable releases are 'Official' and 'Community'
- explanations: only log succesfull renamings
- harddrake GUI: do not automatically configure removable media but
  use diskdrake
- modules: read modutils or module-init-tools config depending on
  which kernel is run (pixel)
- net_monitor: save/restore options

* Wed Jul 21 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-57mdk
- drakauth (vincent):
  o restart services if needed
  o describe authentification kinds
  o modify nss_path one to sub config winbind for AD
- drakconnect: misc bug fixes (olivier)
- localedrake: fix xmodifiers setting which is broken since
  perl-MDK-Common-1.1.13-1mdk
- net_monitor:
  o fix GraphicalContext memory leak (olivier)
  o translate connection type (Fabrice Facorat)
  o fix spacing (from Fabrice Facorat, #10300)

* Mon Jul 19 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-56mdk
- bootloader-config (pixel):
  o save prior boot loader config file (#10072)
  o don't unset prompt when timeout is undefined (and don't care when
    timeout is 0)
  o also add long name when adding add short name
- net_monitor:
  o add a border spacing of 5 pixel (Fabrice Facorat, #10299)
  o disable the connect button if up interface is found (there is
    currently no reliable way to find the gateway interface)
    (olivier blin)
  o use ifup/ifdown to connect/disconnect (olivier blin)
  o no need to be root to monitor connection (olivier blin)
- drakconnect (olivier blin):
  o make connection status check work as non root
  o do not write wireless encryption key if empty
  o use blacklist too for adsl connections

* Sat Jul 17 2004 Daouda LO <daouda@mandrakesoft.com> 10-55mdk
- remove historical consolehelper files (pam.d and console.apps)

* Thu Jul 15 2004 Olivier Blin <blino@mandrake.org> 10-54mdk
- drakboot: use bootloader and Xconfig instead of detect-resolution
- net_applet:
  o use drakconnect to configure network
  o use 'ip route show' to find the gateway device when no GATEWAYDEV
    is defined
- drakauth: add "Active Directory" through winbind (pixel)
- bootloader-config: fix installation on floppy (#10260) (pixel)
- drakedm: typo fix (lost -> lose) (rvojta)

* Thu Jul  8 2004 Thierry Vignaud <tvignaud@mandrakesoft.com> 10-53mdk
- bootloader-config (pixel):
  o nicer "usage: ..." 
  o add actions "add-entry" and "remove-entry"
  o add option --label
  o add option --chainload
  o rename --vmlinuz to --image
  o remove unneeded spaces in append=" foo"
  o handles "optional" in LILO
- drakbackup: fixes for Anthill #927 & #929 (filenames with spaces,
  .backupignore, gui behavior)
- drakboot: update bootsplash even if framebuffer was disabled (oblin)
- XFdrake: add 1024x480 (pixel, #5192)
- redo modules managment (prepare for reading either modprobe.conf or
  modules.conf based on the running kernel version) (pixel)
- fix build with new glibc

* Mon Jul  5 2004 Pixel <pixel@mandrakesoft.com> 10-53mdk
- drakxtools-backend needs ldetect-lst (for complete_usb_storage_info())

* Mon Jul  5 2004 Pixel <pixel@mandrakesoft.com> 10-msgst
- ensure proper upgrade#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr ""

#: fs/mount.pm:85
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "Maklumat petak"

#: fs/mount.pm:86
#, fuzzy, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Gagal menyimpan direktori baru dalam %s"

#: fs/mount.pm:91 fs/mount.pm:108
#, c-format
msgid "Checking %s"
msgstr "Memeriksa %s"

#: fs/mount.pm:125 partition_table.pm:405
#, fuzzy, c-format
msgid "error unmounting %s: %s"
msgstr "Ralat KMail"

#: fs/mount.pm:140
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "Naiktaraf Partisyen Swap"

#: fs/mount_options.pm:114
#, fuzzy, c-format
msgid "Use an encrypted file system"
msgstr "Jenis Sistem Fail Asal:"

#: fs/mount_options.pm:116
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:118
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:120
#, fuzzy, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr "on fail on."

#: fs/mount_options.pm:123
#, fuzzy, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr "on fail on."

#: fs/mount_options.pm:126
#, fuzzy, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr "terpasang fail terpasang."

#: fs/mount_options.pm:129
#, fuzzy, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr "on fail."

#: fs/mount_options.pm:131
#, fuzzy, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr "on terpasang fail."

#: fs/mount_options.pm:135
#, fuzzy, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr "pengguna dalam"

#: fs/mount_options.pm:139
#, fuzzy, c-format
msgid "Mount the file system read-only."
msgstr "tak dapat membaca maklumat sistem fail bagi %s"

#: fs/mount_options.pm:141
#, fuzzy, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Semua fail siap."

#: fs/mount_options.pm:143
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr ""

#: fs/mount_options.pm:145
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr ""

#: fs/mount_options.pm:147
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr ""

#: fs/mount_options.pm:149
#, fuzzy, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Mendapatkan ciri-ciri pengguna default:\n"

#: fs/mount_options.pm:151
#, c-format
msgid "Give write access to ordinary users"
msgstr ""

#: fs/mount_options.pm:153
#, c-format
msgid "Give read-only access to ordinary users"
msgstr ""

#: fs/mount_point.pm:80
#, fuzzy, c-format
msgid "Duplicate mount point %s"
msgstr "Titik lekapan tidak sah"

#: fs/mount_point.pm:95
#, fuzzy, c-format
msgid "No partition available"
msgstr "(tiada cadangan ejaan)"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Mengimbas partisyen untuk mencari titik lekapan"

#: fs/mount_point.pm:105
#, fuzzy, c-format
msgid "Choose the mount points"
msgstr "Pilih Warna Skrin"

#: fs/partitioning.pm:46
#, fuzzy, c-format
msgid "Choose the partitions you want to format"
msgstr "Pilih alatan yang anda hendak guna"

#: fs/partitioning.pm:75
#, fuzzy, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr "Gagal"

#: fs/partitioning.pm:78
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""

#: fs/partitioning_wizard.pm:53
#, fuzzy, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr "on dan"

#: fs/partitioning_wizard.pm:58
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""

#: fs/partitioning_wizard.pm:92
#, fuzzy, c-format
msgid "Use free space"
msgstr "Ruang selepas Lajur"

#: fs/partitioning_wizard.pm:94
#, fuzzy, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "fail"

#: fs/partitioning_wizard.pm:102
#, fuzzy, c-format
msgid "Use existing partitions"
msgstr "Buka dokumen sedia ada"

#: fs/partitioning_wizard.pm:104
#, fuzzy, c-format
msgid "There is no existing partition to use"
msgstr "tidak"

#: fs/partitioning_wizard.pm:128
#, fuzzy, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Kemasukan Tidak Sah bagi Saiz Partisyen"

#: fs/partitioning_wizard.pm:164
#, fuzzy, c-format
msgid "Use the free space on a Microsoft Windows® partition"
msgstr "on Tetingkap"

#: fs/partitioning_wizard.pm:168
#, fuzzy, c-format
msgid "Which partition do you want to resize?"
msgstr "Tetapan Xorg mana yang anda hendak?"

#: fs/partitioning_wizard.pm:171
#, fuzzy, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr "Tetingkap Tetingkap ulanghidup."

#: fs/partitioning_wizard.pm:179
#, fuzzy, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr "AMARAN Tetingkap siap Tetingkap dan ulanghidup Ok."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:188 fs/partitioning_wizard.pm:548
#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Next"
msgstr "Berikut"

#: fs/partitioning_wizard.pm:194
#, fuzzy, c-format
msgid "Partitionning"
msgstr "Pempartisyenan"

#: fs/partitioning_wizard.pm:194
#, fuzzy, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr "Tetingkap"

#: fs/partitioning_wizard.pm:195
#, c-format
msgid "Size"
msgstr "Saiz"

#: fs/partitioning_wizard.pm:204
#, fuzzy, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Edit partisyen: /dev/%s"

#: fs/partitioning_wizard.pm:209
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Gagal untuk mencari seksyen: %s"

#: fs/partitioning_wizard.pm:225
#, fuzzy, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr "tidak"

#: fs/partitioning_wizard.pm:230
#, fuzzy, c-format
msgid "Remove Microsoft Windows®"
msgstr "Boot Microsoft Windows"

#: fs/partitioning_wizard.pm:230
#, fuzzy, c-format
msgid "Erase and use entire disk"
msgstr "Masukkan cakera liut"

#: fs/partitioning_wizard.pm:234
#, fuzzy, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "on?"

#: fs/partitioning_wizard.pm:242 fsedit.pm:600
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "dan on"

#: fs/partitioning_wizard.pm:252
#, fuzzy, c-format
msgid "Custom disk partitioning"
msgstr "Gantung Ke Cakera"

#: fs/partitioning_wizard.pm:258
#, fuzzy, c-format
msgid "Use fdisk"
msgstr "Sedang Diguna"

#: fs/partitioning_wizard.pm:261
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr "siap"

#: fs/partitioning_wizard.pm:401
#, fuzzy, c-format
msgid "Ext2/3/4"
msgstr "Ext3"

#: fs/partitioning_wizard.pm:431 fs/partitioning_wizard.pm:568
#, c-format
msgid "I can not find any room for installing"
msgstr ""

#: fs/partitioning_wizard.pm:440 fs/partitioning_wizard.pm:575
#, fuzzy, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Pempartisyenan:"

#: fs/partitioning_wizard.pm:509
#, c-format
msgid "Here is the content of your disk drive "
msgstr ""

#: fs/partitioning_wizard.pm:585
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Sambungan Gagal"

#: fs/type.pm:390
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr ""

#: fs/type.pm:391
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr ""

#: fsedit.pm:24
#, fuzzy, c-format
msgid "simple"
msgstr "Mudah"

#: fsedit.pm:28
#, fuzzy, c-format
msgid "with /usr"
msgstr "Dengan penghujung:"

#: fsedit.pm:33
#, fuzzy, c-format
msgid "server"
msgstr "Pelayan-X"

#: fsedit.pm:137
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr ""

#: fsedit.pm:247
#, fuzzy, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr "on ralat"

#: fsedit.pm:425
#, c-format
msgid "Mount points must begin with a leading /"
msgstr ""

#: fsedit.pm:426
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""

#: fsedit.pm:427
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""

#: fsedit.pm:431
#, fuzzy, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr "RAD"

#: fsedit.pm:437
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""

#: fsedit.pm:439
#, fuzzy, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr "RAD"

#: fsedit.pm:443 fsedit.pm:445
#, fuzzy, c-format
msgid "This directory should remain within the root filesystem"
msgstr "direktori"

#: fsedit.pm:447 fsedit.pm:449
#, c-format
msgid ""
"You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""

#: fsedit.pm:451
#, fuzzy, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr "fail"

#: fsedit.pm:516
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""

#: fsedit.pm:518
#, fuzzy, c-format
msgid "Nothing to do"
msgstr "-> Hendak buat apa ?"

#: harddrake/data.pm:62
#, fuzzy, c-format
msgid "SATA controllers"
msgstr "Pengawal Domain:"

#: harddrake/data.pm:71
#, fuzzy, c-format
msgid "RAID controllers"
msgstr "Pengawal Domain:"

#: harddrake/data.pm:81
#, fuzzy, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Pengawal ATA Bersiri"

#: harddrake/data.pm:92
#, fuzzy, c-format
msgid "Card readers"
msgstr "Permainan Kad"

#: harddrake/data.pm:101
#, fuzzy, c-format
msgid "Firewire controllers"
msgstr "Pengawal Domain:"

#: harddrake/data.pm:110
#, fuzzy, c-format
msgid "PCMCIA controllers"
msgstr "Status PCMCIA"

#: harddrake/data.pm:119
#, fuzzy, c-format
msgid "SCSI controllers"
msgstr "Maklumat SCSI"

#: harddrake/data.pm:128
#, fuzzy, c-format
msgid "USB controllers"
msgstr "Peranti USB"

#: harddrake/data.pm:137
#, fuzzy, c-format
msgid "USB ports"
msgstr "Port IO"

#: harddrake/data.pm:146
#, fuzzy, c-format
msgid "SMBus controllers"
msgstr "Pengawal Domain:"

#: harddrake/data.pm:155
#, fuzzy, c-format
msgid "Bridges and system controllers"
msgstr "Konfigurasi dan monitor sistem"

#: harddrake/data.pm:167
#, c-format
msgid "Floppy"
msgstr "Pemacu"

#: harddrake/data.pm:177
#, c-format
msgid "Zip"
msgstr "Zip"

#: harddrake/data.pm:193
#, c-format
msgid "Hard Disk"
msgstr "Cakera Keras"

#: harddrake/data.pm:203
#, fuzzy, c-format
msgid "USB Mass Storage Devices"
msgstr "Mematikan peranti PLX... "

#: harddrake/data.pm:212
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: harddrake/data.pm:222
#, fuzzy, c-format
msgid "CD/DVD burners"
msgstr "Membakar CD & DVD"

#: harddrake/data.pm:232
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:242
#, fuzzy, c-format
msgid "Tape"
msgstr "Alat Ganti Sedia"

#: harddrake/data.pm:253
#, fuzzy, c-format
msgid "AGP controllers"
msgstr "Pengawal Domain:"

#: harddrake/data.pm:262
#, fuzzy, c-format
msgid "Videocard"
msgstr "Mencari kad video"

#: harddrake/data.pm:271
#, fuzzy, c-format
msgid "DVB card"
msgstr "Permainan Kad"

#: harddrake/data.pm:279
#, c-format
msgid "Tvcard"
msgstr ""

#: harddrake/data.pm:289
#, fuzzy, c-format
msgid "Other MultiMedia devices"
msgstr "Tiada peranti dikesan !"

#: harddrake/data.pm:298
#, c-format
msgid "Soundcard"
msgstr "Kad Bunyi"

#: harddrake/data.pm:312
#, fuzzy, c-format
msgid "Webcam"
msgstr "Pelihat Webcam Camorama"

#: harddrake/data.pm:327
#, fuzzy, c-format
msgid "Processors"
msgstr "Jumlah Pemproses Aktif"

#: harddrake/data.pm:337
#, fuzzy, c-format
msgid "ISDN adapters"
msgstr "Telefon ISDN"

#: harddrake/data.pm:348
#, fuzzy, c-format
msgid "USB sound devices"
msgstr "Tiada peranti dikesan !"

#: harddrake/data.pm:357
#, fuzzy, c-format
msgid "Radio cards"
msgstr "Kad bunyi"

#: harddrake/data.pm:366
#, fuzzy, c-format
msgid "ATM network cards"
msgstr "Pelayan Rangkaian Lama"

#: harddrake/data.pm:375
#, fuzzy, c-format
msgid "WAN network cards"
msgstr "Pelayan Rangkaian Lama"

#: harddrake/data.pm:384
#, fuzzy, c-format
msgid "Bluetooth devices"
msgstr "Peranti dikesan:"

#: harddrake/data.pm:393
#, c-format
msgid "Ethernetcard"
msgstr ""

#: harddrake/data.pm:410
#, c-format
msgid "Modem"
msgstr "Modem"

#: harddrake/data.pm:420
#, fuzzy, c-format
msgid "ADSL adapters"
msgstr "Aktifkan pautan ADSL"

#: harddrake/data.pm:432
#, c-format
msgid "Memory"
msgstr "Memori"

#: harddrake/data.pm:441
#, c-format
msgid "Printer"
msgstr "Pencetak"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:455
#, fuzzy, c-format
msgid "Game port controllers"
msgstr "Maklumat port IO"

#: harddrake/data.pm:464
#, c-format
msgid "Joystick"
msgstr "Kayu bidik"

#: harddrake/data.pm:474
#, c-format
msgid "Keyboard"
msgstr "Papan Kekunci"

#: harddrake/data.pm:488
#, fuzzy, c-format
msgid "Tablet and touchscreen"
msgstr "&Pengepala dan Footer"

#: harddrake/data.pm:497
#, c-format
msgid "Mouse"
msgstr "Tetikus"

#: harddrake/data.pm:512
#, c-format
msgid "Biometry"
msgstr ""

#: harddrake/data.pm:520
#, c-format
msgid "UPS"
msgstr "UPS"

#: harddrake/data.pm:529
#, c-format
msgid "Scanner"
msgstr "Pengimbas"

#: harddrake/data.pm:540
#, fuzzy, c-format
msgid "Unknown/Others"
msgstr "Fail %s adalah dari jenis tidak diketahui"

#: harddrake/data.pm:570
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: harddrake/sound.pm:303
#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
msgstr ""
"Menerapkan perubahan.\n"
"Sila tunggu..."

#: harddrake/sound.pm:366
#, fuzzy, c-format
msgid "Enable PulseAudio"
msgstr "Hidupkan animasi"

#: harddrake/sound.pm:370
#, fuzzy, c-format
msgid "Enable 5.1 sound with Pulse Audio"
msgstr "Hidupkan bunyi dan bunyi dikaitkan dengan acara"

#: harddrake/sound.pm:375
#, c-format
msgid "Enable user switching for audio applications"
msgstr ""

#: harddrake/sound.pm:379
#, c-format
msgid "Use Glitch-Free mode"
msgstr ""

#: harddrake/sound.pm:385
#, c-format
msgid "Reset sound mixer to default values"
msgstr ""

#: harddrake/sound.pm:390
#, c-format
msgid "Trouble shooting"
msgstr ""

#: harddrake/sound.pm:397
#, fuzzy, c-format
msgid "No alternative driver"
msgstr "(tiada cadangan ejaan)"

#: harddrake/sound.pm:398
#, fuzzy, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr "tidak"

#: harddrake/sound.pm:405
#, fuzzy, c-format
msgid "Sound configuration"
msgstr "Konfigurasi Sistem Bunyi"

#: harddrake/sound.pm:407
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:412
#, fuzzy, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr "default"

#: harddrake/sound.pm:414
#, fuzzy, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr "Buka Bunyi Sistem on asas dan Lanjutan Bunyi USB dan"

#: harddrake/sound.pm:428 harddrake/sound.pm:511
#, c-format
msgid "Driver:"
msgstr "Pemacu :"

#: harddrake/sound.pm:442
#, fuzzy, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr "on on."

#: harddrake/sound.pm:450
#, fuzzy, c-format
msgid "No open source driver"
msgstr "Pustaka kriptografi sumber terbuka."

#: harddrake/sound.pm:451
#, fuzzy, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr "tidak."

#: harddrake/sound.pm:454
#, fuzzy, c-format
msgid "No known driver"
msgstr "(tiada cadangan ejaan)"

#: harddrake/sound.pm:455
#, fuzzy, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "tidak"

#: harddrake/sound.pm:470
#, fuzzy, c-format
msgid "Sound trouble shooting"
msgstr "Ralat merakam bunyi"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:473
#, fuzzy, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card "
"uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services are configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr "default dan dan on"

#: harddrake/sound.pm:500
#, c-format
msgid "Let me pick any driver"
msgstr ""

#: harddrake/sound.pm:503
#, fuzzy, c-format
msgid "Choosing an arbitrary driver"
msgstr "Cetak menggunakan pemandu PS terbinadalam"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:506
#, fuzzy, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr "dalam "

#: harddrake/v4l.pm:12
#, fuzzy, c-format
msgid "Auto-detect"
msgstr "Auto-kesan kemera"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, fuzzy, c-format
msgid "Unknown|Generic"
msgstr "Font Generik"

#: harddrake/v4l.pm:130
#, fuzzy, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Entah"

#: harddrake/v4l.pm:131
#, fuzzy, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Entah"

#: harddrake/v4l.pm:475
#, fuzzy, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr "dan."

#: harddrake/v4l.pm:478
#, fuzzy, c-format
msgid "Card model:"
msgstr "Model Pencetak"

#: harddrake/v4l.pm:479
#, fuzzy, c-format
msgid "Tuner type:"
msgstr "Jenis per&nomboran:"

#: interactive.pm:128 interactive.pm:549 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:148 interactive/stdio.pm:149 mygtk2.pm:847
#: ugtk2.pm:421 ugtk2.pm:519 ugtk2.pm:812 ugtk2.pm:835
#, c-format
msgid "Ok"
msgstr "Ok"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ya"

#: interactive.pm:228 modules/interactive.pm:72 ugtk2.pm:811 wizards.pm:156
#, c-format
msgid "No"
msgstr "Tidak"

#: interactive.pm:262
#, c-format
msgid "Choose a file"
msgstr "Pilih fail"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Add"
msgstr "Tambah"

#: interactive.pm:387 interactive/gtk.pm:453
#, c-format
msgid "Modify"
msgstr "Ubah"

#: interactive.pm:549 interactive/curses.pm:263 ugtk2.pm:519
#, c-format
msgid "Finish"
msgstr "Tamat"

#: interactive.pm:550 interactive/curses.pm:260 ugtk2.pm:517
#, c-format
msgid "Previous"
msgstr "Terdahulu"

#: interactive/curses.pm:556 ugtk2.pm:872
#, c-format
msgid "No file chosen"
msgstr "Tiada fail dipilih"

#: interactive/curses.pm:560 ugtk2.pm:876
#, c-format
msgid "You have chosen a directory, not a file"
msgstr "Anta telah memilih direktori, bukan fail"

#: interactive/curses.pm:562 ugtk2.pm:878
#, c-format
msgid "No such directory"
msgstr "Tiada direktori sedemikian"

#: interactive/curses.pm:562 ugtk2.pm:878
#, c-format
msgid "No such file"
msgstr "Tiada fail sedemikian"

#: interactive/gtk.pm:594
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, fuzzy, c-format
msgid "Bad choice, try again\n"
msgstr "Salah pilih, cuba lagi\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:155
#, fuzzy, c-format
msgid "Your choice? (default %s) "
msgstr "Pilih aplikasi default anda"

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""

#: interactive/stdio.pm:70
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Pilih aplikasi default anda"

#: interactive/stdio.pm:97
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Gaya Butang"

#: interactive/stdio.pm:98
#, fuzzy, c-format
msgid "Do you want to click on this button?"
msgstr "Adakah anda ingin memulakan antaramuka rangkaian pada sistem ini"

#: interactive/stdio.pm:110
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Pilih aplikasi default anda"

#: interactive/stdio.pm:110
#, fuzzy, c-format
msgid " enter `void' for void entry"
msgstr "Masukkan maklumat untuk pengguna"

#: interactive/stdio.pm:128
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""

#: interactive/stdio.pm:131
#, fuzzy, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr "Enter "

#: interactive/stdio.pm:144
#, fuzzy, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr "Label Senarai Semasa"

#: interactive/stdio.pm:151
#, fuzzy, c-format
msgid "Re-submit"
msgstr "&Berbalik"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:194
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:211
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:212 timezone.pm:226
#, c-format
msgid "United Arab Emirates"
msgstr "Emiriah Arab Bersatu"

#: lang.pm:213
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"

#: lang.pm:214
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua dan Barbuda"

#: lang.pm:215
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:216
#, c-format
msgid "Albania"
msgstr "Albania"

#: lang.pm:217
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: lang.pm:218
#, c-format
msgid "Netherlands Antilles"
msgstr "Netherlands Antilles"

#: lang.pm:219
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:220
#, c-format
msgid "Antarctica"
msgstr "Antartika"

#: lang.pm:221 timezone.pm:271
#, c-format
msgid "Argentina"
msgstr "Argentina"

#: lang.pm:222
#, c-format
msgid "American Samoa"
msgstr "Samoa Amerika"

#: lang.pm:223 mirror.pm:12 timezone.pm:229
#, c-format
msgid "Austria"
msgstr "Austria"

#: lang.pm:224 mirror.pm:11 timezone.pm:267
#, c-format
msgid "Australia"
msgstr "Australia"

#: lang.pm:225
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:226
#, c-format
msgid "Azerbaijan"
msgstr "Azerbaijan"

#: lang.pm:227
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnia Herzegovina"

#: lang.pm:228
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:229 timezone.pm:211
#, c-format
msgid "Bangladesh"
msgstr "Bangladesh"

#: lang.pm:230 mirror.pm:13 timezone.pm:231
#, c-format
msgid "Belgium"
msgstr "Belgium"

#: lang.pm:231
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:232 timezone.pm:232
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: lang.pm:233
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:234
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:235
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:236
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:237
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#: lang.pm:238
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: lang.pm:239 mirror.pm:14 timezone.pm:272
#, c-format
msgid "Brazil"
msgstr "Brazil"

#: lang.pm:240
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:241
#, c-format
msgid "Bhutan"
msgstr "Bhutan"

#: lang.pm:242
#, c-format
msgid "Bouvet Island"
msgstr "Pulau Bouvet"

#: lang.pm:243
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:244 timezone.pm:230
#, c-format
msgid "Belarus"
msgstr "Belarus"

#: lang.pm:245
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:246 mirror.pm:15 timezone.pm:261
#, c-format
msgid "Canada"
msgstr "Kanada"

#: lang.pm:247
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Kepulauan Cocos (Keeling)"

#: lang.pm:248
#, fuzzy, c-format
msgid "Congo (Kinshasa)"
msgstr "Afrika/Kinshasa"

#: lang.pm:249
#, c-format
msgid "Central African Republic"
msgstr "Republik Afrika Tengah"

#: lang.pm:250
#, fuzzy, c-format
msgid "Congo (Brazzaville)"
msgstr "Afrika/Brazzaville"

#: lang.pm:251 mirror.pm:39 timezone.pm:255
#, c-format
msgid "Switzerland"
msgstr "Switzerland"

#: lang.pm:252
#, c-format
msgid "Cote d'Ivoire"
msgstr "Pantai Gading"

#: lang.pm:253
#, c-format
msgid "Cook Islands"
msgstr "Kepulauan Cook"

#: lang.pm:254 timezone.pm:273
#, c-format
msgid "Chile"
msgstr "Chile"

#: lang.pm:255
#, c-format
msgid "Cameroon"
msgstr "Cameroon"

#: lang.pm:256 timezone.pm:212
#, c-format
msgid "China"
msgstr "China"

#: lang.pm:257
#, c-format
msgid "Colombia"
msgstr "Colombia"

#: lang.pm:258 mirror.pm:16
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:259
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbia & Montenegro"

#: lang.pm:260
#, c-format
msgid "Cuba"
msgstr "Cuba"

#: lang.pm:261
#, c-format
msgid "Cape Verde"
msgstr "Cape Verde"

#: lang.pm:262
#, c-format
msgid "Christmas Island"
msgstr "Kepulauan Krismas"

#: lang.pm:263
#, c-format
msgid "Cyprus"
msgstr "Cyprus"

#: lang.pm:264 mirror.pm:17 timezone.pm:233
#, c-format
msgid "Czech Republic"
msgstr "Republik Czech"

#: lang.pm:265 mirror.pm:22 timezone.pm:238
#, c-format
msgid "Germany"
msgstr "Jerman"

#: lang.pm:266
#, c-format
msgid "Djibouti"
msgstr "Djibouti"

#: lang.pm:267 mirror.pm:18 timezone.pm:234
#, c-format
msgid "Denmark"
msgstr "Denmark"

#: lang.pm:268
#, c-format
msgid "Dominica"
msgstr "Dominica"

#: lang.pm:269
#, c-format
msgid "Dominican Republic"
msgstr "Republik Dominica"

#: lang.pm:270
#, c-format
msgid "Algeria"
msgstr "Algeria"

#: lang.pm:271
#, c-format
msgid "Ecuador"
msgstr "Ecuador"

#: lang.pm:272 mirror.pm:19 timezone.pm:235
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: lang.pm:273
#, c-format
msgid "Egypt"
msgstr "Mesir"

#: lang.pm:274
#, c-format
msgid "Western Sahara"
msgstr "Sahara Barat"

#: lang.pm:275
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:276 mirror.pm:37 timezone.pm:253
#, c-format
msgid "Spain"
msgstr "Sepanyol"

#: lang.pm:277
#, c-format
msgid "Ethiopia"
msgstr "Ethiopia"

#: lang.pm:278 mirror.pm:20 timezone.pm:236
#, c-format
msgid "Finland"
msgstr "Finland"

#: lang.pm:279
#, c-format
msgid "Fiji"
msgstr "Fiji"

#: lang.pm:280
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Kepulauan Falkland"

#: lang.pm:281
#, c-format
msgid "Micronesia"
msgstr "Micronesia"

#: lang.pm:282
#, c-format
msgid "Faroe Islands"
msgstr "Kepulauan Faroe"

#: lang.pm:283 mirror.pm:21 timezone.pm:237
#, c-format
msgid "France"
msgstr "Perancis"

#: lang.pm:284
#, c-format
msgid "Gabon"
msgstr "Gabon"

#: lang.pm:285 timezone.pm:257
#, c-format
msgid "United Kingdom"
msgstr "United Kingdom"

#: lang.pm:286
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:287
#, c-format
msgid "Georgia"
msgstr "Georgia"

#: lang.pm:288
#, c-format
msgid "French Guiana"
msgstr "French Guiana"

#: lang.pm:289
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:290
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang.pm:291
#, c-format
msgid "Greenland"
msgstr "Greenland"

#: lang.pm:292
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:293
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: lang.pm:294
#, c-format
msgid "Guadeloupe"
msgstr "Guadeloupe"

#: lang.pm:295
#, c-format
msgid "Equatorial Guinea"
msgstr "Equitorial Guinea"

#: lang.pm:296 mirror.pm:23 timezone.pm:239
#, c-format
msgid "Greece"
msgstr "Greek"

#: lang.pm:297
#, fuzzy, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Selatan Georgia dan Selatan"

#: lang.pm:298 timezone.pm:262
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:299
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:300
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang.pm:301
#, c-format
msgid "Guyana"
msgstr "Guyana"

#: lang.pm:302
#, fuzzy, c-format
msgid "Hong Kong SAR (China)"
msgstr "Name=Macau SAR(China)"

#: lang.pm:303
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Kepulauan Heard dan McDonald"

#: lang.pm:304
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:305
#, c-format
msgid "Croatia"
msgstr "Croatia"

#: lang.pm:306
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:307 mirror.pm:24 timezone.pm:240
#, c-format
msgid "Hungary"
msgstr "Hungary"

#: lang.pm:308 timezone.pm:215
#, c-format
msgid "Indonesia"
msgstr "Indonesia"

#: lang.pm:309 mirror.pm:25 timezone.pm:241
#, c-format
msgid "Ireland"
msgstr "Ireland"

#: lang.pm:310 mirror.pm:26 timezone.pm:217
#, c-format
msgid "Israel"
msgstr "Israel"

#: lang.pm:311 timezone.pm:214
#, c-format
msgid "India"
msgstr "India"

#: lang.pm:312
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Kawasan Ocean India British"

#: lang.pm:313
#, c-format
msgid "Iraq"
msgstr "Iraq"

#: lang.pm:314 timezone.pm:216
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:315
#, c-format
msgid "Iceland"
msgstr "Iceland"

#: lang.pm:316 mirror.pm:27 timezone.pm:242
#, c-format
msgid "Italy"
msgstr "Itali"

#: lang.pm:317
#, c-format
msgid "Jamaica"
msgstr "Jamaica"

#: lang.pm:318
#, c-format
msgid "Jordan"
msgstr "Jordan"

#: lang.pm:319 mirror.pm:28 timezone.pm:218
#, c-format
msgid "Japan"
msgstr "Jepun"

#: lang.pm:320
#, c-format
msgid "Kenya"
msgstr "Kenya"

#: lang.pm:321
#, c-format
msgid "Kyrgyzstan"
msgstr "Kyrgyzstan"

#: lang.pm:322
#, c-format
msgid "Cambodia"
msgstr "Cambodia"

#: lang.pm:323
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:324
#, c-format
msgid "Comoros"
msgstr "Comoros"

#: lang.pm:325
#, fuzzy, c-format
msgid "Saint Kitts and Nevis"
msgstr "St. Kitts dan Nevis"

#: lang.pm:326
#, c-format
msgid "Korea (North)"
msgstr "Korea (Utara)"

#: lang.pm:327 timezone.pm:219
#, c-format
msgid "Korea"
msgstr "Korea"

#: lang.pm:328
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:329
#, c-format
msgid "Cayman Islands"
msgstr "Kepulauan Cayman"

#: lang.pm:330
#, c-format
msgid "Kazakhstan"
msgstr "Kazakhstan"

#: lang.pm:331
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:332
#, c-format
msgid "Lebanon"
msgstr "Lebanon"

#: lang.pm:333
#, c-format
msgid "Saint Lucia"
msgstr "Saint Lucia"

#: lang.pm:334
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:335
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang.pm:336
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:337
#, c-format
msgid "Lesotho"
msgstr "Lesotho"

#: lang.pm:338 timezone.pm:243
#, c-format
msgid "Lithuania"
msgstr "Lithuania"

#: lang.pm:339 timezone.pm:244
#, c-format
msgid "Luxembourg"
msgstr "Luxembourg"

#: lang.pm:340
#, c-format
msgid "Latvia"
msgstr "Latvia"

#: lang.pm:341
#, c-format
msgid "Libya"
msgstr "Libya"

#: lang.pm:342
#, c-format
msgid "Morocco"
msgstr "Morocco"

#: lang.pm:343
#, c-format
msgid "Monaco"
msgstr "Monaco"

#: lang.pm:344
#, c-format
msgid "Moldova"
msgstr "Moldova"

#: lang.pm:345
#, c-format
msgid "Madagascar"
msgstr "Madagascar"

#: lang.pm:346
#, c-format
msgid "Marshall Islands"
msgstr "Kepulauan Marshall"

#: lang.pm:347
#, c-format
msgid "Macedonia"
msgstr "Macedonia"

#: lang.pm:348
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:349
#, c-format
msgid "Myanmar"
msgstr "Myanmar"

#: lang.pm:350
#, c-format
msgid "Mongolia"
msgstr "Mongolia"

#: lang.pm:351
#, c-format
msgid "Northern Mariana Islands"
msgstr "Kepulauan Mariana Utara"

#: lang.pm:352
#, c-format
msgid "Martinique"
msgstr "Martinique"

#: lang.pm:353
#, c-format
msgid "Mauritania"
msgstr "Mauritania"

#: lang.pm:354
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:355
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:356
#, c-format
msgid "Mauritius"
msgstr "Mauritius"

#: lang.pm:357
#, c-format
msgid "Maldives"
msgstr "Maldives"

#: lang.pm:358
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:359 timezone.pm:263
#, c-format
msgid "Mexico"
msgstr "Mexico"

#: lang.pm:360 timezone.pm:220
#, c-format
msgid "Malaysia"
msgstr "Malaysia"

#: lang.pm:361
#, c-format
msgid "Mozambique"
msgstr "Mozambique"

#: lang.pm:362
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: lang.pm:363
#, c-format
msgid "New Caledonia"
msgstr "New Caledonia"

#: lang.pm:364
#, c-format
msgid "Niger"
msgstr "Niger"

#: lang.pm:365
#, c-format
msgid "Norfolk Island"
msgstr "Kepulauan Norfolk"

#: lang.pm:366
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: lang.pm:367
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"

#: lang.pm:368 mirror.pm:29 timezone.pm:245
#, c-format
msgid "Netherlands"
msgstr "Belanda"

#: lang.pm:369 mirror.pm:31 timezone.pm:246
#, c-format
msgid "Norway"
msgstr "Norway"

#: lang.pm:370
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:371
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:372
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:373 mirror.pm:30 timezone.pm:268
#, c-format
msgid "New Zealand"
msgstr "New Zealand"

#: lang.pm:374
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:375
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:376
#, c-format
msgid "Peru"
msgstr "Peru"

#: lang.pm:377
#, c-format
msgid "French Polynesia"
msgstr "French Polynesia"

#: lang.pm:378
#, c-format
msgid "Papua New Guinea"
msgstr "Papua New Guinea"

#: lang.pm:379 timezone.pm:221
#, c-format
msgid "Philippines"
msgstr "Filipina"

#: lang.pm:380
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:381 mirror.pm:32 timezone.pm:247
#, c-format
msgid "Poland"
msgstr "Poland"

#: lang.pm:382
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Santa Pierre dan Miquelon"

#: lang.pm:383
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:384
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang.pm:385
#, c-format
msgid "Palestine"
msgstr "Palestin"

#: lang.pm:386 mirror.pm:33 timezone.pm:248
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: lang.pm:387
#, c-format
msgid "Paraguay"
msgstr "Paraguay"

#: lang.pm:388
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:389
#, c-format
msgid "Qatar"
msgstr "Qatar"

#: lang.pm:390
#, c-format
msgid "Reunion"
msgstr "Reunion"

#: lang.pm:391 timezone.pm:249
#, c-format
msgid "Romania"
msgstr "Romania"

#: lang.pm:392 mirror.pm:34
#, c-format
msgid "Russia"
msgstr "Russia"

#: lang.pm:393
#, c-format
msgid "Rwanda"
msgstr "Rwanda"

#: lang.pm:394
#, c-format
msgid "Saudi Arabia"
msgstr "Arab Saudi"

#: lang.pm:395
#, c-format
msgid "Solomon Islands"
msgstr "Kepulauan Solomon"

#: lang.pm:396
#, c-format
msgid "Seychelles"
msgstr "Seychelles"

#: lang.pm:397
#, c-format
msgid "Sudan"
msgstr "Sudan"

#: lang.pm:398 mirror.pm:38 timezone.pm:254
#, c-format
msgid "Sweden"
msgstr "Sweden"

#: lang.pm:399 timezone.pm:222
#, c-format
msgid "Singapore"
msgstr "Singapura"

#: lang.pm:400
#, c-format
msgid "Saint Helena"
msgstr "Santa Helena"

#: lang.pm:401 timezone.pm:252
#, c-format
msgid "Slovenia"
msgstr "Slovenia"

#: lang.pm:402
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Kepulauan Svalbard dan Jan Mayen"

#: lang.pm:403 mirror.pm:35 timezone.pm:251
#, c-format
msgid "Slovakia"
msgstr "Slovakia"

#: lang.pm:404
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: lang.pm:405
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:406
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:407
#, c-format
msgid "Somalia"
msgstr "Somalia"

#: lang.pm:408
#, c-format
msgid "Suriname"
msgstr "Surinam"

#: lang.pm:409
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome and Principe"

#: lang.pm:410
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: lang.pm:411
#, c-format
msgid "Syria"
msgstr "Syria"

#: lang.pm:412
#, c-format
msgid "Swaziland"
msgstr "Swaziland"

#: lang.pm:413
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Kepulauan Caicos dan Turks"

#: lang.pm:414
#, c-format
msgid "Chad"
msgstr "Chad"

#: lang.pm:415
#, c-format
msgid "French Southern Territories"
msgstr "Kawasan Selatan Perancis"

#: lang.pm:416
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:417 mirror.pm:41 timezone.pm:224
#, c-format
msgid "Thailand"
msgstr "Thailand"

#: lang.pm:418
#, c-format
msgid "Tajikistan"
msgstr "Tajikistan"

#: lang.pm:419
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: lang.pm:420
#, c-format
msgid "East Timor"
msgstr "Timor Larose"

#: lang.pm:421
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang.pm:422
#, c-format
msgid "Tunisia"
msgstr "Tunisia"

#: lang.pm:423
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:424 timezone.pm:225
#, c-format
msgid "Turkey"
msgstr "Turki"

#: lang.pm:425
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad dan Tobago"

#: lang.pm:426
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang.pm:427 mirror.pm:40 timezone.pm:223
#, c-format
msgid "Taiwan"
msgstr "Taiwan"

#: lang.pm:428 timezone.pm:208
#, c-format
msgid "Tanzania"
msgstr "Tanzania"

#: lang.pm:429 timezone.pm:256
#, c-format
msgid "Ukraine"
msgstr "Ukraine"

#: lang.pm:430
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: lang.pm:431
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Amerika Syarikat, kepulauan Luar Minor"

#: lang.pm:432 mirror.pm:42 timezone.pm:264
#, c-format
msgid "United States"
msgstr "Amerika Syarikat"

#: lang.pm:433
#, c-format
msgid "Uruguay"
msgstr "Uruguay"

#: lang.pm:434
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistan"

#: lang.pm:435
#, c-format
msgid "Vatican"
msgstr "Vatican"

#: lang.pm:436
#, fuzzy, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Santa Pierre dan Miquelon"

#: lang.pm:437
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (British)"
msgstr "Kepulauan Virgin (Inggeris)"

#: lang.pm:439
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (Amerika)"

#: lang.pm:440
#, c-format
msgid "Vietnam"
msgstr "Vietnam"

#: lang.pm:441
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:442
#, fuzzy, c-format
msgid "Wallis and Futuna"
msgstr "&Pengepala dan Footer"

#: lang.pm:443
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: lang.pm:444
#, c-format
msgid "Yemen"
msgstr "Yaman"

#: lang.pm:445
#, c-format
msgid "Mayotte"
msgstr "Mayotte"

#: lang.pm:446 mirror.pm:36 timezone.pm:207
#, c-format
msgid "South Africa"
msgstr "Afrika Selatan"

#: lang.pm:447
#, c-format
msgid "Zambia"
msgstr "Zambia"

#: lang.pm:448
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabwe"

#: lang.pm:1206
#, c-format
msgid "Welcome to %s"
msgstr "Selamat datang ke %s"

#: lvm.pm:86
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""

#: lvm.pm:143
#, c-format
msgid "Physical volume %s is still in use"
msgstr ""

#: lvm.pm:153
#, fuzzy, c-format
msgid "Remove the logical volumes first\n"
msgstr "Volum Logikal Maksimum Dibenarkan:"

#: lvm.pm:186
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""

#: messages.pm:11
#, fuzzy, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution, and "
"any applications \n"
"distributed with these products provided by Mandriva's licensors or "
"suppliers.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using any of the Software Products in any "
"manner, you explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Neither Mandriva S.A. nor its licensors or suppliers will, in any "
"circumstances and to the extent \n"
"permitted by law, be liable for any special, incidental, direct or indirect "
"damages whatsoever \n"
"(including without limitation damages for loss of business, interruption of "
"business, financial \n"
"loss, legal fees and penalties resulting from a court judgment, or any other "
"consequential loss) \n"
"arising out of  the use or inability to use the Software Products, even if "
"Mandriva S.A. or its \n"
"licensors or suppliers have been advised of the possibility or occurrence of "
"such damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, neither Mandriva S.A. nor its licensors, "
"suppliers or\n"
"distributors will, in any circumstances, be liable for any special, "
"incidental, direct or indirect \n"
"damages whatsoever (including without limitation damages for loss of "
"business, interruption of \n"
"business, financial loss, legal fees and penalties resulting from a court "
"judgment, or any \n"
"other consequential loss) arising out of the possession and use of software "
"components or \n"
"arising out of  downloading software components from one of Mandriva Linux "
"sites which are \n"
"prohibited or restricted in some countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"However, because some jurisdictions do not allow the exclusion or limitation "
"or liability for \n"
"consequential or incidental damages, the above limitation may not apply to "
"you.  \n"
"%s\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities. %s\n"
"Most of these licenses allow you to use, duplicate, adapt or redistribute "
"the components which \n"
"they cover. Please read carefully the terms and conditions of the license "
"agreement for each component \n"
"before using any component. Any question on a component license should be "
"addressed to the component \n"
"licensor or supplier and not to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. and its suppliers and licensors reserves their rights to "
"modify or adapt the Software \n"
"Products, as a whole or in parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A."
msgstr ""
"Pengenalan dan dalam dan dan dan A dalam dan dan dalam dan dan dan tidak A "
"dalam tidak dan dan keluar A A dalam tidak keluar dan keluar dalam lokal "
"dalam dan dan Umum dan A Dokumentasi A Kanan: dan dan A dalam dan dan A dan "
"Perancis on keluar Perancis on A"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:90
#, c-format
msgid ""
"You agree not to (i) sell, export, re-export, transfer, divert, disclose "
"technical data, or \n"
"dispose of, any Software to any person, entity, or destination prohibited by "
"US export laws \n"
"or regulations including, without limitation, Cuba, Iran, North Korea, Sudan "
"and Syria; or \n"
"(ii) use any Software for any use prohibited by the laws or regulations of "
"the United States.\n"
"\n"
"U.S. GOVERNMENT RESTRICTED RIGHTS. \n"
"\n"
"The Software Products and any accompanying documentation are and shall be "
"deemed to be \n"
"\"commercial computer software\" and \"commercial computer software "
"documentation,\" respectively, \n"
"as defined in DFAR 252.227-7013 and as described in FAR 12.212. Any use, "
"modification, reproduction, \n"
"release, performance, display or disclosure of the Software and any "
"accompanying documentation \n"
"by the United States Government shall be governed solely by the terms of "
"this Agreement and any \n"
"other applicable licence agreements and shall be prohibited except to the "
"extent expressly permitted \n"
"by the terms of this Agreement."
msgstr ""

#: messages.pm:104
#, c-format
msgid ""
"Most of these components, but excluding the applications and software "
"provided by Google Inc. or \n"
"its subsidiaries (\"Google Software\"), are governed under the terms and "
"conditions of the GNU \n"
"General Public Licence, hereafter called \"GPL\", or of similar licenses."
msgstr ""

#: messages.pm:107
#, c-format
msgid ""
"Most of these components are governed under the terms and conditions of the "
"GNU \n"
"General Public Licence, hereafter called \"GPL\", or of similar licenses."
msgstr ""

#: messages.pm:112
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""

#: messages.pm:120
#, c-format
msgid ""
"6. Additional provisions applicable to those Software Products provided by "
"Google Inc. (\"Google Software\")\n"
"\n"
"(a)  You acknowledge that Google or third parties own all rights, title and "
"interest in and to the Google \n"
"Software, portions thereof, or software provided through or in conjunction "
"with the Google Software, including\n"
"without limitation all Intellectual Property Rights. \"Intellectual Property "
"Rights\" means any and all rights \n"
"existing from time to time under patent law, copyright law, trade secret "
"law, trademark law, unfair competition \n"
"law, database rights and any and all other proprietary rights, and any and "
"all applications, renewals, extensions \n"
"and restorations thereof, now or hereafter in force and effect worldwide. "
"You agree not to modify, adapt, \n"
"translate, prepare derivative works from, decompile, reverse engineer, "
"disassemble or otherwise attempt to derive \n"
"source code from Google Software. You also agree to not remove, obscure, or "
"alter Google's or any third party's \n"
"copyright notice, trademarks, or other proprietary rights notices affixed to "
"or contained within or accessed in \n"
"conjunction with or through the Google Software.  \n"
"\n"
"(b)  The Google Software is made available to you for your personal, non-"
"commercial use only.\n"
"You may not use the Google Software in any manner that could damage, "
"disable, overburden, or impair Google's \n"
"search services (e.g., you may not use the Google Software in an automated "
"manner), nor may you use Google \n"
"Software in any manner that could interfere with any other party's use and "
"enjoyment of Google's search services\n"
"or the services and products of the third party licensors of the Google "
"Software.\n"
"\n"
"(c)  Some of the Google Software is designed to be used in conjunction with "
"Google's search and other services.\n"
"Accordingly, your use of such Google Software is also defined by Google's "
"Terms of Service located at \n"
"http://www.google.com/terms_of_service.html and Google's Toolbar Privacy "
"Policy located at \n"
"http://www.google.com/support/toolbar/bin/static.py?page=privacy.html.\n"
"\n"
"(d)  Google Inc. and each of its subsidiaries and affiliates are third party "
"beneficiaries of this contract \n"
"and may enforce its terms."
msgstr ""

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:150
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr "Tahniah dan on on dalam Pengguna."

#: modules/interactive.pm:19
#, fuzzy, c-format
msgid "This driver has no configuration parameter!"
msgstr "Konfigurasi Pemuat But"

#: modules/interactive.pm:22
#, fuzzy, c-format
msgid "Module configuration"
msgstr "Tetapan KFish"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr ""

#: modules/interactive.pm:64
#, fuzzy, c-format
msgid "Found %s interfaces"
msgstr "Antara Muka Rangkaian"

#: modules/interactive.pm:65
#, fuzzy, c-format
msgid "Do you have another one?"
msgstr "Anda ada Cekera jurupacu?"

#: modules/interactive.pm:66
#, fuzzy, c-format
msgid "Do you have any %s interfaces?"
msgstr "Anda ada Cekera jurupacu?"

#: modules/interactive.pm:72
#, fuzzy, c-format
msgid "See hardware info"
msgstr "Lihat sejarah dokumen semasa"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for USB controller"
msgstr ""

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr ""

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr ""

#: modules/interactive.pm:86
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr ""

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:97
#, fuzzy, c-format
msgid "Installing driver for %s card %s"
msgstr "Mengesan kad video: %s"

#: modules/interactive.pm:100
#, c-format
msgid "Configuring Hardware"
msgstr ""

#: modules/interactive.pm:111
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""

#: modules/interactive.pm:117
#, fuzzy, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr "dalam"

#: modules/interactive.pm:119
#, fuzzy, c-format
msgid "Module options:"
msgstr "Pilihan Bina"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:132
#, c-format
msgid "Which %s driver should I try?"
msgstr ""

#: modules/interactive.pm:141
#, fuzzy, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr "Masuk."

#: modules/interactive.pm:145
#, c-format
msgid "Autoprobe"
msgstr ""

#: modules/interactive.pm:145
#, fuzzy, c-format
msgid "Specify options"
msgstr "Pilihan Bina"

#: modules/interactive.pm:157
#, fuzzy, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr "Memuatkan?"

#: mygtk2.pm:1541 mygtk2.pm:1542
#, c-format
msgid "Password is trivial to guess"
msgstr ""

#: mygtk2.pm:1543
#, c-format
msgid "Password should resist to basic attacks"
msgstr ""

#: mygtk2.pm:1544 mygtk2.pm:1545
#, fuzzy, c-format
msgid "Password seems secure"
msgstr "Kata Laluan & Akaun Pengguna"

#: partition_table.pm:411
#, fuzzy, c-format
msgid "mount failed: "
msgstr "Sambungan Gagal"

#: partition_table.pm:523
#, fuzzy, c-format
msgid "Extended partition not supported on this platform"
msgstr "LVM TIDAK disokong pada platform ini."

#: partition_table.pm:541
#, fuzzy, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr "dalam."

#: partition_table/raw.pm:287
#, fuzzy, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr "on on."

#: pkgs.pm:252 pkgs.pm:255 pkgs.pm:264
#, c-format
msgid "Unused packages removal"
msgstr ""

#: pkgs.pm:252
#, c-format
msgid "Finding unused hardware packages..."
msgstr ""

#: pkgs.pm:255
#, c-format
msgid "Finding unused localization packages..."
msgstr ""

#: pkgs.pm:265
#, c-format
msgid ""
"We have detected that some packages are not needed for your system "
"configuration."
msgstr ""

#: pkgs.pm:266
#, c-format
msgid "We will remove the following packages, unless you choose otherwise:"
msgstr ""

#: pkgs.pm:269 pkgs.pm:270
#, fuzzy, c-format
msgid "Unused hardware support"
msgstr "Lihat sejarah dokumen semasa"

#: pkgs.pm:273 pkgs.pm:274
#, c-format
msgid "Unused localization"
msgstr ""

#: raid.pm:42
#, fuzzy, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "RAD"

#: raid.pm:161
#, fuzzy, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAD"

#: scanner.pm:96
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:107
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr ""

#: scanner.pm:114
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""

#: scanner.pm:121
#, fuzzy, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Tidak dapat menetapkan konteks fail untuk %s"

#: scanner.pm:200
#, c-format
msgid "Scannerdrake"
msgstr "Scannerdrake"

#: scanner.pm:201
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""

#: scanner.pm:202
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr ""

#: security/help.pm:11
#, fuzzy, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Terima ralat"

#: security/help.pm:13
#, fuzzy, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Terima"

#: security/help.pm:15
#, fuzzy, c-format
msgid "Accept icmp echo."
msgstr "Terima gantian yang dicadang"

#: security/help.pm:17
#, fuzzy, c-format
msgid "Allow autologin."
msgstr "Benarkan Toolbar Tersendiri"

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, fuzzy, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr "dan tidak."

#: security/help.pm:27
#, fuzzy, c-format
msgid "Allow reboot by the console user."
msgstr "pengguna."

#: security/help.pm:29
#, fuzzy, c-format
msgid "Allow remote root login."
msgstr "Anggap pengguna _root jauh sebagai root tempatan"

#: security/help.pm:31
#, fuzzy, c-format
msgid "Allow direct root login."
msgstr "Anggap pengguna _root jauh sebagai root tempatan"

#: security/help.pm:33
#, fuzzy, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr "on on dan."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""

#: security/help.pm:40
#, fuzzy, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr "lokal tidak."

#: security/help.pm:48
#, fuzzy, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr "on."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, fuzzy, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr "hos lokal tiada hos hos."

#: security/help.pm:63
#, fuzzy, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr "dalam<SERVER_LEVEL> dalam fail."

#: security/help.pm:72
#, fuzzy, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr "dan dalam dan."

#: security/help.pm:77
#, c-format
msgid "Enable syslog reports to console 12"
msgstr ""

#: security/help.pm:79
#, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""

#: security/help.pm:80
#, fuzzy, c-format
msgid "Security Alerts:"
msgstr "Sekuriti dan Privasi"

#: security/help.pm:82
#, fuzzy, c-format
msgid "Enable IP spoofing protection."
msgstr "IP"

#: security/help.pm:84
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr "on"

#: security/help.pm:86
#, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr ""

#: security/help.pm:88
#, fuzzy, c-format
msgid "Enable msec hourly security check."
msgstr "Hasil Pemeriksaan Media"

#: security/help.pm:90
#, fuzzy, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr "pengguna."

#: security/help.pm:92
#, fuzzy, c-format
msgid "Use password to authenticate users."
msgstr "Katalaluan untuk digunakan bagi proksi berpengesahan"

#: security/help.pm:94
#, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr ""

#: security/help.pm:96
#, fuzzy, c-format
msgid "Activate daily security check."
msgstr "Hasil Pemeriksaan Media"

#: security/help.pm:98
#, fuzzy, c-format
msgid "Enable sulogin(8) in single user level."
msgstr "dalam tunggal pengguna."

#: security/help.pm:100
#, fuzzy, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr "Tambah."

#: security/help.pm:102
#, fuzzy, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr "hari dan."

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""

#: security/help.pm:106
#, fuzzy, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr "dan dan."

#: security/help.pm:108
#, fuzzy, c-format
msgid "Set the root's file mode creation mask."
msgstr "Tetapkan Katalaluan Root"

#: security/help.pm:109
#, fuzzy, c-format
msgid "if set to yes, check open ports."
msgstr "ya port."

#: security/help.pm:110
#, fuzzy, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr "ya kosong tidak dalam."

#: security/help.pm:117
#, fuzzy, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr "ya fail dalam."

#: security/help.pm:118
#, fuzzy, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr "ya dalam."

#: security/help.pm:119
#, fuzzy, c-format
msgid "if set to yes, run the daily security checks."
msgstr "ya."

#: security/help.pm:120
#, fuzzy, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr "jika tetap kepada ya, periksa penambahan/pembuangan fail suid root."

#: security/help.pm:121
#, fuzzy, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "ya kosong dalam."

#: security/help.pm:122
#, fuzzy, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr "ya fail."

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr "jika tetap kepada ya, periksa penambahan/pembuangan fail suid root."

#: security/help.pm:124
#, fuzzy, c-format
msgid "if set to yes, report unowned files."
msgstr "ya fail."

#: security/help.pm:125
#, fuzzy, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr "ya fail."

#: security/help.pm:126
#, fuzzy, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "ya."

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: security/help.pm:128
#, fuzzy, c-format
msgid "if set to yes, report check result by mail."
msgstr "ya."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr ""

#: security/help.pm:130
#, fuzzy, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr "ya."

#: security/help.pm:131
#, fuzzy, c-format
msgid "if set to yes, report check result to syslog."
msgstr "ya."

#: security/help.pm:132
#, fuzzy, c-format
msgid "if set to yes, reports check result to tty."
msgstr "ya."

#: security/help.pm:134
#, fuzzy, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr "A."

#: security/help.pm:136
#, fuzzy, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr "A tidak."

#: security/help.pm:136
#, fuzzy, c-format
msgid "Timeout unit is second"
msgstr "1/s"

#: security/help.pm:138
#, fuzzy, c-format
msgid "Set the user's file mode creation mask."
msgstr "Tetapkan keutamaan pengguna"

#: security/l10n.pm:11
#, fuzzy, c-format
msgid "Accept bogus IPv4 error messages"
msgstr "Terima ralat"

#: security/l10n.pm:12
#, fuzzy, c-format
msgid "Accept broadcasted icmp echo"
msgstr "Terima"

#: security/l10n.pm:13
#, fuzzy, c-format
msgid "Accept icmp echo"
msgstr "Terima gantian yang dicadang"

#: security/l10n.pm:15
#, fuzzy, c-format
msgid "/etc/issue* exist"
msgstr "Peranti '$device' tidak wujud"

#: security/l10n.pm:16
#, fuzzy, c-format
msgid "Reboot by the console user"
msgstr "Pengguna tidak dibenarkan oleh penerima"

#: security/l10n.pm:17
#, fuzzy, c-format
msgid "Allow remote root login"
msgstr "Anggap pengguna _root jauh sebagai root tempatan"

#: security/l10n.pm:18
#, fuzzy, c-format
msgid "Direct root login"
msgstr "Konfigur pengurus login (KDM)"

#: security/l10n.pm:19
#, fuzzy, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr "on dan"

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr ""

#: security/l10n.pm:21
#, fuzzy, c-format
msgid "Allow X Window connections"
msgstr "Tetingkap Laksana BlackBox"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr ""

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr ""

#: security/l10n.pm:24
#, c-format
msgid "Chkconfig obey msec rules"
msgstr ""

#: security/l10n.pm:25
#, fuzzy, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr "dan"

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr ""

#: security/l10n.pm:27
#, fuzzy, c-format
msgid "Name resolution spoofing protection"
msgstr "kegagalan sementara di dalam resolusi nama"

#: security/l10n.pm:28
#, fuzzy, c-format
msgid "Enable IP spoofing protection"
msgstr "IP"

#: security/l10n.pm:29
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr "on"

#: security/l10n.pm:30
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr ""

#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
msgstr ""

#: security/l10n.pm:32
#, fuzzy, c-format
msgid "Enable su only from the wheel group members"
msgstr "pengguna."

#: security/l10n.pm:33
#, fuzzy, c-format
msgid "Use password to authenticate users"
msgstr "Katalaluan untuk digunakan bagi proksi berpengesahan"

#: security/l10n.pm:34
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr ""

#: security/l10n.pm:35
#, fuzzy, c-format
msgid "Daily security check"
msgstr "Periksa untuk &Kemaskini"

#: security/l10n.pm:36
#, fuzzy, c-format
msgid "Sulogin(8) in single user level"
msgstr "dalam tunggal pengguna"

#: security/l10n.pm:37
#, fuzzy, c-format
msgid "No password aging for"
msgstr "Sila tetapkan katalaluan bagi %s."

#: security/l10n.pm:38
#, fuzzy, c-format
msgid "Set password expiration and account inactivation delays"
msgstr "dan"

#: security/l10n.pm:39
#, fuzzy, c-format
msgid "Password history length"
msgstr "Kekalkan Sejarah Penuh"

#: security/l10n.pm:40
#, fuzzy, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr "Katalaluan dan dan"

#: security/l10n.pm:41
#, fuzzy, c-format
msgid "Root umask"
msgstr "_Katalaluan root: "

#: security/l10n.pm:42
#, fuzzy, c-format
msgid "Shell history size"
msgstr "Saiz lajur automatik"

#: security/l10n.pm:43
#, fuzzy, c-format
msgid "Shell timeout"
msgstr "Skrip Cengkerang"

#: security/l10n.pm:44
#, fuzzy, c-format
msgid "User umask"
msgstr "Antaramuka Pengguna"

#: security/l10n.pm:45
#, fuzzy, c-format
msgid "Check open ports"
msgstr "Buka dokumen sedia ada"

#: security/l10n.pm:46
#, fuzzy, c-format
msgid "Check for unsecured accounts"
msgstr "Semak dokumen untuk kesalahan ejaan"

#: security/l10n.pm:47
#, fuzzy, c-format
msgid "Check permissions of files in the users' home"
msgstr "fail dalam"

#: security/l10n.pm:48
#, fuzzy, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr "dalam"

#: security/l10n.pm:49
#, c-format
msgid "Run the daily security checks"
msgstr ""

#: security/l10n.pm:50
#, c-format
msgid "Check additions/removals of sgid files"
msgstr ""

#: security/l10n.pm:51
#, fuzzy, c-format
msgid "Check empty password in /etc/shadow"
msgstr "kosong dalam"

#: security/l10n.pm:52
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr ""

#: security/l10n.pm:53
#, c-format
msgid "Check additions/removals of suid root files"
msgstr ""

#: security/l10n.pm:54
#, fuzzy, c-format
msgid "Report unowned files"
msgstr "Semua Fail Imej"

#: security/l10n.pm:55
#, fuzzy, c-format
msgid "Check files/directories writable by everybody"
msgstr "fail"

#: security/l10n.pm:56
#, fuzzy, c-format
msgid "Run chkrootkit checks"
msgstr "Papar arahan laksana"

#: security/l10n.pm:57
#, c-format
msgid "Do not send empty mail reports"
msgstr ""

#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""

#: security/l10n.pm:59
#, c-format
msgid "Report check result by mail"
msgstr ""

#: security/l10n.pm:60
#, c-format
msgid "Run some checks against the rpm database"
msgstr ""

#: security/l10n.pm:61
#, c-format
msgid "Report check result to syslog"
msgstr ""

#: security/l10n.pm:62
#, c-format
msgid "Reports check result to tty"
msgstr ""

#: security/level.pm:10
#, c-format
msgid "Disable msec"
msgstr ""

#: security/level.pm:11
#, c-format
msgid "Standard"
msgstr "Piawai"

#: security/level.pm:12
#, fuzzy, c-format
msgid "Secure"
msgstr "Keselamatan"

#: security/level.pm:40
#, c-format
msgid ""
"This level is to be used with care, as it disables all additional security\n"
"provided by msec. Use it only when you want to take care of all aspects of "
"system security\n"
"on your own."
msgstr ""

#: security/level.pm:43
#, fuzzy, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr "Internet."

#: security/level.pm:44
#, fuzzy, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr "terima on Internet."

#: security/level.pm:51
#, c-format
msgid "Security"
msgstr "Keselamatan"

#: security/level.pm:51
#, fuzzy, c-format
msgid "DrakSec Basic Options"
msgstr "Pilihan Dua-Arah"

#: security/level.pm:54
#, fuzzy, c-format
msgid "Please choose the desired security level"
msgstr "Sila pilih tahap keselamatan untuk sistem."

#. -PO: this string is used to properly format "<security level>: <level description>"
#: security/level.pm:58
#, c-format
msgid "%s: %s"
msgstr ""

#: security/level.pm:61
#, fuzzy, c-format
msgid "Security Administrator:"
msgstr "Sekuriti dan Privasi"

#: security/level.pm:62
#, c-format
msgid "Login or email:"
msgstr ""

#: services.pm:19
#, fuzzy, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lanjutan Bunyi"t" button being packed too far) (pixel)

* Wed Mar  5 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-14mdk
- localedrake: fix behaviour when only one lang is available (clicking
  on "cancel" on the country selection didn't cancel it)
- drakconnect: fixes in isdn configuration (flepied)
- drakperm (tv):
  o fix #1776
  o fix small memory leak (tree iterators)
  o restore edit dialog on doble click
- logdrake: restore "pre gtk+-2 port" search  behavior (tv)
  o empty log buffer on search startup
  o freeze buffer while searching
  o scroll down the log buffer on filling
- localedrake: don't categorize langs, for better looking (since
  most people will have very few of them) (gc)
- fixed wizard mode not taken into account for drakconnect in
  drakconf. (francois)
- fixed expert mode in drakconnect for dhcp for cleaning
  variables. (francois)
- fixed not to use invalid ethX. (francois)

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-13mdk
- drakboot: fix #2091, #2480

* Mon Mar  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-12mdk
- drakperm: fix rules saving
- printerdrake: various fixes (till)

* Fri Feb 28 2003 Guillaume Cottenceau <gc@mandrakesoft.com> 9.1-11mdk
- drakconnect is no more supporting profiles. (francois)
- drakconnect support for sagem Fast 800 used by free.fr (francois)
- drakconnect support for ltmodem. (francois)
 
* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-10mdk
- harddrake service: 
  o offer to configure cdrom/dvd/burners/floppies/
    and the like mount points
  o configure firewire controllers
- diskdrake fixes (pixel)
- drakconnect fixes (francois)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-9mdk
- drakconnect: 
  o fix lan configuration window filling
  o fix net configuration window sizing
- drakperm: make it fit better in both embedded and non embedded modes
- drakgw: fix embedding
- logdrake: fix scrolling for embedded explanations
- mousedrake: fix embedding  (gc)

* Thu Feb 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-8mdk
- drakfloppy gtk+2 port
- drakboot:
  o cleanups
  o disable autologin settings when autologin is disabled
  o make embedded app look better
- harddrake2: 
  o fix #1858 (usb adsl speed touch modem misdetection)
  o provides "options" and "help" pull down menu when embedded
  o detect firewire controllers
- drakedm: strip empty lines
- lot of network fixes (francois)
- drakbackup gtk+2 port fixes: #1753, #1754, #1933, #2159 (stew)

* Tue Feb 25 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-7mdk
- drakfloppy: 
  o fix #1761
  o only list physically present floppies
- harddrake gui:
  o better support for zip devices
  o removable devices cleanups
  o display dvd/burning capacities
- harddrake service:
  o do not flash the screen if nothing has to be configured
  o removable devices cleanups
- fix #1802 (pixel)

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-6mdk
- fix logdrake's mail alerts (services alert, don't crash)
- drakperm: fix #1771, non editable combo1
- drakfloppy: fix #1760
- drakxservices: fix #502

* Mon Feb 24 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-5mdk
- clean up tools embeddeding in the mcc
  o make it hard to freeze the mcc
  o make tools loo better when embedded (no embedded wait messages,
    ...)
- harddrake2:
  o add "/dev" to devfs paths
  o do not offer to configure module when there's no module or when
    driver is an url or a graphic server
  o fix embedding

* Fri Feb 21 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-4mdk
- drakconnect fixes

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-3mdk
- drakboot: fix #1922
- drakgw, drakboot: remove gtk+ warnings
- harddrake2: fix latest l10n bugs
- disdkrake fixes (pixel)
- drakconnect: dhcp fix (poulpy)
- printerdrake fix (pixel)

* Thu Feb 20 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-2mdk
- logdrake: fix #1829
- translation updates
- scannerdrake:fix embedding
- drakxtv: workaround a drakx bug which don't always add bttv to
  /etc/modules (fix #)
- printerdrake:
  o fix embedding
  o hide the icon when embedded to get more space
  o various improvements (till)
- drakfont: fc-cache enhancement (pablo)
- drakTermServ: fix #1774, #1775 (stew)
- newt bindind: better trees managment on console (pixel)
- diskdrake fixes (pixel)
- xfdrake: log failure sources (pixel)

* Tue Feb 18 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-1mdk
- fix "nothing to edit" in drakperm (#1769)
- fix draksec help
- drakedm: fix badly generated config file by 3rd party progs
- i18n fixes (pablo, gc)
- scannerdrake updates (till)
- diskdrake fixes: raid, ... (pixel)
- printerdrake fixes (till)
- drakconnect fix (poulpy)

* Mon Feb 17 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.34mdk
- Fixed automatic print queue generation for HP DeskJet 990C.

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.33mdk
- fix wizard mode (pixel)

* Mon Feb 17 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.32mdk
- harddrake: fix #1718
- translation snapshot

* Sun Feb 16 2003 Till Kamppeter <till@mandrakesoft.com> 9.1-0.31mdk
- Various fixes/improvements on printerdrake:
  o Restructured function "main()"
  o Auto-generation of print queues during installation
  o Support for unknown printers in auto-detection and auto-generation of
    print queues
  o Fixed display of printer help pages
  o Fixed determination of default printer

* Fri Feb 14 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.30mdk
- drakperm fixes
- drakfont fixes

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.29mdk
- fix gc breakage

* Thu Feb 13 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.28mdk
- vastly improved scannerdrake (till):
  o fixed scsi/usb/parrallel scanners detection
  o new known scanners
  o support scanners with multiple ports 
  o better configuration files
  o fix "SnapScan" <-> "snapscan" bug
  o fix "HP scanners had no manufacturer field"
- drakxservices fixes (pixel)

* Wed Feb 12 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.27mdk
- fix embedded drakconnect: 
  o no crash on expert "configure" buttons
  o better behaviour when buttons are hidden/showx
- harddrake/draksound: card list update
- pixel:
  o diskdrake: 
    * discrimate hpfs and ntfs
    * more precise message when formatting / fsck'ing / mounting
      partitions
    * hide passwords for smb mount points
  o XFdrake: fix #707
- drakperm: first gtk+2 port fixes, still more to come (pouly & me)
- fix drakbug help (daouda)
- drakconnect fixes (frederic lepied)
- updated translations (pablo)

* Fri Feb  7 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.26mdk
- drakconnect : dhcp & zeroconf fixes
- drakfont : full Gtk2

* Thu Feb  6 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.25mdk
- drakconnect fixes

* Thu Feb  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.24mdk
- fix drakfloppy
- diskdrake: s/fat/windows/ because of ntfs
- poulpy:
  o drakfont updates
  o drakconnect fixes
- translation updates (pablo & co)
- add drakedm to choose display manager
- drakhelp: install help on demand (deush)
- harddrake2: fix for rtl languages

* Wed Feb  5 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.23mdk
- draksec cleanups
- fix harddrake2 embedding in mcc
- update translations (pablo)

* Tue Feb  4 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.22mdk
- add support for adiusbadsl 1.0.2 (fponsinet)
- faster draksec shutdown

* Mon Feb  3 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.21mdk
- draksec:
  o gui look nicer
  o add help for check cron 
  o fix "first notebook page do not show up"
  o do not be listed in drakxtools-http
  o faster startup
- sanitize draxktools-http service script
- diskdrake: ntfs resizing bug fixes (pixel)

* Fri Jan 31 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.20mdk
- drakconnect: add more zeroconf support

* Thu Jan 30 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.19mdk
- printerdrake: fixes for new foomatic
- requires a recent enought perl-GTK2
- harddrake2:
  o fix misdetection of nvnet part of nvforce2 chips
  o move nforce system controllers in bridge class (which is renamed
    "bridges and system controllers")
  o mark class names as being translatable
- logdrake works again in both embedded and non embedded cases
- translation updates, add Tajiki (pablo)
- interactive: add support for trees on console (pixel)
- diskdrake: ntfs resizing support (pixel) (acked by ntfsresize author)

* Wed Jan 29 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.18mdk
- fix locales managment for non interactive tools (aka pure gtk+ tools)
- harddrake2:
  o restore cd/dvd burners detection
  o fix doble detection of pci modems
  o don't display vendor & description when we don't have them for ata disks
  o fix ghost modem detection
  o logdrake is embeddable again

* Tue Jan 28 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.17mdk
- drakfont updates (poulpy):
  o fix progress bar,
  o about box,
  o ugly border when embedded.
- printerdrake: various fixes for local printer (till)
- small fix in drakgw (florin)

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.16mdk
- fix wait messages (gc)
- vietnamese translation update

* Mon Jan 27 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.15mdk
- diskdrake:
  o make sub window be modal
  o fix text mode (pixel)
- drakconnect: 
  o don't log actions not done
  o fix modem detection (poulpy)
  o cleanups (poulpy, pixel)
- draksound: remove last source of "unlisted driver" because of hand
  edited /etc/modules.conf
- drakxtv: add test mode
- fix encoding conversions for non latin1 (gc)
- harddrake2:
  o use new help system
  o make sub window be modal
  o configure sound slots on bootstrapping
- logdrake:
  o don't display "wait while parsing" window when embedded in mcc
  o log all drakx tools (not only the first one)
- mousedrake: cleanups (pixel, gc)
- printerdrake: updates for new foomatic (till)
- requires old perl-gtk for drakfloppy and net_monitor which works
  again
- translation updates (pablo)
- xfdrake: various fixes (pixel)

* Fri Jan 24 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.14mdk
- drakconnect :
  o get back serial modem detection

* Thu Jan 23 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.13mdk
- fix standalone apps error on --help
- many enhancements to draksound:
  o no more unlisted message
  o "how to debug sound problem" window
  o offer to pick any driver if no detected sound card (for eg isa
    card owners) or if no alternative driver 
  o handle proprietary drivers
  o fix unchrooted chkconfig call
- draksec: display help in tooltips
- drakconnect :
  o cleaning (poulpy, me)
  o zeroconf support (poulpy)
- big interactive cleanup for drakx and focus handling (pixel)
- boot floppy fixes (pixel)
- diskdrake: don't display twice the same mount point (pixel)
- keyboardrake:
  o cleanups (pixel)
  o update supported keyboard layouts ... (pablo)
- xfdrake: (pixel)
  o cleanups
  o don't use anymore qiv to render background while testing X config
- add drakpxe (francois)
- printerdrake:
  o updates (till)
  o fix chrooted services (me)
- translation updates (many people)
- mousedrake: fix scrolling test (gc)
- ugtk2: fix some (small) memory leaks (gc)
- ppc updates (stew)
- english sentences proofreading (pablo, stew)
- fix gtk+-2 port of mousedrake (me), 

* Fri Jan 17 2003 Damien Chaumette <dchaumette@mandrakesoft.com> 9.1-0.12mdk
- drakconnect : 
  o little dhcp behavior rework
  o fix /etc/hosts localdomain
 
* Thu Jan 16 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.11mdk
- snapshot

* Thu Jan 09 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.10mdk
- draksound : fix and update driver list
- printerdrake: fix staroffice/ooffice configuration (till)

* Tue Jan 07 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.9mdk
- fix wizards

* Tue Jan  7 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.8mdk
- update french translation
- harddrake: treat usb hubs as usb controllers
- logdrake: set it non editable
- printerdrake:
  o simplify gimp-print configuration 
  o let it work
- various cleanups (pixel)
- standalone tools: first help system bits (deush)

* Mon Jan  6 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.7mdk
- printerdrake fixes

* Thu Jan  2 2003 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.6mdk
- embedding fixes
- wizard fixes
- fix permissions setting
- internals cleanups
- drakconnect & printerdrake fixes
- gtk+-2 fixes
- faster xfdrake startup
- translations update
- fix redefinition warnings

* Mon Dec 30 2002 Stefan van der Eijk <stefan@eijk.nu> 9.1-0.5mdk
- BuildRequires: perl-MDK-Common-devel

* Thu Dec 19 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.4mdk
- gtk+2 snapshot

* Wed Dec 04 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.3mdk
- snapshot for mcc

* Mon Nov 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.2mdk
- more printerdrake redesign
- more perl_checker fixes
- standalone : provide a common cli options/help manager
- logdrake : use my_gtk to transparently handle embedding and ease future gtk2 port
- kill dead code

* Fri Nov 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 9.1-0.1mdk
- bump version
- add missing printer/ directory
- typo fix in drakxtv

* Thu Nov 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.12-1mdk
- printerdrake cleanups
- various perl lifting
- harddrake:
  o display floppy driver type as well as mouse type & network printer port
  o fix vendor/model spliting for eide disks when there's neither
    space nor separator
  o v4l card lists : resync with latest bttv & saa7134 drivers

* Mon Nov 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-3mdk
- bug fix (most drakxtools)

* Sun Nov 10 2002 Pixel <pixel@mandrakesoft.com> 1.1.11-2mdk
- bug fix (printerdrake, netconnect)

* Thu Nov  7 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.11-1mdk
- harddrake:
  o only display "selected" fields, skip other (aka only display
    fields we described)
  o print name and value of skipped fields on console
  o only display help topics related to currently displayed fields in
    right "information" frame
  o if no device selected, display a message explaining the help dialog
  o don't display modem when there're none
  o describe most cpu fields
  o simplify the coloring logic

- detect_devices :
  o getModem() : simplify
  o getCPUs() : fix cpu fields parsing

* Wed Nov  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-4mdk
- s/_(/N(/

* Tue Nov 05 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-3mdk
- rebuild for newt

* Mon Nov  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-2mdk
- snapshot

* Wed Oct 16 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.10-1mdk
- harddrake :
  o try to discriminate webcams from video cards
  o fix not displayed unknow devices
- detection engin :
  o update eide vendors list
  o detect cpus
  o adsl work (damien)
- drakbug:
  o make ui faster
  o fix displayed result when the package isn't installed
- drakTermServ : fixes (stew)
- smb updates (stew)
- fix broken danish translations (wrong unicode encoding) (pablo)
- update other translations by the way (pablo)

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-53mdk
- remove useless warnings from harddrake

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-52mdk
- fix draksec

* Fri Sep 20 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-51mdk
- printerdrake: various fixes (till)
- drabug:
  o fix spurious '1' file creation
  o don't print error messages when a program isn't found

* Tue Sep 17 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-50mdk
- draksec:
  o add ignore option to pull-down list
  o remove not anymore used libsafe option
  o save items
  o reread already set item

* Tue Sep 17 2002 Warly <warly@mandrakesoft.com> 1.1.9-49mdk
- printerdrake fix for webfetch

* Mon Sep 16 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-48mdk
- fix die wizcancel in non wizard mode (dams sucks?)

* Sat Sep 14 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-47mdk
- fix printerdrake network scanning for printers/print servers hangs
  on with firewalled machines (till)
- fix printerdrake curl dependancy break urpmi (till)
- obsoletes drakfloppy (daouda)

* Thu Sep 12 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-46mdk
- fix broken net_monitor

* Thu Sep 12 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-45mdk
- try to fix drakgw & drakfirewall thx to pixel and florin
- fix drakfloppy and logdrake (tv)

* Wed Sep 11 2002 Damien Chaumette <dchaumette@mandrakesoft.com> 1.1.9-44mdk
- drakconnect :
  o fix RTC, ISDN detection
  o fix pcmcia cards detection / module list
  o check DNS and Gateway IPs

* Mon Sep  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-43mdk
- move back draksec to drakxtools
- harddrake:
  o don't pollute sbin namespace with one shot scripts
  o add run wrapper script for harddrake service
  o disable ?dm part
- draksound:
  o really display default driver
  o wait message while switching
- update translations

* Sat Sep  7 2002 Daouda LO <daouda@mandrakesoft.com> 1.1.9-42mdk
- cvs up before packaging (fix messy drakboot conf). 

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-41mdk
- fix harddrake service, run non essential checks after dm start

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-40mdk
- harddrake:
  o fix usb mouse detection
  o list --test in -h|--help
  o enhanced draksound :
    * blacklist cs46xx and cs4281 drivers : we won't unload these
      drivers since they're know to oopses the kernel but just warn
      the user
    * chroot aware - can be used in drakx
    * workaround alsaconf's aliases
    * add an help button that describe ALSA and OSS
    * display current driver, its type (OSS or ALSA), and the default
      driver for the card
    * if there's no (usb|pci) sound card, print a note about sndconfig
      for isa pnp cards

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-39mdk
- Re-add old obsolete Aurora's images needed by drakboot (this is stupid)

* Fri Sep 06 2002 David BAUDENS <baudens@mandrakesoft.com> 1.1.9-38mdk
- Update mdk_logo.png
- Update drakbackup icons

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-37mdk
- drakperm, drakbackup: fix embedded mode

* Fri Sep  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-36mdk
- gtkicons_labels_widget() :
  o add support for mcc' big icon animation
  o cleanups
  o simplify notebook redrawing vs flick/icon_aligment

* Thu Sep  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-35mdk
- Update banners (David Baudens)
- my_gtk snapshot for rpmdrake (gc)

* Wed Sep  4 2002 Stew Benedict <sbenedict@mandrakesoft.com> 1.1.9-34mdk
- add perl-Expect requires for drakbackup (now enabled)

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-33mdk
- harddrake: fix scrolling tree

* Wed Sep  4 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-32mdk
- embbed drakbackup

* Wed Sep  4 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-31mdk
- snapshot for gtktext_insert with color/font capabilities (rpmdrake)

* Tue Sep  3 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-30mdk
- ugtk:
  o better fix for glib warning that don't make drakx feel mad
  o make icons more transparent when selected in mcc

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-29mdk
- harddrake:
  o use new icons
  o add menu icon
- mcc: ensure all binaries're there
- ugtk: remove all glib warnings

* Mon Sep  2 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-28mdk
- tinyfirewall is now drakfirewall (daouda)

* Fri Aug 30 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-27mdk
- ugtk: add alpha blendering support for mcc's icons through pixbufs
  o readd gdkpixbuf support
  o ensure imlib is used by default to load files, not gdk-pixbuf
  o compose_with_back(): load a png icon into a pixbuf and call
    compose_pixbufs with background pixbuf
  o compose_pixbufs(): render transparent icon onto background into a
    new pixbuf
  o merge gtkcreate_png_pixbuf() from gdk-pixbuf-0-branch : load an
    icon into a pixbuf
    gdk-pixbuf-0-branch also uses it to simplify a lot of code
  o gtkicons_labels_widget() :
    * add a new background pixbuf parameter that'll be composited with icons
    * render icons with alpha blender in right area
    * kill imlib_counter
    * kill imlib usage for 
    * kill dead code (was dead since i fixed mcc memory leaks)
- fix init-script-without-chkconfig-{post,preun}

* Thu Aug 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-26mdk
- harddrake: 
  o quit button really work in embedded mode
  o move so called eide raid controllers from unknown to ata
    controllers
- logdrake: add a scrollbar when embedded in mcc

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-25mdk
- snapshot (drakupdate_fstab --auto feature (pixel), logdrake don't
  display too much information in explanations to save space for what's
  useful)

* Thu Aug 29 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-24mdk
- snapshot for display_info availability in ask_browse for rpmdrake

* Thu Aug 29 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-23mdk
- drakupdate_fstab first appearance

* Wed Aug 28 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-22mdk
- harddrake: don't display the menu bar in embedded mode, but a "quit"
  button

* Tue Aug 27 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-21mdk
- drakconnect fixes (damien)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-20mdk
- draksound: display right message ("no alternative") when no
  alternative rather than "no known module"
- fixes for multiple NIC boxes (florin)

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-19mdk
- draksound: use right sound slot

* Fri Aug 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-18mdk
- ugtk: fix most mcc memory leaks (pending ones seems related to perl-gtk)
- tinyfirewall: misc fixes (pixel)

* Fri Aug 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-17mdk
- snapshot (including new tinyfirewall)

* Thu Aug 22 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-16mdk
- snapshot (for rpmdrake)

* Wed Aug 21 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-15mdk
- add draksound
- mousedrake: default usbmouse link to input/mice rather than
  input/mouse0, thus giving support for multiple mouse, wacom tables,
  ...

* Wed Aug 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-14mdk
- fix dangling waiting watch mousecursor (well, please test!)
- adding draksplash (nathan)

* Mon Aug 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-13mdk
- snapshot (including better XFdrake)

* Wed Aug 14 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-12mdk
- snapshot (fix diskdrake making a hell of fstab)

* Tue Aug 13 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-11mdk
- snapshot (including "diskdrake --dav")

* Mon Aug 12 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-10mdk
- snapshot (various bug fixes including no-floppy-box-segfault)

* Fri Aug  9 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-9mdk
- harddrake:
  o module configuration window:
    * read current options
    * don't display ranges, we cannot really know when a range
      is needed and so display them in wrong cases
    * read & parse modules.conf only when configuring the module,
      not on each click in the tree
    * don't display ranges, we cannot really know when a range is needed 
      and so display them in wrong cases (kill code, enable us to simplify
      modparm::parameters after

* Fri Aug  9 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-8mdk
- snapshot

* Tue Aug  6 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-7mdk
- harddrake, scannerdrake: add scsi scanner detection support
- harddrake: detect external modems

* Tue Aug  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-6mdk
- rebuild for perl thread-multi

* Mon Aug  5 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-5mdk
- snapshot for rpmdrake

* Fri Aug  2 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-4mdk
- have interactive::gtk::exit in my_gtk so that my_gtk apps can call
  it and then fix the problem of clock mouse cursor on exit

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.9-3mdk
- keyboarddrake now handles choosing toggle key (XkbOptions)

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.9-2mdk
- remove obsoleted drakconf
- various fixes
- [ugtk::gtkcreate_png] suppress all gtk warnings
- updated vietnamese translation (pablo)
- [interactive::gtk] fix many warnings when {icon} is not given (pixel)

* Thu Aug  1 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.9-1mdk
- integrate patches in my_gtk and ugtk for new rpmdrake:
  - [ugtk] add "gtkentry" so that we can create an entry and set
    initial value in one call
  - [my_gtk::main] don't set the events, to fix keyboard focus
    problem in entries when embedded
  - [my_gtk::_create_window] add $::noBorder, to not have a frame
    in the main window, so that it's possible to end up with
    windows with no border
  - [my_gtk] add ask_dir which is a ask_file with only the dir list
  - [my_gtk] add ask_browse_tree_info to the export tags, and:
    - add support for parents with no leaves, so that then we can
      partially build the trees (for speedup)
    - add "delete_all" and "delete_category" callbacks
    - use Gtk::CList::clear when removing all the nodes, much
      speedup
- Titi, harddrake :
	o workaround for the busy mouse cursor set by
	  gtkset_mousecursor_wait() in my_gtk::destroy
	o remove debugging prints
	o cleanups
    - drakx: various cleanups

* Thu Aug  1 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-16mdk
- my_gtk:
	o splitup it into my_gtk and ugtk as done by dams
	o resync with dams
	o increase the icon blinkage from 50ms to 100ms
- harddrake: 
	o use new embedded managment

* Thu Aug  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-15mdk
- harddrake (titi):
	o add embedded mode for drakconf
	o print less gtk warnings
	o module configuration window
- fix mousedrake
- fix XFdrake in embedded
- enhance XFdrake
- don't require detect-lst (titi)
- printerdrake work in progress (till)

* Wed Jul 31 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-14mdk
- harddrake:
	o fix pcmcia network card detection (unknown => ethernet)
	o fix scsi detection :
		* fix SCSI controllers detection (unknown => scsi controllers)
		* fix misdetection of scsi devices as scsi host adapter
		* fix double scsi devices detection (both unknown and real
		  category)
- updated translations
- fix mousedrake (pixel)
- drakbug, drakbackup: spell/i18n fixes (pixel, me)
- xfdrake: fixes (pixel)
- new draksex (stew)
- diskdrake: (pixel)
	o fix LVM on RAID
	o explain the pb when maximal number of primary partitions is reached

* Mon Jul 29 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-13mdk
- harddrake:
	o service: fix config file conversion
	o harddrake::ui :
	  * s/channel/Channel/
	  * bus_id is for usb devices too
	  * remove obsolete fields info and name
	  * add nbuttons, device, old_device descriptions
- updated XFdrake (gtk resolution chooser work, i810 fixes, ...) (pixel)
- remove "Requires: groff" (nobody know why it's there) (Pixel)
- updated translations (nl/id/vi)
- standalone/logdrake: (deush)
	o don't display services that are not installed
	o word wrap string correctly
	o cleanup
- bootloader.pm: (pixel)
	o let the bootloader::mkinitrd error be seen by the GUI
	o fix dying when mkinitrd doesn't create an initrd
- interactive.pm: error messages fixes (pixel)
- diskdrake: add 0x35 partition table id meaning JFS (under OS/2)
  (thank to Mika Laitio)
- printerdrake: first step of automatic HP multi-function device
  configuration with HPOJ 0.9. (till)
- drakTermServ (stew)
	o Check for/install terminal-server and friends.
	o More intelligent error message when mkisofs fails.
	o  Cleanup code for use strict.
	o Fix crash when no backup dhcpd.conf.
- drakbackup: (stew)
	o Numerous GUI crash fixes, oddities. 
	o Install	needed packages.
	o Fix email, daemon modes.
	o Add rsync, webdav, cd, tape capabilities. 
	o Consolidate net method setup screens.
	o Add CD device capability query.

* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-12mdk
- simplify harddrake service:
	o we don't need to set media_type, we don't use it
	o mouse and mass storage media use the same key, let merge their
	  code path
	o merge timeout and cancel cases

- harddrake::data : only do one probeall here (there's still many in
  detect_devices, probing caching should go there)

- harddrake:ui : 
	o add a fields data structure:
		* put together field translation and field description
		* this enable to get rid of %reverse_fields usage & creation
		* this ensure all field names & translations are marked
		  translatables for gettext
		* move $wait declaration around its usage and explicit its
            destruction
		* remove usb debugging message needed to trace the null
		  description bug i fixed in ldetect
		* simplify the device fields rendering "because of" the
            above
		* simplify the help window creation/display/destruction
		  (only one statement left)
	o explicitely call interactive->exit
	o remove all "no signal to disconnect" gtk+ warnings 


* Thu Jul 25 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-11mdk
- rebuild against new libldetect (fix (null) descriptions)
- new XFdrake (pixel)
- harddrake:
	o devfs names
	o scanner support;
		* don't account scanners as unknown devices
		* split scannerdrake:val into vendor and description
		* don't display bogus "val:%HASH"
- updated translations (fr, pl)
- tools can be runned on console again

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-10mdk
- harddrake :
	o remove - between vendor and model for ibm eide disks
	o network devices are configurable again now
- draksec : typo fix (deush)

* Tue Jul 23 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-9mdk
- harddrake :
	o don't show "cancel" button in about and help windows
	o service: convert config file from plain perl to Storable binary
	  file (faster startup)
- general reorganization cleanup:
    o move interactive_* into interactive::*
    o move partition_table_* into partition_table::*
- XFdrake: more cleanups (pixel)

* Sun Jul 21 2002 Pixel <pixel@mandrakesoft.com> 1.1.8-8mdk
- new snapshot (beware of XFdrake)

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-7mdk
- remove last draknet reference in harddrake::ui
- disable diagnostics and strict mode

* Thu Jul 18 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-6mdk
- able to restart WindowMaker if needed
- draknet is dead; vival el drakconnect
- devices managment:
	o no need to write /etc/sysconfig/harddrake2/previous_hw in
  	  %%post since harddrake2 service doesn't configure anything if
  	  previous config was empty
	o fix usb mac mouse detection
	o move scsi/ata controllers, burners, dvd, ... from
	  unknown/others into their own"non configurable" sections
	o fix problems with usb-interface
- XFdrake: big cleanup
- general cleanups
- translation updates

* Thu Jul 11 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-5mdk
- drakx :
	o code enhancement: increase coherency around the whole drakx
	  code regarding devices
	o decrease the debug verbosity
- harddrake2 :
	o i18n:
		* move $version out of translatable strings
	o ui:
		* increase default main window size
		* put back the hw tree root
		* eide devices: split info between vendor and model strings
- spec :
	o fix parrallel build
	o list and describe all gui tools from drakxtools

* Wed Jul 10 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-4mdk
- fix perl depandancy

* Tue Jul 09 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-3mdk
- harddrake2:
	o no need to 'use strict' in "binary" => remove warnings 
	o fix boot freeze on hw change: initscript was running us with
	  stdout redirected to /dev/null; just use a small sh wrapper to
	  fix it
	o harddrake::bttv: only log in standalone mode
	o display channel of eide devices 

- spec:
	o reorder entries in description
	o list all entries in first line of description
	o fix post: add start argument

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-2mdk
- spec :
  o enhance descriptions
  o various spec clean
  o harddrake :
 	* obsoletes/provides libdetect-lst, libdetect-lst-devel, detect,
	  detect-lst, kudzu-devel
	* split package between harddrake and harddrake-ui to minimize
    	  the harddrake service dependancies
	* add missing /etc/sysconfig/harddrake2
- harddrake2 :
  o cache detect_devices::probeall(1) so that hw probe is run once
  o hw configuration :
  	* eide devices: split up info field into vendor and model fields
  o ui:
	* enhanced help
	* mice:
		- s/nbuttons/Number of buttons/ 
		- delete qw(MOUSETYPE XMOUSETYPE unsafe)
	* complete help
	* center the main window
	* remove drakx decorations
	* don't display "run config tool" button if no configurator
	  availlable
  o logic:
	* skip configuration on firt run
	* don't restart harddrake on install
	* skip hw classes without configurator (which'll have a
	  configurator after porting updfstab)
  o service :
	* only do the job at startup
	* add "please wait" message
	* really don't cry when no previous config

* Mon Jul 08 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.8-1mdk
- snapshot
- new entries: 
	o harddrake2 : new hardware detection && configuration tool
	o drakbugreport: bug reporting tool a la Kde (not working!)
	o drakTermServ : configuration tool for diskless stations.
- updated programs :
	o drakxtv: if runned by root, offer to configure bttv for most tv cards
	o disdrake:
		* enhanced raid & lvm support,
		* check if programs (ie jfsprogs) are installed
		* cleanups
	o Xconfigurator: bug fix
- general : better supermout support, use new libldetect, various bug fixes

* Tue Jun 18 2002 Frederic Lepied <flepied@mandrakesoft.com> 1.1.7-99mdk
- added new draksec from Christian and a new way to build the packages (make rpm)

* Mon Apr 15 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-98mdk
- snapshot
- add drakxtv description
- drakxtv : now auto guess the country and the freq table

* Fri Mar 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-97mdk
- snapshot. final release 1

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-96mdk
- added onboot options foreach network cards
- resolv.conf and domain name bug fixed

* Tue Mar 12 2002 dam's <damien@mandrakesoft.com> 1.1.7-95mdk
- included drakproxy
- corrected various timeout (net_monitor, internet connection tests)
- snapshot

* Mon Mar 11 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-94mdk
- various

* Fri Mar  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-93mdk
- drakfont GUI corrected
- new drakproxy

* Fri Mar 08 2002 François Pons <fpons@mandrakesoft.com> 1.1.7-92mdk
- fixes for NVIDIA drivers support in XFdrake.

* Thu Mar  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-91mdk
- lot of bugfixes
- (dams)
	* standalone/net_monitor: make gc happy
	* modparm.pm, share/po/fr.po: corrected
	* standalone/draknet: corrected network/internet restart when already
	connected
	* standalone/drakfont: corrected bad system command
	* standalone/drakautoinst: corrected HASH and ARRAY label
- (gc)
	* standalone/drakgw: 
	  - call net_monitor to disable internet connection before
	    network-restart
	  - user return value when status'ing the
	  initscripts rather than grepping their text output
- (pixel)
	* standalone/fileshareset (nfs_exports::update_server): ensure portmap
	is running

* Wed Mar  6 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-90mdk
- corrected font in wizard (dams)
- localedrake: (pixel)
  * fix dummy entries in .i18n for chineese
  * take sysconfig/i18n into account when no .i18n
  * when called by kcontrol with --apply, don't modify kde config files,
    kcontrol takes care of it more nicely
- diskdrake: translate actions in text mode (pixel)
- drakxtv fixed (titi)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-89mdk
- (gtkicons_labels_widget): pass the widget instead of directly passing the font
  (for drakconf)

* Sun Mar  3 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-88mdk
- (gtkicons_labels_widget): pass the style instead of directly passing the font
  (for drakconf)

* Fri Mar  1 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-87mdk
- new snapshot (including a modified localedrake)

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-86mdk
- corrected modinfo path. isa modules options should now work.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-85mdk
- corrected spec so that net_monitor.real get included too.

* Thu Feb 28 2002 dam's <damien@mandrakesoft.com> 1.1.7-84mdk
- snapshot

* Wed Feb 27 2002 dam's <damien@mandrakesoft.com> 1.1.7-83mdk
- snapshot

* Tue Feb 26 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-82mdk
- move XFdrake to drakxtools from drakxtools-newt 
(otherwise it doesn't work, since it needs perl-GTK & xtest)

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-81mdk
- added groff require

* Tue Feb 26 2002 dam's <damien@mandrakesoft.com> 1.1.7-80mdk
- isa card modules correction. Should work in post install
- drakfont correction

* Sat Feb 23 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-79mdk
- require latest perl-MDK-Common
- corrected icon paths (thanks to garrick)
- don't create devices when /dev is devfs mounted (thanks to Andrej Borsenkow)

* Fri Feb 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-78mdk
- corrected icon paths

* Thu Feb 21 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-77mdk
- now we can live without kdesu ; and drakxtools-newt only requires
  usermode-consoleonly

* Tue Feb 19 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-76mdk
- fix diskdrake --nfs & --smb

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-75mdk
- required specific version of perl MDK Common

* Tue Feb 19 2002 dam's <damien@mandrakesoft.com> 1.1.7-74mdk
- various things not described by the last packager
- new png/wpm search policy in my_gtk

* Mon Feb 18 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-73mdk
- snapshot

* Sat Feb 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-72mdk
- localedrake now handles KDE
- diskdrake now handles XFS on LVM live resizing (growing only)

* Fri Feb 15 2002 dam's <damien@mandrakesoft.com> 1.1.7-71mdk
- snapshot

* Thu Feb 14 2002 dam's <damien@mandrakesoft.com> 1.1.7-70mdk
- snapshot

* Mon Feb 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-69mdk
- fixed bad stuff.so in drakxtools

* Fri Feb  8 2002 dam's <damien@mandrakesoft.com> 1.1.7-68mdk
- new gfx
- various fix
- major printerdrake updates

* Thu Feb 07 2002 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.7-67mdk
- add drakxtv

* Thu Feb  7 2002 dam's <damien@mandrakesoft.com> 1.1.7-66mdk
- new package, various wizard, mygtk, disdrake improvment.

* Wed Feb  6 2002 dam's <damien@mandrakesoft.com> 1.1.7-65mdk
- logdrake updates
- wizard fix

* Tue Jan 29 2002 dam's <damien@mandrakesoft.com> 1.1.7-64mdk
- last mygtk, drakbackup...
- disdrake fixed
- snapshot

* Sun Jan 27 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-63mdk
- cleanup drakxtools-newt (move all gtk stuff to drakxtools)
- reworked and split diskdrake
- add logdrake

* Fri Jan 25 2002 dam's <damien@mandrakesoft.com> 1.1.7-62mdk
- bug corrections, improvements
- new advertising engine
- new gtkicons_labels_widget

* Tue Jan 22 2002 dam's <damien@mandrakesoft.com> 1.1.7-61mdk
- new gtkicons_labels_widget for new mcc.

* Fri Jan 18 2002 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-60mdk
- first support for 'Explanations'

* Fri Jan 18 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-59mdk
- Drakbackup without unstable options for qa. 
- DrakFont update warning message (qa).

* Wed Jan 16 2002 Pixel <pixel@mandrakesoft.com> 1.1.7-58mdk
- ensure lsnetdrake is included

* Tue Jan 15 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-57mdk
- Drakbackup daemon, backend mode (-show-conf -daemon -debug -help -version) and report mail corrections.
- DrakFont gi and progress bar problems.

* Tue Jan 14 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-56mdk
- New drakbackup version, ftp backup work, new pixmaps.
- DrakFont with new pixmaps. 

* Mon Jan 14 2002 Stefan van der Eijk <stefan@eijk.nu> 1.1.7-55mdk
- BuildRequires

* Fri Jan 11 2002 dam's <damien@mandrakesoft.com> 1.1.7-54mdk
- snapshot

* Wed Jan  9 2002 dam's <damien@mandrakesoft.com> 1.1.7-53mdk
- snapshot
- new code in my_gtk

* Tue Jan  8 2002 Sebastien Dupont <sdupont@mandrakesoft.com>  1.1.7-52mdk
- New drakbackup version, incremental backup and restore should work. 

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-51mdk
- fix  conflicts in drakbackup cvs version.

* Sat Dec 22 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-50mdk
- new drakbackup version.

* Mon Dec 10 2001 Sebastien Dupont <sdupont@mandrakesoft.com> 1.1.7-49mdk
- fix drakfont path problem.
- new version of drakbakup

* Wed Dec  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-48mdk
- corrected syntax error

* Tue Dec  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-47mdk
- avoid network test freeze
- added drackbackup
- snapshot

* Fri Nov 30 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-46mdk
- add diskdrake --fileshare

* Thu Nov 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-45mdk
- new diskdrake including fileshareset/filesharelist stuff

* Mon Nov 26 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-44mdk
- use the CVS, not my devel (instable) version

* Fri Nov 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-43mdk
- any.pm fixed

* Mon Nov 19 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-42mdk
- scannerdrake update to add dynamic support

* Mon Nov 12 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-41mdk
- scannerdrake update with new fat ScannerDB

* Mon Nov  5 2001 dam's <damien@mandrakesoft.com> 1.1.7-40mdk
- corrected typo in drakautoinst

* Fri Nov  2 2001 dam's <damien@mandrakesoft.com> 1.1.7-39mdk
- release

* Fri Oct 26 2001 dam's <damien@mandrakesoft.com> 1.1.7-38mdk
- drakautoinst & drakfont updated

* Thu Oct 25 2001 dam's <damien@mandrakesoft.com> 1.1.7-37mdk
- big improvement on drakautoinst
- draknet : connection script updated 

* Thu Oct 18 2001 dam's <damien@mandrakesoft.com> 1.1.7-36mdk
- draknet/net_monitor corrected
- corrected bad stuff.so

* Tue Oct 16 2001 dam's <damien@mandrakesoft.com> 1.1.7-35mdk
- make rplint happier

* Wed Oct 10 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-34mdk
- snapshot with scanner stuff

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-33mdk
- snapshot

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-32mdk
- Last translations.

* Mon Sep 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-31mdk
- snapshot. draknet bugfix.

* Sun Sep 23 2001 dam's <damien@mandrakesoft.com> 1.1.7-30mdk
- snapshot. Included last printer and draknet corrections.

* Fri Sep 21 2001 dam's <damien@mandrakesoft.com> 1.1.7-29mdk
- typo in adsl.pm, Xconfigurator fix.

* Thu Sep 20 2001 dam's <damien@mandrakesoft.com> 1.1.7-28mdk
- snapshot. draknet works now. 

* Wed Sep 19 2001 dam's <damien@mandrakesoft.com> 1.1.7-27mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-26mdk
- snapshot

* Mon Sep 17 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-25mdk
- snapshot

* Sat Sep 15 2001 dam's <damien@mandrakesoft.com> 1.1.7-24mdk
- snapshot with printer, draknet & install fixes

* Fri Sep 14 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-23mdk
- snapshot with latest XFdrake fixes.

* Fri Sep 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-22mdk
- snapshot

* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-21mdk
- fix Xinerama for Matrox cards (restore XFree86 4.1.0 without DRI).
- removed Modeline 1024x768 in 97.6 Hz which troubles XF4 a lot.

* Thu Sep 13 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-20mdk
- snapshot with XFdrake fixes (G550 support, no DRI with Xinerama,
  no XFree86 3.3.6 proposed wiht dual head).

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-19mdk
- snapshot

* Wed Sep 12 2001 dam's <damien@mandrakesoft.com> 1.1.7-18mdk
- snapshot.

* Mon Sep 10 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-17mdk
- remove dependency on "perl" since pixel added Data::Dumper in perl-base

* Mon Sep 10 2001 dam's <damien@mandrakesoft.com> 1.1.7-16mdk
- new snapshot, bug corrections.

* Thu Sep  6 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-15mdk
- drakgw should be working now

* Tue Sep 04 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-14mdk
- snaphsot, better interaction with mcc (diskdrake printerdrake).

* Tue Sep  4 2001 dam's <damien@mandrakesoft.com> 1.1.7-13mdk
- snapshot.

* Thu Aug 30 2001 dam's <damien@mandrakesoft.com> 1.1.7-12mdk
- snapshot. locales corected, nicer wizards.

* Thu Aug 30 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-11mdk
- new snapshot, mousedrake fixes again.

* Wed Aug 29 2001 François Pons <fpons@mandrakesoft.com> 1.1.7-10mdk
- new snapshot, mousedrake fixes.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-9mdk
- snapshot for 8.1 beta2.

* Fri Aug 24 2001 dam's <damien@mandrakesoft.com> 1.1.7-8mdk
- bugfix.
- new snapshot. mousedrake experimental.

* Thu Aug 23 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.7-7mdk
- fix drakboot bug
- macros to fix some rpmlint warnings

* Wed Aug 22 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-6mdk
- put a require on "perl" which is needed for Data::Dumper in drakautoinst

* Wed Aug 22 2001 dam's <damien@mandrakesoft.com> 1.1.7-5mdk
- snapshot. draknet improvments, bug fixes.

* Mon Aug 20 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-4mdk
- new fstab munching code

* Sat Aug 18 2001 Pixel <pixel@mandrakesoft.com> 1.1.7-3mdk
- new diskdrake (with interactive version => newt)
- drakxtools-http fix

* Tue Aug 14 2001 dam's <damien@mandrakesoft.com> 1.1.7-2mdk
- added doc (it's a shame...)

* Tue Aug 14 2001 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.7-1mdk
- add drakautoinst

* Mon Aug 13 2001 dam's <damien@mandrakesoft.com> 1.1.6-3mdk
- snapshot

* Tue Aug  7 2001 dam's <damien@mandrakesoft.com> 1.1.6-2mdk
- added draknet_splash pixmap

* Tue Aug  7 2001 Pixel <pixel@mandrakesoft.com> 1.1.6-1mdk
- add drakxtools_http

* Fri Aug  3 2001 dam's <damien@mandrakesoft.com> 1.1.5-106mdk
- added network/*.pm

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-105mdk
- add require perl-MDK-Common
- fix for cp -rf (fuck FreeBSD (c))

* Tue Jul 31 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-104mdk
- fix my error: %%files with 2 times "-f <file>" doesn't work :-(

* Mon Jul 30 2001 dam's <damien@mandrakesoft.com> 1.1.5-103mdk
- updated with cooker install.
- added require on XFree86-75dpi-fonts
- merged with pixel specfile to handle mo.

* Mon May  7 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-102mdk
- updated bootloader.pm according to new lilo package (lilo-{menu,graphic,text})

* Wed Apr 25 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-101mdk
- updated with oem update for DrakX.
- minor bug correction on printerdrake.
- added minor features to XFdrake.

* Wed Apr 18 2001 dam's <damien@mandrakesoft.com> 1.1.5-100mdk
- added require on usermode.
- added source 2 and 3.
- snapshot. netconnect corrections. final package

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-99mdk
- snapshot. mousedrake corrected. RC6

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-98mdk
- snapshot. autologin corrected. RC5

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-97mdk
- snapshot. RC4

* Tue Apr 17 2001 dam's <damien@mandrakesoft.com> 1.1.5-96mdk
- snapshot. RC3

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-95mdk
- snapshot. RC2

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-94mdk
- snapshot. RC

* Mon Apr 16 2001 dam's <damien@mandrakesoft.com> 1.1.5-93mdk
- draknet and tinyfirewall fixes

* Sun Apr 15 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-92mdk
- bootlook fix & layout

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-91mdk
- snapshot

* Fri Apr 13 2001 dam's <damien@mandrakesoft.com> 1.1.5-90mdk
- snapshot

* Thu Apr 12 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-89mdk
- snapshot

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-88mdk
- snapshot. pcmcia network corrected

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-87mdk
- snapshot. Better network configuration

* Thu Apr 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-86mdk
- snapshot.

* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-85mdk
- really fix printerdrake and snap.

* Wed Apr 11 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-84mdk
- fix printerdrake and snap.

* Tue Apr 10 2001 dam's <damien@mandrakesoft.com> 1.1.5-83mdk
- bug correction.

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-82mdk
- snap as always

* Mon Apr  9 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-81mdk
- snaphshot again and again

* Mon Apr  9 2001 dam's <damien@mandrakesoft.com> 1.1.5-80mdk
- snapshot. bug fix

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-79mdk
- snapshot. bug fix.

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-78mdk
- added require on XFree86-100dpi-fonts
- various debugging
- new tinyfirewall

* Sun Apr  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-77mdk
- snapshot
- net_monitor added.

* Fri Apr  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-76mdk
- corrected compilation error.

* Fri Apr  6 2001 yves <yduret@mandrakesoft.com> 1.1.5-75mdk
- snapshot : drakgw updated, boot config fix

* Thu Apr  5 2001 dam's <damien@mandrakesoft.com> 1.1.5-74mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-73mdk
- snapshot.

* Mon Apr  2 2001 dam's <damien@mandrakesoft.com> 1.1.5-72mdk
- snapshot, typo fixs.

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-71mdk
- snapshot & fixes

* Fri Mar 30 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-70mdk
- snapshot : boot coonfig updated

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-69mdk
- snapshot

* Thu Mar 29 2001 dam's <damien@mandrakesoft.com> 1.1.5-68mdk
- snapshot.

* Thu Mar 29 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-67mdk
- new snapshot (XFdrake should be working)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-66mdk
- corrected tinyfirewall last step

* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-65mdk
- fixed wrong generation of second mouse support

* Wed Mar 28 2001 François Pons <fpons@mandrakesoft.com> 1.1.5-64mdk
- fixed multi-mouse support for XF3
- fixed XFdrake (read old config file before so probe overwrite)

* Wed Mar 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-63mdk
- added draksec embedded mode
- corrected tinyfirewall for 2.4 kernels
- corrected bad translations in draknet

* Tue Mar 27 2001 dam's <damien@mandrakesoft.com> 1.1.5-62mdk
- idem.

* Sat Mar 24 2001 dam's <damien@mandrakesoft.com> 1.1.5-61mdk
- corrected tinyfirewall

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-60mdk
- snapshot
- corrected require.

* Fri Mar 23 2001 dam's <damien@mandrakesoft.com> 1.1.5-59mdk
- added ldetect in require.
- tinyfirewall included.

* Thu Mar 22 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-58mdk
- updated drakboot, new snapshot

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-57mdk
- draknet without mail conf, new snapshot.

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-56mdk
- new version that will work with perl-base (at least XFdrake)

* Thu Mar 22 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-55mdk
- require perl-base not perl, it should be enough

* Thu Mar 22 2001 dam's <damien@mandrakesoft.com> 1.1.5-54mdk
- first release with tinyfirewall. Not stable.
- corrected gmon pb, I suck.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-53mdk
- corrected bad links.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-52mdk
- no crash anymore.

* Tue Mar 20 2001 dam's <damien@mandrakesoft.com> 1.1.5-51mdk
- updated draknet. new snapshot.

* Wed Mar 14 2001 dam's <damien@mandrakesoft.com> 1.1.5-50mdk
- some minor label improvements.

* Tue Mar 13 2001 Yves Duret <yduret@mandrakesoft.com> 1.1.5-49mdk
- updated bootlook
- macros

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-48mdk
- correted wizard pixmaps name

* Mon Mar 12 2001 dam's <damien@mandrakesoft.com> 1.1.5-47mdk
- new and shinny drakxservices

* Tue Mar  6 2001 dam's <damien@mandrakesoft.com> 1.1.5-46mdk
- XFdrake works + other improvements

* Thu Mar  1 2001 dam's <damien@mandrakesoft.com> 1.1.5-45mdk
- updated embedded mode.

* Wed Feb 28 2001 dam's <damien@mandrakesoft.com> 1.1.5-44mdk
- XFdrake : new look.
- draknet : some corrections.
- install : some improvements

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-43mdk
- corrected draknet, and some other stuff

* Mon Feb 26 2001 dam's <damien@mandrakesoft.com> 1.1.5-42mdk
- new draknet, with wizard and profiles.
- drakboot short-circuited.
- new pixmaps policy.

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-41mdk
- require perl-GTK-GdkImlib, fix XFdrake and draknet with no perl-GTK

* Fri Feb 23 2001 Pixel <pixel@mandrakesoft.com> 1.1.5-40mdk
- split in drakxtools and drakxtools-newt

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-39mdk
- install() and SHAR_PATH bug fixed in standalone.pm

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-38mdk
- bug fix.

* Thu Feb  8 2001 dam's <damien@mandrakesoft.com> 1.1.5-37mdk
- bug correction inclusion.

* Wed Feb  7 2001 dam's <damien@mandrakesoft.com> 1.1.5-36mdk
- snapshot. Included embedded mode (for control-center), and wizard mode.

* Mon Dec 18 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-35mdk
- new version (lspcidrake not here anymore, requires ldetect-lst => don't
include pcitable/... anymore)


* Tue Nov 14 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-34mdk
- snapshot
- get rid of the rpmlib dependency

* Sat Oct 21 2000 dam's <damien@mandrakesoft.com> 1.1.5-33mdk
- RC1_fixed tagged cvs version.
- Video cards handling enhanced
- isa isdn-cards and non detected isdn pci-cards spported.

* Thu Oct 19 2000 dam's <damien@mandrakesoft.com> 1.1.5-32mdk
- snapshot.

* Mon Oct  9 2000 dam's <damien@mandrakesoft.com> 1.1.5-31mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-30mdk
- snapshot.

* Fri Oct  6 2000 dam's <damien@mandrakesoft.com> 1.1.5-29.1mdk
- snapshot. not fully stable.

* Thu Oct  5 2000 dam's <damien@mandrakesoft.com> 1.1.5-29mdk
- snapshot.

* Thu Oct 05 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-28mdk
- snapshot.

* Tue Oct 03 2000 François Pons <fpons@mandrakesoft.com> 1.1.5-27mdk
- snapshot.

* Sun Oct  1 2000 dam's <damien@mandrakesoft.com> 1.1.5-26mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-25mdk
- snapshot.

* Sat Sep 30 2000 dam's <damien@mandrakesoft.com> 1.1.5-24mdk
- snapshot. draknet frozen.

* Fri Sep 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-23mdk
- snapshot.

* Thu Sep 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-22mdk
- modified spec.
- snapshot
- liveupdate

* Wed Sep 27 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-21mdk
- snapshot

* Tue Sep 26 2000 dam's <damien@mandrakesoft.com> 1.1.5-20mdk
- snapshot

* Mon Sep 25 2000 dam's <damien@mandrakesoft.com> 1.1.5-19mdk
- snapshot.

* Fri Sep 22 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-18mdk
- new snapshot
- remove BuildRequires kudzu-devel, I suck bigtime..

* Thu Sep 21 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-17mdk
- new snapshot
- BuildRequires kudzu-devel since ddcprobe/ddcxinfos.c uses /usr/include/vbe.h

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-16mdk
- cvs snapshot. See changelog file

* Wed Sep 20 2000 dam's <damien@mandrakesoft.com> 1.1.5-15mdk
- cvs snapshot. See changelog file

* Fri Sep 15 2000 dam's <damien@mandrakesoft.com> 1.1.5-14mdk
- cvs snapshot.
- draknet : better dsl configuration.

* Thu Sep 14 2000 dam's <damien@mandrakesoft.com> 1.1.5-13mdk
- cvs snapshot.
- draknet : wizard mode. isdn_db.txt moved to /usr/share. No makedev.sh any more

* Mon Sep 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-12mdk
- add handling for gnome and kde2 in Xdrakres

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-11mdk
- corrected draknet launch error.

* Thu Sep  7 2000 dam's <damien@mandrakesoft.com> 1.1.5-10mdk
- ISDN connection should work. test it!

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-9mdk
- setAutologin fixed in XFdrake

* Tue Sep  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-8mdk
- adduserdrake fixed

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-7mdk
- fix some typos in standalone/keyboarddrake
- add require perl

* Sat Sep  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.5-6mdk
- add %%lang tags

* Tue Aug 29 2000 dam's <damien@mandrakesoft.com> 1.1.5-5mdk
- draknet : isa cards better recognized.

* Mon Aug 28 2000 dam's <damien@mandrakesoft.com> 1.1.5-4mdk
- corrected draknet. Please test it!

* Sun Aug 27 2000 dam's <damien@mandrakesoft.com> 1.1.5-3mdk
- Added draknet in standalone

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-2mdk
- add requires to modutils >= 2.3.11 because drakgw is reading
  /etc/modules.conf which has been introduced in 2.3.11

* Fri Aug 18 2000 Guillaume Cottenceau <gc@mandrakesoft.com> 1.1.5-1mdk
- added `drakgw' in standalone (Internet Connection Sharing tool)

* Fri Aug 11 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-3mdk
- new snapshot

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-2mdk
- add noreplace for diskdrake.rc

* Thu Aug 10 2000 Pixel <pixel@mandrakesoft.com> 1.1.4-1mdk
- new snapshot

* Mon Aug 07 2000 Frederic Lepied <flepied@mandrakesoft.com> 1.1.3-2mdk
- automatically added BuildRequires

* Fri Jul 21 2000 Pixel <pixel@mandrakesoft.com> 1.1.3-1mdk
- new version, BM

* Wed Jul 05 2000 Thierry Vignaud <tvignaud@mandrakesoft.com> 1.1.2-2mdk
- build against new libbz2

* Mon Jun 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.2-1mdk
- new version

* Tue Jun 13 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-13mdk
- hopefully fix XFdrake and DDR nvidia cards (silly xfree that is)

* Mon Jun  5 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-12mdk
- fix sbus missing

* Sat Jun  3 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-10mdk
- fix draksec calling init.sh instead of msec

* Thu May 25 2000 Chmouel Boudjnah <chmouel@mandrakesoft.com> 1.1.1-9mdk
- Don't display x86 stuff on drakboot when we are on others arch.

* Thu May 25 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-8mdk
- update with first version for sparc and sparc64.
- fix for printer configuration for SAMBA and NCP (security issue).

* Tue May  9 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-7mdk
- many small fixes (bis)

* Tue May  2 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-6mdk
- many small fixes

* Wed Apr 26 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-5mdk
- new version (fix in adduserdrake, enhance interactive_newt)

* Wed Apr 19 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-4mdk
- llseek works, not lseek64 :(  (need more testing)

* Wed Apr 19 2000 François Pons <fpons@mandrakesoft.com> 1.1.1-3mdk
- updated with CVS of DrakX.

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-2mdk
- obsoletes setuptool, link setuptool to drakxconf

* Fri Mar 31 2000 Pixel <pixel@mandrakesoft.com> 1.1.1-1mdk
- new version (added drakboot for lilo/grub, XFdrake -xf4 for XFree4)

* Sat Mar 25 2000 Pixel <pixel@mandrakesoft.com> 1.1-1mdk
- new group
- new version

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- complete update with DrakX, small fixe on printerdrake again.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- corrected missing generic postscript and text driver for
  printderdrake.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- corrected bad resolution setting in printerdrake.

* Wed Jan 12 2000 François PONS <fpons@mandrakesoft.com>
- fixed print on STDOUT in printerdrake.
- corrected printerdrake against not available drivers in gs.

* Mon Jan 10 2000 Pixel <pixel@mandrakesoft.com>
- new version (bis)
- printerdrake install rhs-printfilters via urpmi if needed

* Fri Jan 07 2000 François PONS <fpons@mandrakesoft.com>
- updated XFdrake and PrinterDrake.

* Fri Jan  7 2000 Pixel <pixel@mandrakesoft.com>
- fixed a bug causing no i18n for rpmdrake
- add require urpmi

* Thu Jan  6 2000 Pixel <pixel@mandrakesoft.com>
- fix an error case in XFdrake

* Tue Jan  4 2000 Pixel <pixel@mandrakesoft.com>
- adduserdrake accept user names on command line
- minor fixes

* Fri Dec 31 1999 Pixel <pixel@mandrakesoft.com>
- 32mdk

* Wed Dec 29 1999 Pixel <pixel@mandrakesoft.com>
- make rpmlint happier
- minor fixes

* Mon Dec 27 1999 Pixel <pixel@mandrakesoft.com>
- better XFdrake and minor fixes

* Fri Dec 24 1999 Pixel <pixel@mandrakesoft.com>
- new version (better adduserdrake and more)
- add /usr/bin/* (for lspcidrake)

* Wed Dec 22 1999 Pixel <pixel@mandrakesoft.com>
- do not try display :0 if DISPLAY is unset

* Mon Dec 20 1999 Pixel <pixel@mandrakesoft.com>
- fixed a bug in drakxservices
- XFdrake now install XFree86 and XFree86-75dpi-fonts if needed
- XFdrake now calls /etc/rc.d/init.d/xfs start if needed
- minor fix

* Sat Dec 18 1999 Pixel <pixel@mandrakesoft.com>
- added kpackage's icons for rpmdrake

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- bzip2 .po's
- mount /proc in XFdrake to avoid freeze when called by kudzu
- added Xdrakres

* Thu Dec 16 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Remove the netdrake ghost.

* Thu Dec 16 1999 Pixel <pixel@mandrakesoft.com>
- fix draksec
- many changes in libDrakX

* Sat Dec 11 1999 Pixel <pixel@mandrakesoft.com>
- adduserdrake added and some more

* Thu Dec  9 1999 Pixel <pixel@linux-mandrake.com>
- added drakxconf, drakxservices
- handle non root via kdesu if X
- warning go to syslog

* Wed Dec  8 1999 Chmouel Boudjnah <chmouel@mandrakesoft.com>
- Add %post and %postun to link redhat tools to our tools.
- Obsoletes: Xconfigurator mouseconfig kbdconfig printtool
- A lots of changes/fix.

* Thu Dec  2 1999 Pixel <pixel@linux-mandrake.com>
- keyboarddrake added, and many changes
- fixed typos

* Fri Nov 26 1999 Pixel <pixel@linux-mandrake.com>
- new version (printerdrake) (did i say lspcidrake was there too?)

* Wed Nov 24 1999 Pixel <pixel@linux-mandrake.com>
- new version
- fixed *.o bundled in the %source

* Sun Nov 21 1999 Pixel <pixel@mandrakesoft.com>
- removed %config for diskdrake.rc (should i?)
- removed xtest from the requires
- added %config for diskdrake.rc (should i?)
- strip .so and ddcxinfos (nice rpmlint :)

* Sat Nov 20 1999 Pixel <pixel@mandrakesoft.com>
- added MonitorsDB to %files (silly me:-!)

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- precised the required version for perl-GTK

* Thu Nov 18 1999 Pixel <pixel@mandrakesoft.com>
- First version


# end of file