aboutsummaryrefslogtreecommitdiff
path: root/INDEX
blob: 9959ce1b69c917d4c665333f85fb01c57d11e3f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
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
arc-5.21e|/usr/ports/archivers/arc|/usr/local|Create & extract files from DOS .ARC files|/usr/ports/archivers/arc/pkg/DESCR|ache@FreeBSD.org|archivers|||
bzip-0.21|/usr/ports/archivers/bzip|/usr/local|A block-sorting file compressor|/usr/ports/archivers/bzip/pkg/DESCR|andreas@FreeBSD.org|archivers|||http://www.muraroa.demon.co.uk/
bzip2-0.9.5d|/usr/ports/archivers/bzip2|/usr/local|A block-sorting file compressor|/usr/ports/archivers/bzip2/pkg/DESCR|obrien@FreeBSD.org|archivers|||http://sourceware.cygnus.com/bzip2/
deepforest-1.0a|/usr/ports/archivers/deepforest|/usr/X11R6|A simple compress utilty using on JDE|/usr/ports/archivers/deepforest/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|converters windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
freeze-2.5|/usr/ports/archivers/freeze|/usr/local|Compression program - often used in QNX|/usr/ports/archivers/freeze/pkg/DESCR|lukin@okbmei.msk.su|archivers|||
sharutils-4.2|/usr/ports/archivers/gshar+gunshar|/usr/local|Allow packing and unpacking of shell archives|/usr/ports/archivers/gshar+gunshar/pkg/DESCR|ports@FreeBSD.org|archivers|||
ha-0.999b|/usr/ports/archivers/ha|/usr/local|The HA archiver using the HSC compression method|/usr/ports/archivers/ha/pkg/DESCR|ache@FreeBSD.org|archivers|gmake-3.78.1||
hpack-0.79a|/usr/ports/archivers/hpack.non-usa.only|/usr/local|Multi-System Archiver with open keys PGP-based security|/usr/ports/archivers/hpack.non-usa.only/pkg/DESCR|ache@FreeBSD.org|archivers|||
lha-1.14f|/usr/ports/archivers/lha|/usr/local|Archive files using LZW compression (.lzh files)|/usr/ports/archivers/lha/pkg/DESCR|ache@FreeBSD.org|archivers|||http://www2m.biglobe.ne.jp/~dolphin/lha/lha.htm
linux_rar-2.60|/usr/ports/archivers/linux_rar|/usr/local|General purpose archiving and compression tool (binary port)|/usr/ports/archivers/linux_rar/pkg/DESCR|k5@cheerful.com|archivers|linux_base-5.2 rpm-2.5.6|linux_base-5.2 rpm-2.5.6|http://www.rarsoft.com/rar_archiver.htm
lzo-1.06|/usr/ports/archivers/lzo|/usr/local|Portable speedy, lossless data compression library|/usr/ports/archivers/lzo/pkg/DESCR|ports@FreeBSD.org|archivers devel|libtool-1.3.3||http://wildsau.idv.uni-linz.ac.at/mfx/lzo.html
makeself-1.4|/usr/ports/archivers/makeself|/usr/local|A neat script to make self-extracting archives|/usr/ports/archivers/makeself/pkg/DESCR|andrews@technologist.com|archivers|||http://www.lokigames.com/~megastep/makeself/
nulib-3.25|/usr/ports/archivers/nulib|/usr/local|NuFX archive utility|/usr/ports/archivers/nulib/pkg/DESCR|jseger@FreeBSD.org|archivers|||
p5-Compress-Zlib-1.01|/usr/ports/archivers/p5-Compress-Zlib|/usr/local|Perl5 interface to zlib compression library|/usr/ports/archivers/p5-Compress-Zlib/pkg/DESCR|jfitz@FreeBSD.org|archivers perl5|||
pkzip-2.5|/usr/ports/archivers/pkzip|/usr/local|Create/update/list/test/extract pkzip ZIP files|/usr/ports/archivers/pkzip/pkg/DESCR|dbader@eece.unm.edu|archivers||linux_base-5.2 rpm-2.5.6|http://www.pkware.com/
rar-2.02|/usr/ports/archivers/rar|/usr/local|File archiver (binary port)|/usr/ports/archivers/rar/pkg/DESCR|ache@FreeBSD.org|archivers|||
unace-1.2b|/usr/ports/archivers/unace|/usr/local|Extract, view & test ACE archives|/usr/ports/archivers/unace/pkg/DESCR|jonny@jonny.eng.br|archivers|gmake-3.78.1 unzip-5.40||http://members.aol.com/mlemke6413/ace.html
unarj-2.43|/usr/ports/archivers/unarj|/usr/local|Allows files to be extracted from ARJ archives|/usr/ports/archivers/unarj/pkg/DESCR|ache@FreeBSD.org|archivers|||
unrar-2.50|/usr/ports/archivers/unrar|/usr/local|Extract, view & test RAR archives|/usr/ports/archivers/unrar/pkg/DESCR|ache@FreeBSD.org|archivers|||http://www.rarsoft.com/
unzip-5.40|/usr/ports/archivers/unzip|/usr/local|List, test and extract compressed files in a ZIP archive|/usr/ports/archivers/unzip/pkg/DESCR|ache@FreeBSD.org|archivers|||http://infozip.cdrom.com/pub/infozip/
unzip+crypt-5.40|/usr/ports/archivers/unzip.with_encryption|/usr/local|List, test and extract compressed files in a ZIP archive, with encryption|/usr/ports/archivers/unzip.with_encryption/pkg/DESCR|ache@FreeBSD.org|archivers|||http://infozip.cdrom.com/pub/infozip/
zip-2.2|/usr/ports/archivers/zip|/usr/local|Create/update ZIP files compatabile with pkzip|/usr/ports/archivers/zip/pkg/DESCR|ache@FreeBSD.org|archivers|||http://infozip.cdrom.com/pub/infozip/
zip+crypt-2.2|/usr/ports/archivers/zip.with_encryption|/usr/local|Create/update ZIP files compatible with pkzip, passwords enabled|/usr/ports/archivers/zip.with_encryption/pkg/DESCR|ache@FreeBSD.org|archivers|unzip+crypt-5.40||
zoo-2.10.1|/usr/ports/archivers/zoo|/usr/local|Manipulate archives of files in compressed form|/usr/ports/archivers/zoo/pkg/DESCR|jmz@FreeBSD.org|archivers|||
dgpsip-1.25|/usr/ports/astro/dgpsip|/usr/local|Differential GPS over IP communication device|/usr/ports/astro/dgpsip/pkg/DESCR|dbaker@freebsd.org|astro|||
ephem-4.28|/usr/ports/astro/ephem|/usr/local|An interactive terminal-based astronomical ephemeris program|/usr/ports/astro/ephem/pkg/DESCR|eserte@cs.tu-berlin.de|astro|||
luna-1.9|/usr/ports/astro/luna|/usr/local|Display the moon's phase|/usr/ports/astro/luna/pkg/DESCR|rewsirow@ff.iij4u.or.jp|astro games|lha-1.14f||
saoimage-1.22|/usr/ports/astro/saoimage|/usr/X11R6|Smithsonian Astrophysical Observatory image utility for X|/usr/ports/astro/saoimage/pkg/DESCR|giffunip@asme.org|astro|XFree86-3.3.5|XFree86-3.3.5|http://tdc-www.harvard.edu/software/saoimage.html
sattrack-3.1.6|/usr/ports/astro/sattrack|/usr/local|Real-time satellite tracking and orbit propagation program|/usr/ports/astro/sattrack/pkg/DESCR|bjn@visi.com|astro|XFree86-3.3.5|XFree86-3.3.5|http://www.bester.com
setiathome-1.2|/usr/ports/astro/setiathome|/usr/local|Donate idle cycles to the search for space aliens|/usr/ports/astro/setiathome/pkg/DESCR|stb@freebsd.org|astro|||http://setiathome.ssl.berkeley.edu/
ssystem-1.6|/usr/ports/astro/ssystem|/usr/X11R6|OpenGL Solar System simulator for X Window System|/usr/ports/astro/ssystem/pkg/DESCR|andy@icc.surw.chel.su|astro|Mesa-3.0 XFree86-3.3.5 jpeg-6b|Mesa-3.0 XFree86-3.3.5 jpeg-6b|http://www1.las.es/~amil/ssystem/
stars-1.0|/usr/ports/astro/stars|/usr/X11R6|Star field demo|/usr/ports/astro/stars/pkg/DESCR|jseger@FreeBSD.org|astro|XFree86-3.3.5|XFree86-3.3.5|
sunclock-1.4|/usr/ports/astro/sunclock|/usr/X11R6|Shows which portion of the Earth's surface is illuminated by the Sun|/usr/ports/astro/sunclock/pkg/DESCR|torstenb@FreeBSD.org|astro|XFree86-3.3.5|XFree86-3.3.5|
tkseti-1.46|/usr/ports/astro/tkseti|/usr/local|Tk-based interface to seti@home|/usr/ports/astro/tkseti/pkg/DESCR|brett@peloton.runet.edu|astro tk82||XFree86-3.3.5 setiathome-1.2 tcl-8.2.2 tk-8.2.2|http://www.cuug.ab.ca/~macdonal/tkseti/
wmglobe-1.0|/usr/ports/astro/wmglobe|/usr/X11R6|A neat xearth-like WindowMaker dockapp|/usr/ports/astro/wmglobe/pkg/DESCR|andrews@technologist.com|astro windowmaker|XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://perso.linuxfr.org/jdumont/wmg/
wmMoonClock-1.26|/usr/ports/astro/wmmoonclock|/usr/X11R6|Displays the phase of the moon, plus orbital data|/usr/ports/astro/wmmoonclock/pkg/DESCR|kris@FreeBSD.org|astro windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmspaceweather-1.04|/usr/ports/astro/wmspaceweather|/usr/X11R6|A DockApp that shows the weather at geosynchronous orbit|/usr/ports/astro/wmspaceweather/pkg/DESCR|cpiazza@FreeBSD.org|astro windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmsun-1.03|/usr/ports/astro/wmsun|/usr/X11R6|A dockapp that displays the rise and set time of the sun|/usr/ports/astro/wmsun/pkg/DESCR|cpiazza@FreeBSD.org|astro windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
x3arth-1.1|/usr/ports/astro/x3arth|/usr/X11R6|Updates X root window with satellit views of earth|/usr/ports/astro/x3arth/pkg/DESCR|cpiazza@FreeBSD.org|astro tcl82|XFree86-3.3.5 bzip2-0.9.5d|XFree86-3.3.5 jpeg-6b png-1.0.5 tcl-8.2.2 tiff-3.5.3 xv-3.10a|
xearth-1.0|/usr/ports/astro/xearth|/usr/X11R6|Set the root window to the image of earth|/usr/ports/astro/xearth/pkg/DESCR|andrews@technologist.com|astro x11|XFree86-3.3.5|XFree86-3.3.5|http://www.cs.colorado.edu/~tuna/xearth/index.html
xephem-3.2.2|/usr/ports/astro/xephem|/usr/X11R6|An interactive astronomical ephemeris program|/usr/ports/astro/xephem/pkg/DESCR|erich@FreeBSD.org|astro|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.clearskyinstitute.com/xephem/xephem.html
xglobe-0.3.1|/usr/ports/astro/xglobe|/usr/X11R6|Displays a view of the Earth (like xearth) with a rendered photo map|/usr/ports/astro/xglobe/pkg/DESCR|kris@FreeBSD.org|astro|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|http://www.uni-karlsruhe.de/~uddn/xglobe
xphoon-91.9.18|/usr/ports/astro/xphoon|/usr/X11R6|Set the root window to the moon in its current phase|/usr/ports/astro/xphoon/pkg/DESCR|andrews@technologist.com|astro x11|XFree86-3.3.5|XFree86-3.3.5|
xtide-1.6.2|/usr/ports/astro/xtide|/usr/X11R6|Harmonic tide clock and tide predictor|/usr/ports/astro/xtide/pkg/DESCR|brion@queeg.com|astro|XFree86-3.3.5|XFree86-3.3.5|http://www.universe.digex.net/~dave/xtide/xtide.html
amp-0.7.6|/usr/ports/audio/amp|/usr/local|Another mp3 player|/usr/ports/audio/amp/pkg/DESCR|vanilla@FreeBSD.org|audio|gmake-3.78.1||
ascd-0.13.2|/usr/ports/audio/ascd|/usr/X11R6|A dockable cd player for AfterStep or WindowMaker|/usr/ports/audio/ascd/pkg/DESCR|jim@FreeBSD.org|audio afterstep windowmaker|XFree86-3.3.5 libworkman-1.4 xpm-3.4k|XFree86-3.3.5 libworkman-1.4 xpm-3.4k|http://worldserver.oleane.com/rsn/ascd-en.html
aumix-1.30|/usr/ports/audio/aumix|/usr/local|A full-screen ncurses-based audio mixer for the console|/usr/ports/audio/aumix/pkg/DESCR|cpiazza@FreeBSD.org|audio|gettext-0.10.35|gettext-0.10.35|http://jpj.net/~trevor/aumix.html
bladeenc-0.90|/usr/ports/audio/bladeenc|/usr/local|MP3 encoder|/usr/ports/audio/bladeenc/pkg/DESCR|dirk@FreeBSD.org|audio|||http://bladeenc.mp3.no/
cam-1.02|/usr/ports/audio/cam|/usr/local|Cpu's Audio Mixer [curses based]|/usr/ports/audio/cam/pkg/DESCR|erich@FreeBSD.org|audio|||
cdd-1.0|/usr/ports/audio/cdd|/usr/local|A cd audio track extraction program from Charles Henrich|/usr/ports/audio/cdd/pkg/DESCR|luigi@iet.unipi.it|audio|||
cdindex-1.1.0|/usr/ports/audio/cdindex|/usr/local|CD Index client (a free Internet audio CD database)|/usr/ports/audio/cdindex/pkg/DESCR|van.woerkom@netcologne.de|audio|gmake-3.78.1||http://www.cdindex.org
cdplay-0.92|/usr/ports/audio/cdplay|/usr/local|Neat cd-player with console user interface|/usr/ports/audio/cdplay/pkg/DESCR|anttik@iki.fi|audio|||
cdrdao-1.1.3|/usr/ports/audio/cdrdao|/usr/local|Write audio CD-Rs in disk-at-once mode|/usr/ports/audio/cdrdao/pkg/DESCR|futatuki@debug.gr.jp|audio|XFree86-3.3.5 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk---1.0.3 gtk-1.2.6 pccts-1.33.20|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk---1.0.3 gtk-1.2.6|http://www.ping.de/sites/daneb/cdrdao.html
cmp3-2.0p3|/usr/ports/audio/cmp3|/usr/local|An ncurses based frontend to mpg123|/usr/ports/audio/cmp3/pkg/DESCR|cpiazza@FreeBSD.org|audio|gmake-3.78.1|mpg123-0.59r|http://nkk104.rh.psu.edu/cmp3/
dagrab-0.3.3|/usr/ports/audio/dagrab|/usr/local|Read audio tracks from a CD into wav sound files|/usr/ports/audio/dagrab/pkg/DESCR|clkao@CirX.ORG|audio|||
dap-2.0.2|/usr/ports/audio/dap|/usr/X11R6|Audio sample editing and processing suite|/usr/ports/audio/dap/pkg/DESCR|yoshiaki@kt.rim.or.jp|audio|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|
esound-0.2.16|/usr/ports/audio/esound|/usr/local|A sound library for enlightenment package|/usr/ports/audio/esound/pkg/DESCR|vanilla@FreeBSD.org|audio|libaudiofile-0.1.9 libtool-1.3.3|libaudiofile-0.1.9|http://www.tux.org/~ricdude/EsounD.html
gmixer-0.98c|/usr/ports/audio/gmixer|/usr/local|X11/gtk+ mixer control|/usr/ports/audio/gmixer/pkg/DESCR|cpiazza@FreeBSD.org|audio|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gnomeaudio-1.0.0|/usr/ports/audio/gnomeaudio|/usr/X11R6|Sound files for use with GNOME|/usr/ports/audio/gnomeaudio/pkg/DESCR|vanilla@FreeBSD.org|audio gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnomemedia-1.0.51|/usr/ports/audio/gnomemedia|/usr/X11R6|Multimedia applications for the GNOME desktop|/usr/ports/audio/gnomemedia/pkg/DESCR|reg@shale.csir.co.za|audio gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gogo-2.23|/usr/ports/audio/gogo|/usr/local|Very fast MP3 encoder with MMX, 3D Now! and PentiumIII SSE support|/usr/ports/audio/gogo/pkg/DESCR|nakai@FreeBSD.org|audio|gmake-3.78.1 nasm-0.98||
gqmpeg-0.6.3|/usr/ports/audio/gqmpeg|/usr/X11R6|Another gtk-based MP3 frontend|/usr/ports/audio/gqmpeg/pkg/DESCR|nacai@iname.com|audio|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b mpg123-0.59r png-1.0.5 tiff-3.5.3|http://gqview.netpedia.net/mpeg-over.html
gsm-1.0.10|/usr/ports/audio/gsm|/usr/local|Audio converter and library for converting u-law to gsm encoding|/usr/ports/audio/gsm/pkg/DESCR|ports@FreeBSD.org|audio|||
icecast-1.3.0|/usr/ports/audio/icecast|/usr/local|A SHOUTcast-compatible streaming MP3 server|/usr/ports/audio/icecast/pkg/DESCR|chip@eboai.org|audio net|||http://www.icecast.org/
id3ed-1.9|/usr/ports/audio/id3ed|/usr/local|An id3 tag editor for mp3 files|/usr/ports/audio/id3ed/pkg/DESCR|cpiazza@FreeBSD.org|audio|gmake-3.78.1||
id3ren-0.97a|/usr/ports/audio/id3ren|/usr/local|Mpeg Audio Layer 3 util: rename files, edit tags, search, etc|/usr/ports/audio/id3ren/pkg/DESCR|jonny@jonny.eng.br|audio|unzip-5.40||http://tscnet.com/pages/badcrc/apps/id3ren/
juke-0.5|/usr/ports/audio/juke|/usr/local|A simple curses/ncurses based juke box program|/usr/ports/audio/juke/pkg/DESCR|oyvindmo@initio.no|audio|||http://www.nocrew.org/software/juke/
kdemultimedia-1.1.2|/usr/ports/audio/kdemultimedia11|/usr/local|KDE audio tools|/usr/ports/audio/kdemultimedia11/pkg/DESCR|se@freebsd.org|audio kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kdemultimedia-i18n-1.1.2|/usr/ports/audio/kdemultimedia11-i18n|/usr/local|KDE audio tools|/usr/ports/audio/kdemultimedia11-i18n/pkg/DESCR|imura@kde.gr.jp|audio kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 qt-i18n-1.44a|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
kmikmod-2.04|/usr/ports/audio/kmikmod|/usr/local|KDE module player based on mikmod|/usr/ports/audio/kmikmod/pkg/DESCR|tom@eborcom.com|audio kde|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://myy.helia.fi/~anttiner/kmikmod.html
kmp3-0.2.2|/usr/ports/audio/kmp3|/usr/local|An mp3 player for the KDE|/usr/ports/audio/kmp3/pkg/DESCR|obonilla@fisicc-ufm.edu|audio kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kmpg-0.4.3a|/usr/ports/audio/kmpg|/usr/local|KDE Mpeg1/2 audio stream player, handles layer I, II, and III streams|/usr/ports/audio/kmpg/pkg/DESCR|tom@FreeBSD.org|audio kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.rhrk.uni-kl.de/~mvogt/linux/kmpg/index.html
lame-3.51|/usr/ports/audio/lame|/usr/local|ISO code based fast MP3 encoder kit|/usr/ports/audio/lame/pkg/DESCR|yoshiaki@kt.rim.or.jp|audio|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
libaudiofile-0.1.9|/usr/ports/audio/libaudiofile|/usr/local|A sound library for SGI audio file|/usr/ports/audio/libaudiofile/pkg/DESCR|vanilla@FreeBSD.org|audio|libtool-1.3.3||http://www.68k.org./~michael/audiofile/
libcdaudio-0.99.3|/usr/ports/audio/libcdaudio|/usr/local|A library for playing audio CDs|/usr/ports/audio/libcdaudio/pkg/DESCR|ports@FreeBSD.org|audio|libtool-1.3.3||http://cdcd.undergrid.net/libcdaudio/
libmikmod-3.1.7|/usr/ports/audio/libmikmod|/usr/local|MikMod Sound Library, version 3.1.6|/usr/ports/audio/libmikmod/pkg/DESCR|mharo@FreeBSD.org|audio|esound-0.2.16 gmake-3.78.1 libaudiofile-0.1.9 libtool-1.3.3|esound-0.2.16 libaudiofile-0.1.9|http://www.multimania.com/miodrag/mikmod/
libworkman-1.4|/usr/ports/audio/libworkman|/usr/X11R6|Workman library required by some audio apps|/usr/ports/audio/libworkman/pkg/DESCR|jim@FreeBSD.org|audio|XFree86-3.3.5|XFree86-3.3.5|http://www.deathsdoor.com/milliByte/WorkMan
linux-realplayer-5.0|/usr/ports/audio/linux-realplayer|/usr/local|Linux RealPlayer 5.0 from RealNetworks|/usr/ports/audio/linux-realplayer/pkg/DESCR|kris@FreeBSD.org|audio||linux_base-5.2 rpm-2.5.6|http://www.real.com/products/player/50player/
maplay-1.2|/usr/ports/audio/maplay|/usr/local|An MPEG audio player/decoder that decodes layer I and II MPEG audio streams|/usr/ports/audio/maplay/pkg/DESCR|ports@FreeBSD.org|audio|||
mikmod-3.1.6|/usr/ports/audio/mikmod|/usr/local|Mod player which plays MTM, STM, XM, MOD, S3M, ULT, UNI and IT mods|/usr/ports/audio/mikmod/pkg/DESCR|yoshiaki@kt.rim.or.jp|audio|esound-0.2.16 gmake-3.78.1 libaudiofile-0.1.9 libmikmod-3.1.7|esound-0.2.16 libaudiofile-0.1.9 libmikmod-3.1.7|
mixer.app-1.4.1|/usr/ports/audio/mixer.app|/usr/X11R6|Another mixer intended for the windowmaker dockapp|/usr/ports/audio/mixer.app/pkg/DESCR|cpiazza@FreeBSD.org|audio|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.student.hk-r.se/~pt96pli/mixer/
mp3encode-1.10|/usr/ports/audio/mp3encode|/usr/local|MPEG layer I, II and III audio file encoder|/usr/ports/audio/mp3encode/pkg/DESCR|jsutton@bbcon.com.au|audio|gmake-3.78.1||
mp3info-0.2.16|/usr/ports/audio/mp3info|/usr/local|MP3 information tool|/usr/ports/audio/mp3info/pkg/DESCR|andy@icc.surw.chel.su|audio|||
mpegaudio-3.9|/usr/ports/audio/mpegaudio|/usr/local|An MPEG/audio Layer 1 and Layer 2 encoder/decoder package|/usr/ports/audio/mpegaudio/pkg/DESCR|torstenb@FreeBSD.org|audio|||
mpg123-0.59r|/usr/ports/audio/mpg123|/usr/local|Command-line player for mpeg layer 1, 2 and 3 audio|/usr/ports/audio/mpg123/pkg/DESCR|jkoshy@freebsd.org|audio|||http://www.mpg123.de/
mpg123.el-1.5|/usr/ports/audio/mpg123.el|/usr/local|a front-end to mpg123 audio player for Emacsen|/usr/ports/audio/mpg123.el/pkg/DESCR|taoka@FreeBSD.org|audio elisp||mpg123-0.59r|http://www.gentei.org/~yuuji/software/mpg123el/
mpmf20-1.01|/usr/ports/audio/mpmf20|/usr/local|File transfer tool for the MPMan MP-F20 portable MP3-player|/usr/ports/audio/mpmf20/pkg/DESCR|ports@FreeBSD.org|audio|||http://www.world.co.uk/sba/
mxv-1.10|/usr/ports/audio/mxv|/usr/X11R6|Sound file editor/player/recorder/converter for X Window System|/usr/ports/audio/mxv/pkg/DESCR|davidn@blaze.net.au|audio|XFree86-3.3.5 iv-3.1|XFree86-3.3.5|
napster-0.7b|/usr/ports/audio/napster|/usr/local|An MP3 sharing, search, and chat client|/usr/ports/audio/napster/pkg/DESCR|dburr@FreeBSD.org|audio net|||
nas-1.2.5|/usr/ports/audio/nas|/usr/X11R6|Network Audio System|/usr/ports/audio/nas/pkg/DESCR|ports@FreeBSD.org|audio|XFree86-3.3.5|XFree86-3.3.5|
nspmod-0.1|/usr/ports/audio/nspmod|/usr/local|MOD/S3M/MTM tracker that does it's own DSP, uses VoxWare v2.90+|/usr/ports/audio/nspmod/pkg/DESCR|jmg@FreeBSD.org|audio|||
play-1.0|/usr/ports/audio/play|/usr/local|A simple audio file player|/usr/ports/audio/play/pkg/DESCR|seiken@ARGV.AC|audio|||
playmidi-2.3|/usr/ports/audio/playmidi|/usr/local|MIDI player|/usr/ports/audio/playmidi/pkg/DESCR|ache@FreeBSD.org|audio|||
radio-2.0.4|/usr/ports/audio/radio|/usr/local|Radio over the Internet|/usr/ports/audio/radio/pkg/DESCR|janek@gaja.ipan.lublin.pl|audio net|||
raproxy-3.0b1|/usr/ports/audio/raproxy|/usr/local|Progressive Networks' RealAudio Proxy Kit 3.0 beta 1|/usr/ports/audio/raproxy/pkg/DESCR|nsayer@freebsd.org|audio net|||
replay-0.61|/usr/ports/audio/replay|/usr/X11R6|Another GTK-base mp3 player|/usr/ports/audio/replay/pkg/DESCR|nacai@iname.com|audio|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
rio-1.06|/usr/ports/audio/rio|/usr/local|Tool for transferring files to and from the Diamond Rio .mp3 player|/usr/ports/audio/rio/pkg/DESCR|derm@ibm.net|audio|||http://www.world.co.uk/sba/rio.htm
ripenc-0.7|/usr/ports/audio/ripenc|/usr/local|Script that automates the ripping, encoding, and naming of CD's|/usr/ports/audio/ripenc/pkg/DESCR|jonny@jonny.eng.br|audio|||http://www.asde.com/~mjparme/index.htm
ripit-1.5|/usr/ports/audio/ripit|/usr/local|A perl-script frontend for encoding audio CDs to MP3 files|/usr/ports/audio/ripit/pkg/DESCR|oyvindmo@initio.no|audio||XFree86-3.3.5 bladeenc-0.90 tosha-0.6 xmcd-2.5 xpm-3.4k|http://www.netcomuk.co.uk/~squinn/ripit.html
ripit-atapi-1.5|/usr/ports/audio/ripit-atapi|/usr/local|A perl-script frontend for encoding audio CDs to MP3 files (ATAPI)|/usr/ports/audio/ripit-atapi/pkg/DESCR|dburr@FreeBSD.ORG|audio||XFree86-3.3.5 bladeenc-0.90 cdd-1.0 sox-12.16 xmcd-2.5 xpm-3.4k|http://www.netcomuk.co.uk/~squinn/ripit.html
rosegarden-2.1pl2|/usr/ports/audio/rosegarden|/usr/X11R6|The Rosegarden Editor and Sequencer suite|/usr/ports/audio/rosegarden/pkg/DESCR|shanee@augusta.de|audio|XFree86-3.3.5 autoconf-2.13 m4-1.4 tcl-8.2.2 tclmidi-3.1|XFree86-3.3.5 tcl-8.2.2 tclmidi-3.1|http://www.bath.ac.uk/~masjpf/rose.html
rplay-3.2.0b6|/usr/ports/audio/rplay|/usr/local|Network audio player|/usr/ports/audio/rplay/pkg/DESCR|rmallory@csusb.edu|audio|gmake-3.78.1 gsm-1.0.10|gsm-1.0.10|
rsynth-2.0|/usr/ports/audio/rsynth|/usr/local|Speech synthesizer|/usr/ports/audio/rsynth/pkg/DESCR|faulkner@mpd.tandem.com|audio|XFree86-3.3.5 gdbm-1.8.0 nas-1.2.5|XFree86-3.3.5 nas-1.2.5|
s3mod-1.09|/usr/ports/audio/s3mod|/usr/local|MOD/S3M player|/usr/ports/audio/s3mod/pkg/DESCR|ugen@FreeBSD.org|audio|||
shorten-2.3a|/usr/ports/audio/shorten|/usr/local|A wav-file compressor|/usr/ports/audio/shorten/pkg/DESCR|sec@42.org|audio archivers|||http://www.softsound.com/Shorten.html
sidplay-1.36.35|/usr/ports/audio/sidplay|/usr/local|A Commodore SID-chip emulator that plays SID music files|/usr/ports/audio/sidplay/pkg/DESCR|sec@42.org|audio emulators|XFree86-3.3.5 gmake-3.78.1||http://www.geocities.com/SiliconValley/Lakes/5147/index.html
snowstar-0.75.5|/usr/ports/audio/snowstar|/usr/local|A GUI interface to copy files to/from the Diamond Rio|/usr/ports/audio/snowstar/pkg/DESCR|fenner@FreeBSD.Org|audio||XFree86-3.3.5 rio-1.06 tcl-8.2.2 tk-8.2.2|http://www.daft.com/~armadilo/projects/snowstar/snowstar.html
sox-12.16|/usr/ports/audio/sox|/usr/local|SOund eXchange - universal sound sample translator|/usr/ports/audio/sox/pkg/DESCR|dnelson@emsphone.com|audio|||http://home.sprynet.com/~cbagwell/sox.html
splay-0.8.2|/usr/ports/audio/splay|/usr/local|An audio player that decodes MPEG Layer I,II,III and WAV files|/usr/ports/audio/splay/pkg/DESCR|cjh@kr.freebsd.org|audio|||
splaytk-2.0|/usr/ports/audio/splaytk|/usr/local|A tk based interface for splay|/usr/ports/audio/splaytk/pkg/DESCR|brett@peloton.runet.edu|audio||XFree86-3.3.5 splay-0.8.2 tcl-8.2.2 tk-8.2.2|
tclmidi-3.1|/usr/ports/audio/tclmidi|/usr/local|A language designed for creating and editing standard MIDI files|/usr/ports/audio/tclmidi/pkg/DESCR|shanee@augusta.de|audio|tcl-8.2.2|tcl-8.2.2|http://jagger.me.berkeley.edu/~greg/tclmidi/
timidity-0.2i|/usr/ports/audio/timidity|/usr/local|MIDI to WAV renderer and player|/usr/ports/audio/timidity/pkg/DESCR|ache@FreeBSD.org|audio|||http://www.goice.co.jp/member/mo/timidity/
timidity++-1.3.10|/usr/ports/audio/timidity++|/usr/local|Software MIDI player|/usr/ports/audio/timidity++/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 m4-1.4|XFree86-3.3.5|
timidity++-emacs-1.3.10|/usr/ports/audio/timidity++-emacs|/usr/local|Emacs interface for TiMidity++.|/usr/ports/audio/timidity++-emacs/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 m4-1.4|XFree86-3.3.5 timidity++-1.3.10|
timidity++-gtk-1.3.10|/usr/ports/audio/timidity++-gtk|/usr/local|Gtk interface for TiMidity++.|/usr/ports/audio/timidity++-gtk/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 m4-1.4|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 timidity++-1.3.10|
timidity++-motif-1.3.10|/usr/ports/audio/timidity++-motif|/usr/local|Motif interface for TiMidity++.|/usr/ports/audio/timidity++-motif/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|Motif-2.1.10 XFree86-3.3.5 autoconf-2.13 m4-1.4 xpm-3.4k|XFree86-3.3.5 timidity++-1.3.10 xpm-3.4k|
timidity++-slang-1.3.10|/usr/ports/audio/timidity++-slang|/usr/local|Slang interface for TiMidity++.|/usr/ports/audio/timidity++-slang/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 libslang-1.2.2 m4-1.4|XFree86-3.3.5 libslang-1.2.2 timidity++-1.3.10|
timidity++-tcltk-1.3.10|/usr/ports/audio/timidity++-tcltk|/usr/local|Tcl/Tk interface for TiMidity++.|/usr/ports/audio/timidity++-tcltk/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 m4-1.4 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 timidity++-1.3.10 tk-8.0.5|
timidity++-xaw-1.3.10|/usr/ports/audio/timidity++-xaw|/usr/local|Xaw interface for TiMidity++.|/usr/ports/audio/timidity++-xaw/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 Xaw3d-1.5 autoconf-2.13 m4-1.4|XFree86-3.3.5 Xaw3d-1.5 timidity++-1.3.10|
timidity++-xskin-1.3.10|/usr/ports/audio/timidity++-xskin|/usr/local|X11AMP skin interface for TiMidity++.|/usr/ports/audio/timidity++-xskin/pkg/DESCR|yatt@msc.biglobe.ne.jp|audio|XFree86-3.3.5 autoconf-2.13 m4-1.4|XFree86-3.3.5 timidity++-1.3.10|
tosha-0.6|/usr/ports/audio/tosha|/usr/local|Read CD digital audio and video data via the SCSI bus|/usr/ports/audio/tosha/pkg/DESCR|oliver.fromme@heim3.tu-clausthal.de|audio|||
tracker-5.3|/usr/ports/audio/tracker|/usr/local|MOD player|/usr/ports/audio/tracker/pkg/DESCR|ache@FreeBSD.org|audio|gmake-3.78.1||
waveplay-1.0|/usr/ports/audio/waveplay|/usr/local|A simple wav file player|/usr/ports/audio/waveplay/pkg/DESCR|ysonoda@dontaku.csce.kyushu-u.ac.jp|audio|||
wmcdplay-1.0b1|/usr/ports/audio/wmcdplay|/usr/X11R6|A CD player for the WindowMaker dock|/usr/ports/audio/wmcdplay/pkg/DESCR|clkao@CirX.ORG|audio windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmmixer-1.0b1|/usr/ports/audio/wmmixer|/usr/X11R6|An audio mixer for the WindowMaker dock|/usr/ports/audio/wmmixer/pkg/DESCR|rneswold@mcs.net|audio windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.geocities.com/SiliconValley/Vista/2471/wmmixer.html
wmmp3-0.11|/usr/ports/audio/wmmp3|/usr/X11R6|A front-end for mpg123 in a Window Maker dockapp|/usr/ports/audio/wmmp3/pkg/DESCR|jim@FreeBSD.org|audio windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 mpg123-0.59r xpm-3.4k|
wmsound-0.9.5|/usr/ports/audio/wmsound|/usr/X11R6|The sound server for Window Maker|/usr/ports/audio/wmsound/pkg/DESCR|ports@FreeBSD.org|audio windowmaker|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 libproplist-0.9.1|http://www.frontiernet.net/~southgat/
wmtune-1.0|/usr/ports/audio/wmtune|/usr/X11R6|Dock app radio program for the BT848/878 cards|/usr/ports/audio/wmtune/pkg/DESCR|jedgar@fxp.org|audio windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
workman-1.3a|/usr/ports/audio/workman|/usr/X11R6|Open Look-based CD player tool|/usr/ports/audio/workman/pkg/DESCR|d_burr@ix.netcom.com|audio|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|http://www.midwinter.com/workman/index.html
WSoundPrefs-1.0.2|/usr/ports/audio/wsoundprefs|/usr/X11R6|A utility for configuring sounds to play for Window Maker events|/usr/ports/audio/wsoundprefs/pkg/DESCR|ports@FreeBSD.org|audio windowmaker|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 wmsound-0.9.5 xpm-3.4k|XFree86-3.3.5|
x11amp-0.8|/usr/ports/audio/x11amp|/usr/local|X11-based MP3 player with nice graphical interface|/usr/ports/audio/x11amp/pkg/DESCR|dburr@FreeBSD.org|audio|||http://x11amp.ml.org/
xamp-0.8.7|/usr/ports/audio/xamp|/usr/X11R6|A version of amp (stands for `Audio Mpeg Player') plus a Qt GUI|/usr/ports/audio/xamp/pkg/DESCR|jslu@dns.ntu.edu.tw|audio|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
xcd-1.7|/usr/ports/audio/xcd|/usr/local|A Tcl/Tk CD player|/usr/ports/audio/xcd/pkg/DESCR|jmz@FreeBSD.org|audio tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
xcdplayer-2.2|/usr/ports/audio/xcdplayer|/usr/X11R6|CD player for X|/usr/ports/audio/xcdplayer/pkg/DESCR|swallace@FreeBSD.org|audio|XFree86-3.3.5|XFree86-3.3.5|
xhippo-2.0|/usr/ports/audio/xhippo|/usr/local|A Generic music player for UNIX systems|/usr/ports/audio/xhippo/pkg/DESCR|rod@zort.on.ca|audio|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 mpg123-0.59r|http://www.gnu.org/software/xhippo/xhippo.html
xmcd-2.5|/usr/ports/audio/xmcd|/usr/X11R6|Motif CD player|/usr/ports/audio/xmcd/pkg/DESCR|eischen@vigrid.com|audio|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://sunsite.unc.edu/~cddb/xmcd/
xmix-2.1|/usr/ports/audio/xmix|/usr/X11R6|Mixer for X Window System|/usr/ports/audio/xmix/pkg/DESCR|janek@gaja.ipan.lublin.pl|audio|XFree86-3.3.5|XFree86-3.3.5|
xmixer-0.9.3|/usr/ports/audio/xmixer|/usr/local|Audio mixer (gtk and Xlib) for X11R6|/usr/ports/audio/xmixer/pkg/DESCR|trevor@jpj.net|audio|gmake-3.78.1||http://home.pages.de/~rasca/xmixer/
xmmix-1.2|/usr/ports/audio/xmmix|/usr/X11R6|A Motif based audio mixer|/usr/ports/audio/xmmix/pkg/DESCR|erich@FreeBSD.org|audio|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://sunsite.unc.edu/~cddb/xmmix/
xmms-0.9.5.1|/usr/ports/audio/xmms|/usr/local|X Multimedia System --- An audio player with a Winamp GUI|/usr/ports/audio/xmms/pkg/DESCR|esk@ira.uka.de|audio|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libaudiofile-0.1.9 libmikmod-3.1.7 libtool-1.3.3|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libaudiofile-0.1.9 libmikmod-3.1.7|http://www.xmms.org/
xmp-2.0.0|/usr/ports/audio/xmp|/usr/local|A player for many different Amiga and PC module formats|/usr/ports/audio/xmp/pkg/DESCR|anders@fix.no|audio|XFree86-3.3.5 bzip2-0.9.5d gmake-3.78.1|XFree86-3.3.5|http://xmp.helllabs.org
xmpeg3-1.0|/usr/ports/audio/xmpeg3|/usr/local|Simple TCL interface to the Amp Mpeg-3 player|/usr/ports/audio/xmpeg3/pkg/DESCR|ports@FreeBSD.org|audio tk82||XFree86-3.3.5 amp-0.7.6 tcl-8.2.2 tk-8.2.2|
xmradio-0.8|/usr/ports/audio/xmradio|/usr/X11R6|Motif based FM tuner (for use with bt848 driver)|/usr/ports/audio/xmradio/pkg/DESCR|runge@rostock.zgdv.de|audio|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.rostock.zgdv.de/~runge/radio
xtuner-2.1|/usr/ports/audio/xtuner|/usr/X11R6|Xwindows interface for the RadioREVEAL and RadioTrack FM radio cards!|/usr/ports/audio/xtuner/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|audio|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|http://www.ndscs.nodak.edu/~tinnes/xtuner.html
bonnie-1.0|/usr/ports/benchmarks/bonnie|/usr/local|Performance Test of Filesystem I/O|/usr/ports/benchmarks/bonnie/pkg/DESCR|se@FreeBSD.org|benchmarks|||
bytebench-3.1|/usr/ports/benchmarks/bytebench|/usr/local|The BYTE magazine benchmark suite|/usr/ports/benchmarks/bytebench/pkg/DESCR|se@FreeBSD.org|benchmarks|||
dbs-1.1.5|/usr/ports/benchmarks/dbs|/usr/local|A distributed network benchmarking system|/usr/ports/benchmarks/dbs/pkg/DESCR|jkoshy@freebsd.org|benchmarks||XFree86-3.3.5 gnuplot-3.7 png-1.0.5|http://shika.aist-nara.ac.jp/member/yukio-m/dbs/
iozone-3.9|/usr/ports/benchmarks/iozone|/usr/local|Performance Test of Sequential File I/O|/usr/ports/benchmarks/iozone/pkg/DESCR|jmz@FreeBSD.org|benchmarks|||http://www.iozone.org/
lmbench-1.1|/usr/ports/benchmarks/lmbench|/usr/local|A system performance measurement tool|/usr/ports/benchmarks/lmbench/pkg/DESCR|fenner@FreeBSD.org|benchmarks|||http://www.bitmover.com/lmbench/lmbench.html
nbench-2.1|/usr/ports/benchmarks/nbench|/usr/local|BYTE Magazine's native benchmarks|/usr/ports/benchmarks/nbench/pkg/DESCR|andy@icc.surw.chel.su|benchmarks|||
netperf-2.1.3|/usr/ports/benchmarks/netperf|/usr/local|Rick Jones' <raj@cup.hp.com> network performance benchmarking package|/usr/ports/benchmarks/netperf/pkg/DESCR|fenner@freebsd.org|benchmarks|||http://www.netperf.org/
netpipe-2.3|/usr/ports/benchmarks/netpipe|/usr/local|A self-scaling network benchmark|/usr/ports/benchmarks/netpipe/pkg/DESCR|jkoshy@freebsd.org|benchmarks net|||http://www.scl.ameslab.gov/netpipe/paper/full.html
polygraph-1.2.0|/usr/ports/benchmarks/polygraph|/usr/local|A benchmarking tool for Web proxies|/usr/ports/benchmarks/polygraph/pkg/DESCR|dima@Chg.RU|benchmarks www|||http://polygraph.ircache.net/
postmark-1.11|/usr/ports/benchmarks/postmark|/usr/local|NetApps file system benchmark|/usr/ports/benchmarks/postmark/pkg/DESCR|obrien@FreeBSD.org|benchmarks|||http://www.netapp.com/tech_library/3022.html
rawio-1.0|/usr/ports/benchmarks/rawio|/usr/local|Test performance of low-level storage devices|/usr/ports/benchmarks/rawio/pkg/DESCR|obrien@FreeBSD.org|benchmarks|||
tcpblast-1.0|/usr/ports/benchmarks/tcpblast|/usr/local|Measures the throughput of a tcp connection|/usr/ports/benchmarks/tcpblast/pkg/DESCR|ports@FreeBSD.org|benchmarks net|||
xengine-1.0.1|/usr/ports/benchmarks/xengine|/usr/X11R6|Reciprocating engine for X|/usr/ports/benchmarks/xengine/pkg/DESCR|kazu@jp.freebsd.org|benchmarks|XFree86-3.3.5 sharutils-4.2|XFree86-3.3.5|
babel-1.6|/usr/ports/biology/babel|/usr/local|Conversion program among various molecular file formats|/usr/ports/biology/babel/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology|||http://mercury.aichem.arizona.edu/babel.html
deft-2.2|/usr/ports/biology/deft|/usr/local|Density functional molecular orbital calculation|/usr/ports/biology/deft/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|||http://www.chem.uottawa.ca/DeFT.html
gperiodic-1.2.1|/usr/ports/biology/gperiodic|/usr/X11R6|Displays a periodic table of the elements|/usr/ports/biology/gperiodic/pkg/DESCR|andy@icc.surw.chel.su|biology|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://gperiodic.seul.net/
hmmer-2.1.1|/usr/ports/biology/hmmer|/usr/local|Profile hidden Markov models for biological sequence analysis|/usr/ports/biology/hmmer/pkg/DESCR|barnhart@genetics.wustl.edu|biology|||http://hmmer.wustl.edu/
kinemage-4.2|/usr/ports/biology/kinemage|/usr/local|A molecular visualization program with special functions|/usr/ports/biology/kinemage/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology|linux_base-5.2 rpm-2.5.6|linux_base-5.2 rpm-2.5.6|http://prosci.org/Kinemage/
molden-3.4|/usr/ports/biology/molden|/usr/local|Display molecular orbitals and electron densities in 2D and 3D|/usr/ports/biology/molden/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|||http://www.caos.kun.nl/~schaft/molden/molden.html
mopac-7.02|/usr/ports/biology/mopac|/usr/local|Semi-empirical (MNDO, etc.) molecular orbital calculation|/usr/ports/biology/mopac/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|gmake-3.78.1||
ortep3-1.0|/usr/ports/biology/ortep3|/usr/local|The Oak Ridge Thermal Ellipsoid Plot Program for Crystal Structure|/usr/ports/biology/ortep3/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|XFree86-3.3.5 pgplot-5.2|XFree86-3.3.5 pgplot-5.2|http://www.ornl.gov/ortep/ortep.html
platon-070499|/usr/ports/biology/platon|/usr/local|Tool for viewing molecular/crystallographic structures|/usr/ports/biology/platon/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|||http://www.cryst.chem.uu.nl/platon/
povchem-1.0|/usr/ports/biology/povchem|/usr/local|Simple yet powerful tool to generate POV from a PDB file|/usr/ports/biology/povchem/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology graphics|||http://grserv.med.jhmi.edu/~paul/PovChem.html
psi88-1.0|/usr/ports/biology/psi88|/usr/local|Plotting wavefunctions (molecular orbitals) in 3D|/usr/ports/biology/psi88/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|||http://zarbi.chem.yale.edu/programs/psi88.html
rasmol-2.7.1|/usr/ports/biology/rasmol|/usr/X11R6|Fast Molecular Visualization Program|/usr/ports/biology/rasmol/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology|XFree86-3.3.5|XFree86-3.3.5|http://klaatu.oit.umass.edu/microbio/rasmol/index.html
seaview-1.0|/usr/ports/biology/seaview|/usr/X11R6|Multiple DNA sequence alignment editor|/usr/ports/biology/seaview/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|http://acnuc.univ-lyon1.fr/phylogeny/seaview.html
tinker-3.7|/usr/ports/biology/tinker|/usr/local|A general purpose molecular modelling package|/usr/ports/biology/tinker/pkg/DESCR|gjohnson@nola.srrc.usda.gov|biology|libU77-2.6|libU77-2.6|http://dasher.wustl.edu/tinker/
xmolwt-0.3|/usr/ports/biology/xmolwt|/usr/local|Calculate formula weight and percent of each element for a given formula|/usr/ports/biology/xmolwt/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|biology|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.st.hirosaki-u.ac.jp/~rmiya/xmolwt/xmolwt-e.html
acs-0.25|/usr/ports/cad/acs|/usr/local|A general purpose circuit simulator|/usr/ports/cad/acs/pkg/DESCR|tg@FreeBSD.org|cad|gcc-2.95.2||
chipmunk-5.51|/usr/ports/cad/chipmunk|/usr/local|An electronic CAD system|/usr/ports/cad/chipmunk/pkg/DESCR|ports@FreeBSD.org|cad|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://www.pcmp.caltech.edu/chipmunk/
felt-3.02|/usr/ports/cad/felt|/usr/X11R6|A system for Finite Element Analysis|/usr/ports/cad/felt/pkg/DESCR|giffunip@asme.org|cad|XFree86-3.3.5 Xaw3d-1.5|XFree86-3.3.5 Xaw3d-1.5|http://www-cse.ucsd.edu/users/atkinson/FElt/
geda-19990516|/usr/ports/cad/geda|/usr/X11R6|GNU Electronic Design Automation|/usr/ports/cad/geda/pkg/DESCR|vanilla@FreeBSD.org|cad|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 guile-1.3.4 libtool-1.3.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 guile-1.3.4|
irsim-9.4.1|/usr/ports/cad/irsim|/usr/local|An event-driven logic-level simulator for MOS circuis|/usr/ports/cad/irsim/pkg/DESCR|swallace@FreeBSD.org|cad|XFree86-3.3.5|XFree86-3.3.5|
kaskade-3.1.1|/usr/ports/cad/kaskade|/usr/X11R6|Adaptive linear scalar elliptic and parabolic problem solver|/usr/ports/cad/kaskade/pkg/DESCR|giffunip@asme.org|cad|XFree86-3.3.5|XFree86-3.3.5|
magic-6.5|/usr/ports/cad/magic|/usr/local|An interactive editor for VLSI layouts|/usr/ports/cad/magic/pkg/DESCR|swallace@FreeBSD.org|cad|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
mars-2.1|/usr/ports/cad/mars|/usr/local|Maryland Routing Simulator|/usr/ports/cad/mars/pkg/DESCR|obrien@FreeBSD.org|cad|XFree86-3.3.5|XFree86-3.3.5|
pcb-1.7|/usr/ports/cad/pcb|/usr/X11R6|X11 interactive printed circuit board layout system|/usr/ports/cad/pcb/pkg/DESCR|jseger@FreeBSD.org|cad|XFree86-3.3.5 libwww-5.2.6 m4-1.4 png-1.0.5 teTeX-1.0.6|XFree86-3.3.5|
sis-1.2.1|/usr/ports/cad/sis|/usr/local|Synthesis program for the synthesis of sequential circuits|/usr/ports/cad/sis/pkg/DESCR|volf@oasis.IAEhv.nl|cad|XFree86-3.3.5|XFree86-3.3.5|
spice-3f5|/usr/ports/cad/spice|/usr/local|A general-purpose circuit simulation program|/usr/ports/cad/spice/pkg/DESCR|kaveman@magna.com.au|cad|XFree86-3.3.5|XFree86-3.3.5|http://infopad.eecs.berkeley.edu/~icdesign/SPICE/
tkgate-0.9|/usr/ports/cad/tkgate|/usr/X11R6|A Tcl/Tk based digital circuit editor and simulator|/usr/ports/cad/tkgate/pkg/DESCR|hansen@cmu.edu|cad|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.cs.cmu.edu/~hansen/tkgate/
xcircuit-2.0a11|/usr/ports/cad/xcircuit|/usr/X11R6|An X11 drawing program [especially for circuit schematics]|/usr/ports/cad/xcircuit/pkg/DESCR|ports@FreeBSD.org|cad|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://bach.ece.jhu.edu/~tim/programs/xcircuit/
zh-CJK-4.3.0|/usr/ports/chinese/CJK|/usr/local|A LaTeX2e macro package which enables the use of CJK scripts|/usr/ports/chinese/CJK/pkg/DESCR|jtjang@gcn.net.tw|chinese|XFree86-3.3.5 freetype-1.3 gmake-3.78.1 ja-p5-jcode.pl-2.10 libwww-5.2.6 perlftlib-1.2 png-1.0.5 teTeX-1.0.6 xtt-common-1.3.0 zh-moettf-1.0|XFree86-3.3.5 freetype-1.3 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|
zh-Wnn-4.2|/usr/ports/chinese/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Chinese built)|/usr/ports/chinese/Wnn/pkg/DESCR|taoka@FreeBSD.org|chinese|XFree86-3.3.5||
zh-acroread-chsfont-1999.7.20|/usr/ports/chinese/acroread-chsfont|/usr/local|Asian Font Packs for Acrobat Reader 4.0 (for Chinese Simplified)|/usr/ports/chinese/acroread-chsfont/pkg/DESCR|taoka@FreeBSD.org|chinese||acroread-4.0 acroread-commfont-1999.7.20 linux_base-5.2 rpm-2.5.6|http://www.adobe.com/prodindex/acrobat/readstep.html
zh-acroread-chtfont-1999.7.20|/usr/ports/chinese/acroread-chtfont|/usr/local|Asian Font Packs for Acrobat Reader 4.0 (for Chinese Traditional)|/usr/ports/chinese/acroread-chtfont/pkg/DESCR|taoka@FreeBSD.org|chinese||acroread-4.0 acroread-commfont-1999.7.20 linux_base-5.2 rpm-2.5.6|http://www.adobe.com/prodindex/acrobat/readstep.html
zh-arphicttf-1.0|/usr/ports/chinese/arphicttf|/usr/X11R6|Four Chinese Big5/GB TrueType fonts made by Arphic Technology.|/usr/ports/chinese/arphicttf/pkg/DESCR|keith@freebsd.sinica.edu.tw|chinese x11-fonts|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
zh-aterm-0.3.6|/usr/ports/chinese/aterm|/usr/X11R6|A color vt102 terminal emulator with transparency support|/usr/ports/chinese/aterm/pkg/DESCR|davidyu@ken.csie.ntu.edu.tw|chinese|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|
autoconvert-0.3.3|/usr/ports/chinese/autoconvert|/usr/local|An intelligent Chinese encoding converter.|/usr/ports/chinese/autoconvert/pkg/DESCR|yinjieh@csie.nctu.edu.tw|chinese|||http://banyan.dlut.edu.cn/~ygh/
zh-bg5ps-1.1b|/usr/ports/chinese/bg5ps|/usr/local|Convert Chinese-Big5 encoded file to Postscript, using TTF fonts|/usr/ports/chinese/bg5ps/pkg/DESCR|keith@email.gcn.net.tw|chinese print||XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
zh-big5con-0.92e|/usr/ports/chinese/big5con|/usr/local|Big5 Chinese console|/usr/ports/chinese/big5con/pkg/DESCR|woju@freebsd.ee.ntu.edu.tw|chinese|||
zh-c2t-1.0|/usr/ports/chinese/c2t|/usr/local|Translates GB/Big5 encoding to tone pinyin|/usr/ports/chinese/c2t/pkg/DESCR|obrien@FreeBSD.org|chinese|||
zh-cdict-1.0|/usr/ports/chinese/cdict|/usr/local|English-Chinese dictionary.|/usr/ports/chinese/cdict/pkg/DESCR|phj@cn.FreeBSD.org|chinese|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
zh-celvis-1.3|/usr/ports/chinese/celvis|/usr/local|A vi/ex clone that speaks Chinese|/usr/ports/chinese/celvis/pkg/DESCR|obrien@FreeBSD.org|chinese editors|||
zh-cless-290|/usr/ports/chinese/cless|/usr/local|A better pager utility (and it speaks Chinese)|/usr/ports/chinese/cless/pkg/DESCR|obrien@FreeBSD.org|chinese misc|||
zh-cxterm-5.0.3|/usr/ports/chinese/cxterm|/usr/X11R6|An xterm that speaks Chinese|/usr/ports/chinese/cxterm/pkg/DESCR|obrien@FreeBSD.org|chinese x11|XFree86-3.3.5|XFree86-3.3.5|
zh-gb2ps-2.02|/usr/ports/chinese/gb2ps|/usr/local|Converts Chinese GB (simple) encoded text to PostScript|/usr/ports/chinese/gb2ps/pkg/DESCR|obrien@FreeBSD.org|chinese print|||
zh-gbscript-1.11|/usr/ports/chinese/gbscript|/usr/local|Converts GB simplified Chinese text to PostScript|/usr/ports/chinese/gbscript/pkg/DESCR|obrien@FreeBSD.org|chinese|||
zh-hc-3.0|/usr/ports/chinese/hc|/usr/local|Hanzi Converter -- converts between GB and BIG-5 codes|/usr/ports/chinese/hc/pkg/DESCR|obrien@FreeBSD.org|chinese|||
zh-hztty-2.0|/usr/ports/chinese/hztty|/usr/local|A translator between GuoBiao / Big5 and HZ|/usr/ports/chinese/hztty/pkg/DESCR|ada@bsd.org|chinese|||
zh-kcfonts-1.05|/usr/ports/chinese/kcfonts|/usr/X11R6|Kuo Chauo Chinese Fonts collection|/usr/ports/chinese/kcfonts/pkg/DESCR|PA@FreeBSD.ee.Ntu.edu.TW|chinese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
zh-libtabe-0.1b5|/usr/ports/chinese/libtabe|/usr/local|Unified library for Chinese text processing|/usr/ports/chinese/libtabe/pkg/DESCR|keith@freebsd.sinica.edu.tw|chinese|XFree86-3.3.5 db-2.7.7 gmake-3.78.1|XFree86-3.3.5 db-2.7.7|
zh-lunar-2.1|/usr/ports/chinese/lunar|/usr/local|Convert between the Gregorian Solar Calendar (SC) and the Lunar Calendar (LC)|/usr/ports/chinese/lunar/pkg/DESCR|obrien@FreeBSD.org|chinese|||
zh-moettf-1.0|/usr/ports/chinese/moettf|/usr/X11R6|Three Chinese BIG5 TrueType fonts: Kai LiShu Sung|/usr/ports/chinese/moettf/pkg/DESCR|keith@freebsd.sinica.edu.tw|chinese x11-fonts|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 unrar-2.50 xtt-common-1.3.0|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
zh-mule-wnn4-2.3|/usr/ports/chinese/mule-wnn4|/usr/local|A multilingual emacs, with Wnn4 support built in (Only the executables)|/usr/ports/chinese/mule-wnn4/pkg/DESCR|taoka@FreeBSD.org|chinese editors|XFree86-3.3.5 gmake-3.78.1 zh-Wnn-4.2|XFree86-3.3.5 mule-common-2.3|
zh-muni-1.0|/usr/ports/chinese/muni|/usr/local|Find Unicode values for Chinese characters|/usr/ports/chinese/muni/pkg/DESCR|adam@whizkidtech.net|chinese|||http://www.whizkidtech.net/i18n/muni/
zh-nvi-big5-1.79.19990331|/usr/ports/chinese/nvi-big5|/usr/local|A clone of vi/ex, with multilingual patch, default settings for big5|/usr/ports/chinese/nvi-big5/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|chinese editors|||
zh-nvi-euccn-1.79.19990331|/usr/ports/chinese/nvi-euc-cn|/usr/local|A clone of vi/ex, with multilingual patch, default settings for euc-cn|/usr/ports/chinese/nvi-euc-cn/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|chinese editors|||
zh-nvi-euctw-1.79.19990331|/usr/ports/chinese/nvi-euc-tw|/usr/local|A clone of vi/ex, with multilingual patch, default settings for euc-tw|/usr/ports/chinese/nvi-euc-tw/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|chinese editors|||
zh-pine-3.96|/usr/ports/chinese/pine3|/usr/local|Program for Internet E-mail and News with Chinese support|/usr/ports/chinese/pine3/pkg/DESCR|woju@FreeBSD.ee.Ntu.edu.TW|chinese mail news|||
zh-pine-4.20|/usr/ports/chinese/pine4|/usr/local|PINE(tm) -- a Program for Internet News & Email with Chinese(BIG-5) support|/usr/ports/chinese/pine4/pkg/DESCR|avatar@www.mmlab.cse.yzu.edu.tw|chinese mail news|||
zh-rxvt-2.6.0|/usr/ports/chinese/rxvt|/usr/X11R6|A low memory usage xterm replacement that supports color & chinese|/usr/ports/chinese/rxvt/pkg/DESCR|frankch@waru.life.nthu.edu.tw|chinese x11|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.rxvt.org/
zh-ted-4.4a|/usr/ports/chinese/ted|/usr/X11R6|A Small and Powerful Text Editor for X Window with big5 support|/usr/ports/chinese/ted/pkg/DESCR|vanilla@FreeBSD.org|chinese editors|XFree86-3.3.5|XFree86-3.3.5 zh-kcfonts-1.05 zh-xcin-2.3.03|
zh-telnet-1.0|/usr/ports/chinese/telnet|/usr/local|8bit compatible telnet client for Chinese input|/usr/ports/chinese/telnet/pkg/DESCR|woju@freebsd.ntu.edu.tw|chinese|||
zh-tin-1.4.980818|/usr/ports/chinese/tin|/usr/local|Easy-to-use console-based newsreader|/usr/ports/chinese/tin/pkg/DESCR|yssu@CCCA.NCTU.edu.tw|chinese news|||
zh-tocps-1.0|/usr/ports/chinese/tocps|/usr/local|Translates PostScript files with Chinese characters|/usr/ports/chinese/tocps/pkg/DESCR|phj@cn.FreeBSD.org|chinese|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
zh-ve-1.0|/usr/ports/chinese/ve|/usr/local|NTHU-CS Maple BBS 2.36 BBS-like editor|/usr/ports/chinese/ve/pkg/DESCR|woju@freebsd.ntu.edu.tw|chinese|||
zh-xa+cv-0.6|/usr/ports/chinese/xa+cv|/usr/local|A loadable library to show Chinese words in most applications|/usr/ports/chinese/xa+cv/pkg/DESCR|clive@CirX.ORG|chinese|gmake-3.78.1|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0 zh-kcfonts-1.05 zh-moettf-1.0 zh-xcin-2.3.03|
zh-xcin-2.3.03|/usr/ports/chinese/xcin|/usr/X11R6|A chinese input utility in X|/usr/ports/chinese/xcin/pkg/DESCR|yssu@CCCA.NCTU.edu.tw|chinese|XFree86-3.3.5|XFree86-3.3.5 zh-kcfonts-1.05|
zh-xcin-2.5.2b2|/usr/ports/chinese/xcin25|/usr/X11R6|Chinese input method server under X|/usr/ports/chinese/xcin25/pkg/DESCR|keith@freebsd.sinica.edu.tw|chinese x11|XFree86-3.3.5 db-2.7.7 gettext-0.10.35 zh-libtabe-0.1b5|XFree86-3.3.5 db-2.7.7 freetype-1.3 gettext-0.10.35 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0 zh-arphicttf-1.0 zh-libtabe-0.1b5|http://xcin.linux.org.tw/
asmodem-0.6.1|/usr/ports/comms/asmodem|/usr/X11R6|Displays the modem status, designed to match AfterStep|/usr/ports/comms/asmodem/pkg/DESCR|ports@FreeBSD.org|comms|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.cmdrtaco.net/linux/mystuff.shtml
bpl+-1.0|/usr/ports/comms/bpl+|/usr/local|B Plus file transfer protocol|/usr/ports/comms/bpl+/pkg/DESCR|max@FreeBSD.org|comms|||
conserver-5.21|/usr/ports/comms/conserver|/usr/local|Manage remote serial consoles via TCP/IP|/usr/ports/comms/conserver/pkg/DESCR|peter@FreeBSD.org|comms|||
ecu-4.08|/usr/ports/comms/ecu|/usr/local|Extended Call Utility|/usr/ports/comms/ecu/pkg/DESCR|ache@FreeBSD.org|comms|||
gnokii-0.2.3|/usr/ports/comms/gnokii|/usr/local|Software to talk to Nokia 3810/3110/8110/6110 cellular phones|/usr/ports/comms/gnokii/pkg/DESCR|staffanu@nada.kth.se|comms|gmake-3.78.1||http://multivac.fatburen.org/gnokii/
hylafax-4.0.2|/usr/ports/comms/hylafax|/usr/local|Fax software|/usr/ports/comms/hylafax/pkg/DESCR|ports@freebsd.org|comms|afm-1.0 bash-2.03 gmake-3.78.1 jpeg-6b tiff-3.5.3|bash-2.03 jpeg-6b tiff-3.5.3|http://www.hylafax.org
kermit-7.0.196-beta|/usr/ports/comms/kermit|/usr/local|File transfer and terminal emulation utility for serial lines and sockets|/usr/ports/comms/kermit/pkg/DESCR|joerg@FreeBSD.org|comms|||http://www.columbia.edu/kermit/
lrzsz-0.12.20|/usr/ports/comms/lrzsz|/usr/local|Receive/Send files via X/Y/ZMODEM protocol. (unrestrictive)|/usr/ports/comms/lrzsz/pkg/DESCR|obrien@FreeBSD.org|comms|||http://www.csl-gmbh.net/uwe/lrzsz.html
mgetty-1.1.21|/usr/ports/comms/mgetty+sendfax|/usr/local|Handle external logins, send and receive faxes|/usr/ports/comms/mgetty+sendfax/pkg/DESCR|jmz@FreeBSD.org|comms|||http://www.webforum.de/mgetty-faq.html
minicom-1.82.1|/usr/ports/comms/minicom|/usr/local|An MS-DOS Telix serial communication program "workalike"|/usr/ports/comms/minicom/pkg/DESCR|obrien@FreeBSD.org|comms||lrzsz-0.12.20|http://www.pp.clinet.fi/~walker/minicom.html
mserver-0.23a|/usr/ports/comms/mserver|/usr/local|Network modem sharing server|/usr/ports/comms/mserver/pkg/DESCR|sobomax@altavista.net|comms|||
qpage-3.2|/usr/ports/comms/qpage|/usr/local|SNPP client/server for sending messages to an alphanumeric pager|/usr/ports/comms/qpage/pkg/DESCR|joes@seaport.net|comms|||
rzsz-3.50|/usr/ports/comms/rzsz|/usr/local|Receive/Send files via X/Y/ZMODEM protocol|/usr/ports/comms/rzsz/pkg/DESCR|ache@FreeBSD.org|comms|unzip-5.40||http://www.omen.com
seyon-2.14b|/usr/ports/comms/seyon|/usr/X11R6|A communications package for the X Window system|/usr/ports/comms/seyon/pkg/DESCR|me@FreeBSD.org|comms|XFree86-3.3.5|XFree86-3.3.5|
snooper-19991202|/usr/ports/comms/snooper|/usr/local|Serial line protocol analyzer (need two serial interfaces)|/usr/ports/comms/snooper/pkg/DESCR|itojun@itojun.org|comms|||
tkhylafax-3.0|/usr/ports/comms/tkhylafax|/usr/local|A tcl/tk interface to Sam Leffler's fax package|/usr/ports/comms/tkhylafax/pkg/DESCR|andreas@FreeBSD.org|comms tk82||XFree86-3.3.5 Xaw3d-1.5 bash-2.03 ghostscript-5.10 gsfonts-5.10 gv-3.5.8 hylafax-4.0.2 jpeg-6b png-1.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|
viewfax-2.3|/usr/ports/comms/viewfax|/usr/X11R6|Display files containing g3 and/or g4 coded fax pages|/usr/ports/comms/viewfax/pkg/DESCR|jmz@FreeBSD.org|comms|XFree86-3.3.5|XFree86-3.3.5|
xcept-2.1.2|/usr/ports/comms/xcept|/usr/local|A decoder for the CEPT (Btx) protocol|/usr/ports/comms/xcept/pkg/DESCR|joerg@FreeBSD.org|comms|XFree86-3.3.5|XFree86-3.3.5|
yaps-0.96|/usr/ports/comms/yaps|/usr/local|Yet Another Pager Software: send messages to pager (SMS, TAP, ...)|/usr/ports/comms/yaps/pkg/DESCR|se@FreeBSD.org|comms|gmake-3.78.1||
zmtx-zmrx-1.02|/usr/ports/comms/zmtx-zmrx|/usr/local|Receive/Send files via ZMODEM protocol. (unrestrictive)|/usr/ports/comms/zmtx-zmrx/pkg/DESCR|obrien@FreeBSD.org|comms|||
aish-1.13|/usr/ports/converters/aish|/usr/local|Ish/uuencode/Base64 converter|/usr/ports/converters/aish/pkg/DESCR|ports@FreeBSD.org|converters|||http://hp.vector.co.jp/authors/VA004474/etc/etc.html
btoa-5.2.1|/usr/ports/converters/btoa|/usr/local|Encode/decode binary to printable ASCII|/usr/ports/converters/btoa/pkg/DESCR|bjn@visi.com|converters|||
fconv-0.1|/usr/ports/converters/fconv|/usr/local|Converts DOS or Mac-style files to Unix format, and vice-versa|/usr/ports/converters/fconv/pkg/DESCR|chris@FreeBSD.org|converters|||
i18ntools-1.0|/usr/ports/converters/i18ntools|/usr/local|Tools for the conversion to and from UTF-8 Unicode encoding|/usr/ports/converters/i18ntools/pkg/DESCR|adam@whizkidtech.net|converters|libutf-8.1.0|libutf-8.1.0 tuc-1.10|
iconv-0.2|/usr/ports/converters/iconv|/usr/local|Charset conversion library and utility|/usr/ports/converters/iconv/pkg/DESCR|joy@urc.ac.ru|converters|||
ish-1.11|/usr/ports/converters/ish|/usr/local|Binary-to-text file-encoder|/usr/ports/converters/ish/pkg/DESCR|hosokawa@jp.FreeBSD.org|converters|||
kdesupport-1.1.2|/usr/ports/converters/kdesupport11|/usr/local|Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop|/usr/ports/converters/kdesupport11/pkg/DESCR|se@freebsd.org|converters kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d libtool-1.3.3 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
kdesupport-i18n-1.1.2|/usr/ports/converters/kdesupport11-i18n|/usr/local|Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop|/usr/ports/converters/kdesupport11-i18n/pkg/DESCR|imura@kde.gr.jp|converters kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 gmake-3.78.1 libtool-1.3.3 qt-i18n-1.44a|XFree86-3.3.5 qt-i18n-1.44a|
libutf-8.1.0|/usr/ports/converters/libutf-8|/usr/local|Unicode conversion routines between UCS-4 and UTF-8|/usr/ports/converters/libutf-8/pkg/DESCR|adam@whizkidtech.net|converters|||
mimepp-1.0|/usr/ports/converters/mimepp|/usr/local|C++ class library for MIME messages|/usr/ports/converters/mimepp/pkg/DESCR|andy@icc.surw.chel.su|converters|||
mmencode-2.7|/usr/ports/converters/mmencode|/usr/local|Translate to and from mail-oriented encoding formats|/usr/ports/converters/mmencode/pkg/DESCR|kbyanc@posi.net|converters|||
mpack-1.5|/usr/ports/converters/mpack|/usr/local|External MIME packer/unpacker|/usr/ports/converters/mpack/pkg/DESCR|ache@FreeBSD.org|converters mail news|||
p5-Convert-UU-0.40|/usr/ports/converters/p5-Convert-UU|/usr/local|Perl5 module for uuencode and uudecode|/usr/ports/converters/p5-Convert-UU/pkg/DESCR|jfitz@FreeBSD.org|converters perl5|||
p5-MIME-Base64-2.11|/usr/ports/converters/p5-MIME-Base64|/usr/local|Perl5 module for Base64 and Quoted-Printable encodings|/usr/ports/converters/p5-MIME-Base64/pkg/DESCR|ports@FreeBSD.org|converters perl5|||
recode-3.4|/usr/ports/converters/recode|/usr/local|Converts files between character sets and usages|/usr/ports/converters/recode/pkg/DESCR|torstenb@FreeBSD.org|converters|||
tcs-19950325|/usr/ports/converters/tcs|/usr/local|Translate chalacer sets|/usr/ports/converters/tcs/pkg/DESCR|kuriyama@FreeBSD.org|converters plan9|||
trans-1.20|/usr/ports/converters/trans|/usr/local|Character Encoding Converter Generator Package|/usr/ports/converters/trans/pkg/DESCR|ache@FreeBSD.org|converters russian|||
tuc-1.10|/usr/ports/converters/tuc|/usr/local|Text to Unix Conversion|/usr/ports/converters/tuc/pkg/DESCR|adam@whizkidtech.net|converters|||http://www.whizkidtech.net/
unix2dos-1.0|/usr/ports/converters/unix2dos|/usr/local|Translate ASCII files from DOS (cr/lf) to UNIX (lf)|/usr/ports/converters/unix2dos/pkg/DESCR|obonilla@fisicc-ufm.edu|converters|||
uudeview-0.5.13|/usr/ports/converters/uudeview|/usr/local|A program for uu/xx/Base64/BinHex de-/encoding|/usr/ports/converters/uudeview/pkg/DESCR|hoek@FreeBSD.org|converters|uulib-0.5.13|uulib-0.5.13|http://www.uni-frankfurt.de/~fp/uudeview/
uudx-2.99|/usr/ports/converters/uudx|/usr/local|Extractor from uuencoded files|/usr/ports/converters/uudx/pkg/DESCR|rewsirow@ff.iij4u.or.jp|converters|ja-nkf-1.62 lha-1.14f||
uulib-0.5.13|/usr/ports/converters/uulib|/usr/local|A library for uu/xx/Base64/BinHex de-/encoding|/usr/ports/converters/uulib/pkg/DESCR|hoek@FreeBSD.org|converters|||http://www.uni-frankfurt.de/~fp/uudeview/
xdeview-0.5.13|/usr/ports/converters/xdeview|/usr/local|An X11 program for uu/xx/Base64/BinHex de-/encoding|/usr/ports/converters/xdeview/pkg/DESCR|hoek@FreeBSD.org|converters tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 uulib-0.5.13|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 uulib-0.5.13|http://www.uni-frankfurt.de/~fp/uudeview/
cdb-0.55|/usr/ports/databases/cdb|/usr/local|A fast lookup database library & utilities|/usr/ports/databases/cdb/pkg/DESCR|ports@FreeBSD.org|databases|||http://cr.yp.to/cdb.html
db-2.7.7|/usr/ports/databases/db|/usr/local|The Berkeley DB package, revision 2|/usr/ports/databases/db/pkg/DESCR|josh@ican.net|databases|||http://www.sleepycat.com
dbf2mysql-1.13|/usr/ports/databases/dbf2mysql|/usr/local|Programs to convert .dbf files to MySQL tables and vice versa|/usr/ports/databases/dbf2mysql/pkg/DESCR|jedgar@fxp.org|databases|mysql-client-3.22.27|mysql-client-3.22.27|
dbview-1.0.3|/usr/ports/databases/dbview|/usr/local|View dBase III files|/usr/ports/databases/dbview/pkg/DESCR|andy@icc.surw.chel.su|databases|libgnugetopt-1.1|libgnugetopt-1.1|
freetds-0.47p2|/usr/ports/databases/freetds|/usr/local|Sybase/Microsoft TDS protocol library|/usr/ports/databases/freetds/pkg/DESCR|midom@dammit.lt|databases|gmake-3.78.1||
gadfly-1.0|/usr/ports/databases/gadfly|/usr/local|An SQL database written in Python|/usr/ports/databases/gadfly/pkg/DESCR|ports@FreeBSD.org|databases|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
gdbm-1.8.0|/usr/ports/databases/gdbm|/usr/local|The GNU database manager|/usr/ports/databases/gdbm/pkg/DESCR|bjn@visi.com|databases|libtool-1.3.3||
gmysql-0.3.3|/usr/ports/databases/gmysql|/usr/local|GTK+ frontend for mysql|/usr/ports/databases/gmysql/pkg/DESCR|dirk@FreeBSD.org|databases|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 mysql-client-3.22.27|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 mysql-client-3.22.27|http://www.loth.demon.co.uk/gmysql/
gnats-3.112.1|/usr/ports/databases/gnats|/usr/local|Cygnus GNATS bug tracking system|/usr/ports/databases/gnats/pkg/DESCR|pst@FreeBSD.org|databases elisp|gmake-3.78.1 m4-1.4||http://sourceware.cygnus.com/gnats/
gtksql-0.3|/usr/ports/databases/gtksql|/usr/X11R6|Graphical query tool for PostgreSQL and/or MySQL|/usr/ports/databases/gtksql/pkg/DESCR|domi@saargate.de|databases|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 mysql-client-3.22.27|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 mysql-client-3.22.27|http://www.multimania.com/bbrox/GtkSQL/
interbase-4.0|/usr/ports/databases/interbase4|/usr/local|Interbase 4.0, license free version|/usr/ports/databases/interbase4/pkg/DESCR|berend@pobox.com|databases|||http://iblinux.rios.co.jp
msql-2.0.4.1|/usr/ports/databases/msql|/usr/local|The Mini SQL server, version 2|/usr/ports/databases/msql/pkg/DESCR|jfitz@FreeBSD.org|databases|||http://www.hughes.com.au
mysql-client-3.22.27|/usr/ports/databases/mysql322-client|/usr/local|a multithreaded SQL database (client)|/usr/ports/databases/mysql322-client/../mysql322-server/pkg/DESCR|dirk@FreeBSD.org|databases|libtool-1.3.3||http://www.tcx.se
mysql-server-3.22.27|/usr/ports/databases/mysql322-server|/usr/local|Multithreaded SQL database (server)|/usr/ports/databases/mysql322-server/pkg/DESCR|dirk@FreeBSD.org|databases|libtool-1.3.3|mysql-client-3.22.27|http://www.tcx.se
p5-DBD-Pg-0.91|/usr/ports/databases/p5-DBD-Pg|/usr/local|Provides access to PostgreSQL databases through the DBI|/usr/ports/databases/p5-DBD-Pg/pkg/DESCR|jfitz@FreeBSD.org|databases perl5|p5-DBI-1.13 postgresql-6.5.2||
p5-DBI-1.13|/usr/ports/databases/p5-DBI|/usr/local|The perl5 Database Interface. Required for DBD::* modules|/usr/ports/databases/p5-DBI/pkg/DESCR|vanilla@FreeBSD.org|databases perl5|p5-pRPC-modules-0.1005||
p5-GDBM-1.00|/usr/ports/databases/p5-GDBM|/usr/local|Perl module to use the GNU Data Base Manager (gdbm)|/usr/ports/databases/p5-GDBM/pkg/DESCR|nsayer@FreeBSD.ORG|databases perl5|gdbm-1.8.0|gdbm-1.8.0|
p5-MLDBM-2.00|/usr/ports/databases/p5-MLDBM|/usr/local|Store multi-level hash structure in single level tied hash|/usr/ports/databases/p5-MLDBM/pkg/DESCR|ports@FreeBSD.org|databases perl5|p5-FreezeThaw-0.3 p5-Storable-0.6.7||
p5-Msql-modules-1.1811|/usr/ports/databases/p5-Msql|/usr/local|Perl5 modules for accessing MiniSQL (mSQL) databases|/usr/ports/databases/p5-Msql/pkg/DESCR|jfitz@FreeBSD.org|databases perl5|msql-2.0.4.1 p5-DBI-1.13 p5-Data-ShowTable-3.3||
p5-MyObject-1.0|/usr/ports/databases/p5-MyObject|/usr/local|Accesses data in a MySQL database as Perl objects|/usr/ports/databases/p5-MyObject/pkg/DESCR|jedgar@fxp.org|databases perl5|mysql-client-3.22.27 p5-DBI-1.13 p5-Data-ShowTable-3.3 p5-Mysql-modules-1.2209||http://www.frontierworld.com/MyObject.html
p5-Mysql-modules-1.2209|/usr/ports/databases/p5-Mysql|/usr/local|Perl5 modules for accessing MySQL databases|/usr/ports/databases/p5-Mysql/pkg/DESCR|jedgar@fxp.org|databases perl5|mysql-client-3.22.27 p5-DBI-1.13 p5-Data-ShowTable-3.3|mysql-client-3.22.27 p5-DBI-1.13 p5-Data-ShowTable-3.3|
p5-Pg-1.6.1|/usr/ports/databases/p5-Pg|/usr/local|An interface between perl5 and the database Postgres95|/usr/ports/databases/p5-Pg/pkg/DESCR|jfitz@FreeBSD.org|databases perl5|postgresql-6.5.2||
p5-SQL-Statement-0.1012|/usr/ports/databases/p5-SQL-Statement|/usr/local|A perl5 module for SQL parsing and processing|/usr/ports/databases/p5-SQL-Statement/pkg/DESCR|wolman@cs.washington.edu|databases perl5|||
pgaccess-0.98|/usr/ports/databases/pgaccess|/usr/local|A Tcl/Tk interface to PostgreSQL|/usr/ports/databases/pgaccess/pkg/DESCR|andreas@FreeBSD.org|databases||XFree86-3.3.5 postgresql-6.5.2 tcl-8.0.5 tk-8.0.5|http://www.flex.ro/pgaccess/
postgresql-6.5.2|/usr/ports/databases/postgresql|/usr/local|A robust, next generation, object-relational DBMS|/usr/ports/databases/postgresql/pkg/DESCR|andreas@FreeBSD.org|databases|gmake-3.78.1||http://www.postgresql.org
py-PyGreSQL-2.4|/usr/ports/databases/py-PyGreSQL|/usr/local|A Python interface for PostgreSQL database|/usr/ports/databases/py-PyGreSQL/pkg/DESCR|nectar@FreeBSD.org|databases python|XFree86-3.3.5 postgresql-6.5.2 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 postgresql-6.5.2 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://www.druid.net/pygresql/
ruby-postgres-0.5.3|/usr/ports/databases/ruby-postgres|/usr/local|Ruby interface to PostgreSQL library|/usr/ports/databases/ruby-postgres/pkg/DESCR|yasuf@big.or.jp|databases|postgresql-6.5.2 ruby-1.4.2|postgresql-6.5.2 ruby-1.4.2|
tcl-sql-990813|/usr/ports/databases/tcl-Mysql|/usr/local|TCL module for accessing MySQL databases|/usr/ports/databases/tcl-Mysql/pkg/DESCR|mi@aldan.algebra.com|databases tcl80|mysql-client-3.22.27|mysql-client-3.22.27 tcl-8.0.5|http://www.binaryevolution.com/~tdarugar/
tkgnats-3.0.14|/usr/ports/databases/tkgnats|/usr/local|Graphical frontend for the free bug-tracking system|/usr/ports/databases/tkgnats/pkg/DESCR|andreas@FreeBSD.org|databases tk82|XFree86-3.3.5 gnats-3.112.1 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.cuug.ab.ca/~macdonal/tkgnats.html
typhoon-1.10.3|/usr/ports/databases/typhoon|/usr/local|A relational database library|/usr/ports/databases/typhoon/pkg/DESCR|erich@FreeBSD.org|databases|||
xmbase-grok-1.4.1|/usr/ports/databases/xmbase-grok|/usr/X11R6|Graphical Resource Organizer Kit|/usr/ports/databases/xmbase-grok/pkg/DESCR|andreas@FreeBSD.org|databases|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmysql-1.9|/usr/ports/databases/xmysql|/usr/X11R6|X11 front end to the MySQL database engine|/usr/ports/databases/xmysql/pkg/DESCR|andreas@FreeBSD.org|databases|XFree86-3.3.5 mysql-client-3.22.27 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 mysql-client-3.22.27 xforms-0.88.1 xpm-3.4k|
xmysqladmin-1.0|/usr/ports/databases/xmysqladmin|/usr/X11R6|X11 front end to the mysqladmin command of the MySQL database engine|/usr/ports/databases/xmysqladmin/pkg/DESCR|andreas@FreeBSD.org|databases|XFree86-3.3.5 mysql-client-3.22.27 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 mysql-client-3.22.27 xforms-0.88.1 xpm-3.4k|
abacus-0.9.13|/usr/ports/deskutils/abacus|/usr/X11R6|Spread sheet for X Window System|/usr/ports/deskutils/abacus/pkg/DESCR|andy@icc.surw.chel.su|deskutils|XFree86-3.3.5 gmake-3.78.1 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|http://www-cad.eecs.berkeley.edu/HomePages/aml/abacus/abacus.html
cal-3.5|/usr/ports/deskutils/cal|/usr/local|Enhanced color version of standard calendar utility|/usr/ports/deskutils/cal/pkg/DESCR|sanpei@sanpei.org|deskutils|||
cbb-0.78|/usr/ports/deskutils/cbb|/usr/local|Checkbook balancing tool|/usr/ports/deskutils/cbb/pkg/DESCR|kline@thought.org|deskutils||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
gaddr-1.1.4|/usr/ports/deskutils/gaddr|/usr/X11R6|A GTK (and optionally, GNOME) address book|/usr/ports/deskutils/gaddr/pkg/DESCR|jim@FreeBSD.org|deskutils|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.cse.unl.edu/~cluening/gaddr/
genius-0.4.2|/usr/ports/deskutils/genius|/usr/X11R6|Arbitrary precision calculator for Gnome Desktop Environment|/usr/ports/deskutils/genius/pkg/DESCR|andy@icc.surw.chel.su|deskutils gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.5z.com/jirka/linux.html#genius
gnomepim-1.0.55|/usr/ports/deskutils/gnomepim|/usr/X11R6|Gnome pim package|/usr/ports/deskutils/gnomepim/pkg/DESCR|nakai@FreeBSD.org|deskutils gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnucash-1.0.18|/usr/ports/deskutils/gnucash|/usr/local|Quicken-like money and finace manager|/usr/ports/deskutils/gnucash/pkg/DESCR|obrien@FreeBSD.org|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.gnucash.org/
gtimer-1.1.4|/usr/ports/deskutils/gtimer|/usr/local|A timer for your personal activities|/usr/ports/deskutils/gtimer/pkg/DESCR|cpiazza@FreeBSD.org|deskutils|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.radix.net/~cknudsen/gtimer/
ical-2.2|/usr/ports/deskutils/ical|/usr/local|A calendar application|/usr/ports/deskutils/ical/pkg/DESCR|erich@FreeBSD.org|deskutils tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
korganizer-1.1|/usr/ports/deskutils/korganizer|/usr/local|A Calendar / Scheduling tool (PIM) for KDE|/usr/ports/deskutils/korganizer/pkg/DESCR|hanspb@persbraten.vgs.no|deskutils kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
korganizer-i18n-1.1.2|/usr/ports/deskutils/korganizer11-i18n|/usr/local|A Calendar / Scheduling tool (PIM) for KDE|/usr/ports/deskutils/korganizer11-i18n/pkg/DESCR|imura@kde.gr.jp|deskutils kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 qt-i18n-1.44a|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
kproject-0.1|/usr/ports/deskutils/kproject|/usr/local|Project planner for KDE (preview version)|/usr/ports/deskutils/kproject/pkg/DESCR|hanspb@persbraten.vgs.no|deskutils kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 libtool-1.3.3 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
offix-trash-2.4|/usr/ports/deskutils/offix-trash|/usr/X11R6|Trash from OffiX|/usr/ports/deskutils/offix-trash/pkg/DESCR|ruslan@shevchenko.kiev.ua|deskutils offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1|XFree86-3.3.5 libdnd-1.1|http://leb.net/OffiX/
plan-1.8.2|/usr/ports/deskutils/plan|/usr/local|An X/Motif schedule planner with calendar|/usr/ports/deskutils/plan/pkg/DESCR|deischen@iworks.InterWorks.org|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.IN-Berlin.DE/User/bitrot/plan.html
recycler-0.1a|/usr/ports/deskutils/recycler|/usr/X11R6|Trash can software that replaces the offix trash can|/usr/ports/deskutils/recycler/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|x11-toolkits windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
sliderule-1.0|/usr/ports/deskutils/sliderule|/usr/X11R6|The part of X11R3's xcalc featuring a slide rule|/usr/ports/deskutils/sliderule/pkg/DESCR|joerg@FreeBSD.org|deskutils|XFree86-3.3.5|XFree86-3.3.5|
teapot-1.03|/usr/ports/deskutils/teapot|/usr/local|Full-screen curses based spread sheet program|/usr/ports/deskutils/teapot/pkg/DESCR|andy@icc.surw.chel.su|deskutils|||http://www.moria.de/~michael/teapot/teapot-en.html
wmpinboard-0.10|/usr/ports/deskutils/wmpinboard|/usr/X11R6|Post-it notes for the WindowMaker dock or AfterStep Wharf|/usr/ports/deskutils/wmpinboard/pkg/DESCR|jim@FreeBSD.org|deskutils afterstep windowmaker|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.tu-ilmenau.de/~gomar/stuff/wmpinboard/
wpeople-0.13|/usr/ports/deskutils/wpeople|/usr/X11R6|Simple address book type program based on the WINGs|/usr/ports/deskutils/wpeople/pkg/DESCR|sobomax@altavista.net|deskutils windowmaker|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://lemur.uvm.edu/~kelvin/WPeople/
xcalendar-4.0|/usr/ports/deskutils/xcalendar|/usr/X11R6|A calendar with a notebook for X11 (internationarized version)|/usr/ports/deskutils/xcalendar/pkg/DESCR|mita@jp.FreeBSD.org|deskutils|XFree86-3.3.5|XFree86-3.3.5|
xinvest-2.5.1|/usr/ports/deskutils/xinvest|/usr/X11R6|A personal finance tracking and performance tool|/usr/ports/deskutils/xinvest/pkg/DESCR|ports@FreeBSD.org|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://sunsite.auc.dk/xinvest/
xmaddressbook-1.5.3|/usr/ports/deskutils/xmaddressbook|/usr/X11R6|X11/Motif-based addressbook program|/usr/ports/deskutils/xmaddressbook/pkg/DESCR|shanee@augusta.de|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmdiary-3.0.1|/usr/ports/deskutils/xmdiary|/usr/X11R6|Personal and group calendar utility|/usr/ports/deskutils/xmdiary/pkg/DESCR|mi@aldan.algebra.com|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xopps-1.13|/usr/ports/deskutils/xopps|/usr/X11R6|A tool which lets you draw Gantt charts|/usr/ports/deskutils/xopps/pkg/DESCR|ports@FreeBSD.org|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xpostit-3.3.1|/usr/ports/deskutils/xpostit|/usr/X11R6|PostIt (R) messages onto your X11 screen|/usr/ports/deskutils/xpostit/pkg/DESCR|joerg@FreeBSD.org|deskutils|XFree86-3.3.5|XFree86-3.3.5|
XPostitPlus-2.3|/usr/ports/deskutils/xpostitPlus|/usr/X11R6|PostIt (R) messages onto your X11 screen|/usr/ports/deskutils/xpostitPlus/pkg/DESCR|mi@aldan.algebra.com|deskutils|XFree86-3.3.5|XFree86-3.3.5|
xrolo-2.6|/usr/ports/deskutils/xrolo|/usr/X11R6|Electronic rolodex|/usr/ports/deskutils/xrolo/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|deskutils|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
zorro-1.1.8|/usr/ports/deskutils/zorro|/usr/local|A simple to-do list manager|/usr/ports/deskutils/zorro/pkg/DESCR|shanee@augusta.de|deskutils tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
electricfence-2.0.5|/usr/ports/devel/ElectricFence|/usr/local|A debugging malloc() that uses the VM hardware to detect buffer overruns|/usr/ports/devel/ElectricFence/pkg/DESCR|jraynard@freebsd.org|devel|||
ORBacus-3.1.3|/usr/ports/devel/ORBacus|/usr/local|A CORBA 2 implementation|/usr/ports/devel/ORBacus/pkg/DESCR|ejc@bazzle.com|devel|XFree86-3.3.5 gcc-2.95.2|XFree86-3.3.5|http://www.ORBacus.com
ORBit-0.5.0|/usr/ports/devel/ORBit|/usr/local|High-performance CORBA ORB with support for the C language|/usr/ports/devel/ORBit/pkg/DESCR|nakai@FreeBSD.org|devel gnome|gettext-0.10.35 glib-1.2.6 gmake-3.78.1 libtool-1.3.3|gettext-0.10.35 glib-1.2.6|
swig-1.1p5|/usr/ports/devel/SWIG|/usr/local|Simplified Wrapper and Interface Generator|/usr/ports/devel/SWIG/pkg/DESCR|erich@FreeBSD.org|devel python tcl82|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2||
SpecTcl-1.1|/usr/ports/devel/SpecTcl|/usr/local|Free drag-and-drop GUI builder for Tk and Java from Sun|/usr/ports/devel/SpecTcl/pkg/DESCR|andreas@FreeBSD.org|devel tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://sunscript.sun.com/products/spectcl.html
a2dev-1.2|/usr/ports/devel/a2dev|/usr/local|Apple II 6502 assembler, linker, loader, and object file viewer|/usr/ports/devel/a2dev/pkg/DESCR|archie@whistle.com|devel|gmake-3.78.1||
amulet-3.0|/usr/ports/devel/amulet|/usr/X11R6|A free C++ GUI library|/usr/ports/devel/amulet/pkg/DESCR|bovynf@awe.be|devel x11|XFree86-3.3.5|XFree86-3.3.5|http://pecan.srv.cs.cmu.edu/afs/cs/project/amulet/www/
asl-1.41r7|/usr/ports/devel/asl|/usr/local|Assembler for a variety of microcontrollers/-processors|/usr/ports/devel/asl/pkg/DESCR|ports@FreeBSD.org|devel|XFree86-3.3.5||
astyle-1.11.5|/usr/ports/devel/astyle|/usr/local|A reindenter and reformatter of C++, C and Java source code|/usr/ports/devel/astyle/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|devel textproc|||http://www.bigfoot.com/~davidsont/astyle
autoconf-2.13|/usr/ports/devel/autoconf|/usr/local|Automatically configure source code on many Un*x platforms|/usr/ports/devel/autoconf/pkg/DESCR|torstenb@FreeBSD.org|devel|m4-1.4|m4-1.4|
automake-1.4|/usr/ports/devel/automake|/usr/local|GNU Standards-compliant Makefile generator|/usr/ports/devel/automake/pkg/DESCR|fujimoto@oscar.elec.waseda.ac.jp|devel|||
bcc-95.3.12|/usr/ports/devel/bcc|/usr/local|Bruce's C compiler (with as and ld); can do 16-bit code|/usr/ports/devel/bcc/pkg/DESCR|joerg@FreeBSD.org|devel lang|||
boehm-gc-5.0a3|/usr/ports/devel/boehm-gc|/usr/local|Garbage collection and memory leak detection for C and C++|/usr/ports/devel/boehm-gc/pkg/DESCR|mmcg@cs.monash.edu.au|devel|||
bonobo-0.4|/usr/ports/devel/bonobo|/usr/local|The component and compound document system for GNOME|/usr/ports/devel/bonobo/pkg/DESCR|ade@lovett.com|devel gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gdk-pixbuf-0.4 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gdk-pixbuf-0.4 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.gnome.org/
cccc-2.1.1|/usr/ports/devel/cccc|/usr/local|C and C++ Code Counter|/usr/ports/devel/cccc/pkg/DESCR|andy@icc.surw.chel.su|devel textproc www|gmake-3.78.1 pccts-1.33.20||
cdecl-2.5|/usr/ports/devel/cdecl|/usr/local|Explains complicated C/C++ declarations in plain English|/usr/ports/devel/cdecl/pkg/DESCR|obrien@FreeBSD.org|devel|||
cdk-4.9.1|/usr/ports/devel/cdk|/usr/local|Curses Development Kit for speedy development of full screen programs|/usr/ports/devel/cdk/pkg/DESCR|andy@icc.surw.chel.su|devel|||
cflow-2.0|/usr/ports/devel/cflow|/usr/local|A call graph generator for C code|/usr/ports/devel/cflow/pkg/DESCR|dchapes@zeus.leitch.com|devel|gmake-3.78.1||
clig-1.1.3|/usr/ports/devel/clig|/usr/local|Auto-generate an (argc, argv) processor, usage message, and manpage|/usr/ports/devel/clig/pkg/DESCR|billf@FreeBSD.org|devel tcl82|tcl-8.2.2|tcl-8.2.2|http://wsd.iitb.fhg.de/~kir/clighome/
code_crusader-2.1.4|/usr/ports/devel/codecrusader|/usr/local|Code Crusader is a complete code development environment (IDE) for X|/usr/ports/devel/codecrusader/pkg/DESCR|davec@unforgettable.com|devel|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.cco.caltech.edu/~jafl/jcc/
cons-1.7|/usr/ports/devel/cons|/usr/local|A Perl-based Make Replacement|/usr/ports/devel/cons/pkg/DESCR|rv@fore.com|devel||p5-MD5-1.7|http://www.dsmit.com/cons/
crossgo32-1.3|/usr/ports/devel/crossgo32|/usr/local|Cross Development Environment for 32-bit DOS|/usr/ports/devel/crossgo32/pkg/DESCR|sutton@aardvark.apana.org.au|devel|gmake-3.78.1||http://www.delorie.com/djgpp/
crossgo32-djgpp2-2.01|/usr/ports/devel/crossgo32-djgpp2|/usr/local|DJGPP V2 libraries and compatability for crossgo32 crosscompiler|/usr/ports/devel/crossgo32-djgpp2/pkg/DESCR|sutton@aardvark.apana.org.au|devel|unzip-5.40|crossgo32-1.3|
crossgo32-djgpp2-pdcurses-2.2|/usr/ports/devel/crossgo32-djgpp2-pdcurses|/usr/local|PD curses for crossgo32 crosscompiler with djgpp v2 libraries|/usr/ports/devel/crossgo32-djgpp2-pdcurses/pkg/DESCR|sutton@aardvark.apana.org.au|devel|unzip-5.40|crossgo32-1.3 crossgo32-djgpp2-2.01|
crossm68k-2.0|/usr/ports/devel/crossm68k|/usr/local|Cross development for Motorola 68xxx and Coldfire family|/usr/ports/devel/crossm68k/pkg/DESCR|Jerry.Hicks@Glenayre.com|devel|m68knewlib-1.8.1|m68kgdb-4.18|
crossm68k-3.0|/usr/ports/devel/crossm68k-devel|/usr/local|Motorola MC68xxx cross development toolchain based on EGCS 1.1.2|/usr/ports/devel/crossm68k-devel/pkg/DESCR|wghicks@bellsouth.net|devel|bzip2-0.9.5d gmake-3.78.1||
crosssco-1.5|/usr/ports/devel/crosssco|/usr/local|SCO (R) Cross Development Environment|/usr/ports/devel/crosssco/pkg/DESCR|giffunip@asme.org|devel|gmake-3.78.1||
cs-0.5|/usr/ports/devel/cs|/usr/local|Interactively examine C source code|/usr/ports/devel/cs/pkg/DESCR|andy@icc.surw.chel.su|devel|||
cscope-13.7|/usr/ports/devel/cscope|/usr/local|An interactive C program browser|/usr/ports/devel/cscope/pkg/DESCR|castor@alumni.caltech.edu|devel|||
cssc-0.10b.1|/usr/ports/devel/cssc|/usr/local|A workalike for the source code control system SCCS|/usr/ports/devel/cssc/pkg/DESCR|olli@fromme.com|devel|||
ctags-3.3.2|/usr/ports/devel/ctags|/usr/local|A feature-filled tagfile generator for vi and emacs clones|/usr/ports/devel/ctags/pkg/DESCR|jkoshy@FreeBSD.org|devel|||http://fly.hiwaay.net/~darren/ctags/
cutils-1.4|/usr/ports/devel/cutils|/usr/local|Miscellaneous C programmer's utilities|/usr/ports/devel/cutils/pkg/DESCR|ssigala@globalnet.it|devel|||
cvsweb-1.0|/usr/ports/devel/cvsweb|/usr/local|WWW CGI script that allows remote access to a CVS tree|/usr/ports/devel/cvsweb/pkg/DESCR|sada@FreeBSD.org|devel www|||http://www.freebsd.org/~fenner/cvsweb/
cweb-3.41|/usr/ports/devel/cweb|/usr/local|Literate programming tools for the C language|/usr/ports/devel/cweb/pkg/DESCR|tg@FreeBSD.org|devel|||
cxref-1.5b|/usr/ports/devel/cxref|/usr/local|C program cross-referencing & documentation tool|/usr/ports/devel/cxref/pkg/DESCR|ports@FreeBSD.org|devel|gmake-3.78.1||http://www.gedanken.demon.co.uk/cxref/
ddd-3.1.6|/usr/ports/devel/ddd|/usr/local|Data Display Debugger -- a common graphical front-end for GDB/DBX/XDB|/usr/ports/devel/ddd/pkg/DESCR|obrien@FreeBSD.org|devel|Motif-2.1.10 XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.cs.tu-bs.de/softech/ddd/
dmake-4.1|/usr/ports/devel/dmake|/usr/local|Another hyper make utility|/usr/ports/devel/dmake/pkg/DESCR|ports@FreeBSD.org|devel|gmake-3.78.1||http://dmake.wticorp.com/
doc++-3.3.15|/usr/ports/devel/doc++|/usr/local|Javadoc style C++ documentatation system|/usr/ports/devel/doc++/pkg/DESCR|Ruslan@Shevchenko.Kiev.UA|devel|gmake-3.78.1|XFree86-3.3.5 ghostscript-5.10 gsfonts-5.10 jpeg-6b libwww-5.2.6 netpbm-8.0 png-1.0.5 teTeX-1.0.6 tiff-3.5.3|http://www.imaginator.com/doc++/
doxygen-0.4|/usr/ports/devel/doxygen|/usr/local|A documentation system for C and C++|/usr/ports/devel/doxygen/pkg/DESCR|joep@di.nl|devel|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
elftoaout-2.0|/usr/ports/devel/elftoaout|/usr/local|ELF to a.out conversion tool by Jakub Jelinek and Pete Zaitcev|/usr/ports/devel/elftoaout/pkg/DESCR|kchowksey@hss.hns.com|devel|||
f77flow-0.12|/usr/ports/devel/f77flow|/usr/local|Analyze the structure of a fortran77 program|/usr/ports/devel/f77flow/pkg/DESCR|andy@icc.surw.chel.su|devel|||
fastcrc-1.0|/usr/ports/devel/fastcrc|/usr/local|Fast CRC routines|/usr/ports/devel/fastcrc/pkg/DESCR|adam@whizkidtech.net|devel|nasm-0.98||
flick-2.0|/usr/ports/devel/flick|/usr/local|The Flexible IDL Compiler Kit|/usr/ports/devel/flick/pkg/DESCR|ports@FreeBSD.org|devel|gmake-3.78.1||http://www.cs.utah.edu/projects/flux/flick/
fpp-1.1|/usr/ports/devel/fpp|/usr/local|Fortran preprocessor for FORTRAN 77 and Fortran 90 programs|/usr/ports/devel/fpp/pkg/DESCR|vazquez@iqm.unicamp.br|devel|gmake-3.78.1||
freelibiberty-0.1|/usr/ports/devel/freelibiberty|/usr/local|A freely-redistributable libiberty clone|/usr/ports/devel/freelibiberty/pkg/DESCR|howardjp@wam.umd.edu|devel|||
ftnchek-2.11.2|/usr/ports/devel/ftnchek|/usr/local|Fortran 77 semantic checking utility|/usr/ports/devel/ftnchek/pkg/DESCR|kargl@apl.washington.edu|devel|||http://www.dsm.fordham.edu/~ftnchek/
gaa-1.5|/usr/ports/devel/gaa|/usr/local|GPL Argument Analyser|/usr/ports/devel/gaa/pkg/DESCR|dima@chg.ru|devel|||http://gaa.netpedia.net/
gcc11-2.6.3|/usr/ports/devel/gcc11|/usr/local|The gcc-2.6.3 cross-compiler for the 6811|/usr/ports/devel/gcc11/pkg/DESCR|erich@FreeBSD.org|devel|||
gettext-0.10.35|/usr/ports/devel/gettext|/usr/local|GNU gettext package|/usr/ports/devel/gettext/pkg/DESCR|nakai@FreeBSD.org|devel|libtool-1.3.3||
gide-0.1.5|/usr/ports/devel/gide|/usr/X11R6|GTK-based IDE for the C programming Language|/usr/ports/devel/gide/pkg/DESCR|ports@FreeBSD.org|devel gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://gide.pn.org/
gindent-2.2.2|/usr/ports/devel/gindent|/usr/local|GNU indent|/usr/ports/devel/gindent/pkg/DESCR|kchowksey@hss.hns.com|devel|||
glade-0.5.3|/usr/ports/devel/glade|/usr/X11R6|A user interface builder for GTK+ and GNOME|/usr/ports/devel/glade/pkg/DESCR|dom@myrddin.demon.co.uk|devel|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libtool-1.3.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://glade.pn.org/
glib-1.2.6|/usr/ports/devel/glib12|/usr/local|Some useful routines of C programming|/usr/ports/devel/glib12/pkg/DESCR|vanilla@FreeBSD.org|devel|libtool-1.3.3||http://www.gtk.org/
gmake-3.78.1|/usr/ports/devel/gmake|/usr/local|GNU version of 'make' utility|/usr/ports/devel/gmake/pkg/DESCR|jseger@FreeBSD.org|devel|||
gnustep-0.6.0|/usr/ports/devel/gnustep|/usr/local/GNUstep|Objective-C libraries based on the OpenStep standard|/usr/ports/devel/gnustep/pkg/DESCR|ports@FreeBSD.org|devel|XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1 jpeg-6b tiff-3.5.3|XFree86-3.3.5 jpeg-6b tiff-3.5.3|
gtksheet-8.0|/usr/ports/devel/gtksheet|/usr/X11R6|A matrix widget for GTK+|/usr/ports/devel/gtksheet/pkg/DESCR|ijliao@csie.nctu.edu.tw|devel|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
id-utils-3.2|/usr/ports/devel/id-utils|/usr/local|The classic Berkeley gid/lid tools for looking up variables in code|/usr/ports/devel/id-utils/pkg/DESCR|pst@FreeBSD.org|devel|XFree86-3.3.5 emacs-20.4 gmake-3.78.1||
ilu-2.0a13|/usr/ports/devel/ilu|/usr/local|CORBA-compatible multi-language Object Request Broker|/usr/ports/devel/ilu/pkg/DESCR|cracauer@cons.org|devel|XFree86-3.3.5||
gdbtk-4.16|/usr/ports/devel/insight|/usr/local|Tk interface to gdb|/usr/ports/devel/insight/pkg/DESCR|msmith@FreeBSD.org|devel tk42|XFree86-3.3.5 gmake-3.78.1 tcl-7.6 tk-4.2|XFree86-3.3.5 tcl-7.6 tk-4.2|
jam-2.2|/usr/ports/devel/jam|/usr/local|A build utility like make(1)|/usr/ports/devel/jam/pkg/DESCR|hsu@freebsd.org|devel|||
kdbg-1.0.1|/usr/ports/devel/kdbg|/usr/local|A graphical user interface around gdb using KDE|/usr/ports/devel/kdbg/pkg/DESCR|jedgar@fxp.org|devel kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 libtool-1.3.3 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kdebase-1.1.2 kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 xpm-3.4k|http://members.telecom.at/~johsixt/kdbg.html
kdbg-i18n-1.0.1|/usr/ports/devel/kdbg-i18n|/usr/local|A graphical user interface around gdb using KDE|/usr/ports/devel/kdbg-i18n/pkg/DESCR|imura@FreeBSD.org|devel kde|XFree86-3.3.5 gcc-2.95.2 giflib-4.1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 qt-i18n-1.44a|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|http://members.telecom.at/~johsixt/kdbg.html
kdevelop-i18n-1.0|/usr/ports/devel/kdevelop-i18n|/usr/local|A GUI developers' kit for the KDE integrated X11 desktop|/usr/ports/devel/kdevelop-i18n/pkg/DESCR|imura@FreeBSD.org|devel kde|XFree86-3.3.5 gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|http://www.kdevelop.org/
ktranslator-0.4.0|/usr/ports/devel/ktranslator|/usr/local|A powerful utility for kde translators|/usr/ports/devel/ktranslator/pkg/DESCR|hanspb@persbraten.vgs.no|devel kde|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
lclint-2.4b|/usr/ports/devel/lclint|/usr/local|A tool for statically checking C programs|/usr/ports/devel/lclint/pkg/DESCR|s.moeding@ndh.net|devel|gmake-3.78.1||http://www.sds.lcs.mit.edu/lclint/
libproplist-0.9.1|/usr/ports/devel/libPropList|/usr/local|Property library for gnome and Window Maker|/usr/ports/devel/libPropList/pkg/DESCR|gljohns@bellsouth.net|devel gnome|libtool-1.3.3||
libU77-2.6|/usr/ports/devel/libU77|/usr/local|Adds Fortran intrinsics missing from f2c|/usr/ports/devel/libU77/pkg/DESCR|ports@FreeBSD.org|devel|||
libcii-1.1|/usr/ports/devel/libcii|/usr/local|Library from "C Interfaces and Implementations" by David Hanson|/usr/ports/devel/libcii/pkg/DESCR|hjh@photino.com|devel|||
dlmalloc-2.6.5|/usr/ports/devel/libdlmalloc|/usr/local|Small, fast malloc library by Doug Lea|/usr/ports/devel/libdlmalloc/pkg/DESCR|roberto@FreeBSD.org|devel|||
libffi-1.20|/usr/ports/devel/libffi|/usr/local|Foreign Function Interface|/usr/ports/devel/libffi/pkg/DESCR|horance@freedom.ie.cycu.edu.tw|devel|libtool-1.3.3||
getline-3.9|/usr/ports/devel/libgetline|/usr/local|A small, portable, and easy to use command line library|/usr/ports/devel/libgetline/pkg/DESCR|wghicks@bellsouth.net|devel|||
libglade-0.9|/usr/ports/devel/libglade|/usr/local|GNOME glade library|/usr/ports/devel/libglade/pkg/DESCR|ade@lovett.com|devel gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
libgnugetopt-1.1|/usr/ports/devel/libgnugetopt|/usr/local|GNU getopt library|/usr/ports/devel/libgnugetopt/pkg/DESCR|andy@icc.surw.chel.su|devel|||
libgtop-1.0.6|/usr/ports/devel/libgtop|/usr/local|GNOME top library|/usr/ports/devel/libgtop/pkg/DESCR|nakai@FreeBSD.org|devel gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
libmalloc-1.18|/usr/ports/devel/libmalloc|/usr/local|Small, fast malloc library with comprehensive error checking|/usr/ports/devel/libmalloc/pkg/DESCR|obrien@FreeBSD.org|devel|||
libshhmsg-1.4.0|/usr/ports/devel/libshhmsg|/usr/local|A library for displaying messages|/usr/ports/devel/libshhmsg/pkg/DESCR|andy@icc.surw.chel.su|devel|gmake-3.78.1||
libshhopt-1.1.5|/usr/ports/devel/libshhopt|/usr/local|A library for parsing command line options|/usr/ports/devel/libshhopt/pkg/DESCR|andy@icc.surw.chel.su|devel|gmake-3.78.1||
libslang-1.2.2|/usr/ports/devel/libslang|/usr/local|Routines for rapid alpha-numeric terminal applications development|/usr/ports/devel/libslang/pkg/DESCR|xaa@xaa.iae.nl|devel|||http://www.s-lang.org/
libtool-1.3.3|/usr/ports/devel/libtool|/usr/local|Generic shared library support script|/usr/ports/devel/libtool/pkg/DESCR|reg@shale.csir.co.za|devel|||
libxalloc-1.0.3|/usr/ports/devel/libxalloc|/usr/local|A memory allocation library with error checking|/usr/ports/devel/libxalloc/pkg/DESCR|andy@icc.surw.chel.su|devel|gmake-3.78.1||
lincvs-0.2.2|/usr/ports/devel/lincvs|/usr/local|Graphical CVS front-end using QT2|/usr/ports/devel/lincvs/pkg/DESCR|jedgar@fxp.org|devel kde|XFree86-3.3.5 gcc-2.95.2 png-1.0.5 qt-2.0.2|XFree86-3.3.5 png-1.0.5 qt-2.0.2|http://ppprs1.phy.tu-dresden.de/~trogisch/lincvs/lincvsen.html
linux_devtools-5.2|/usr/ports/devel/linux_devtools|/compat/linux|Packages needed for doing development in Linux mode|/usr/ports/devel/linux_devtools/pkg/DESCR|marcel@FreeBSD.org|emulators devel||linux_base-5.2 rpm-2.5.6|
linux_kdump-1.4|/usr/ports/devel/linux_kdump|/usr/local|Linux-compatability ktrace.out processor|/usr/ports/devel/linux_kdump/pkg/DESCR|marcel@FreeBSD.org|devel|linux_base-5.2 linux_devtools-5.2 rpm-2.5.6||
linuxthreads-0.71|/usr/ports/devel/linuxthreads|/usr/local|POSIX pthreads implementation using rfork to generate kernel threads.|/usr/ports/devel/linuxthreads/pkg/DESCR|jasone@freebsd.org|devel|||
m4-1.4|/usr/ports/devel/m4|/usr/local|GNU's m4|/usr/ports/devel/m4/pkg/DESCR|ports@FreeBSD.org|devel|||
m68kbinutils-2.9.1|/usr/ports/devel/m68kbinutils|/usr/local|FSF binutils-2.9.2 for Motorola M68K and Coldfire cross-development|/usr/ports/devel/m68kbinutils/pkg/DESCR|Jerry.Hicks@Glenayre.com|devel|gmake-3.78.1||
m68kgcc-2.8.1|/usr/ports/devel/m68kgcc|/usr/local|FSF gcc-2.8.1 for Motorola M68K and Coldfire cross-development|/usr/ports/devel/m68kgcc/pkg/DESCR|Jerry.Hicks@Glenayre.com|devel|gmake-3.78.1 m68kbinutils-2.9.1|m68kbinutils-2.9.1|
m68kgdb-4.18|/usr/ports/devel/m68kgdb|/usr/local|A Motorola 68k debugger for cross-development purposes|/usr/ports/devel/m68kgdb/pkg/DESCR|Jerry.Hicks@Glenayre.com|devel|gmake-3.78.1||
m68knewlib-1.8.1|/usr/ports/devel/m68knewlib|/usr/local|Cygnus newlib-1.8.1 for Motorola M68K and Coldfire cross-development|/usr/ports/devel/m68knewlib/pkg/DESCR|Jerry.Hicks@Glenayre.com|devel|gmake-3.78.1 m68kbinutils-2.9.1 m68kgcc-2.8.1||
makedepend-95.07.05|/usr/ports/devel/makedepend|/usr/local|A dependency generator for makefiles|/usr/ports/devel/makedepend/pkg/DESCR|i.vaudrey@bigfoot.com|devel|||
mico-2.3.0|/usr/ports/devel/mico|/usr/local|A CORBA 2.0 implementation which goal is freely available|/usr/ports/devel/mico/pkg/DESCR|scrappy@freebsd.org|devel|Mesa-3.0 XFree86-3.3.5 autoconf-2.13 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 m4-1.4 qt-1.42 tcl-8.0.5|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 qt-1.42 tcl-8.0.5|http://diamant.vsb.cs.uni-frankfurt.de/~mico
mkmf-4.11|/usr/ports/devel/mkmf|/usr/local|Creates program and library makefiles for the make(1) command|/usr/ports/devel/mkmf/pkg/DESCR|se@FreeBSD.org|devel|||
mm-1.0.12|/usr/ports/devel/mm|/usr/local|Shared memory library for applications with pre-forked process model|/usr/ports/devel/mm/pkg/DESCR|rse@engelschall.com|devel|||
mprof-3.0|/usr/ports/devel/mprof|/usr/local|Memory Profiler and Leak Detector|/usr/ports/devel/mprof/pkg/DESCR|obrien@FreeBSD.org|devel|||
nana-2.4|/usr/ports/devel/nana|/usr/local|Support for assertion checking and logging using GNU C and GDB|/usr/ports/devel/nana/pkg/DESCR|pjm@gnu.org|devel|gmake-3.78.1||
nasm-0.98|/usr/ports/devel/nasm|/usr/local|General-purpose multi-platform x86 assembler|/usr/ports/devel/nasm/pkg/DESCR|murray@cdrom.com|devel lang|||http://www.web-sites.co.uk/nasm/
ncurses-4.2|/usr/ports/devel/ncurses|/usr/local|Library for terminal-independent, full-screen output (color, etc)|/usr/ports/devel/ncurses/pkg/DESCR|andy@icc.surw.chel.su|devel|||
noweb-2.9a|/usr/ports/devel/noweb|/usr/local|A simple, extensible literate-programming tool|/usr/ports/devel/noweb/pkg/DESCR|tg@FreeBSD.org|devel|icon-9.3.2|icon-9.3.2|http://www.eecs.harvard.edu/~nr/noweb/
omniORB-2.2.0|/usr/ports/devel/omniORB|/usr/local|A CORBA 2 implementation|/usr/ports/devel/omniORB/pkg/DESCR|ejc@bazzle.com|devel|||http://www.orl.co.uk/omniORB/omniORB.html
p5-AppConfig-1.52|/usr/ports/devel/p5-AppConfig|/usr/local|A Perl module for reading configuration files|/usr/ports/devel/p5-AppConfig/pkg/DESCR|igor@zynaps.ru|devel perl5|||
p5-BSD-Resource-1.0701|/usr/ports/devel/p5-BSD-Resource|/usr/local|Perl5 module to access BSD process resource limit and priority functions|/usr/ports/devel/p5-BSD-Resource/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-C-Scan-0.5|/usr/ports/devel/p5-C-Scan|/usr/local|Perl5 module to scan C language files for easily recognized constructs|/usr/ports/devel/p5-C-Scan/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|p5-Data-Flow-0.05||
p5-ConfigReader-0.5|/usr/ports/devel/p5-ConfigReader|/usr/local|Perl5 module to read directives from a configuration file|/usr/ports/devel/p5-ConfigReader/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Curses-1.02|/usr/ports/devel/p5-Curses|/usr/local|Perl5 module for terminal screen handling and optimization|/usr/ports/devel/p5-Curses/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Data-Flow-0.05|/usr/ports/devel/p5-Data-Flow|/usr/local|Perl extension for simple-minded recipe-controlled build of data|/usr/ports/devel/p5-Data-Flow/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Data-ShowTable-3.3|/usr/ports/devel/p5-Data-ShowTable|/usr/local|Perl5 module to pretty-print arrays of data|/usr/ports/devel/p5-Data-ShowTable/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Date-Manip-5.35|/usr/ports/devel/p5-Date-Manip|/usr/local|Perl5 module containing date manipulation routines|/usr/ports/devel/p5-Date-Manip/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Devel-DProf-19990108|/usr/ports/devel/p5-Devel-DProf|/usr/local|A Perl code profiler|/usr/ports/devel/p5-Devel-DProf/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Devel-Peek-0.94|/usr/ports/devel/p5-Devel-Peek|/usr/local|A perl5 data debugging tool for the XS programmer|/usr/ports/devel/p5-Devel-Peek/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Devel-Symdump-2.00|/usr/ports/devel/p5-Devel-Symdump|/usr/local|A perl5 module that dumps symbol names or the symbol table|/usr/ports/devel/p5-Devel-Symdump/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Errno-1.02|/usr/ports/devel/p5-Errno|/usr/local|A perl5 module providing access to System errno constants|/usr/ports/devel/p5-Errno/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-File-BasicFlock-96.072401|/usr/ports/devel/p5-File-BasicFlock|/usr/local|Perl5 module for file locking with flock|/usr/ports/devel/p5-File-BasicFlock/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-File-Lock-0.9|/usr/ports/devel/p5-File-Lock|/usr/local|Perl5 module for file locking (flock,fcntl)|/usr/ports/devel/p5-File-Lock/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-File-Slurp-98.071901|/usr/ports/devel/p5-File-Slurp|/usr/local|Perl5 module for single call read & write file routines|/usr/ports/devel/p5-File-Slurp/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-File-Sync-0.06|/usr/ports/devel/p5-File-Sync|/usr/local|Perl5 module interface to the UNIX sync(2) and POSIX.1b fsync(2)|/usr/ports/devel/p5-File-Sync/pkg/DESCR|kuriyama@opt.phys.waseda.ac.jp|devel perl5|||
p5-File-Tools-2.0|/usr/ports/devel/p5-File-Tools|/usr/local|Perl5 module for several file operations: Copy, Recurse and Tools|/usr/ports/devel/p5-File-Tools/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Filter-1.14|/usr/ports/devel/p5-Filter|/usr/local|A number of source filters for perl5 programs|/usr/ports/devel/p5-Filter/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-FreezeThaw-0.3|/usr/ports/devel/p5-FreezeThaw|/usr/local|A module for converting Perl structures to strings and back|/usr/ports/devel/p5-FreezeThaw/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-IO-stringy-1.203|/usr/ports/devel/p5-IO-stringy|/usr/local|Perl5 module for using IO handles with non-file objects|/usr/ports/devel/p5-IO-stringy/pkg/DESCR|eivind@FreeBSD.org|devel perl5|||
p5-Include-1.02a|/usr/ports/devel/p5-Include|/usr/local|Perl5 package which allows the use of macros defined in 'C' header files|/usr/ports/devel/p5-Include/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-IniConf-0.92|/usr/ports/devel/p5-IniConf|/usr/local|Perl5 module for reading .ini-style configuration files|/usr/ports/devel/p5-IniConf/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-PV-1.0|/usr/ports/devel/p5-PV|/usr/local|A perl5 library for text-mode user interface widgets|/usr/ports/devel/p5-PV/pkg/DESCR|jfitz@FreeBSD.org|net perl5||p5-Curses-1.02|
p5-Parse-RecDescent-1.66|/usr/ports/devel/p5-Parse-RecDescent|/usr/local|A recursive descent parsing framework for Perl|/usr/ports/devel/p5-Parse-RecDescent/pkg/DESCR|wghicks@bellsouth.net|devel perl5|||
p5-Penguin-3.00|/usr/ports/devel/p5-Penguin|/usr/local|A framework for passing digitally signed perl5 code between machines|/usr/ports/devel/p5-Penguin/pkg/DESCR|jfitz@FreeBSD.org|devel security perl5||pgp-2.6.2 rsaref-2.0|
p5-Penguin-Easy-1.1|/usr/ports/devel/p5-Penguin-Easy|/usr/local|A quick and easy implemention of the p5-Penguin module|/usr/ports/devel/p5-Penguin-Easy/pkg/DESCR|jfitz@FreeBSD.org|devel security perl5|p5-Penguin-3.00 pgp-2.6.2 rsaref-2.0||
p5-Proc-Simple-1.12|/usr/ports/devel/p5-Proc-Simple|/usr/local|Perl5 module to launch and control background processes|/usr/ports/devel/p5-Proc-Simple/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-ReadLine-Gnu-1.01|/usr/ports/devel/p5-ReadLine-Gnu|/usr/local|Perl 5 module that allows Term::ReadLine to use GNU readline|/usr/ports/devel/p5-ReadLine-Gnu/pkg/DESCR|mph@freebsd.org|devel perl5|||
p5-ReadLine-Perl-0.9904|/usr/ports/devel/p5-ReadLine-Perl|/usr/local|Perl 5 module for Term::ReadLine editing without GNU readline|/usr/ports/devel/p5-ReadLine-Perl/pkg/DESCR|mph@freebsd.org|devel perl5|||
p5-Religion-1.04|/usr/ports/devel/p5-Religion|/usr/local|Perl5 module to install die() and warn() handlers|/usr/ports/devel/p5-Religion/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Resources-1.04|/usr/ports/devel/p5-Resources|/usr/local|Perl5 module handling application defaults in Perl|/usr/ports/devel/p5-Resources/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Sort-Versions-1.1|/usr/ports/devel/p5-Sort-Versions|/usr/local|A perl 5 module for sorting of revision-like numbers|/usr/ports/devel/p5-Sort-Versions/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Storable-0.6.7|/usr/ports/devel/p5-Storable|/usr/local|Persistency for perl data structures|/usr/ports/devel/p5-Storable/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Term-Query-2.0|/usr/ports/devel/p5-Term-Query|/usr/local|An interactive question-response user interface module|/usr/ports/devel/p5-Term-Query/pkg/DESCR|ports@FreeBSD.org|devel perl5||p5-Array-PrintCols-2.1|
p5-Term-ReadKey-2.12|/usr/ports/devel/p5-Term-ReadKey|/usr/local|A perl5 module for simple terminal control|/usr/ports/devel/p5-Term-ReadKey/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Time-981129|/usr/ports/devel/p5-Time|/usr/local|A collection of functions to convert and use time variables in perl5|/usr/ports/devel/p5-Time/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
p5-Time-HiRes-01.20|/usr/ports/devel/p5-Time-HiRes|/usr/local|A perl5 module implementing High resolution time, sleep, and alarm|/usr/ports/devel/p5-Time-HiRes/pkg/DESCR|ports@FreeBSD.org|devel perl5|||
p5-TimeDate-1.08|/usr/ports/devel/p5-TimeDate|/usr/local|Perl5 module containing a better/faster date parser for absolute dates|/usr/ports/devel/p5-TimeDate/pkg/DESCR|andreas@FreeBSD.org|devel perl5|||
p5-TraceFuncs-0.1|/usr/ports/devel/p5-TraceFuncs|/usr/local|A perl5 module to trace function calls as they happen|/usr/ports/devel/p5-TraceFuncs/pkg/DESCR|jfitz@FreeBSD.org|devel perl5|||
patch-2.5|/usr/ports/devel/patch|/usr/local|GNU Patch Utility|/usr/ports/devel/patch/pkg/DESCR|ache@FreeBSD.org|devel|||
pccts-1.33.20|/usr/ports/devel/pccts|/usr/local|The Purdue Compiler Construction Tool Set|/usr/ports/devel/pccts/pkg/DESCR|andy@icc.surw.chel.su|devel|unzip-5.40||http://www.polhode.com/
pcre-2.08|/usr/ports/devel/pcre|/usr/local|Perl Compatible Regular Expressions library|/usr/ports/devel/pcre/pkg/DESCR|dom@myrddin.demon.co.uk|devel|||
pharmacy-0.2.1|/usr/ports/devel/pharmacy|/usr/X11R6|GNOME frontend for CVS|/usr/ports/devel/pharmacy/pkg/DESCR|jedgar@fxp.org|devel gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://pharmacy.learnrespect.org/
picprog-1.0|/usr/ports/devel/picprog|/usr/local|Serial port pic16c84 programmer|/usr/ports/devel/picprog/pkg/DESCR|ports@FreeBSD.org|devel|libgnugetopt-1.1|libgnugetopt-1.1|
pmake-2.1.33|/usr/ports/devel/pmake|/usr/local|The parallel make(1) program from the Sprite project|/usr/ports/devel/pmake/pkg/DESCR|steve@freebsd.org|devel|||
portcheckout-1.0|/usr/ports/devel/portcheckout|/usr/local|Checkout ports and all depending ports|/usr/ports/devel/portcheckout/pkg/DESCR|wosch@FreeBSD.org|devel|||
portlint-2.1|/usr/ports/devel/portlint|/usr/local|A verifier for FreeBSD port directory|/usr/ports/devel/portlint/pkg/DESCR|itojun@itojun.org|devel|||
prcs-1.2.8|/usr/ports/devel/prcs|/usr/local|The Project Revision Control System|/usr/ports/devel/prcs/pkg/DESCR|jmacd@FreeBSD.org|devel|XFree86-3.3.5 emacs-19.34b gmake-3.78.1||http://www.XCF.Berkeley.EDU/~jmacd/prcs.html
pth-1.2.1|/usr/ports/devel/pth|/usr/local|GNU Portable Threads|/usr/ports/devel/pth/pkg/DESCR|rse@engelschall.com|devel|||
pth-1.3a1|/usr/ports/devel/pth-devel|/usr/local|GNU Portable Threads (DEVELOPMENT VERSION)|/usr/ports/devel/pth-devel/pkg/DESCR|rse@engelschall.com|devel|||
py-kjbuckets-2.2|/usr/ports/devel/py-kjbuckets|/usr/local|Graph and set datatypes for Python (C extension)|/usr/ports/devel/py-kjbuckets/pkg/DESCR|nectar@FreeBSD.org|devel|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
py-mxDateTime-1.3.0|/usr/ports/devel/py-mxDateTime|/usr/local|Date and time handling routines and types for python|/usr/ports/devel/py-mxDateTime/pkg/DESCR|tg@FreeBSD.org|devel python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2 unzip-5.40|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.skyport.net/~lemburg/mxDateTime.html
py-mxStack-0.3.0|/usr/ports/devel/py-mxStack|/usr/local|Fast stack implementation for Python|/usr/ports/devel/py-mxStack/pkg/DESCR|tg@FreeBSD.org|devel python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2 unzip-5.40|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.skyport.net/~lemburg/mxStack.html
py-mxTools-1.0.0|/usr/ports/devel/py-mxTools|/usr/local|A collection of new builtins for Python|/usr/ports/devel/py-mxTools/pkg/DESCR|tg@FreeBSD.org|devel python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2 unzip-5.40|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.skyport.net/~lemburg/mxTools.html
qtarch-1.4.4|/usr/ports/devel/qtarch|/usr/local|Qt Architect (formerly known as the Qt Dialog Editor or dlgedit)|/usr/ports/devel/qtarch/pkg/DESCR|elwood@mc5sys.in-berlin.de|devel|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.qtarch.intranova.net/
qtez-0.77a|/usr/ports/devel/qtez|/usr/X11R6|Qt Rapid Application Development Environment for X Window System|/usr/ports/devel/qtez/pkg/DESCR|andy@icc.surw.chel.su|devel|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|http://qtez.zax.net/index.htm/
qtk-0.50|/usr/ports/devel/qtk|/usr/X11R6|Quick-Tk is a neat development tool for various languages|/usr/ports/devel/qtk/pkg/DESCR|andrews@technologist.com|devel tk82|XFree86-3.3.5|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.jump.net/~brooke/qtk/
re2c-0.5|/usr/ports/devel/re2c|/usr/local|Compile regular expression to C (much faster final code than flex)|/usr/ports/devel/re2c/pkg/DESCR|eivind@FreeBSD.org|devel|||
rinfo-1.2|/usr/ports/devel/rinfo|/usr/local|List status of files checked out of RCS repositories|/usr/ports/devel/rinfo/pkg/DESCR|markc@ctgi.net|devel|||
scogdb-4.17|/usr/ports/devel/scogdb|/usr/local|An SCO debugger for cross-development purposes|/usr/ports/devel/scogdb/pkg/DESCR|ports@FreeBSD.org|devel|crosssco-1.5 gmake-3.78.1||
sdcc-2.1.8|/usr/ports/devel/sdcc|/usr/local|Cross compile 8051 code|/usr/ports/devel/sdcc/pkg/DESCR|ambrisko@whistle.com|devel lang|gmake-3.78.1||
sdl-0.10.0|/usr/ports/devel/sdl|/usr/local|Cross-platform multi-media development API|/usr/ports/devel/sdl/pkg/DESCR|andy@icc.surw.chel.su|devel|XFree86-3.3.5 gmake-3.78.1 nasm-0.98|XFree86-3.3.5|http://www.devolution.com/~slouken/SDL/
sfio-98|/usr/ports/devel/sfio|/usr/local|The Safe/Fast I/O Library|/usr/ports/devel/sfio/pkg/DESCR|jraynard@freebsd.org|devel|||
shtool-1.4.6|/usr/ports/devel/shtool|/usr/local|The GNU Portable Shell Tool|/usr/ports/devel/shtool/pkg/DESCR|rse@engelschall.com|devel|||
stlport-3.01|/usr/ports/devel/stlport|/usr/local|Adaptation of SGI's Standard Template Library|/usr/ports/devel/stlport/pkg/DESCR|obrien@FreeBSD.org|devel|||
swarm-1.4.1|/usr/ports/devel/swarm|/usr/local|The Swarm Simulation System|/usr/ports/devel/swarm/pkg/DESCR|horance@freedom.ie.cycu.edu.tw|devel|XFree86-3.3.5 blt-2.4m gmake-3.78.1 libffi-1.20 libtool-1.3.3 png-1.0.5 tcl-8.2.2 tk-8.2.2 xpm-3.4k|XFree86-3.3.5 blt-2.4m libffi-1.20 png-1.0.5 tcl-8.2.2 tk-8.2.2 xpm-3.4k|
t1lib-0.9.2|/usr/ports/devel/t1lib|/usr/local|A Type 1 Rasterizer Library for UNIX/X11|/usr/ports/devel/t1lib/pkg/DESCR|ijliao@csie.nctu.edu.tw|devel|gmake-3.78.1||
tclcheck-1.1.11|/usr/ports/devel/tclcheck|/usr/local|A program to check the nesting of parenthesis in tcl scripts|/usr/ports/devel/tclcheck/pkg/DESCR|sander@haldjas.folklore.ee|devel|||
tclcl-1.0b8|/usr/ports/devel/tclcl|/usr/local|Tcl/C++ interface used by ns and nam|/usr/ports/devel/tclcl/pkg/DESCR|obonilla@fisicc-ufm.edu|devel|XFree86-3.3.5 otcl-1.0a4 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 otcl-1.0a4 tcl-8.2.2 tk-8.2.2|
tclGetOpts-1.0|/usr/ports/devel/tclgetopts|/usr/local|Pure TCL code for command line options parsing|/usr/ports/devel/tclgetopts/pkg/DESCR|mi@aldan.algebra.com|devel tcl76 tcl80 tcl82|||
tclreadline-1.0.0|/usr/ports/devel/tclreadline|/usr/local|GNU readline for TCL|/usr/ports/devel/tclreadline/pkg/DESCR|darius@dons.net.au|tcl80 tcl82|tcl-8.2.2|tcl-8.2.2|http://www.zellner.org/tclreadline/
templ-0.2|/usr/ports/devel/templ|/usr/local|Source code templates generator|/usr/ports/devel/templ/pkg/DESCR|hollywar@mail.holywar.net|devel|||
tkcon-1.6|/usr/ports/devel/tkcon|/usr/local|Tk console for Tcl|/usr/ports/devel/tkcon/pkg/DESCR|wghicks@bellsouth.net|devel tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tkcvs-6.0|/usr/ports/devel/tkcvs|/usr/local|Tcl/Tk frontends to CVS and diff|/usr/ports/devel/tkcvs/pkg/DESCR|shanee@augusta.de|devel tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tkref-1.01|/usr/ports/devel/tkref|/usr/local|A programmer's GUI reference for Tcl/Tk and major packages|/usr/ports/devel/tkref/pkg/DESCR|bgingery@gtcs.com|devel tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tvision-0.7|/usr/ports/devel/tvision|/usr/local|The Turbo Vision C++ CUI library for UNIX|/usr/ports/devel/tvision/pkg/DESCR|ssigala@globalnet.it|devel|libtool-1.3.3||
ups-3.34b|/usr/ports/devel/ups-debug|/usr/local|Source level C debugger that runs under X11|/usr/ports/devel/ups-debug/pkg/DESCR|obrien@FreeBSD.org|devel|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
vtcl-1.2.0|/usr/ports/devel/vtcl|/usr/local|An Application Development Environment For the TCL/TK language|/usr/ports/devel/vtcl/pkg/DESCR|vanilla@FreeBSD.org|devel tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
xmake-1.05|/usr/ports/devel/xmake|/usr/local|A powerful make utility|/usr/ports/devel/xmake/pkg/DESCR|dlowe@saturn5.com|devel|||
xwpe-1.5.19a|/usr/ports/devel/xwpe|/usr/local|A Borland-like IDE programming environment|/usr/ports/devel/xwpe/pkg/DESCR|obrien@FreeBSD.org|devel|gmake-3.78.1||
xxgdb-1.12|/usr/ports/devel/xxgdb|/usr/X11R6|An X window interface for gdb|/usr/ports/devel/xxgdb/pkg/DESCR|ports@FreeBSD.org|devel|XFree86-3.3.5|XFree86-3.3.5|
yacl-1.7b|/usr/ports/devel/yacl|/usr/local|Programming library for C++, portable across Windows, OS/2 and various Unices|/usr/ports/devel/yacl/pkg/DESCR|albast@xs4all.nl|devel|Motif-2.1.10 XFree86-3.3.5 unzip-5.40 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.cs.sc.edu/~sridhar/yacl.html
AbiWord-0.7.6|/usr/ports/editors/AbiWord|/usr/local|An open-source, cross-platform WYSIWYG word processor|/usr/ports/editors/AbiWord/pkg/DESCR|dburr@FreeBSD.org|editors|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 png-1.0.5|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 ispell-3.1.20c png-1.0.5|http://www.abisource.com/
aee-2.2.1|/usr/ports/editors/aee|/usr/local|An easy editor with both curses and X11 interfaces|/usr/ports/editors/aee/pkg/DESCR|kbyanc@posi.net|editors|||
apel-emacs-9.22|/usr/ports/editors/apel-emacs|/usr/local|A Portable Emacs Library for emacs|/usr/ports/editors/apel-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 custom-emacs-1.9962 emacs-19.34b|XFree86-3.3.5 custom-emacs-1.9962 emacs-19.34b|
apel-emacs20-9.22|/usr/ports/editors/apel-emacs20|/usr/local|A Portable Emacs Library for emacs20|/usr/ports/editors/apel-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 emacs-20.4|XFree86-3.3.5 emacs-20.4|
apel-mule-9.22|/usr/ports/editors/apel-mule|/usr/local|A Portable Emacs Library for mule|/usr/ports/editors/apel-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 custom-mule-1.9962 mule-2.3 mule-common-2.3|XFree86-3.3.5 custom-mule-1.9962 mule-common-2.3|
apel-xemacs-9.22|/usr/ports/editors/apel-xemacs|/usr/local|A Portable Emacs Library for xemacs|/usr/ports/editors/apel-xemacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
apel-xemacs-mule-9.22|/usr/ports/editors/apel-xemacs-mule|/usr/local|A Portable Emacs Library for xemacs-mule|/usr/ports/editors/apel-xemacs-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
apel-xemacs20-9.22|/usr/ports/editors/apel-xemacs20|/usr/local|A Portable Emacs Library for xemacs20|/usr/ports/editors/apel-xemacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
asedit-1.3.2|/usr/ports/editors/asedit|/usr/X11R6|Text editor for X/Motif|/usr/ports/editors/asedit/pkg/DESCR|shanee@augusta.de|editors|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
aXe-6.1.2|/usr/ports/editors/axe|/usr/X11R6|Simple to use text editor for X|/usr/ports/editors/axe/pkg/DESCR|ports@FreeBSD.org|editors|XFree86-3.3.5|XFree86-3.3.5|
beav-1.40.13|/usr/ports/editors/beav|/usr/local|Binary Editor And Viewer, a full featured binary file editor|/usr/ports/editors/beav/pkg/DESCR|jseger@FreeBSD.org|editors|||
bitmap-emacs20-8.0|/usr/ports/editors/bitmap-emacs20|/usr/local|Bitmap-mule, Package to use bitmap in Emacs20|/usr/ports/editors/bitmap-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7|XFree86-3.3.5 apel-emacs20-9.22 bitmap-font-8.0 emacs-20.4 flim-emacs20-1.12.7|
bitmap-mule-8.0|/usr/ports/editors/bitmap-mule|/usr/local|Package to use bitmap in MULE|/usr/ports/editors/bitmap-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 bitmap-font-8.0 custom-mule-1.9962 flim-mule-1.12.7 mule-common-2.3|
bpatch-1.0|/usr/ports/editors/bpatch|/usr/local|A hex editor that doesn't load the whole file at once|/usr/ports/editors/bpatch/pkg/DESCR|joerg@FreeBSD.org|editors|||
bvi-1.2.0|/usr/ports/editors/bvi|/usr/local|A vi-like binary file (hex)editor|/usr/ports/editors/bvi/pkg/DESCR|jedgar@fxp.org|editors|||http://bvi.linuxbox.com/
color-mate-10.0.1|/usr/ports/editors/color-mate|/usr/local|Color customizing module for Emacsen|/usr/ports/editors/color-mate/pkg/DESCR|taoka@FreeBSD.org|editors elisp|XFree86-3.3.5||http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/color-mate/
cooledit-3.11.3|/usr/ports/editors/cooledit|/usr/local|Suite of utilities, including a GUI editor|/usr/ports/editors/cooledit/pkg/DESCR|brett@peloton.runet.edu|editors|XFree86-3.3.5 gettext-0.10.35 gmake-3.78.1 libtool-1.3.3 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
custom-emacs-1.9962|/usr/ports/editors/custom-emacs|/usr/local|The Custom Library for emacs|/usr/ports/editors/custom-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 emacs-19.34b|XFree86-3.3.5 emacs-19.34b|http://www.dina.kvl.dk/~abraham/custom/
custom-mule-1.9962|/usr/ports/editors/custom-mule|/usr/local|The Custom Library for mule|/usr/ports/editors/custom-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 mule-2.3 mule-common-2.3|XFree86-3.3.5 mule-common-2.3|http://www.dina.kvl.dk/~abraham/custom/
e93-1.2.7|/usr/ports/editors/e93|/usr/X11R6|A nifty editor based on Tcl/Tk|/usr/ports/editors/e93/pkg/DESCR|ports@FreeBSD.org|editors tcl82|XFree86-3.3.5 tcl-8.2.2|XFree86-3.3.5 tcl-8.2.2|
elvis-2.1.4|/usr/ports/editors/elvis|/usr/local|A clone of the ex/vi text editor|/usr/ports/editors/elvis/pkg/DESCR|ports@FreeBSD.org|editors|XFree86-3.3.5|XFree86-3.3.5|http://www.fh-wedel.de/elvis/
emacs-19.34b|/usr/ports/editors/emacs|/usr/local|GNU editing macros|/usr/ports/editors/emacs/pkg/DESCR|ports@FreeBSD.org|editors|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
emacs-20.4|/usr/ports/editors/emacs20|/usr/local|GNU editing macros|/usr/ports/editors/emacs20/pkg/DESCR|jseger@FreeBSD.org|editors|XFree86-3.3.5 autoconf-2.13 gmake-3.78.1 m4-1.4|XFree86-3.3.5|
emacs-dl-20.4|/usr/ports/editors/emacs20-dl|/usr/local|GNU editing macros with dynamic loading module function (binary only)|/usr/ports/editors/emacs20-dl/pkg/DESCR|shige@FreeBSD.org|editors|XFree86-3.3.5 autoconf-2.13 gmake-3.78.1 m4-1.4|XFree86-3.3.5 emacs-20.4|
fb-1.5|/usr/ports/editors/fb|/usr/local|Binary File Viewer, Editor, & Manipulator (and a lot more)|/usr/ports/editors/fb/pkg/DESCR|mi@aldan.algebra.com|editors|||http://home.mho.net/jswaby/fb.html
fine-2.3|/usr/ports/editors/fine|/usr/local|An editor that uses the QT toolkit and can do syntax highlighting|/usr/ports/editors/fine/pkg/DESCR|cpiazza@FreeBSD.org|editors|XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1 png-1.0.5 qt-2.0.2|XFree86-3.3.5 png-1.0.5 qt-2.0.2|http://razor.fer.uni-lj.si/~bojank/fine.html
flim-emacs-1.12.7|/usr/ports/editors/flim-emacs|/usr/local|FLIM, message representation or encoding emacs lisp library for emacs|/usr/ports/editors/flim-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b|
flim-emacs-1.13.2|/usr/ports/editors/flim-emacs-current|/usr/local|FLIM, message representation or encoding emacs lisp library for emacs|/usr/ports/editors/flim-emacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b|
flim-emacs20-1.12.7|/usr/ports/editors/flim-emacs20|/usr/local|FLIM, message representation or encoding emacs lisp library for emacs20|/usr/ports/editors/flim-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4|
flim-emacs20-1.13.2|/usr/ports/editors/flim-emacs20-current|/usr/local|FLIM, message representation or encoding emacs lisp library for emacs20|/usr/ports/editors/flim-emacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4|
flim-mule-1.12.7|/usr/ports/editors/flim-mule|/usr/local|FLIM, message representation or encoding emacs lisp library for mule|/usr/ports/editors/flim-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 mule-common-2.3|
flim-mule-1.13.2|/usr/ports/editors/flim-mule-current|/usr/local|FLIM, message representation or encoding emacs lisp library for mule|/usr/ports/editors/flim-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 mule-common-2.3|
flim-xemacs-1.12.7|/usr/ports/editors/flim-xemacs|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs|/usr/ports/editors/flim-xemacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
flim-xemacs-1.13.2|/usr/ports/editors/flim-xemacs-current|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs|/usr/ports/editors/flim-xemacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
flim-xemacs-mule-1.12.7|/usr/ports/editors/flim-xemacs-mule|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs-mule|/usr/ports/editors/flim-xemacs-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
flim-xemacs-mule-1.13.2|/usr/ports/editors/flim-xemacs-mule-current|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs-mule|/usr/ports/editors/flim-xemacs-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
flim-xemacs20-1.12.7|/usr/ports/editors/flim-xemacs20|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs20|/usr/ports/editors/flim-xemacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
flim-xemacs20-1.13.2|/usr/ports/editors/flim-xemacs20-current|/usr/local|FLIM, message representation or encoding emacs lisp library for xemacs20|/usr/ports/editors/flim-xemacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
gedit-0.6.0|/usr/ports/editors/gedit|/usr/X11R6|A small but powerful text editor for Gnome Desktop Environment|/usr/ports/editors/gedit/pkg/DESCR|andy@icc.surw.chel.su|editors gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://gedit.pn.org
ghex-1.0.1.3|/usr/ports/editors/ghex|/usr/X11R6|GNOME hex editor|/usr/ports/editors/ghex/pkg/DESCR|jedgar@fxp.org|editors gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://pluton.ijs.si/~jaka/gnome.html
gnotepad+-1.1.4|/usr/ports/editors/gnotepad+|/usr/local|Simple GTK-based text/HTML editor|/usr/ports/editors/gnotepad+/pkg/DESCR|brett@peloton.runet.edu|editors www|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xpm-3.4k|
gwp-0.3.2|/usr/ports/editors/gwp|/usr/X11R6|A GNOME word processor|/usr/ports/editors/gwp/pkg/DESCR|nakai@FreeBSD.org|editors gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gxedit-1.23|/usr/ports/editors/gxedit|/usr/X11R6|A simple GTK+ editor|/usr/ports/editors/gxedit/pkg/DESCR|dom@myrddin.demon.co.uk|editors|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
hexedit-1.1.0|/usr/ports/editors/hexedit|/usr/local|View and edit files in hexadecimal or ASCII|/usr/ports/editors/hexedit/pkg/DESCR|andy@icc.surw.chel.su|editors|autoconf-2.13 m4-1.4||http://www.chez.com/prigaux/hexedit.html
jed-0.98.7|/usr/ports/editors/jed|/usr/local|A SLang-based text editor|/usr/ports/editors/jed/pkg/DESCR|eric@cybernut.com|editors|XFree86-3.3.5 libslang-1.2.2|XFree86-3.3.5 libslang-1.2.2|
joe-2.8|/usr/ports/editors/joe|/usr/local|Joe's own editor|/usr/ports/editors/joe/pkg/DESCR|andrews@technologist.com|editors|||
jove-4.16|/usr/ports/editors/jove|/usr/local|Jonathan's Own Version of Emacs|/usr/ports/editors/jove/pkg/DESCR|erich@FreeBSD.org|editors|||
le-1.5.2|/usr/ports/editors/le|/usr/local|Text editor|/usr/ports/editors/le/pkg/DESCR|andy@icc.surw.chel.su|editors|||
leim-20.4|/usr/ports/editors/leim20|/usr/local|Libraries of (GNU) Emacs Input Method|/usr/ports/editors/leim20/pkg/DESCR|shige@FreeBSD.org|editors|XFree86-3.3.5 emacs-20.4 gmake-3.78.1|XFree86-3.3.5 emacs-20.4|
lpe-1.2.4|/usr/ports/editors/lpe|/usr/local|A "lightweight programmer's editor" with syntax highlighting|/usr/ports/editors/lpe/pkg/DESCR|cpiazza@FreeBSD.org|editors|gettext-0.10.35 gmake-3.78.1 libslang-1.2.2 libtool-1.3.3|gettext-0.10.35 libslang-1.2.2|http://cdsmith.twu.net/lpe/
muggy-1.2b|/usr/ports/editors/muggy|/usr/X11R6|A simple text editor for the X on TkStep|/usr/ports/editors/muggy/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
mule-2.3|/usr/ports/editors/mule|/usr/local|A multilingual emacs based 19.34 (Only the executables)|/usr/ports/editors/mule/pkg/DESCR|taoka@FreeBSD.org|editors|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5 mule-common-2.3|
mule-common-2.3|/usr/ports/editors/mule-common|/usr/local|For a multilingual emacs, emacs lisp files, info pages, etc (except executables)|/usr/ports/editors/mule-common/pkg/DESCR|taoka@FreeBSD.org|editors japanese|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
nedit-5.0.2|/usr/ports/editors/nedit|/usr/X11R6|An X11/Motif GUI text editor for programs and plain text files|/usr/ports/editors/nedit/pkg/DESCR|deischen@iworks.InterWorks.org|editors|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.nedit.org
nvi-m17n-1.79.19990331|/usr/ports/editors/nvi-m17n|/usr/local|A clone of vi/ex, with multilingual patch, no default settings|/usr/ports/editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|editors|||
nvi-perl-1.79|/usr/ports/editors/nvi-perl|/usr/local|A clone of vi/ex, with perl5 linked into|/usr/ports/editors/nvi-perl/pkg/DESCR|itojun@itojun.org|editors|||
offix-editor-2.4|/usr/ports/editors/offix-editor|/usr/X11R6|Editor from OffiX|/usr/ports/editors/offix-editor/pkg/DESCR|ruslan@shevchenko.kiev.ua|editors offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1 xpm-3.4k|XFree86-3.3.5 libdnd-1.1 xpm-3.4k|http://leb.net/OffiX/
psgml-emacs-1.2.0|/usr/ports/editors/psgml-emacs|/usr/local|A major mode for editing SGML and XML documents for emacs|/usr/ports/editors/psgml-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 emacs-19.34b|XFree86-3.3.5 docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 dtd-catalogs-1.0 emacs-19.34b html-4.0b iso12083-1993 iso8879-1986 linuxdoc-1.1|
psgml-emacs20-1.2.0|/usr/ports/editors/psgml-emacs20|/usr/local|A major mode for editing SGML and XML documents for emacs20|/usr/ports/editors/psgml-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 emacs-20.4|XFree86-3.3.5 docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 dtd-catalogs-1.0 emacs-20.4 html-4.0b iso12083-1993 iso8879-1986 linuxdoc-1.1|
psgml-mule-1.2.0|/usr/ports/editors/psgml-mule|/usr/local|PSGML: a major mode for editing SGML and XML documents for mule|/usr/ports/editors/psgml-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 mule-2.3 mule-common-2.3|XFree86-3.3.5 docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 dtd-catalogs-1.0 html-4.0b iso12083-1993 iso8879-1986 linuxdoc-1.1 mule-common-2.3|
psgml-xemacs-mule-1.2.0|/usr/ports/editors/psgml-xemacs-mule|/usr/local|A major mode for editing SGML and XML documents for XEmacs with Mule|/usr/ports/editors/psgml-xemacs-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 dtd-catalogs-1.0 faces-1.6.1 html-4.0b iso12083-1993 iso8879-1986 jpeg-6b linuxdoc-1.1 png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xpm-3.4k|
sam-4.3|/usr/ports/editors/sam|/usr/local|A unix version of Rob Pike's editor for plan9|/usr/ports/editors/sam/pkg/DESCR|erich@FreeBSD.org|editors plan9|XFree86-3.3.5|XFree86-3.3.5|
semi-emacs-1.13.4|/usr/ports/editors/semi-emacs|/usr/local|SEMI, Library of MIME feature for GNU Emacs for emacs|/usr/ports/editors/semi-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7 ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7|
semi-emacs-1.13.6|/usr/ports/editors/semi-emacs-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for emacs|/usr/ports/editors/semi-emacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.13.2 ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.13.2|
semi-emacs20-1.13.4|/usr/ports/editors/semi-emacs20|/usr/local|SEMI, Library of MIME feature for GNU Emacs for emacs20|/usr/ports/editors/semi-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7|
semi-emacs20-1.13.6|/usr/ports/editors/semi-emacs20-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for emacs20|/usr/ports/editors/semi-emacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.13.2 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.13.2|
semi-mule-1.13.4|/usr/ports/editors/semi-mule|/usr/local|SEMI, Library of MIME feature for GNU Emacs for mule|/usr/ports/editors/semi-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 mule-common-2.3|
semi-mule-1.13.6|/usr/ports/editors/semi-mule-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for mule|/usr/ports/editors/semi-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.13.2 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.13.2 mule-common-2.3|
semi-xemacs-1.13.4|/usr/ports/editors/semi-xemacs|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs|/usr/ports/editors/semi-xemacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.12.7 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.12.7 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
semi-xemacs-1.13.6|/usr/ports/editors/semi-xemacs-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs|/usr/ports/editors/semi-xemacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.13.2 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.13.2 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
semi-xemacs-mule-1.13.4|/usr/ports/editors/semi-xemacs-mule|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs-mule|/usr/ports/editors/semi-xemacs-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
semi-xemacs-mule-1.13.6|/usr/ports/editors/semi-xemacs-mule-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs-mule|/usr/ports/editors/semi-xemacs-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.13.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.13.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
semi-xemacs20-1.13.4|/usr/ports/editors/semi-xemacs20|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs20|/usr/ports/editors/semi-xemacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
semi-xemacs20-1.13.6|/usr/ports/editors/semi-xemacs20-current|/usr/local|SEMI, Library of MIME feature for GNU Emacs for xemacs20|/usr/ports/editors/semi-xemacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.13.2 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.13.2 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
staroffice-3.1|/usr/ports/editors/staroffice|/usr/local|Integrated wordprocessor/spreadheet/drawing/charting/web browser suite|/usr/ports/editors/staroffice/pkg/DESCR|msmith@FreeBSD.org|editors||linux_base-5.2 rpm-2.5.6|
staroffice-5.1a|/usr/ports/editors/staroffice5|/usr/local|Integrated wordprocessor/dbase/spreadheet/drawing/chart/browser|/usr/ports/editors/staroffice5/pkg/DESCR|dkiwebe@hagenhomes.com|editors||linux_base-5.2 rpm-2.5.6 unzip-5.40|
sted-0.2.2|/usr/ports/editors/sted|/usr/local|Simple/Small/Stupid Text Editor|/usr/ports/editors/sted/pkg/DESCR|andy@icc.surw.chel.su|editors|||http://user.tninet.se/~uxm165t/sted.html
textedit-1.0|/usr/ports/editors/textedit|/usr/X11R6|The OpenLook textedit application|/usr/ports/editors/textedit/pkg/DESCR|jraynard@FreeBSD.org|editors|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
the-2.8|/usr/ports/editors/the|/usr/local|"The Hessling Editor", an implementation of the xedit editor|/usr/ports/editors/the/pkg/DESCR|ports@FreeBSD.org|editors|rexx-imc-1.7||http://www.lightlink.com/hessling/
thoteditor-2.1|/usr/ports/editors/thoteditor|/usr/local|An structured document editor, offering a graphical WYSIWYG interface|/usr/ports/editors/thoteditor/pkg/DESCR|chuckr@FreeBSD.org|editors www|Motif-2.1.10 XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://opera.inrialpes.fr/thot/
uemacs-4.0|/usr/ports/editors/uemacs|/usr/local|A full screen editor|/usr/ports/editors/uemacs/pkg/DESCR|ports@FreeBSD.org|editors|unzip-5.40||
uzap-1.0|/usr/ports/editors/uzap|/usr/local|Visual binary file editor|/usr/ports/editors/uzap/pkg/DESCR|joerg@FreeBSD.org|editors|||
vile-8.2|/usr/ports/editors/vile|/usr/local|VI Like Emacs. a vi "workalike", with many additional features|/usr/ports/editors/vile/pkg/DESCR|gj@freebsd.org|editors|||
vilearn-1.0|/usr/ports/editors/vilearn|/usr/local|An interactive tutorial for the vi editor|/usr/ports/editors/vilearn/pkg/DESCR|i.vaudrey@bigfoot.com|editors|||
vim-lite-5.3|/usr/ports/editors/vim-lite|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim-lite/../vim5/pkg/DESCR|obrien@FreeBSD.org|editors|||
vim-5.5.67|/usr/ports/editors/vim5|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim5/pkg/DESCR|obrien@FreeBSD.org|editors|Motif-2.1.10 XFree86-3.3.5 tcl-8.0.5 xpm-3.4k|XFree86-3.3.5 tcl-8.0.5 xpm-3.4k|
wemi-emacs-1.13.4|/usr/ports/editors/wemi-emacs|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-emacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7 ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7|
wemi-emacs-1.13.6|/usr/ports/editors/wemi-emacs-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-emacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.13.2 ja-nkf-1.62|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.13.2|
wemi-emacs20-1.13.4|/usr/ports/editors/wemi-emacs20|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-emacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7|
wemi-emacs20-1.13.6|/usr/ports/editors/wemi-emacs20-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-emacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.13.2 ja-nkf-1.62|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.13.2|
wemi-mule-1.13.4|/usr/ports/editors/wemi-mule|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 mule-common-2.3|
wemi-mule-1.13.6|/usr/ports/editors/wemi-mule-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.13.2 ja-nkf-1.62 mule-2.3 mule-common-2.3|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.13.2 mule-common-2.3|
wemi-xemacs-1.13.4|/usr/ports/editors/wemi-xemacs|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.12.7 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.12.7 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
wemi-xemacs-1.13.6|/usr/ports/editors/wemi-xemacs-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.13.2 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|XFree86-3.3.5 apel-xemacs-9.22 flim-xemacs-1.13.2 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|
wemi-xemacs-mule-1.13.4|/usr/ports/editors/wemi-xemacs-mule|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs-mule/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
wemi-xemacs-mule-1.13.6|/usr/ports/editors/wemi-xemacs-mule-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs-mule-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.13.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.13.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
wemi-xemacs20-1.13.4|/usr/ports/editors/wemi-xemacs20|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs20/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
wemi-xemacs20-1.13.6|/usr/ports/editors/wemi-xemacs20-current|/usr/local|WEMI, Library of MIME feature for GNU Emacs (branch of SEMI kernel package)|/usr/ports/editors/wemi-xemacs20-current/pkg/DESCR|shige@FreeBSD.org|editors elisp|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.13.2 ja-nkf-1.62 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.13.2 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|
wily-0.13.41|/usr/ports/editors/wily|/usr/local|A clone of the Plan9 editor `acme'|/usr/ports/editors/wily/pkg/DESCR|jkoshy@freebsd.org|editors plan9|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://www.cs.su.oz.au/~gary/wily/
wordperfect-8.0|/usr/ports/editors/wordperfect|/usr/local|Graphical word processor ported from Windows|/usr/ports/editors/wordperfect/pkg/DESCR|msmith@freebsd.org|editors||linux_base-5.2 rpm-2.5.6|
xcoral-3.2|/usr/ports/editors/xcoral|/usr/X11R6|A multiwindow mouse-based text editor for X|/usr/ports/editors/xcoral/pkg/DESCR|erich@FreeBSD.org|editors|XFree86-3.3.5|XFree86-3.3.5|
xed-1.3|/usr/ports/editors/xed|/usr/X11R6|A text editor for X|/usr/ports/editors/xed/pkg/DESCR|shanee@augusta.de|editors|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xemacs-19.16|/usr/ports/editors/xemacs|/usr/local|XEmacs text editor binaries|/usr/ports/editors/xemacs/pkg/DESCR|me@FreeBSD.org|editors|XFree86-3.3.5 gmake-3.78.1 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|
xemacs-mule-21.1.8|/usr/ports/editors/xemacs-mule|/usr/local|XEmacs text editor with mule(Only the executables)|/usr/ports/editors/xemacs-mule/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
xemacs-mule-common-21.1.8|/usr/ports/editors/xemacs-mule-common|/usr/local|For XEmacs with mule, lisp files, info pages, etc (except executables)|/usr/ports/editors/xemacs-mule-common/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|
xemacs-mule-packages-1.0|/usr/ports/editors/xemacs-mule-packages|/usr/local|Common elisp packages for xemacs 21|/usr/ports/editors/xemacs-mule-packages/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors|||
xemacs-mule-sumo-21.1.8|/usr/ports/editors/xemacs-mule-sumo|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
xemacs-mule-sumo-pkg-19990713|/usr/ports/editors/xemacs-mule-sumo-packages|/usr/local|The Sumo tarball used in XEmacs with mule|/usr/ports/editors/xemacs-mule-sumo-packages/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors elisp|||
xemacs-packages-1.0|/usr/ports/editors/xemacs-packages|/usr/local|Common elisp packages for xemacs 21|/usr/ports/editors/xemacs-packages/pkg/DESCR|me@FreeBSD.org|editors|||
xemacs-sumo-pkg-19990713|/usr/ports/editors/xemacs-sumo-packages|/usr/local|The Sumo Tarball using in XEmacs.|/usr/ports/editors/xemacs-sumo-packages/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors elisp|||
xemacs-20.4|/usr/ports/editors/xemacs20|/usr/local|XEmacs text editor version 20|/usr/ports/editors/xemacs20/pkg/DESCR|me@FreeBSD.org|editors|XFree86-3.3.5 gmake-3.78.1 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|
xemacs-21.1|/usr/ports/editors/xemacs21|/usr/local|XEmacs text editor version 21|/usr/ports/editors/xemacs21/pkg/DESCR|me@FreeBSD.org|editors|XFree86-3.3.5 gmake-3.78.1 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-packages-1.0 xpm-3.4k|
xenon-0.6.6|/usr/ports/editors/xenon|/usr/X11R6|Simple X-based text editor|/usr/ports/editors/xenon/pkg/DESCR|jedgar@fxp.org|editors|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.proximity.com.au/~ben/xenon.html
xvile-8.2|/usr/ports/editors/xvile|/usr/local|VI Like Emacs, X11 version -- a fully "X aware" vi work-alike|/usr/ports/editors/xvile/pkg/DESCR|gj@freebsd.org|editors|XFree86-3.3.5|XFree86-3.3.5|
yudit-1.3|/usr/ports/editors/yudit|/usr/local|Multi-lingual unicode text editor with TTF support|/usr/ports/editors/yudit/pkg/DESCR|rch@WriteMe.Com|editors converters print|XFree86-3.3.5 freetype-1.3 gettext-0.10.35 gmake-3.78.1|XFree86-3.3.5 freetype-1.3|
aftp-1.0|/usr/ports/emulators/aftp|/usr/local|A ftp-like shell for accessing Apple II disk images|/usr/ports/emulators/aftp/pkg/DESCR|jsutton@bbcon.com.au|emulators|||
atari800-0.8.6|/usr/ports/emulators/atari800|/usr/local|Atari 8-bit computer emulator|/usr/ports/emulators/atari800/pkg/DESCR|jsutton@webnet.com.au|emulators|unzip-5.40||
bochs-991114a|/usr/ports/emulators/bochs|/usr/local|IBM PC,i386,BIOS and AT hardware emulator. Runs DOS,Win 95,other OSs.|/usr/ports/emulators/bochs/pkg/DESCR|obrien@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|http://www.bochs.com/
bsvc-2.1|/usr/ports/emulators/bsvc|/usr/local|An extensible hardware simulation framework with MC68K support|/usr/ports/emulators/bsvc/pkg/DESCR|jseger@FreeBSD.org|emulators tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www2.ncsu.edu/eos/service/ece/project/bsvc/www/
cpmemu-0.2.1.1|/usr/ports/emulators/cpmemu|/usr/local|Cpm emulator|/usr/ports/emulators/cpmemu/pkg/DESCR|ports@FreeBSD.org|emulators|||
cpmtools-1.1|/usr/ports/emulators/cpmtools|/usr/local|Utility to transfer files from/to CP/M (R) diskettes|/usr/ports/emulators/cpmtools/pkg/DESCR|joerg@FreeBSD.org|emulators|||
dlx-2.0|/usr/ports/emulators/dlx|/usr/local|Assembler for Hennessy and Patterson's DLX architecture|/usr/ports/emulators/dlx/pkg/DESCR|obrien@FreeBSD.org|emulators|||
fmsx-1.5|/usr/ports/emulators/fmsx|/usr/local|The Portable MSX/MSX2/MSX2+ Emulator|/usr/ports/emulators/fmsx/pkg/DESCR|dk@farm.org|emulators|XFree86-3.3.5|XFree86-3.3.5|http://www.freeflight.com/fms/
frodo-4.1|/usr/ports/emulators/frodo|/usr/X11R6|Emulates a Commodore 64|/usr/ports/emulators/frodo/pkg/DESCR|dirk.meyer@dinoex.sub.org|emulators tk82|XFree86-3.3.5|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
hfs-0.37|/usr/ports/emulators/hfs|/usr/local|Read Macintosh HFS floppy disks, hard drives and CDROMs|/usr/ports/emulators/hfs/pkg/DESCR|jmz@FreeBSD.org|emulators|gmake-3.78.1||
hfsutils-3.2.6|/usr/ports/emulators/hfsutils|/usr/local|Yet Another HFS Utility|/usr/ports/emulators/hfsutils/pkg/DESCR|vanilla@FreeBSD.org|emulators tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
ines-1.0|/usr/ports/emulators/ines|/usr/X11R6|Nintendo Entertainment System emlator for X|/usr/ports/emulators/ines/pkg/DESCR|nacai@iname.com|emulators|XFree86-3.3.5|XFree86-3.3.5|http://www.freeflight.com/fms/iNES/
kmamerun-0.3.0.1|/usr/ports/emulators/kmamerun|/usr/local|A KDE frontend for xmame, the X port of the Multi Arcade Machine Emulator|/usr/ports/emulators/kmamerun/pkg/DESCR|nsayer@freebsd.org|emulators kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 xmame-0.36b3.1 xpm-3.4k|http://xmame.retrogames.com/
linux_base-5.2|/usr/ports/emulators/linux_base|/compat/linux|The base set of packages needed in Linux mode|/usr/ports/emulators/linux_base/pkg/DESCR|marcel@FreeBSD.org|emulators||rpm-2.5.6|
linux_glide-2.4|/usr/ports/emulators/linux_glide|/compat/linux/usr|Linux library implementing the GLIDE interface to 3dfx video cards|/usr/ports/emulators/linux_glide/pkg/DESCR|cracauer@cons.org|emulators graphics||linux_base-5.2 rpm-2.5.6|
linux_mesa-2.6|/usr/ports/emulators/linux_mesa|/compat/linux|Installs Linux shared library of Mesa to access glide/3dfx cards|/usr/ports/emulators/linux_mesa/pkg/DESCR|cracauer@cons.org|emulators|linux_base-5.2 linux_devtools-5.2 linux_glide-2.4 rpm-2.5.6||
macutils-2.0b3|/usr/ports/emulators/macutils|/usr/local|Utilities for Apple Macintosh files|/usr/ports/emulators/macutils/pkg/DESCR|jsutton@bbcon.com.au|emulators|||
mastergear-1.3|/usr/ports/emulators/mastergear|/usr/X11R6|SEGA Master System and Game Gear emulator for X|/usr/ports/emulators/mastergear/pkg/DESCR|nakai@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|http://www.freeflight.com/fms/MG/
mtools-3.9.6|/usr/ports/emulators/mtools|/usr/local|A collection of tools for manipulating MSDOS files|/usr/ports/emulators/mtools/pkg/DESCR|jmz@FreeBSD.org|emulators|gmake-3.78.1||
pcemu-1.01a|/usr/ports/emulators/pcemu|/usr/local|An 8086 PC emulator, by David Hedley|/usr/ports/emulators/pcemu/pkg/DESCR|joerg@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|
prodosemu-0.1|/usr/ports/emulators/prodosemu|/usr/local|A text based Apple IIe ProDOS emulator|/usr/ports/emulators/prodosemu/pkg/DESCR|sutton@aardvark.apana.org.au|emulators|||
quasi88-0.3.2|/usr/ports/emulators/quasi88|/usr/X11R6|PC-8801 emulator for X|/usr/ports/emulators/quasi88/pkg/DESCR|nishika@cheerful.com|emulators|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://www.117.ne.jp/~show/pc8801/pc88emu.html
sim-2.3|/usr/ports/emulators/sim|/usr/local|PDP-8, PDP-11, PDP-1, other 18b PDP, Nova, and IBM 1401 simulators|/usr/ports/emulators/sim/pkg/DESCR|jraynard@FreeBSD.org|emulators|||
sim6811-1.6|/usr/ports/emulators/sim6811|/usr/local|A Motorola 6811 simulator|/usr/ports/emulators/sim6811/pkg/DESCR|erich@FreeBSD.org|emulators|||
snes9x-1.25|/usr/ports/emulators/snes9x|/usr/X11R6|Super Nintendo Entertainment System(SNES) Emulator|/usr/ports/emulators/snes9x/pkg/DESCR|nacai@iname.com|emulators|XFree86-3.3.5 gmake-3.78.1 nasm-0.98 unzip-5.40|XFree86-3.3.5|
spim-5.9|/usr/ports/emulators/spim|/usr/local|MIPS R2000 Simulator|/usr/ports/emulators/spim/pkg/DESCR|obrien@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|
stella-1.1|/usr/ports/emulators/stella|/usr/local|A multi-platform Atari 2600 VCS emulator|/usr/ports/emulators/stella/pkg/DESCR|nectar@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|
stonx-0.6.7e|/usr/ports/emulators/stonx|/usr/X11R6|AtariST emulator|/usr/ports/emulators/stonx/pkg/DESCR|treif@mayn.de|emulators|XFree86-3.3.5|XFree86-3.3.5|
tkhfs-1.27|/usr/ports/emulators/tkhfs|/usr/local|A Tcl/Tk front end to the hfs program|/usr/ports/emulators/tkhfs/pkg/DESCR|jmz@FreeBSD.org|emulators tk82||XFree86-3.3.5 hfs-0.37 tcl-8.2.2 tk-8.2.2|
vMac-0.1.9.3|/usr/ports/emulators/vMac|/usr/local|Emulates a MacPlus machine! Runs MacOS versions up to 7.5.5|/usr/ports/emulators/vMac/pkg/DESCR|troll@digitalspark.net|emulators|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://www.vmac.org/
vgb-0.7|/usr/ports/emulators/vgb|/usr/X11R6|Nintendo GameBoy(tm) emulator|/usr/ports/emulators/vgb/pkg/DESCR|nakai@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|
vice-1.0|/usr/ports/emulators/vice|/usr/local|Emulator for Commodore's C64, C128, VIC20, PET, and CBM-II|/usr/ports/emulators/vice/pkg/DESCR|dchapes@ddm.on.ca|emulators|XFree86-3.3.5 Xaw3d-1.5|XFree86-3.3.5 Xaw3d-1.5|http://www.cs.cmu.edu/~dsladic/vice/vice.html
vmsbackup-3.0|/usr/ports/emulators/vmsbackup|/usr/local|Reads VMS BACKUP tapes|/usr/ports/emulators/vmsbackup/pkg/DESCR|jmb@FreeBSD.org|emulators sysutils|||
vpce-0.3f|/usr/ports/emulators/vpce|/usr/local|PC Engine (TG16) emulator on X|/usr/ports/emulators/vpce/pkg/DESCR|nacai@iname.com|emulators|XFree86-3.3.5|XFree86-3.3.5|
wine-99.11.14|/usr/ports/emulators/wine|/usr/local|MS-Windows 3.1/95/NT emulator for Unix (Alpha release)|/usr/ports/emulators/wine/pkg/DESCR|se@FreeBSD.org|emulators|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|http://www.winehq.com/
x48-0.4.0|/usr/ports/emulators/x48|/usr/X11R6|An HP48sx emulator|/usr/ports/emulators/x48/pkg/DESCR|erich@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|
xgs-0.50|/usr/ports/emulators/xgs|/usr/local|Apple IIGS emulator stable release|/usr/ports/emulators/xgs/pkg/DESCR|sutton@aardvark.apana.org.au|emulators|gmake-3.78.1||
xmame-0.36b3.1|/usr/ports/emulators/xmame|/usr/local|UNIX/X11 port of the Multi Arcade Machine Emulator (MAME)|/usr/ports/emulators/xmame/pkg/DESCR|dburr@FreeBSD.org|emulators|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xsystem35-1.2.4|/usr/ports/emulators/xsystem35|/usr/X11R6|AliceSoft System 3.5 on X Window System|/usr/ports/emulators/xsystem35/pkg/DESCR|k5@cheerful.com|emulators|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.aist-nara.ac.jp/~masaki-c/private/unitbase/xsys35/index.html
xzx-2.9.1|/usr/ports/emulators/xzx|/usr/X11R6|ZX Spectrum (48K/128K/+3) Emulator for X11 Windows|/usr/ports/emulators/xzx/pkg/DESCR|sheldonh@FreeBSD.org|emulators|XFree86-3.3.5|XFree86-3.3.5|http://www.philosys.de/~kunze/xzx/
IglooFTP-0.6.1|/usr/ports/ftp/IglooFTP|/usr/X11R6|Easy to use FTP client for X Window System|/usr/ports/ftp/IglooFTP/pkg/DESCR|andy@icc.surw.chel.su|ftp|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
cftp-0.9.3|/usr/ports/ftp/cftp|/usr/local|Comfortable FTP, a full screen ftp client|/usr/ports/ftp/cftp/pkg/DESCR|andy@icc.surw.chel.su|ftp|||http://ftp.giga.or.at/pub/nih/cftp
curl-6.1|/usr/ports/ftp/curl|/usr/local|Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers|/usr/ports/ftp/curl/pkg/DESCR|kris@FreeBSD.org|ftp www|||http://www.fts.frontec.se/~dast/curl/
downloader-1.06|/usr/ports/ftp/downloader|/usr/local|Program for downloading via ftp or http with GUI|/usr/ports/ftp/downloader/pkg/DESCR|ijliao@csie.nctu.edu.tw|ftp|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.krasu.ru/soft/chuchelo/
ftpfind-0.996|/usr/ports/ftp/ftpfind|/usr/local|Find directory&file on a ftp server|/usr/ports/ftp/ftpfind/pkg/DESCR|t-ishii@tryplanet.com|ftp|||
ftpmirror-1.95|/usr/ports/ftp/ftpmirror|/usr/local|An utility to mirror directory hierarchy with FTP|/usr/ports/ftp/ftpmirror/pkg/DESCR|yasuf@big.or.jp|ftp|||http://noc.intec.co.jp/ftpmirror.html
ftpsearch-1.0|/usr/ports/ftp/ftpsearch|/usr/local|A system for indexing contents on ftp servers|/usr/ports/ftp/ftpsearch/pkg/DESCR|Tor.Egge@idi.ntnu.no|ftp|||
ftptool-4.6|/usr/ports/ftp/ftptool|/usr/X11R6|Graphic ftp shell based on xview|/usr/ports/ftp/ftptool/pkg/DESCR|janek@gaja.ipan.lublin.pl|ftp|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
gftp-2.0.5a|/usr/ports/ftp/gftp|/usr/X11R6|A free multithreaded GTK based ftp client|/usr/ports/ftp/gftp/pkg/DESCR|dmarion@open.hr|ftp|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
greed-0.801|/usr/ports/ftp/greed|/usr/local|A utility for downloading files with resume capabilities|/usr/ports/ftp/greed/pkg/DESCR|cpiazza@FreeBSD.org|ftp www|||http://www.public.asu.edu/~arturner/index.html
gtm-0.3.1|/usr/ports/ftp/gtm|/usr/X11R6|The GNOME Transfer Manager, a front-end to wget|/usr/ports/ftp/gtm/pkg/DESCR|nectar@FreeBSD.org|ftp gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 wget-1.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 wget-1.5.3 xpm-3.4k|
jmirror-1.0b|/usr/ports/ftp/jmirror|/usr/local|FTP mirroring program written in PERL (REQUIRES PERL5,Net::FTP)|/usr/ports/ftp/jmirror/pkg/DESCR|jmrobins@jmirror.ruin.org|ftp||p5-Net-1.0606|http://jmirror.ruin.org/
lftp-2.1.4|/usr/ports/ftp/lftp|/usr/local|Shell-like command line ftp client|/usr/ports/ftp/lftp/pkg/DESCR|andy@icc.surw.chel.su|ftp|libtool-1.3.3||http://ftp.yars.free.net/projects/lftp/
llnlxdir-2.1|/usr/ports/ftp/llnlxdir|/usr/X11R6|Motif FTP client with drag-and-drop file transfer|/usr/ports/ftp/llnlxdir/pkg/DESCR|dima@FreeBSD.org|ftp|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
llnlxftp-2.1|/usr/ports/ftp/llnlxftp|/usr/X11R6|Motif FTP client|/usr/ports/ftp/llnlxftp/pkg/DESCR|dima@FreeBSD.org|ftp|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
mirror-2.9|/usr/ports/ftp/mirror|/usr/local|Mirror packages on remote sites|/usr/ports/ftp/mirror/pkg/DESCR|torstenb@FreeBSD.org|ftp|||
moxftp-2.2|/usr/ports/ftp/moxftp|/usr/X11R6|Ftp shell under X Window System|/usr/ports/ftp/moxftp/pkg/DESCR|ports@FreeBSD.org|ftp|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ncftp-1.9.5|/usr/ports/ftp/ncftp|/usr/local|FTP replacement with advanced user interface|/usr/ports/ftp/ncftp/pkg/DESCR|obrien@FreeBSD.org|ftp|||
ncftp-2.4.3|/usr/ports/ftp/ncftp2|/usr/local|FTP replacement with advanced user interface|/usr/ports/ftp/ncftp2/pkg/DESCR|ache@FreeBSD.org|ftp|||
ncftp-3.0b19|/usr/ports/ftp/ncftp3|/usr/local|FTP replacement with advanced user interface|/usr/ports/ftp/ncftp3/pkg/DESCR|obrien@FreeBSD.org|ftp|||
omi-alpha-9|/usr/ports/ftp/omi|/usr/local|"mirror" subtrees of FTP servers|/usr/ports/ftp/omi/pkg/DESCR|ache@FreeBSD.org|ftp|||
pavuk-0.9.18|/usr/ports/ftp/pavuk|/usr/local|HTTP, FTP and Gopher mirroring tool|/usr/ports/ftp/pavuk/pkg/DESCR|andy@icc.surw.chel.su|ftp www|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.idata.sk/~ondrej/pavuk/
proftpd-1.2.0p9|/usr/ports/ftp/proftpd|/usr/local|Highly configurable ftp daemon|/usr/ports/ftp/proftpd/pkg/DESCR|mharo@FreeBSD.org|ftp|autoconf-2.13 gmake-3.78.1 m4-1.4||http://www.proftpd.org/
spegla-1.04p1|/usr/ports/ftp/spegla|/usr/local|A mirror program for FTP sites (written in C)|/usr/ports/ftp/spegla/pkg/DESCR|jkh@FreeBSD.org|ftp|||
wget-1.5.3|/usr/ports/ftp/wget|/usr/local|Retrieve files from the 'net via HTTP and FTP|/usr/ports/ftp/wget/pkg/DESCR|obrien@FreeBSD.org|ftp www|gettext-0.10.35|gettext-0.10.35|
wu-ftpd-2.6.0|/usr/ports/ftp/wu-ftpd|/usr/local|A replacement ftp server for Un*x systems|/usr/ports/ftp/wu-ftpd/pkg/DESCR|ache@FreeBSD.org|ftp|||
wxftp-0.4.4|/usr/ports/ftp/wxftp|/usr/X11R6|X Window System FTP client, with WSftp-like UI|/usr/ports/ftp/wxftp/pkg/DESCR|kris@FreeBSD.org|ftp|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.wxftp.seul.org
yafc-0.5.0|/usr/ports/ftp/yafc|/usr/local|Yet another ftp client. Similar to ftp(1)|/usr/ports/ftp/yafc/pkg/DESCR|cpiazza@FreeBSD.org|ftp|bzip2-0.9.5d||http://www.stacken.kth.se/~mhe/yafc/
yale-tftpd-3.0|/usr/ports/ftp/yale-tftpd|/usr/local|Enhanced tftpd(8) from Yale University and cisco Systems|/usr/ports/ftp/yale-tftpd/pkg/DESCR|ports@FreeBSD.org|ftp|||
3dc-0.8.1|/usr/ports/games/3dc|/usr/X11R6|3-Dimensional Chess for X Window System|/usr/ports/games/3dc/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 Xaw3d-1.5 xpm-3.4k|XFree86-3.3.5 Xaw3d-1.5 xpm-3.4k|
3dpong-0.3|/usr/ports/games/3dpong|/usr/X11R6|X Window 3D Pong game for 1 or 2 players with a ball and paddles|/usr/ports/games/3dpong/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|http://www.newbreedsoftware.com/3dpong/
CaribbeanStud-1.0|/usr/ports/games/CaribbeanStud|/usr/X11R6|Caribbean Stud gambling game for X Window System|/usr/ports/games/CaribbeanStud/pkg/DESCR|andy@icc.surw.chel.su|games|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
knightcap-3.5|/usr/ports/games/KnightCap|/usr/X11R6|Chess program with 3D interface for X Window System|/usr/ports/games/KnightCap/pkg/DESCR|andy@icc.surw.chel.su|games|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|
acm-5.0|/usr/ports/games/acm|/usr/local|A flight simulator for X11|/usr/ports/games/acm/pkg/DESCR|se@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
actx-0.99.2|/usr/ports/games/actx|/usr/X11R6|a window sitter for X11|/usr/ports/games/actx/pkg/DESCR|esu@yk.rim.or.jp|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
adom-0.99.g14|/usr/ports/games/adom|/usr/local|An rogue-like advanced rpg with color support (binary port)|/usr/ports/games/adom/pkg/DESCR|rover@lglobus.ru|games||linux_base-5.2 rpm-2.5.6|http://www.adom.de/
affenspiel-1.0|/usr/ports/games/affenspiel|/usr/X11R6|Little puzzle game with monkey for X Window System|/usr/ports/games/affenspiel/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
agm-1.4|/usr/ports/games/agm|/usr/local|AnaGraM search utility|/usr/ports/games/agm/pkg/DESCR|andy@icc.surw.chel.su|games|||http://users.gtn.net/fraserm/anagrams.html
an-0.93|/usr/ports/games/an|/usr/local|Fast anagram generator|/usr/ports/games/an/pkg/DESCR|proff@iq.org|games|||
angband-2.8.3|/usr/ports/games/angband|/usr/X11R6|Rogue-like game with color, X11 support|/usr/ports/games/angband/pkg/DESCR|mph@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.voicenet.com/~benh/angband/
antipolix-2.1|/usr/ports/games/antipolix|/usr/X11R6|Simple multiplayer game for X Window System|/usr/ports/games/antipolix/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
awele-1.0|/usr/ports/games/awele|/usr/X11R6|An african board game|/usr/ports/games/awele/pkg/DESCR|tg@FreeBSD.org|games tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
battalion-1.4|/usr/ports/games/battalion|/usr/X11R6|Monsters, explosions, destruction game for X Window System|/usr/ports/games/battalion/pkg/DESCR|andy@icc.surw.chel.su|games|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|http://www.evl.uic.edu/aej/AndyBattalion.html
battleball-2.0|/usr/ports/games/battleball|/usr/X11R6|3D single/multiplayer military soccer game for X Window System|/usr/ports/games/battleball/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|http://www.cs.utexas.edu/users/pahardin/bb.html
biorythm-1.1.1|/usr/ports/games/biorythm|/usr/local|Simple biorythm calculation program|/usr/ports/games/biorythm/pkg/DESCR|andy@icc.surw.chel.su|games|gmake-3.78.1 libshhmsg-1.4.0 libshhopt-1.1.5|libshhmsg-1.4.0 libshhopt-1.1.5|http://home.sol.no/~sverrehu/pub-unix/
blackjack-1.1|/usr/ports/games/blackjack|/usr/local|One of the better implementations of blackjack, based on QT|/usr/ports/games/blackjack/pkg/DESCR|plm@xs4all.nl|games|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
block-0.6|/usr/ports/games/block|/usr/local|Small text based maze game|/usr/ports/games/block/pkg/DESCR|andy@icc.surw.chel.su|games|||
blockade-1.00|/usr/ports/games/blockade|/usr/local|An X version of the `blockade' Macintosh game|/usr/ports/games/blockade/pkg/DESCR|cpiazza@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
blue-2.3|/usr/ports/games/blue|/usr/local|A Blue Moon card solitaire|/usr/ports/games/blue/pkg/DESCR|andy@icc.surw.chel.su|games|||
bnetd-0.4.19|/usr/ports/games/bnetd|/usr/local|A game server for StarCraft|/usr/ports/games/bnetd/pkg/DESCR|ijliao@csie.nctu.edu.tw|games net|||http://www.bnetd.org/
bogged-1.0.0|/usr/ports/games/bogged|/usr/X11R6|Word game for X Window System|/usr/ports/games/bogged/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
bs-2.1|/usr/ports/games/bs|/usr/local|Battleships solitaire game with a color interface|/usr/ports/games/bs/pkg/DESCR|andy@icc.surw.chel.su|games|||
bugsx-1.08|/usr/ports/games/bugsx|/usr/X11R6|Breed bugs using genetic algorithims|/usr/ports/games/bugsx/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|games|XFree86-3.3.5|XFree86-3.3.5|
cgoban-1.9.8|/usr/ports/games/cgoban|/usr/X11R6|Internet Go Server client and game editor|/usr/ports/games/cgoban/pkg/DESCR|simonm@dcs.gla.ac.uk|games|XFree86-3.3.5|XFree86-3.3.5|
columns-1.1|/usr/ports/games/columns|/usr/X11R6|Nice little implementation of columns game for X Window System|/usr/ports/games/columns/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 sdl-0.10.0|XFree86-3.3.5 sdl-0.10.0|http://www.phreax.net/24h/
connect4-3.2|/usr/ports/games/connect4|/usr/local|A curses version of the classic game|/usr/ports/games/connect4/pkg/DESCR|jsutton@bbcon.com.au|games|sharutils-4.2||
cosmo-2.0.4|/usr/ports/games/cosmo|/usr/X11R6|Clone of Cosmo Gang the Puzzle (Namco)|/usr/ports/games/cosmo/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
crafty-17.3|/usr/ports/games/crafty|/usr/local|A chess programm for playing and analyzing games|/usr/ports/games/crafty/pkg/DESCR|seggers@semyam.dinoco.de|games|||
crafty-open-large-19960910|/usr/ports/games/crafty-open-large|/usr/local|The large opening book for crafty|/usr/ports/games/crafty-open-large/pkg/DESCR|seggers@semyam.dinoco.de|games|crafty-17.3 unzip-5.40|crafty-17.3|
crafty-open-medium-19960910|/usr/ports/games/crafty-open-medium|/usr/local|The medium opening book (about 1.9 MByte) for crafty|/usr/ports/games/crafty-open-medium/pkg/DESCR|seggers@semyam.dinoco.de|games|crafty-17.3 unzip-5.40|crafty-17.3|
crafty-open-rock-19980707|/usr/ports/games/crafty-open-rock|/usr/local|A huge opening book for crafty|/usr/ports/games/crafty-open-rock/pkg/DESCR|mph@FreeBSD.org|games|crafty-17.3|crafty-17.3|
crafty-open-small-19970301|/usr/ports/games/crafty-open-small|/usr/local|The small opening book (about 600 KByte) for crafty|/usr/ports/games/crafty-open-small/pkg/DESCR|seggers@semyam.dinoco.de|games|crafty-17.3 unzip-5.40|crafty-17.3|
crossfire-0.94.3|/usr/ports/games/crossfire|/usr/local|Multiplayer graphical arcade and adventure game made for X-Windows|/usr/ports/games/crossfire/pkg/DESCR|andreas@FreeBSD.org|games|XFree86-3.3.5 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
dontspace-1.2|/usr/ports/games/dontspace|/usr/local|A solitaire game for X11 modeled after Free Space|/usr/ports/games/dontspace/pkg/DESCR|johnh@isi.edu|games tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
doom-1.8|/usr/ports/games/doom|/usr/local|DOOM: the game and the sound server|/usr/ports/games/doom/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5 gmake-3.78.1 unzip-5.40|XFree86-3.3.5|
dopewars-1.4.6|/usr/ports/games/dopewars|/usr/local|A UNIX rewrite of a game originally based on "Drug Wars"|/usr/ports/games/dopewars/pkg/DESCR|jim@FreeBSD.org|games|gmake-3.78.1||http://bellatrix.pcl.ox.ac.uk/~ben/dopewars/
drm-1.0|/usr/ports/games/drm|/usr/local|Very simple tetris-style game|/usr/ports/games/drm/pkg/DESCR|andy@icc.surw.chel.su|games|||
dungeon-1.0|/usr/ports/games/dungeon|/usr/local|Text adventure game of ZORK|/usr/ports/games/dungeon/pkg/DESCR|rmiya@cc.hirosaki-u.ac.jp|games|unzip-5.40||http://www.csd.uwo.ca/Infocom/dungeon.html
empire-1.1|/usr/ports/games/empire|/usr/local|Solitaire empire game `VMS Empire'|/usr/ports/games/empire/pkg/DESCR|andy@icc.surw.chel.su|games|||
fkiss-0.28|/usr/ports/games/fkiss|/usr/X11R6|Freely enjoy childlike KISS, French-KISS!|/usr/ports/games/fkiss/pkg/DESCR|flathill@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5 lha-1.14f|http://www.oersted.co.jp/~yav/soft/#fkiss
FlightGear-0.6.1|/usr/ports/games/flightgear|/usr/local|The FlightGear flight simulator|/usr/ports/games/flightgear/pkg/DESCR|brian@CSUA.Berkeley.EDU|games|Mesa-3.0 XFree86-3.3.5 autoconf-2.13 gcc-2.95.2 gmake-3.78.1 m4-1.4 plib-1.0.12a|mpg123-0.59r|http://www.flightgear.org/
flying-6.20|/usr/ports/games/flying|/usr/X11R6|Pool/snooker/billiards/carrom/etc game|/usr/ports/games/flying/pkg/DESCR|searle@longacre.demon.co.uk|games|XFree86-3.3.5|XFree86-3.3.5|
freeciv-1.9.0|/usr/ports/games/freeciv|/usr/local|A civilisation clone for x; multiplayer|/usr/ports/games/freeciv/pkg/DESCR|sheldonh@freebsd.org|games|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.freeciv.org
freesweep-0.86|/usr/ports/games/freesweep|/usr/local|Minesweeper-style game for text-mode terminals|/usr/ports/games/freesweep/pkg/DESCR|andy@icc.surw.chel.su|games|gmake-3.78.1||http://www.upl.cs.wisc.edu/~hartmann/sweep/
frotz-2.32|/usr/ports/games/frotz|/usr/local|Infocom games interpreter|/usr/ports/games/frotz/pkg/DESCR|andy@icc.surw.chel.su|games|||http://www.geocities.com/SiliconValley/Heights/3222/frotz.html
galaxis-1.1|/usr/ports/games/galaxis|/usr/local|Clone of the nifty little Macintosh game|/usr/ports/games/galaxis/pkg/DESCR|andy@icc.surw.chel.su|games|||
garith-2.1|/usr/ports/games/garith|/usr/X11R6|Arithmetic quiz program for X Window System|/usr/ports/games/garith/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.cnm-vra.com/micah/garith/
gemdropx-0.4|/usr/ports/games/gemdropx|/usr/X11R6|An interesting one-player puzzle game for X|/usr/ports/games/gemdropx/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|http://www.sonic.net/~nbs/unix/x/gemdropx/
gleyes-0.2|/usr/ports/games/gleyes|/usr/X11R6|GLUT version of Xeyes|/usr/ports/games/gleyes/pkg/DESCR|malte.lance@gmx.net|games|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|
gltron-0.43|/usr/ports/games/gltron|/usr/X11R6|A 3D worm game for two players for X Window System|/usr/ports/games/gltron/pkg/DESCR|andy@icc.surw.chel.su|games|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|http://www.ards.net/Andreas/gltron.html
gma-0.5|/usr/ports/games/gma|/usr/local|Go-moku game which learns playing the game from studying its opponent|/usr/ports/games/gma/pkg/DESCR|ijliao@csie.nctu.edu.tw|games|||http://www.student.nada.kth.se/~d92-jwa/code/
gnomegames-1.0.51|/usr/ports/games/gnomegames|/usr/X11R6|The game applications package for the Gnome Desktop Environment|/usr/ports/games/gnomegames/pkg/DESCR|nakai@FreeBSD.org|games gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnuchess-4.0.80|/usr/ports/games/gnuchess|/usr/local|"Classic" Gnu Chess|/usr/ports/games/gnuchess/pkg/DESCR|markm@FreeBSD.org|games|||
gnugo-2.4|/usr/ports/games/gnugo|/usr/local|The game of Go|/usr/ports/games/gnugo/pkg/DESCR|jseger@FreeBSD.org|games|gmake-3.78.1||
gnushogi-1.2.3|/usr/ports/games/gnushogi|/usr/local|GNU version of Shogi|/usr/ports/games/gnushogi/pkg/DESCR|nacai@iname.com|games|||
golddig-2.0|/usr/ports/games/golddig|/usr/local|Getting the Gold and Avoiding Death|/usr/ports/games/golddig/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
gracer-0.1.3|/usr/ports/games/gracer|/usr/local|A 3D motor sports simulator|/usr/ports/games/gracer/pkg/DESCR|nox@jelal.kn-bremen.de|games|Mesa-3.0 XFree86-3.3.5 autoconf-2.13 giflib-4.1.0 gmake-3.78.1 jpeg-6b m4-1.4 png-1.0.5 tcl-8.2.2|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b png-1.0.5 tcl-8.2.2|http://arch.comp.kyutech.ac.jp/~matsu/my_products/gtk/race/
gru-8087|/usr/ports/games/gru|/usr/X11R6|Gru makes your eyes happy|/usr/ports/games/gru/pkg/DESCR|th@cis.ibaraki.ac.jp|games|XFree86-3.3.5|XFree86-3.3.5|http://hp.vector.co.jp/authors/VA004959/
gtkballs-1.04|/usr/ports/games/gtkballs|/usr/local|Lines-like simple logic game for X Window System|/usr/ports/games/gtkballs/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://lucifer.dorms.spbu.ru/projects.html
hex-0.0.2|/usr/ports/games/hex|/usr/X11R6|Clone of "Puzzle Bobble" for X11 that uses GTK/Imlib|/usr/ports/games/hex/pkg/DESCR|andrews@technologist.com|games|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.nott.ac.uk/~psystrj/hex.html
icbm3d-0.4|/usr/ports/games/icbm3d|/usr/X11R6|"Inter-Continental Ballistic Missiles, 3D" - 3D game of defense|/usr/ports/games/icbm3d/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|http://www.sonic.net/~nbs/unix/x/icbm3d/
ifm-4.1|/usr/ports/games/ifm|/usr/local|Interactive Fiction mapper and walkthrough generator|/usr/ports/games/ifm/pkg/DESCR|dchapes@ddm.on.ca|games|gmake-3.78.1|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
imaze-1.3|/usr/ports/games/imaze|/usr/X11R6|A multi-player network action game for TCP/IP with 3D graphics|/usr/ports/games/imaze/pkg/DESCR|kuehn@rz.tu-clausthal.de|games|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
inform-6.21|/usr/ports/games/inform|/usr/local|Compiler for producing text adventure games|/usr/ports/games/inform/pkg/DESCR|mph@freebsd.org|games|unzip-5.40||
ishido-1.1|/usr/ports/games/ishido|/usr/local|Tile placement game|/usr/ports/games/ishido/pkg/DESCR|samorodi@NUXI.com|games|XFree86-3.3.5|XFree86-3.3.5|
jetpack-1.0|/usr/ports/games/jetpack|/usr/X11R6|Arcade action game for X Windows|/usr/ports/games/jetpack/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
jzip-2.0.1g|/usr/ports/games/jzip|/usr/local|A text-mode Infocom game interpreter|/usr/ports/games/jzip/pkg/DESCR|mph@freebsd.org|games|unzip-5.40||
kdegames-1.1.2|/usr/ports/games/kdegames11|/usr/local|Games for the KDE integrated X11 desktop|/usr/ports/games/kdegames11/pkg/DESCR|se@freebsd.org|games kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 kdesupport-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 kdesupport-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kdegames-i18n-1.1.2|/usr/ports/games/kdegames11-i18n|/usr/local|Games for the KDE integrated X11 desktop|/usr/ports/games/kdegames11-i18n/pkg/DESCR|imura@kde.gr.jp|games kde|ImageMagick-4.2.9 XFree86-3.3.5 bzip2-0.9.5d freetype-1.3 gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jbigkit-1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
klondike-1.9|/usr/ports/games/klondike|/usr/local|A solitaire game for X11|/usr/ports/games/klondike/pkg/DESCR|faber@isi.edu|games tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
krubik-1.06|/usr/ports/games/krubik|/usr/local|Rubik's cube for KDE|/usr/ports/games/krubik/pkg/DESCR|jedgar@fxp.org|games kde|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.phys.uu.nl/~eendebak/kde/krubik.html
ktamaga-0.2|/usr/ports/games/ktamaga|/usr/local|Tamagochi emulator for the KDE integrated X11 desktop|/usr/ports/games/ktamaga/pkg/DESCR|se@freebsd.org|games kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
ladder-1.00|/usr/ports/games/ladder|/usr/local|The old "ladder" game|/usr/ports/games/ladder/pkg/DESCR|sec@42.org|games|||
libshhcards-1.0.4|/usr/ports/games/libshhcards|/usr/X11R6|Library for displaying game cards on X Window System|/usr/ports/games/libshhcards/pkg/DESCR|andy@icc.surw.chel.su|devel|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
lincity-1.11|/usr/ports/games/lincity|/usr/local|Rich city simulation game for X|/usr/ports/games/lincity/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
linuxdoom-1.8|/usr/ports/games/linuxdoom|/usr/local|Id Software's Doom for linux|/usr/ports/games/linuxdoom/pkg/DESCR|erich@FreeBSD.org|games|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|
maelstrom-2.0.6|/usr/ports/games/maelstrom|/usr/X11R6|Asteroids-style game for X Window System|/usr/ports/games/maelstrom/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.devolution.com/~slouken/Maelstrom
mangband-0.5.4|/usr/ports/games/mangband|/usr/local|Multiplayer rogue-like game with color, X11 support|/usr/ports/games/mangband/pkg/DESCR|ache@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
merlin-1.0|/usr/ports/games/merlin|/usr/X11R6|A pointless puzzle game for Tcl/Tk|/usr/ports/games/merlin/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://outofnet.doc.ac.ic.uk/~np2/software/merlin.html
mindfocus-0.86.1|/usr/ports/games/mindfocus|/usr/X11R6|Lovely characters stay on top of active window|/usr/ports/games/mindfocus/pkg/DESCR|ixtl@utmc.or.jp|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
mirrormagic-1.3|/usr/ports/games/mirrormagic|/usr/X11R6|An arcade style game with stereo sound for X Window System|/usr/ports/games/mirrormagic/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
miscom-1.0|/usr/ports/games/miscom|/usr/local|Atari's "Missile Command" clone|/usr/ports/games/miscom/pkg/DESCR|andy@icc.surw.chel.su|games|||
nethack-3.2.2|/usr/ports/games/nethack|/usr/local|A dungeon explorin', slashin', hackin' game|/usr/ports/games/nethack/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.win.tue.nl/games/roguelike/nethack/
qt-nethack-1.0.1|/usr/ports/games/nethack-qt|/usr/local|A dungeon explorin', slashin', hackin' game with graphic and sound|/usr/ports/games/nethack-qt/pkg/DESCR|andreas@FreeBSD.org|games|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 jpeg-6b nas-1.2.5 netpbm-8.0 qt-1.42 tiff-3.5.3 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 nas-1.2.5 qt-1.42 xpm-3.4k|http://www.uq.edu.au/~cswallis/nhqt/
netrek-BRMH-2.2p2|/usr/ports/games/netrek-BRMH-bin|/usr/X11R6|A 16-player network space battle/conquest game with a Star Trek theme|/usr/ports/games/netrek-BRMH-bin/pkg/DESCR|dburr@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.netrek.org/
netrek-COW-3.00p0|/usr/ports/games/netrek-COW3-bin|/usr/X11R6|A 16-player network space battle/conquest game with a Star Trek theme|/usr/ports/games/netrek-COW3-bin/pkg/DESCR|dburr@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.netrek.org/
netris-0.4|/usr/ports/games/netris|/usr/local|A network head to head version of T*tris|/usr/ports/games/netris/pkg/DESCR|desmo@bandwidth.org|games|||
omega-0.90.4|/usr/ports/games/omega|/usr/local|A complex rogue-style game of dungeon exploration|/usr/ports/games/omega/pkg/DESCR|andy@icc.surw.chel.su|games|||http://dolphin.openprojects.net/Omega/
oneko-1.2|/usr/ports/games/oneko|/usr/X11R6|A cat chasing a mouse all over the screen|/usr/ports/games/oneko/pkg/DESCR|candy@kgc.co.jp|games|XFree86-3.3.5|XFree86-3.3.5|
oneko-sakura3-1.2|/usr/ports/games/oneko-sakura|/usr/X11R6|A cat (or Sakura Kinomoto) chasing a mouse all over the screen|/usr/ports/games/oneko-sakura/pkg/DESCR|hotaru@tail.net|games|XFree86-3.3.5|XFree86-3.3.5|
oonsoo-1.1|/usr/ports/games/oonsoo|/usr/local|A solitaire card game for X|/usr/ports/games/oonsoo/pkg/DESCR|jsutton@bbcon.com.au|games|XFree86-3.3.5|XFree86-3.3.5|
phalanx-21|/usr/ports/games/phalanx|/usr/local|Xboard-compatible chess playing program|/usr/ports/games/phalanx/pkg/DESCR|andy@icc.surw.chel.su|games|gmake-3.78.1 libgnugetopt-1.1|libgnugetopt-1.1|
pmars-0.8|/usr/ports/games/pmars|/usr/local|A portable corewar system with ICWS'94 extensions|/usr/ports/games/pmars/pkg/DESCR|gmarco@giovannelli.it|games|XFree86-3.3.5|XFree86-3.3.5|http://www.koth.org/pmars/
powerpak-990905|/usr/ports/games/powerpak|/usr/local|SDL-based Game Software Development Kit|/usr/ports/games/powerpak/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 freetype-1.3 sdl-0.10.0|XFree86-3.3.5 freetype-1.3 sdl-0.10.0|http://www.angelfire.com/va/powerpakgsdk/
pp-0.01|/usr/ports/games/pp|/usr/X11R6|Prometeus Project - real time strategy game for X Window System|/usr/ports/games/pp/pkg/DESCR|andy@icc.surw.chel.su|games|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|http://www.mps.de/pp/home.html
ptkei-1.10|/usr/ports/games/ptkei|/usr/local|A Python/Tk graphical client for Wolfpack Empire servers|/usr/ports/games/ptkei/pkg/DESCR|darius@dons.net.au|games||XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://www.cse.buffalo.edu/~koconnor/ptkei/
pysol-3.00|/usr/ports/games/pysol|/usr/local|Solitaire game, written in Python|/usr/ports/games/pysol/pkg/DESCR|tg@FreeBSD.org|games||XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://wildsau.idv.uni-linz.ac.at/mfx/pysol.html
qcc-1.01|/usr/ports/games/qcc|/usr/local|The QuakeC compiler, for building custom games of Quake|/usr/ports/games/qcc/pkg/DESCR|jfitz@freebsd.org|games|||
qstat-2.3d|/usr/ports/games/qstat|/usr/local|A command line program to query game servers on the net|/usr/ports/games/qstat/pkg/DESCR|darius@dons.net.au|misc|||http://www.activesw.com/people/steve/qstat.html
quakeserver-1.0|/usr/ports/games/quakeserver|/usr/local|A server to host Quake network games under FreeBSD|/usr/ports/games/quakeserver/pkg/DESCR|jfitz@freebsd.org|games|lha-1.14f unzip-5.40||
rocksndiamonds-1.2.0|/usr/ports/games/rocksndiamonds|/usr/local|Colorful Boulderdash'n'Emerald Mine'n'Sokoban'n'Stuff|/usr/ports/games/rocksndiamonds/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
rollemup-1.0|/usr/ports/games/rollemup|/usr/local|Multi Ball, Player, Platform, Media, Cool Pinball game|/usr/ports/games/rollemup/pkg/DESCR|sanpei@jp.FreeBSD.org|games||linux_base-5.2 rpm-2.5.6|www.medialab.lostboys.nl/rollemup/
seabattle-1.0|/usr/ports/games/seabattle|/usr/local|A curses based battleship type game|/usr/ports/games/seabattle/pkg/DESCR|andy@icc.surw.chel.su|games|||
seahaven-1.41|/usr/ports/games/seahaven|/usr/local|The classic, lightweight version of Seahaven Towers|/usr/ports/games/seahaven/pkg/DESCR|imp@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
sl-3.03|/usr/ports/games/sl|/usr/local|A steam locomotive runs across the screen if you type "sl" instead of "ls"|/usr/ports/games/sl/pkg/DESCR|th@cis.ibaraki.ac.jp|games|ja-nkf-1.62||http://www.is.titech.ac.jp/~toyoda/
sokoban-1.0|/usr/ports/games/sokoban|/usr/local|Logical game: problems with packets in cave|/usr/ports/games/sokoban/pkg/DESCR|andy@icc.surw.chel.su|games|||
sol-1.0.6|/usr/ports/games/sol|/usr/X11R6|Solitaire card game for X Window System|/usr/ports/games/sol/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 gmake-3.78.1 libshhcards-1.0.4 libshhmsg-1.4.0 libshhopt-1.1.5 libxalloc-1.0.3 xpm-3.4k|XFree86-3.3.5 libshhcards-1.0.4 libshhmsg-1.4.0 libshhopt-1.1.5 libxalloc-1.0.3 xpm-3.4k|http://home.sol.no/~sverrehu/pub-unix/html/sol.html
spellcast-1.1|/usr/ports/games/spellcast|/usr/X11R6|Multiplayer fight with spells turn based game for X Window System|/usr/ports/games/spellcast/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
speyes-1.2.0|/usr/ports/games/speyes|/usr/X11R6|WindowMaker dockapp/xeyes clone using SouthPark characters|/usr/ports/games/speyes/pkg/DESCR|jedgar@fxp.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.halcyon.com/amalmin/speyes/speyes.html
spider-1.1|/usr/ports/games/spider|/usr/X11R6|A challenging double decked solitaire game|/usr/ports/games/spider/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
starlanes-1.2.2|/usr/ports/games/starlanes|/usr/local|The classic space-age stock trading game|/usr/ports/games/starlanes/pkg/DESCR|andy@icc.surw.chel.su|games|||
sxsame-3.02|/usr/ports/games/sxsame|/usr/X11R6|A tile-removing puzzle game for the X Window system|/usr/ports/games/sxsame/pkg/DESCR|aconitum@po.teleway.ne.jp|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
tank-0.4a|/usr/ports/games/tank|/usr/local|A 3-D network tank game that uses OpenGL/Mesa|/usr/ports/games/tank/pkg/DESCR|dburr@FreeBSD.org|games|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1|Mesa-3.0 XFree86-3.3.5|
tetrinet-x.1.13.16|/usr/ports/games/tetrinet-x|/usr/local|An addictive 6 player tetr*s game|/usr/ports/games/tetrinet-x/pkg/DESCR|gmarco@giovannelli.it|games|||
tinymux-1.4p13|/usr/ports/games/tinymux|/usr/local|A Multi-Player FreeForm adventure Program|/usr/ports/games/tinymux/pkg/DESCR|cjohnson@camelot.com|games|autoconf-2.13 gdbm-1.8.0 m4-1.4||
tksol-1.0|/usr/ports/games/tksol|/usr/local|A version of the card game solitaire|/usr/ports/games/tksol/pkg/DESCR|tg@FreeBSD.org|games tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tvp-0.9.7.1|/usr/ports/games/tvp|/usr/local|Play the cardgame President (or Ass) against 3 AIs|/usr/ports/games/tvp/pkg/DESCR|hoek@FreeBSD.org|games tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www3.sympatico.ca/john.vanderhoek/tim/src/president/president.html
uox3-0.69.02|/usr/ports/games/uox3|/usr/local|A GPL'd server for Origin Systems' Ultima Online multiplayer game|/usr/ports/games/uox3/pkg/DESCR|dburr@FreeBSD.org|games|gmake-3.78.1 unzip-5.40||http://uox.stratics.com/
wmeyes-1.0|/usr/ports/games/wmeyes|/usr/X11R6|The world's most useless WindowMaker dock app|/usr/ports/games/wmeyes/pkg/DESCR|zenin@archive.rhps.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmminichess-0.8|/usr/ports/games/wmminichess|/usr/X11R6|WindowMaker chess dockapp game.|/usr/ports/games/wmminichess/pkg/DESCR|andrews@technologist.com|games|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 gnuchess-4.0.80 xpm-3.4k|http://www.electricrain.com/edavis/miniCHESS/
wmtictactoe-1.1|/usr/ports/games/wmtictactoe|/usr/X11R6|A dockable TicTacToe game for WindowMaker and AfterStep|/usr/ports/games/wmtictactoe/pkg/DESCR|jim@FreeBSD.org|games windowmaker afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://atlas.ucpel.tche.br/~acamargo/
wmtimebomb-0.2.0|/usr/ports/games/wmtimebomb|/usr/X11R6|A minesweeper for WindowMaker|/usr/ports/games/wmtimebomb/pkg/DESCR|ports@FreeBSD.org|games windowmaker|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|
wolfpack-4.2.6|/usr/ports/games/wolfpack|/usr/local|Long term multiplayer strategy game|/usr/ports/games/wolfpack/pkg/DESCR|darius@dons.net.au|games|||http://empire.idlpaper.com/
xabacus-5.4.4|/usr/ports/games/xabacus|/usr/X11R6|Abacus for X Window System|/usr/ports/games/xabacus/pkg/DESCR|andy@icc.surw.chel.su|games|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xasteroids-5.0|/usr/ports/games/xasteroids|/usr/X11R6|X windows based asteroids style arcade game|/usr/ports/games/xasteroids/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xataxx-1.0|/usr/ports/games/xataxx|/usr/X11R6|Strategy game of position and movement for X Window System|/usr/ports/games/xataxx/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xbat-1.11|/usr/ports/games/xbat|/usr/X11R6|XEVIOUS like shooting game|/usr/ports/games/xbat/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xbattle-5.4.1|/usr/ports/games/xbattle|/usr/X11R6|A concurrent multi-player battle strategy game|/usr/ports/games/xbattle/pkg/DESCR|giffunip@asme.org|games|XFree86-3.3.5|XFree86-3.3.5|http://cns-web.bu.edu/pub/xpip/html/xbattle.html
xbill-2.0|/usr/ports/games/xbill|/usr/X11R6|Save your computers from the evil clutches of Bill|/usr/ports/games/xbill/pkg/DESCR|obrien@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xbl-1.0j|/usr/ports/games/xbl|/usr/X11R6|A 3D block-dropping game|/usr/ports/games/xbl/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www710.univ-lyon1.fr/ftp/xbl/xbl.html
xblackjack-2.2|/usr/ports/games/xblackjack|/usr/X11R6|An X11/Motif blackjack game|/usr/ports/games/xblackjack/pkg/DESCR|erich@FreeBSD.org|games|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xblast-2.6b|/usr/ports/games/xblast|/usr/X11R6|Multi-player real-time strategy game for X11|/usr/ports/games/xblast/pkg/DESCR|se@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.ikp.uni-koeln.de/~vogel/xblast/xblast.html
xblood-1.0|/usr/ports/games/xblood|/usr/X11R6|Make the root window bloody|/usr/ports/games/xblood/pkg/DESCR|sakai@miya.ee.kagu.sut.ac.jp|games|XFree86-3.3.5|XFree86-3.3.5|
xbloody-1.00|/usr/ports/games/xbloody|/usr/X11R6|Knife on X|/usr/ports/games/xbloody/pkg/DESCR|kazu@jp.freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
xboard-4.0.3|/usr/ports/games/xboard|/usr/local|X frontend for Crafty, GNUChess, Internet Chess Servers, or e-mail chess|/usr/ports/games/xboard/pkg/DESCR|xaa@xaa.iae.nl|games|XFree86-3.3.5|XFree86-3.3.5|
xboing-2.4|/usr/ports/games/xboing|/usr/X11R6|X windows arcade game|/usr/ports/games/xboing/pkg/DESCR|janek@gaja.ipan.lublin.pl|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xbomb-2.1|/usr/ports/games/xbomb|/usr/X11R6|Minesweeper with a couple of grid types|/usr/ports/games/xbomb/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xbomber-0.8|/usr/ports/games/xbomber|/usr/X11R6|A game based on "Super Bomberman" for the Super Nintendo|/usr/ports/games/xbomber/pkg/DESCR|jclarke@cisco.com|games|XFree86-3.3.5|XFree86-3.3.5|
xchadance-1.0|/usr/ports/games/xchadance|/usr/X11R6|Display a dancing girl "ChaCha."|/usr/ports/games/xchadance/pkg/DESCR|issei@jp.FreeBSD.org|games|XFree86-3.3.5 lha-1.14f|XFree86-3.3.5|
xchain-1.0.2|/usr/ports/games/xchain|/usr/X11R6|Chain Reaction, a strategy game for 2-4 players|/usr/ports/games/xchain/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
xchomp-pl1|/usr/ports/games/xchomp|/usr/X11R6|Pac-man-like game under X Windows|/usr/ports/games/xchomp/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xcogitate-1.02|/usr/ports/games/xcogitate|/usr/X11R6|A logic game with board and stones|/usr/ports/games/xcogitate/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xconq-7.2.2|/usr/ports/games/xconq|/usr/X11R6|A graphical multi-player strategy game and game design system|/usr/ports/games/xconq/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://sourceware.cygnus.com/xconq/
xcubes-5.4.4|/usr/ports/games/xcubes|/usr/X11R6|Cube puzzle for X-Window|/usr/ports/games/xcubes/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xdeblock-1.0|/usr/ports/games/xdeblock|/usr/X11R6|Block action game|/usr/ports/games/xdeblock/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xdemineur-2.1.1|/usr/ports/games/xdemineur|/usr/X11R6|Another minesweeper game for the X Window System|/usr/ports/games/xdemineur/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xdigger-1.0.9|/usr/ports/games/xdigger|/usr/X11R6|Boulderdash-like KC85 Digger for X Window System|/usr/ports/games/xdigger/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xdino-5.4.4|/usr/ports/games/xdino|/usr/X11R6|Dino puzzle game for X-Window|/usr/ports/games/xdino/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xeji-1.2|/usr/ports/games/xeji|/usr/X11R6|An old man watching your mouse cursor|/usr/ports/games/xeji/pkg/DESCR|th@cis.ibaraki.ac.jp|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://yokoya.aist-nara.ac.jp/~tetu-s/sofken96/
xemeraldia-0.31|/usr/ports/games/xemeraldia|/usr/X11R6|A game of breaking blocks|/usr/ports/games/xemeraldia/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xevil-1.5|/usr/ports/games/xevil|/usr/local|A side-view, fast-action, kill everything type of game|/usr/ports/games/xevil/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xeyes+-2.01|/usr/ports/games/xeyesplus|/usr/X11R6|Horrible eyes looking at your mouse cursor|/usr/ports/games/xeyesplus/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xflame-1.1.1|/usr/ports/games/xflame|/usr/X11R6|A cool animated flame|/usr/ports/games/xflame/pkg/DESCR|kris@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.owlnet.rice.edu/~rahul/
xfrisk-1.00|/usr/ports/games/xfrisk|/usr/X11R6|A multi-player networked Risk game for X11|/usr/ports/games/xfrisk/pkg/DESCR|mph@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
xgalaga-2.0|/usr/ports/games/xgalaga|/usr/X11R6|Galaga resurrected on X|/usr/ports/games/xgalaga/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xgammon-0.98|/usr/ports/games/xgammon|/usr/X11R6|A backgammon program for X11|/usr/ports/games/xgammon/pkg/DESCR|tg@FreeBSD.org|games|XFree86-3.3.5 rpm2cpio-1.0|XFree86-3.3.5|
xgolgo-1.0|/usr/ports/games/xgolgo|/usr/X11R6|Xgolgo watches what you are doing and whether you're hostile or not|/usr/ports/games/xgolgo/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xhexagons-5.4.4|/usr/ports/games/xhexagons|/usr/X11R6|Hexagons puzzle (similar to Fifteen Puzzle) for X Window System|/usr/ports/games/xhexagons/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xhime-1.51|/usr/ports/games/xhime|/usr/X11R6|Resident Himechan for X Window System|/usr/ports/games/xhime/pkg/DESCR|flathill@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.tcp-ip.or.jp/~shochan/linux/xhime.html
xinfocom-1.8m|/usr/ports/games/xinfocom|/usr/X11R6|An Infocom game interpreter for X11|/usr/ports/games/xinfocom/pkg/DESCR|mph@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
xinvaders-1.1|/usr/ports/games/xinvaders|/usr/X11R6|Shoot-em-up them nasty little bugs|/usr/ports/games/xinvaders/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xisola-1.0|/usr/ports/games/xisola|/usr/X11R6|Simple board game for X Window System|/usr/ports/games/xisola/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xjewel-1.6|/usr/ports/games/xjewel|/usr/X11R6|X windows dropping jewels game|/usr/ports/games/xjewel/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xjig-2.4|/usr/ports/games/xjig|/usr/local|Jigsaw puzzle game for X11|/usr/ports/games/xjig/pkg/DESCR|vanilla@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xjumpjump-0.12|/usr/ports/games/xjumpjump|/usr/X11R6|Logical game for X Window System|/usr/ports/games/xjumpjump/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|
xkobo-1.11|/usr/ports/games/xkobo|/usr/X11R6|Multi-way scrolling shoot 'em up game for X. Strangely addictive|/usr/ports/games/xkobo/pkg/DESCR|andrews@technologist.com|games|XFree86-3.3.5|XFree86-3.3.5|
xkoules-1.4|/usr/ports/games/xkoules|/usr/X11R6|Fast action arcade-style game for X Window|/usr/ports/games/xkoules/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|http://www.paru.cas.cz/~hubicka/koules/English/koules.html
xlaby-2.0.1|/usr/ports/games/xlaby|/usr/X11R6|Daemonic X Labyrinth played directly with the mouse pointer|/usr/ports/games/xlaby/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xlife-3.0|/usr/ports/games/xlife|/usr/X11R6|John Horton Conway's Game of Life|/usr/ports/games/xlife/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xlines-1.0|/usr/ports/games/xlines|/usr/X11R6|Remove as many balls from board as you can|/usr/ports/games/xlines/pkg/DESCR|andy@icc.surw.chel.su|games|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
xmahjongg-1.0|/usr/ports/games/xmahjongg|/usr/X11R6|The Chinese game of Mahjongg for X11|/usr/ports/games/xmahjongg/pkg/DESCR|joerg@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
xmastermind-0.1|/usr/ports/games/xmastermind|/usr/X11R6|Mastermind game for X Window System|/usr/ports/games/xmastermind/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|
xmball-5.4.4|/usr/ports/games/xmball|/usr/X11R6|Masterball puzzle for X Window System|/usr/ports/games/xmball/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xmemory-3.7|/usr/ports/games/xmemory|/usr/X11R6|Multi-player memory game|/usr/ports/games/xmemory/pkg/DESCR|dchapes@ddm.on.ca|games|XFree86-3.3.5|XFree86-3.3.5|
xmille-2.0|/usr/ports/games/xmille|/usr/X11R6|X window mille bourne game|/usr/ports/games/xmille/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xmine-1.0.3|/usr/ports/games/xmine|/usr/X11R6|The `Athena' port of the xminesweeper game|/usr/ports/games/xmine/pkg/DESCR|joerg@FreeBSD.org|games|XFree86-3.3.5 Xaw3d-1.5|XFree86-3.3.5 Xaw3d-1.5|
xminehunter-0.4|/usr/ports/games/xminehunter|/usr/X11R6|A Motif minesweeper game|/usr/ports/games/xminehunter/pkg/DESCR|tg@FreeBSD.org|games|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmines-1.0|/usr/ports/games/xmines|/usr/X11R6|Minesweeper game for the X Window System|/usr/ports/games/xmines/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xminesweep-3.0|/usr/ports/games/xminesweep|/usr/X11R6|X windows minesweeper game|/usr/ports/games/xminesweep/pkg/DESCR|janek@gaja.ipan.lublin.pl|games|XFree86-3.3.5|XFree86-3.3.5|
xmj-1.0|/usr/ports/games/xmj|/usr/X11R6|Mahjongg|/usr/ports/games/xmj/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xmlink-5.4.4|/usr/ports/games/xmlink|/usr/X11R6|Missing Link puzzle for X Window System|/usr/ports/games/xmlink/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xmris-4.04|/usr/ports/games/xmris|/usr/X11R6|A version of the Mr Do video arcade game for X11|/usr/ports/games/xmris/pkg/DESCR|jmz@FreeBSD.org|games|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
xmulti-2.00b4|/usr/ports/games/xmulti|/usr/X11R6|A X11 mascot based on gal-game "To Heart"|/usr/ports/games/xmulti/pkg/DESCR|toru@tenchi.ne.jp|games|XFree86-3.3.5|XFree86-3.3.5|http://cclub.cc.tut.ac.jp/~go/xmulti/
xneko-4.4|/usr/ports/games/xneko|/usr/X11R6|The classic BSD4.4 cat-and-mouse|/usr/ports/games/xneko/pkg/DESCR|markm@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xnibbles-1.0b3|/usr/ports/games/xnibbles|/usr/X11R6|A simple X11 snake game, like one seen in MS-DOS's qbasic|/usr/ports/games/xnibbles/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xoct-5.4.4|/usr/ports/games/xoct|/usr/X11R6|Oct puzzle for X Window System|/usr/ports/games/xoct/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xoids-1.5|/usr/ports/games/xoids|/usr/X11R6|X Window Asteroids style game with full color pixmaps|/usr/ports/games/xoids/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xonix-1.4|/usr/ports/games/xonix|/usr/X11R6|Try to win land without colliding with `flyers' and `eaters'|/usr/ports/games/xonix/pkg/DESCR|joerg@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xosmulti-1.00|/usr/ports/games/xosmulti|/usr/X11R6|A littele girl catoon on the top of the active window|/usr/ports/games/xosmulti/pkg/DESCR|flathill@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www01.u-page.so-net.ne.jp/ka2/nakanita/multi/xosmulti.html
xothello-0.01|/usr/ports/games/xothello|/usr/X11R6|Othello aka Reversi game for X Window|/usr/ports/games/xothello/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|
xpacman-1.0|/usr/ports/games/xpacman|/usr/X11R6|An old action game|/usr/ports/games/xpacman/pkg/DESCR|joerg@FreeBSD.org|games|XFree86-3.3.5 unzip-5.40|XFree86-3.3.5|
xpanex-5.4.4|/usr/ports/games/xpanex|/usr/X11R6|Panex puzzle for X Window System|/usr/ports/games/xpanex/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xpat2-1.06|/usr/ports/games/xpat2|/usr/X11R6|An X11 solitaire game with 14 variations|/usr/ports/games/xpat2/pkg/DESCR|mph@freebsd.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xphotohunter-1.4|/usr/ports/games/xphotohunter|/usr/local|A game looking for the difference between two pictures|/usr/ports/games/xphotohunter/pkg/DESCR|clive@CirX.ORG|chinese games|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|
xpilot-4.1.0|/usr/ports/games/xpilot|/usr/X11R6|Xpilot(client) and xpilots(server)|/usr/ports/games/xpilot/pkg/DESCR|sheldonh@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.xpilot.org/
xpipeman-1.0|/usr/ports/games/xpipeman|/usr/X11R6|Connect the pipes to stop the leaks|/usr/ports/games/xpipeman/pkg/DESCR|jseger@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xpuyo-0.0|/usr/ports/games/xpuyo|/usr/X11R6|Puyo-puyo, tetris like puzzle game for X-Window|/usr/ports/games/xpuyo/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xpuyopuyo-0.2.7|/usr/ports/games/xpuyopuyo|/usr/X11R6|A puzzle game, somewhat like Tetris|/usr/ports/games/xpuyopuyo/pkg/DESCR|yinjieh@csie.nctu.edu.tw|games|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xpm-3.4k|http://chaos2.org/xpuyopuyo/
xpuzzletama-1.5|/usr/ports/games/xpuzzletama|/usr/X11R6|Puzzle tama, a tetris like game|/usr/ports/games/xpuzzletama/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xpyraminx-5.4.4|/usr/ports/games/xpyraminx|/usr/X11R6|Pyraminx puzzle for X Window System|/usr/ports/games/xpyraminx/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xqf-0.9.0|/usr/ports/games/xqf|/usr/local|Find quake servers|/usr/ports/games/xqf/pkg/DESCR|steve@farrell.org|games|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 qstat-2.3d|
xquarto-1.0|/usr/ports/games/xquarto|/usr/X11R6|X version of simple but tricky board game|/usr/ports/games/xquarto/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.math.lsa.umich.edu/~mattiasj/games/xquarto/
xracer-0.94|/usr/ports/games/xracer|/usr/local|A sweet WipeOut clone for OpenGL and X windows. Aww yeeah! |/usr/ports/games/xracer/pkg/DESCR|troll@digitalspark.net|games|gmake-3.78.1 jpeg-6b|jpeg-6b|http://xracer.annexia.org/
xripple-1.0|/usr/ports/games/xripple|/usr/X11R6|X program to make bottom of screen ripple like a pool of water|/usr/ports/games/xripple/pkg/DESCR|oly@world.std.com|games|XFree86-3.3.5|XFree86-3.3.5|
xrisk-2.13|/usr/ports/games/xrisk|/usr/X11R6|A game for X Windows, much like the popular board game|/usr/ports/games/xrisk/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xroach-4.4|/usr/ports/games/xroach|/usr/X11R6|Cockroaches hide under your windows|/usr/ports/games/xroach/pkg/DESCR|markm@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xroads-0.3|/usr/ports/games/xroads|/usr/X11R6|Commodore 64 "Crossroads"-like video game for X Window System|/usr/ports/games/xroads/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xrobots-1.0|/usr/ports/games/xrobots|/usr/X11R6|Fight off villainous robots (X version)|/usr/ports/games/xrobots/pkg/DESCR|jseger@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xrubik-5.4.4|/usr/ports/games/xrubik|/usr/X11R6|X-based rubik's cube(tm)|/usr/ports/games/xrubik/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xscavenger-1.3.5|/usr/ports/games/xscavenger|/usr/X11R6|A Lode Runner clone for X11|/usr/ports/games/xscavenger/pkg/DESCR|eivind@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.xdr.com/dash/linux.html
xscrabble-1.0|/usr/ports/games/xscrabble|/usr/X11R6|X version of the popular board game|/usr/ports/games/xscrabble/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xshipwars-client-1.23|/usr/ports/games/xshipwars-client|/usr/local|Hardcore internet space combat/economy game. Like EV on crack.|/usr/ports/games/xshipwars-client/pkg/DESCR|troll@digitalspark.net|games|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://fox.mit.edu/xsw/
xshisen-1.36|/usr/ports/games/xshisen|/usr/X11R6|Shisen-sho puzzle game for X11|/usr/ports/games/xshisen/pkg/DESCR|nakai@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.techfirm.co.jp/~masaoki/xshisen.html
xshogi-1.2.3|/usr/ports/games/xshogi|/usr/X11R6|The Japanese chess-like game for X Window System|/usr/ports/games/xshogi/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5 gnushogi-1.2.3|
xskat-3.2|/usr/ports/games/xskat|/usr/X11R6|Play the card game Skat|/usr/ports/games/xskat/pkg/DESCR|tg@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xskewb-5.4.4|/usr/ports/games/xskewb|/usr/X11R6|Skewb puzzle (similar to Rubik's Cube) for X Window|/usr/ports/games/xskewb/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xsok-1.02|/usr/ports/games/xsok|/usr/X11R6|A generic Sokoban game for X11|/usr/ports/games/xsok/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xsokoban-3.3c|/usr/ports/games/xsokoban|/usr/X11R6|A puzzle of pushing objects to the goals|/usr/ports/games/xsokoban/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xsol-2.1.1|/usr/ports/games/xsol|/usr/X11R6|Solitaire|/usr/ports/games/xsol/pkg/DESCR|swallace@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xsoldier-0.96|/usr/ports/games/xsoldier|/usr/X11R6|Shooting game for x11|/usr/ports/games/xsoldier/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.educ.info.kanagawa-u.ac.jp/~s945750/xsoldier.html
xspacewarp-1.2|/usr/ports/games/xspacewarp|/usr/X11R6|Time Trek - like game for X Window System|/usr/ports/games/xspacewarp/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xspringies-1.1|/usr/ports/games/xspringies|/usr/X11R6|A mass and spring simulation system|/usr/ports/games/xspringies/pkg/DESCR|jkh@FreeBSD.org|games|XFree86-3.3.5|XFree86-3.3.5|
xteddy-1.0|/usr/ports/games/xteddy|/usr/X11R6|A cuddlesome teddy for the X desktop|/usr/ports/games/xteddy/pkg/DESCR|Isegrim@Wunder-Nett.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtet42-2.21|/usr/ports/games/xtet42|/usr/X11R6|A one or two player t*tris game|/usr/ports/games/xtet42/pkg/DESCR|gmarco@giovannelli.it|games|XFree86-3.3.5|XFree86-3.3.5|http://www.pvv.ntnu.no/~oyvindmo/xtet42/
xtic-1.12|/usr/ports/games/xtic|/usr/X11R6|An X version of a simple but tricky board game|/usr/ports/games/xtic/pkg/DESCR|ports@FreeBSD.org|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtriangles-5.4.4|/usr/ports/games/xtriangles|/usr/X11R6|Triangles puzzle|/usr/ports/games/xtriangles/pkg/DESCR|nacai@iname.com|games|XFree86-3.3.5|XFree86-3.3.5|
xtris-1.15|/usr/ports/games/xtris|/usr/X11R6|A multi-player version of a popular game for the X Window system|/usr/ports/games/xtris/pkg/DESCR|sec@42.org|games|XFree86-3.3.5|XFree86-3.3.5|http://www.eleves.ens.fr:8080/home/espel/xtris/
xtron-1.1a|/usr/ports/games/xtron|/usr/X11R6|Avoid running into walls, your own tail, and that of your opponent|/usr/ports/games/xtron/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtruco-1.0|/usr/ports/games/xtruco|/usr/X11R6|Simple version for X Window of the famous card game Super Truco|/usr/ports/games/xtruco/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xvier-1.0|/usr/ports/games/xvier|/usr/X11R6|Throw stones into free columns|/usr/ports/games/xvier/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xvmahjongg-2.1|/usr/ports/games/xvmahjongg|/usr/X11R6|Mahjongg for XView with multicolored tiles|/usr/ports/games/xvmahjongg/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
xvmines-1.0|/usr/ports/games/xvmines|/usr/X11R6|Simple minesweeper game for X Window System|/usr/ports/games/xvmines/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
xworm-1.02|/usr/ports/games/xworm|/usr/X11R6|Classic game with apples and hungry worm|/usr/ports/games/xworm/pkg/DESCR|andy@icc.surw.chel.su|games|XFree86-3.3.5|XFree86-3.3.5|
xzip-1.8.1|/usr/ports/games/xzip|/usr/local|An Infocom game interpreter that runs under X11|/usr/ports/games/xzip/pkg/DESCR|mph@freebsd.org|games|XFree86-3.3.5|XFree86-3.3.5|
yahtzee-1.0|/usr/ports/games/yahtzee|/usr/local|A curses version of the dice game for one or more players|/usr/ports/games/yahtzee/pkg/DESCR|jsutton@bbcon.com.au|games|||
yamsweeper-1.9|/usr/ports/games/yamsweeper|/usr/X11R6|Yet Another Mine Sweeper|/usr/ports/games/yamsweeper/pkg/DESCR|hidekazu@cs.titech.ac.jp|games|XFree86-3.3.5|XFree86-3.3.5|
znibbles-0.0.7|/usr/ports/games/znibbles|/usr/local|A multi-player networked nibbles game|/usr/ports/games/znibbles/pkg/DESCR|yinjieh@csie.nctu.edu.tw|games|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.stud.enst.fr/~vmallet/archives/
ztrack-1.0|/usr/ports/games/ztrack|/usr/local|Simple ncurses based pseudo-3D driving game|/usr/ports/games/ztrack/pkg/DESCR|andy@icc.surw.chel.su|games|||
BBBike-2.48|/usr/ports/german/BBBike|/usr/local|A route-finder for cyclists in Berlin and Brandenburg (only german)|/usr/ports/german/BBBike/pkg/DESCR|eserte@cs.tu-berlin.de|german|XFree86-3.3.5 p5-Tk-800.008||http://user.cs.tu-berlin.de/~eserte/bbbike/cgi/bbbike.cgi
cheapcall-0.7e|/usr/ports/german/cheapcall|/usr/local|Shows cheapest German call-by-call telephone provider (German only)|/usr/ports/german/cheapcall/pkg/DESCR|pcc@gmx.net|german|bzip2-0.9.5d|XFree86-3.3.5 tcl-8.0.5 tclX-8.0.4 tk-8.0.5|http://www.billiger-telefonieren.de/
de-dict-1.1|/usr/ports/german/dict|/usr/local|Simple english/german dictionary|/usr/ports/german/dict/pkg/DESCR|wosch@FreeBSD.org|german||agrep-2.04|http://www.de.freebsd.org/~wosch/dict/dict.cgi
de-manpages-1.0|/usr/ports/german/manpages|/usr/local|German GNU and Linux manual pages|/usr/ports/german/manpages/pkg/DESCR|wosch@FreeBSD.org|german|||http://www.Infodrom.North.DE/Linux/manpages-de/
de-phone-1.0|/usr/ports/german/phone|/usr/local|German phone code / Deutsche Telefonvorwahl (AVON)|/usr/ports/german/phone/pkg/DESCR|wosch@FreeBSD.org|german misc|||
de-spinne-1.0.1|/usr/ports/german/spinne|/usr/X11R6|A simulator for digital circuits|/usr/ports/german/spinne/pkg/DESCR|helbig@informatik.ba-stuttgart.de|german cad|XFree86-3.3.5 mocka-95.02 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
de-webalizer-1.30.4|/usr/ports/german/webalizer|/usr/local|A web server log file analysis program|/usr/ports/german/webalizer/pkg/DESCR|dirk.meyer@dinoex.sub.org|german www|gd-1.7.3 png-1.0.5||http://www.mrunix.net/webalizer/
4va-1.21|/usr/ports/graphics/4va|/usr/local|Four-Dimensional graphics tumbler for X-Windows|/usr/ports/graphics/4va/pkg/DESCR|malte.lance@gmx.net|graphics|XFree86-3.3.5|XFree86-3.3.5|
Cgraph-2.04|/usr/ports/graphics/Cgraph|/usr/local|A PostScript plotting library in C|/usr/ports/graphics/Cgraph/pkg/DESCR|tobez@plab.ku.dk|graphics|||
EZWGL-1.40c|/usr/ports/graphics/EZWGL|/usr/X11R6|The EZ Widget and Graphics Library|/usr/ports/graphics/EZWGL/pkg/DESCR|andy@icc.surw.chel.su|graphics devel|XFree86-3.3.5 jpeg-6b|XFree86-3.3.5 jpeg-6b|
p5-GIFgraph-1.10|/usr/ports/graphics/GIFgraph|/usr/local|A Perl package to generate GIF charts|/usr/ports/graphics/GIFgraph/pkg/DESCR|laskavy@gambit.msk.su|graphics perl5||p5-GD-1.18|
Hermes-1.2.5|/usr/ports/graphics/Hermes|/usr/local|Fast pixel formats conversion library|/usr/ports/graphics/Hermes/pkg/DESCR|andy@icc.surw.chel.su|graphics|gmake-3.78.1 libtool-1.3.3||http://hermes.terminal.at
ImageMagick-4.2.9|/usr/ports/graphics/ImageMagick|/usr/local|An X11 package for display and interactive manipulation of images|/usr/ports/graphics/ImageMagick/pkg/DESCR|jseger@FreeBSD.org|graphics perl5|XFree86-3.3.5 freetype-1.3 ghostscript-5.10 gsfonts-5.10 jbigkit-1.0 jpeg-6b mpeg2codec-1.2 netpbm-8.0 png-1.0.5 tiff-3.5.3 transfig-3.2.1 xpm-3.4k|XFree86-3.3.5 freetype-1.3 jbigkit-1.0 jpeg-6b png-1.0.5 tiff-3.5.3|
Mesa-3.0|/usr/ports/graphics/Mesa3|/usr/X11R6|A graphics library similar to SGI's OpenGL|/usr/ports/graphics/Mesa3/pkg/DESCR|jseger@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.mesa3d.org/
aalib-1.2|/usr/ports/graphics/aalib|/usr/local|An ascii art library|/usr/ports/graphics/aalib/pkg/DESCR|andy@icc.surw.chel.su|graphics|libtool-1.3.3||
aero-1.7.0|/usr/ports/graphics/aero|/usr/X11R6|An X11 based modeler for povray|/usr/ports/graphics/aero/pkg/DESCR|erich@FreeBSD.org|graphics|XFree86-3.3.5 fwf-4.0 xpm-3.4k|XFree86-3.3.5 png-1.0.5 povray-3.0.1 xpm-3.4k|
aview-1.2|/usr/ports/graphics/aview|/usr/local|Graphics viewer for viewing netpbm format on console or X using aalib|/usr/ports/graphics/aview/pkg/DESCR|frankch@waru.life.nthu.edu.tw|graphics|aalib-1.2|ImageMagick-4.2.9 XFree86-3.3.5 aalib-1.2 freetype-1.3 jbigkit-1.0 jpeg-6b netpbm-8.0 png-1.0.5 tiff-3.5.3|
camediaplay-19991202|/usr/ports/graphics/camediaplay|/usr/local|Digital camera downloading tool for Epson/Sanyo/Olympus/Agfa camera|/usr/ports/graphics/camediaplay/pkg/DESCR|itojun@itojun.org|graphics|||
cqcam-0.45a|/usr/ports/graphics/cqcam|/usr/local|Color QUICK CAM frame grabber|/usr/ports/graphics/cqcam/pkg/DESCR|ports@FreeBSD.org|graphics tk82|XFree86-3.3.5 jpeg-6b tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 jpeg-6b tcl-8.2.2 tk-8.2.2|
dc20ctrl-0.4|/usr/ports/graphics/dc20ctrl|/usr/local|Digital camera control and download tool for Kodak DC20 camera|/usr/ports/graphics/dc20ctrl/pkg/DESCR|paterno@dsi.unifi.it|graphics|jpeg-6b png-1.0.5 tiff-3.5.3|jpeg-6b png-1.0.5 tiff-3.5.3|
dc20pack-1.0|/usr/ports/graphics/dc20pack|/usr/local|Digital camera control and download tool for Kodak DC20/25 camera|/usr/ports/graphics/dc20pack/pkg/DESCR|maurice@serc.rmit.edu.au|graphics|||
dc3play-19991202|/usr/ports/graphics/dc3play|/usr/local|Digital camera downloading tool for Ricoh DC-3|/usr/ports/graphics/dc3play/pkg/DESCR|itojun@itojun.org|graphics|||
dia-0.81|/usr/ports/graphics/dia|/usr/X11R6|A diagram creation program, similar to Visio.|/usr/ports/graphics/dia/pkg/DESCR|saper@system.pl|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libxml-1.7.3 png-1.0.5 tiff-3.5.3|http://www.lysator.liu.se/~alla/dia/
pdore-6.0|/usr/ports/graphics/dore|/usr/X11R6|The Dynamic Object Rendering Environment|/usr/ports/graphics/dore/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
electriceyes-0.3.11|/usr/ports/graphics/electriceyes|/usr/X11R6|A graphic view base imlib & gtk|/usr/ports/graphics/electriceyes/pkg/DESCR|nakai@FreeBSD.org|graphics gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
enfle-19991102|/usr/ports/graphics/enfle|/usr/X11R6|Simple Plugin-based Graphic Loader Enfle|/usr/ports/graphics/enfle/pkg/DESCR|mami@whale.cc.muroran-it.ac.jp|graphics|XFree86-3.3.5 bzip2-0.9.5d gmake-3.78.1 jpeg-6b png-1.0.5|XFree86-3.3.5 jpeg-6b png-1.0.5|http://enfle.fennel.org/
eog-0.2|/usr/ports/graphics/eog|/usr/X11R6|The Eye Of Gnome image viewer|/usr/ports/graphics/eog/pkg/DESCR|ade@lovett.com|graphics gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gdk-pixbuf-0.4 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gdk-pixbuf-0.4 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.gnome.org/
epstool-1.06|/usr/ports/graphics/epstool|/usr/local|Create or extract preview bitmaps in EPS files|/usr/ports/graphics/epstool/pkg/DESCR|ports@FreeBSD.org|graphics||XFree86-3.3.5 ghostscript-5.50 png-1.0.5|
eterm-bg-1999.1.21|/usr/ports/graphics/eterm-bg|/usr/X11R6|Image files for background of Eterm|/usr/ports/graphics/eterm-bg/pkg/DESCR|taoka@FreeBSD.org|graphics x11|XFree86-3.3.5|XFree86-3.3.5|http://www.eterm.org/
fbm-1.2|/usr/ports/graphics/fbm|/usr/local|Fuzzy Pixmap Manipulation utilities|/usr/ports/graphics/fbm/pkg/DESCR|ports@FreeBSD.org|graphics|||
flashplayer-0.4.3|/usr/ports/graphics/flashplayer|/usr/X11R6|A standalone Macromedia Flash player|/usr/ports/graphics/flashplayer/pkg/DESCR|knu@idaemons.org|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.geocities.com/TimesSquare/Labyrinth/5084/flash.html
fli2gif-1.1|/usr/ports/graphics/fli2gif|/usr/local|Automatic Flic to animated GIF convertor|/usr/ports/graphics/fli2gif/pkg/DESCR|giffunip@asme.org|graphics|||http://members.aol.com/JeffLawson/
fly-1.6.5|/usr/ports/graphics/fly|/usr/local|Simple drawing language to generate GIFs on the fly|/usr/ports/graphics/fly/pkg/DESCR|j.unger@choin.net|graphics|||http://www.unimelb.edu.au/fly/fly.html
fnlib-0.4|/usr/ports/graphics/fnlib|/usr/X11R6|Fonts and font libraries necessary for Enlightenment|/usr/ports/graphics/fnlib/pkg/DESCR|vanilla@FreeBSD.org|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libtool-1.3.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|
fujiplay-1.33|/usr/ports/graphics/fujiplay|/usr/local|Digital camera downloading tool for Fujifilm digital cameras|/usr/ports/graphics/fujiplay/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|graphics|||
fxtv-1.02|/usr/ports/graphics/fxtv|/usr/X11R6|X-based TV Display and Capture Application (for use with bt848 driver)|/usr/ports/graphics/fxtv/pkg/DESCR|aa8vb@ipass.net|graphics|XFree86-3.3.5 Xaw3d-1.5 gmake-3.78.1 jpeg-6b tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 Xaw3d-1.5 jpeg-6b tiff-3.5.3 xpm-3.4k|
g2-0.40|/usr/ports/graphics/g2|/usr/local|An easy to use, portable and powerful 2D graphics library|/usr/ports/graphics/g2/pkg/DESCR|billf@FreeBSD.org|graphics|XFree86-3.3.5 gd-1.7.3 png-1.0.5|XFree86-3.3.5|
gd-1.7.3|/usr/ports/graphics/gd|/usr/local|A graphics library for fast PNG creation|/usr/ports/graphics/gd/pkg/DESCR|ports@FreeBSD.org|graphics|png-1.0.5|png-1.0.5|http://www.boutell.com/gd/
gdk-pixbuf-0.4|/usr/ports/graphics/gdk-pixbuf|/usr/X11R6|A graphic library for GNOME|/usr/ports/graphics/gdk-pixbuf/pkg/DESCR|ade@lovett.com|graphics gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
geomview-1.6.1|/usr/ports/graphics/geomview|/usr/X11R6|An interactive viewer for 3- and 4-D geometric objects|/usr/ports/graphics/geomview/pkg/DESCR|fenner@freebsd.org|graphics tk82|Mesa-3.0 Motif-2.1.10 XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 xforms-0.88.1 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 xforms-0.88.1 xpm-3.4k|
gfont-1.0.2|/usr/ports/graphics/gfont|/usr/local|Graphics Font - Create GIF image rendered with TeX-available Font|/usr/ports/graphics/gfont/pkg/DESCR|rse@engelschall.com|graphics print www||XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|http://www.engelschall.com/sw/gfont/
gif2png-2.0.0|/usr/ports/graphics/gif2png|/usr/local|Converts GIF images to a PNG format|/usr/ports/graphics/gif2png/pkg/DESCR|saper@system.pl|graphics|png-1.0.5|png-1.0.5|
giflib-4.1.0|/usr/ports/graphics/giflib|/usr/local|Tools and library routines for working with GIF images|/usr/ports/graphics/giflib/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 gmake-3.78.1 libtool-1.3.3|XFree86-3.3.5|http://prtr-13.ucsc.edu/~badger/software/giflib.shtml
gifmerge-1.33|/usr/ports/graphics/gifmerge|/usr/local|A tool for making a GIF Animation|/usr/ports/graphics/gifmerge/pkg/DESCR|nacai@iname.com|graphics|||http://www.tu-chemnitz.de/~sos/GIFMERGE/
gifsicle-1.11.1|/usr/ports/graphics/gifsicle|/usr/local|Manipulates GIF images and animations|/usr/ports/graphics/gifsicle/pkg/DESCR|bradh@iafrica.com|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.lcdf.org/gifsicle/
giftool-1.0|/usr/ports/graphics/giftool|/usr/local|A tool for GIF89a transparent option and interlace mode|/usr/ports/graphics/giftool/pkg/DESCR|nacai@iname.com|graphics|||
giftrans-1.12|/usr/ports/graphics/giftrans|/usr/local|A tool for GIF89a transparent option and interlace mode|/usr/ports/graphics/giftrans/pkg/DESCR|nacai@iname.com|graphics|||
GimpUserManual-HTML-1.0.0|/usr/ports/graphics/gimp-manual-html|/usr/X11R6|The user manual for the GNU Image Manipulation Program (GIMP)|/usr/ports/graphics/gimp-manual-html/pkg/DESCR|brett@peloton.runet.edu|graphics|XFree86-3.3.5 bzip2-0.9.5d|XFree86-3.3.5|
GimpUserManual-PDF-1.0.0|/usr/ports/graphics/gimp-manual-pdf|/usr/X11R6|The user manual for the GNU Image Manipulation Program (GIMP)|/usr/ports/graphics/gimp-manual-pdf/../gimp-manual-html/pkg/DESCR|brett@peloton.runet.edu|graphics|XFree86-3.3.5|XFree86-3.3.5|
GimpUserManual-PS-1.0.0|/usr/ports/graphics/gimp-manual-ps|/usr/X11R6|The user manual for the GNU Image Manipulation Program (GIMP)|/usr/ports/graphics/gimp-manual-ps/../gimp-manual-html/pkg/DESCR|brett@peloton.runet.edu|graphics|XFree86-3.3.5|XFree86-3.3.5|
gimp-1.1.11|/usr/ports/graphics/gimp1|/usr/X11R6|Developer's beta release of the General Image Manipulation Program|/usr/ports/graphics/gimp1/pkg/DESCR|erich@FreeBSD.org|graphics|XFree86-3.3.5 aalib-1.2 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 jpeg-6b libtool-1.3.3 mpeg_lib-1.3.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 aalib-1.2 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b mpeg_lib-1.3.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gimp-i18n-1.1.11|/usr/ports/graphics/gimp1-i18n|/usr/X11R6|The GNU Image Manipulation Program with I18N extension|/usr/ports/graphics/gimp1-i18n/pkg/DESCR|nobutaka@nobutaka.com|graphics|XFree86-3.3.5 aalib-1.2 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 jpeg-6b libtool-1.3.3 mpeg_lib-1.3.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 aalib-1.2 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b mpeg_lib-1.3.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|
giram-0.0.18|/usr/ports/graphics/giram|/usr/local|Giram is Really A Modeller|/usr/ports/graphics/giram/pkg/DESCR|bfoz@glue.umd.edu|graphics|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 png-1.0.5 povray-3.1e|http://www.minet.net/giram/
glx-990802|/usr/ports/graphics/glx|/usr/X11R6|Hardware accelerated OpenGL 3d graphics (RIVA & G200/G400)|/usr/ports/graphics/glx/pkg/DESCR|3d@freebsd.org|graphics|Mesa-3.0 XFree86-3.3.5 autoconf-2.13 bzip2-0.9.5d gmake-3.78.1 m4-1.4||http://www.freebsd.org/~3d
gphoto-0.4.0|/usr/ports/graphics/gphoto|/usr/local|A universal digital camera picture control tool|/usr/ports/graphics/gphoto/pkg/DESCR|anders@fix.no|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libtool-1.3.3 netpbm-8.0 png-1.0.5 tiff-3.5.3|ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jbigkit-1.0 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.gphoto.org/
gplot-4.3|/usr/ports/graphics/gplot|/usr/local|Graphic utilities for the processing of CGM metafiles|/usr/ports/graphics/gplot/pkg/DESCR|giffunip@asme.org|graphics|||
gqview-0.7.0|/usr/ports/graphics/gqview|/usr/X11R6|Another gtk-based graphic file viewer|/usr/ports/graphics/gqview/pkg/DESCR|nacai@iname.com|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://gqview.netpedia.net/view-over.html
gracula-3.0|/usr/ports/graphics/gracula|/usr/local|A Graphic Counter Language compiler/interpreter|/usr/ports/graphics/gracula/pkg/DESCR|adam@whizkidtech.net|graphics|||
graphviz-1.5|/usr/ports/graphics/graphviz|/usr/local|Graph Visualization Software from AT&T and Bell Labs|/usr/ports/graphics/graphviz/pkg/DESCR|ports@FreeBSD.org|graphics tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
gridpix-2.1|/usr/ports/graphics/gridpix|/usr/local|Present large images efficiently over the Internet|/usr/ports/graphics/gridpix/pkg/DESCR|asami@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b netpbm-8.0 tiff-3.5.3|jpeg-6b|http://now.cs.berkeley.edu/Td/GridPix/
gtkdps-0.3.1|/usr/ports/graphics/gtkdps|/usr/local|Gtk bindings for the Display GhostScript System|/usr/ports/graphics/gtkdps/pkg/DESCR|nacai@iname.com|graphics|XFree86-3.3.5 dgs-0.5.8 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b libtool-1.3.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtkfig-0.6.0|/usr/ports/graphics/gtkfig|/usr/X11R6|Figure-drawing tool|/usr/ports/graphics/gtkfig/pkg/DESCR|dirk@FreeBSD.org|graphics|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtkgraph-0.5.1|/usr/ports/graphics/gtkgraph|/usr/X11R6|Graphing calculator using GTK+|/usr/ports/graphics/gtkgraph/pkg/DESCR|jedgar@fxp.org|math|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://gtkgraph.linuxbox.com/
gtksee-0.5.0|/usr/ports/graphics/gtksee|/usr/local|Image viewer|/usr/ports/graphics/gtksee/pkg/DESCR|dirk@FreeBSD.org|graphics|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 bzip-0.21 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b png-1.0.5 tiff-3.5.3|http://hotaru.clinuxworld.com/gtksee/
gview-0.1.12|/usr/ports/graphics/gview|/usr/X11R6|Image viewer for X Window System with interface similar to ACDSee|/usr/ports/graphics/gview/pkg/DESCR|andy@icc.surw.chel.su|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|
gxanim-0.45|/usr/ports/graphics/gxanim|/usr/local|A graphical front end to Xanim.|/usr/ports/graphics/gxanim/pkg/DESCR|rod@idiotswitch.org|graphics|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xanim-2.80.1|http://www.iag.net/~aleris/gxanim.html
gyvefigs-0.1.12|/usr/ports/graphics/gyvefigs|/usr/X11R6|Figs library for the GYVE graphic editor|/usr/ports/graphics/gyvefigs/pkg/DESCR|nacai@iname.com|graphics|XFree86-3.3.5 guile-1.3.4 guileobjc-0.3.8|XFree86-3.3.5|
gyvegui-0.0.10|/usr/ports/graphics/gyvegui|/usr/X11R6|GUI library for the GYVE graphic editor|/usr/ports/graphics/gyvegui/pkg/DESCR|nacai@iname.com|graphics|XFree86-3.3.5 gtk-1.0.6|XFree86-3.3.5 gtk-1.0.6|
gyvekernel-0.1.7|/usr/ports/graphics/gyvekernel|/usr/X11R6|A vector base graphics editor|/usr/ports/graphics/gyvekernel/pkg/DESCR|nacai@iname.com|graphics|XFree86-3.3.5 aalib-1.2 dgs-0.5.8 gettext-0.10.35 gimp-1.1.11 glib-1.2.6 gtk-1.0.6 gtk-1.2.6 gtkdps-0.3.1 gyvefigs-0.1.12 gyvegui-0.0.10 gyvescm-0.0.10 jpeg-6b mpeg_lib-1.3.1 png-1.0.5 scriptkit-0.1.6 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.0.6 gtk-1.2.6 gtkdps-0.3.1|
hdf-4.1r3|/usr/ports/graphics/hdf|/usr/local|Hierarchical Data Format library (from NCSA)|/usr/ports/graphics/hdf/pkg/DESCR|mi@aldan.algebra.com|graphics|jpeg-6b|jpeg-6b|
hobbes-icons-xpm3-1.0|/usr/ports/graphics/hobbes-icons-xpm|/usr/X11R6|Collection of over 3000 icons in XPM3 format|/usr/ports/graphics/hobbes-icons-xpm/pkg/DESCR|giffunip@asme.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
hppsmtools-0.3|/usr/ports/graphics/hppsmtools|/usr/local|Tool for HP PhotoSmart C5340A & Konica Q-Konica Q-EZ digital cameras|/usr/ports/graphics/hppsmtools/pkg/DESCR|anders@fix.no|graphics|||http://unimut.fsk.uni-heidelberg.de/unimut/photosmart/
hpscan-1.0|/usr/ports/graphics/hpscan|/usr/X11R6|HP scanner driver|/usr/ports/graphics/hpscan/pkg/DESCR|jkh@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b|XFree86-3.3.5 jpeg-6b|
icod-1.0|/usr/ports/graphics/icod|/usr/local|Utility to convert Windows icon files to xpm format|/usr/ports/graphics/icod/pkg/DESCR|jedgar@fxp.org|graphics|||
imlib-1.9.8|/usr/ports/graphics/imlib|/usr/X11R6|A graphic library for enlightenment package|/usr/ports/graphics/imlib/pkg/DESCR|vanilla@FreeBSD.org|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 jpeg-6b libtool-1.3.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 jpeg-6b png-1.0.5 tiff-3.5.3|
jbigkit-1.0|/usr/ports/graphics/jbigkit|/usr/local|A lossless image compression library|/usr/ports/graphics/jbigkit/pkg/DESCR|mi@aldan.algebra.com|graphics|||
jgraph-8.3|/usr/ports/graphics/jgraph|/usr/local|A program that generates postscript graphs|/usr/ports/graphics/jgraph/pkg/DESCR|wolman@cs.washington.edu|graphics|||http://www.cs.utk.edu/~plank/plank/jgraph/jgraph.html
jgv-0.2a|/usr/ports/graphics/jgv|/usr/X11R6|A graphic viewer with various image types|/usr/ports/graphics/jgv/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|graphics windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
jpeg-6b|/usr/ports/graphics/jpeg|/usr/local|IJG's jpeg compression utilities|/usr/ports/graphics/jpeg/pkg/DESCR|jseger@FreeBSD.org|graphics|||
kdegraphics-1.1.2|/usr/ports/graphics/kdegraphics11|/usr/local|Graphics programs (PS,DVI,FAX,...) for the KDE integrated X11 desktop|/usr/ports/graphics/kdegraphics11/pkg/DESCR|se@freebsd.org|graphics kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kdegraphics-i18n-1.1.2|/usr/ports/graphics/kdegraphics11-i18n|/usr/local|Graphics programs (PS,DVI,FAX,...) for the KDE integrated X11 desktop|/usr/ports/graphics/kdegraphics11-i18n/pkg/DESCR|imura@kde.gr.jp|graphics kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
killustrator-0.2.1|/usr/ports/graphics/killustrator|/usr/local|The vector drawing tool for K Desktop Environment|/usr/ports/graphics/killustrator/pkg/DESCR|nacai@iname.com|graphics kde|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kde-1.1.2 kdebase-1.1.2 kdegames-1.1.2 kdegraphics-1.1.2 kdelibs-1.1.2 kdemultimedia-1.1.2 kdenetwork-1.1.2 kdesupport-1.1.2 kdeutils-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 uulib-0.5.13 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kde-1.1.2 kdebase-1.1.2 kdegames-1.1.2 kdegraphics-1.1.2 kdelibs-1.1.2 kdemultimedia-1.1.2 kdenetwork-1.1.2 kdesupport-1.1.2 kdeutils-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 uulib-0.5.13 xpm-3.4k|http://wwwiti.cs.uni-magdeburg.de/~sattler/killustrator.html
kplot3d-0.69|/usr/ports/graphics/kplot3d|/usr/local|KDE 3d surface plotting tool|/usr/ports/graphics/kplot3d/pkg/DESCR|jedgar@fxp.org|graphics kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
lfview-1.1b3|/usr/ports/graphics/lfview|/usr/X11R6|Graphic viewer for Leaf products|/usr/ports/graphics/lfview/pkg/DESCR|s974123@cc.matsuyama-u.ac.jp|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.geocities.co.jp/Playtown/6344/
libimg-1.2.2|/usr/ports/graphics/libimg|/usr/local|A library of image format handlers for Tk4.1 and later|/usr/ports/graphics/libimg/pkg/DESCR|ports@FreeBSD.org|graphics tk82|XFree86-3.3.5 jpeg-6b png-1.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|XFree86-3.3.5 jpeg-6b png-1.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|http://members1.chello.nl/~j.nijtmans/img.html
libwmf-0.1.16|/usr/ports/graphics/libwmf|/usr/local|A library of image format handlers|/usr/ports/graphics/libwmf/pkg/DESCR|cpiazza@FreeBSD.org|graphics|XFree86-3.3.5 freetype-1.3 xpm-3.4k|XFree86-3.3.5 freetype-1.3 xpm-3.4k|
linux_glx-991127|/usr/ports/graphics/linux_glx|/compat/linux|libraries to make use of glx aware Linux apps|/usr/ports/graphics/linux_glx/pkg/DESCR|3d@freebsd.org|graphics|bzip2-0.9.5d||http://www.freebsd.org/~3d/distfiles/glx/linux
mpeg_lib-1.3.1|/usr/ports/graphics/mpeg-lib|/usr/local|A collection of C routines to decode MPEG movies|/usr/ports/graphics/mpeg-lib/pkg/DESCR|ports@FreeBSD.org|graphics|||http://starship.python.net/~gward/mpeglib/
mpeg2codec-1.2|/usr/ports/graphics/mpeg2codec|/usr/X11R6|An MPEG-2 Encoder and Decoder|/usr/ports/graphics/mpeg2codec/pkg/DESCR|charnier@lirmm.fr|graphics|XFree86-3.3.5|XFree86-3.3.5|
mpeg2play-1.1b|/usr/ports/graphics/mpeg2play|/usr/X11R6|A program to play mpeg-2 movies on X displays|/usr/ports/graphics/mpeg2play/pkg/DESCR|charnier@lirmm.fr|graphics|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
mpeg_encode-1.5b|/usr/ports/graphics/mpeg_encode|/usr/local|UCB's MPEG-I video stream encoder|/usr/ports/graphics/mpeg_encode/pkg/DESCR|erich@FreeBSD.org|graphics|gmake-3.78.1||
mpeg_play-2.4|/usr/ports/graphics/mpeg_play|/usr/X11R6|A program to play mpeg movies on X displays|/usr/ports/graphics/mpeg_play/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
mpeg_stat-2.2b|/usr/ports/graphics/mpeg_stat|/usr/local|An MPEG-I statistics gatherer|/usr/ports/graphics/mpeg_stat/pkg/DESCR|erich@FreeBSD.org|graphics|||
mpegedit-2.2|/usr/ports/graphics/mpegedit|/usr/local|A program to edit encoded mpeg streams|/usr/ports/graphics/mpegedit/pkg/DESCR|erich@FreeBSD.org|graphics|XFree86-3.3.5 gmake-3.78.1 jpeg-6b netpbm-8.0 tiff-3.5.3||
mplex-1.1|/usr/ports/graphics/mplex|/usr/local|Multiplexes MPEG component streams into system layers|/usr/ports/graphics/mplex/pkg/DESCR|erich@FreeBSD.org|graphics|||
netpbm-8.0|/usr/ports/graphics/netpbm|/usr/X11R6|A toolkit for conversion of images between different formats|/usr/ports/graphics/netpbm/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b tiff-3.5.3|XFree86-3.3.5 jpeg-6b tiff-3.5.3|
netshow-2.00.251|/usr/ports/graphics/netshow|/usr/X11R6|Microsoft NetShow video stream player|/usr/ports/graphics/netshow/pkg/DESCR|dburr@FreeBSD.org|graphics net|XFree86-3.3.5|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|http://microsoft.com/netshow/download/unix.htm
opendx-4.0.9|/usr/ports/graphics/opendx|/usr/local|IBM's Open Visualization Data Explorer|/usr/ports/graphics/opendx/pkg/DESCR|ports@FreeBSD.org|graphics math|Mesa-3.0 Motif-2.1.10 XFree86-3.3.5 netcdf-3.5b2 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 netcdf-3.5b2 xpm-3.4k|http://www.opendx.org/
opendx-samples-4.0.7|/usr/ports/graphics/opendx-samples|/usr/local|Example files for IBM's OpenDX.|/usr/ports/graphics/opendx-samples/pkg/DESCR|ports@FreeBSD.org|graphics math|||
opengl-man-657|/usr/ports/graphics/opengl-man|/usr/local|Section 3 manpages for OpenGL: gl, glx, glu, gle, glut|/usr/ports/graphics/opengl-man/pkg/DESCR|cracauer@cons.org|graphics|bzip2-0.9.5d||
p5-GD-1.18|/usr/ports/graphics/p5-GD|/usr/local|A perl5 interface to Gd Graphics Library|/usr/ports/graphics/p5-GD/pkg/DESCR|jfitz@FreeBSD.org|graphics perl5|||
p5-Image-Size-2.9|/usr/ports/graphics/p5-Image-Size|/usr/local|Perl5 module to determine the size of images in several common formats|/usr/ports/graphics/p5-Image-Size/pkg/DESCR|jfitz@FreeBSD.org|graphics www perl5|||
p5-chart-0.99b|/usr/ports/graphics/p5-chart|/usr/local|A perl5 interface to build chart graphics|/usr/ports/graphics/p5-chart/pkg/DESCR|dan@trinsec.com|graphics perl5|p5-GD-1.18||
pgperl-2.15|/usr/ports/graphics/pgperl|/usr/local|A perl5 extension which makes available the pgplot library|/usr/ports/graphics/pgperl/pkg/DESCR|jmz@FreeBSD.org|graphics perl5|XFree86-3.3.5 p5-ExtUtils-F77-1.12 pgplot-5.2|XFree86-3.3.5 pgplot-5.2|http://www.aao.gov.au/local/www/kgb/pgperl
pgplot-5.2|/usr/ports/graphics/pgplot|/usr/local|A C/FORTRAN library for drawing graphs on a variety of display devices|/usr/ports/graphics/pgplot/pkg/DESCR|jmz@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
photopc-1.6|/usr/ports/graphics/photopc|/usr/local|A utility to manage an Epson PhotoPC 500 digital camera|/usr/ports/graphics/photopc/pkg/DESCR|dcarmich@mcs.com|graphics|||
pixmap-2.6|/usr/ports/graphics/pixmap|/usr/X11R6|A pixmap editor based on XPM library|/usr/ports/graphics/pixmap/pkg/DESCR|jmz@FreeBSD.org|graphics|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
plotmtv-1.4.1|/usr/ports/graphics/plotmtv|/usr/X11R6|A multipurpose X11 plotting program|/usr/ports/graphics/plotmtv/pkg/DESCR|giffunip@asme.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
plotutils-2.2|/usr/ports/graphics/plotutils|/usr/local|A plotting library and toolkit|/usr/ports/graphics/plotutils/pkg/DESCR|chuckr@FreeBSD.org|graphics|Motif-2.1.10 XFree86-3.3.5 libtool-1.3.3 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.gnu.org/software/plotutils/plotutils.html
png-1.0.5|/usr/ports/graphics/png|/usr/local|Library for manipulating PNG images|/usr/ports/graphics/png/pkg/DESCR|ache@FreeBSD.org|graphics|||
png2html-1.1|/usr/ports/graphics/png2html|/usr/local|Takes a PNG image and transforms it into HTML|/usr/ports/graphics/png2html/pkg/DESCR|jedgar@fxp.org|graphics|gd-1.7.3 png-1.0.5|png-1.0.5|http://www.engr.mun.ca/~holden/png2html.html
pnmtopng-2.37.3|/usr/ports/graphics/pnmtopng|/usr/X11R6|Converter between PNG and portable anymap images|/usr/ports/graphics/pnmtopng/pkg/DESCR|volf@oasis.IAEhv.nl|graphics|XFree86-3.3.5 jpeg-6b netpbm-8.0 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 png-1.0.5|
povray-3.0.1|/usr/ports/graphics/povray|/usr/local|Persistence of Vision Ray Tracer|/usr/ports/graphics/povray/pkg/DESCR|kris@FreeBSD.org|graphics|XFree86-3.3.5 png-1.0.5|XFree86-3.3.5 png-1.0.5|
povray-3.1e|/usr/ports/graphics/povray31|/usr/local|Persistence of Vision Ray Tracer|/usr/ports/graphics/povray31/pkg/DESCR|olli@fromme.com|graphics|XFree86-3.3.5 png-1.0.5|XFree86-3.3.5 png-1.0.5|http://www.povray.org/
ppm2fli-b1|/usr/ports/graphics/ppm2fli|/usr/local|Utilities to merge PPM files into animated FLI and backwards|/usr/ports/graphics/ppm2fli/pkg/DESCR|giffunip@asme.org|graphics|||
pstoedit-3.11|/usr/ports/graphics/pstoedit|/usr/local|Convert PostScript to other vector graphic formats|/usr/ports/graphics/pstoedit/pkg/DESCR|jseger@FreeBSD.org|graphics print|unzip-5.40|XFree86-3.3.5 ghostscript-5.10 gsfonts-5.10 png-1.0.5|
py-imaging-1.0|/usr/ports/graphics/py-imaging|/usr/local|The Python Imaging Library|/usr/ports/graphics/py-imaging/pkg/DESCR|tg@FreeBSD.org|graphics python|XFree86-3.3.5 jpeg-6b python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 jpeg-6b python-1.5.2 tcl-8.2.2 tk-8.2.2|
py-imaging-handbook-1.0|/usr/ports/graphics/py-imaging-handbook|/usr/local|The Python Imaging Library Handbook|/usr/ports/graphics/py-imaging-handbook/pkg/DESCR|ports@FreeBSD.org|graphics|||
py-opengl-1.5.5|/usr/ports/graphics/py-opengl|/usr/local|An OpenGL (and related library) interface for Python|/usr/ports/graphics/py-opengl/pkg/DESCR|aa8vb@ipass.net|graphics python|Mesa-3.0 XFree86-3.3.5 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|Mesa-3.0 XFree86-3.3.5 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.python.net:9673/crew/da/Code/PyOpenGL/
qcread-0.3|/usr/ports/graphics/qcread|/usr/local|Supports both color and B&W parallel-port Connectix QuickCam for PC|/usr/ports/graphics/qcread/pkg/DESCR|billf@FreeBSD.org|graphics|||http://mars.illtel.denver.co.us/pub/qcread/README.html
qiv-1.1|/usr/ports/graphics/qiv|/usr/X11R6|A very small and fast GDK/Imlib image viewer|/usr/ports/graphics/qiv/pkg/DESCR|billf@FreeBSD.org|graphics|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.klografx.de/index.html
qvplay-0.94|/usr/ports/graphics/qvplay|/usr/local|Digital camera downloading tool for Casio QV series|/usr/ports/graphics/qvplay/pkg/DESCR|itojun@itojun.org|graphics|||
rayshade-4.0|/usr/ports/graphics/rayshade|/usr/local|An extensible system for creating ray-traced images|/usr/ports/graphics/rayshade/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b tiff-3.5.3 urt-3.1b1||
sane-1.0.1|/usr/ports/graphics/sane|/usr/local|API for access to scanners, digitals camera, frame grabbers etc|/usr/ports/graphics/sane/pkg/DESCR|gary@hotlava.com|graphics|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 jpeg-6b|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b|
sced-1.02|/usr/ports/graphics/sced|/usr/local|SCene EDitor for povray/renderman/genray/etc|/usr/ports/graphics/sced/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5 png-1.0.5 povray-3.0.1|
scwm-icons-0.99.2|/usr/ports/graphics/scwm-icons|/usr/X11R6|An icon collection for the scwm window manager|/usr/ports/graphics/scwm-icons/pkg/DESCR|nakai@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
sketch-0.6.3|/usr/ports/graphics/sketch|/usr/local|An interactive drawing program|/usr/ports/graphics/sketch/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b py-imaging-1.0 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 jpeg-6b py-imaging-1.0 py-xml-0.5.1 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://www.online.de/home/sketch
spigot-1.7|/usr/ports/graphics/spigot|/usr/local|Video spigot for Windows library|/usr/ports/graphics/spigot/pkg/DESCR|james@cs.uwm.edu|graphics|||
splitmpg-1.0|/usr/ports/graphics/splitmpg|/usr/local|Splits an ISO 11172-1 into its componets|/usr/ports/graphics/splitmpg/pkg/DESCR|erich@FreeBSD.org|graphics|||
stamp-0.61|/usr/ports/graphics/stamp|/usr/local|Adds a graphical, configurable timestamp to a grayscale image|/usr/ports/graphics/stamp/pkg/DESCR|billf@FreeBSD.org|graphics|jpeg-6b|jpeg-6b|http://www.telepath.com/booger/
tgd-1.2c|/usr/ports/graphics/tgd|/usr/local|A text based tool for creating and manipulating GIF images|/usr/ports/graphics/tgd/pkg/DESCR|mharo@FreeBSD.org|graphics|gd-1.7.3 png-1.0.5||
tgif-4.1.25|/usr/ports/graphics/tgif|/usr/X11R6|An Xlib-based two-dimensional drawing tool and hyper-object browser|/usr/ports/graphics/tgif/pkg/DESCR|bmc@WillsCreek.COM|graphics|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b netpbm-8.0 png-1.0.5 pnmtopng-2.37.3 tiff-3.5.3|
tgif-nls-4.1.16|/usr/ports/graphics/tgif-nls|/usr/X11R6|A two-dimensional drawing tool with NLS message catalogs support|/usr/ports/graphics/tgif-nls/pkg/DESCR|one@netlab.is.tsukuba.ac.jp|graphics|XFree86-3.3.5 gettext-0.10.35|XFree86-3.3.5 gettext-0.10.35 jpeg-6b netpbm-8.0 tiff-3.5.3|http://bourbon.cs.umd.edu:8001/tgif/
tiff-3.5.3|/usr/ports/graphics/tiff|/usr/local|Tools and library routines for working with TIFF images|/usr/ports/graphics/tiff/pkg/DESCR|ports@FreeBSD.org|graphics|jpeg-6b|jpeg-6b|http://www.libtiff.org/
tifmerge-1.0|/usr/ports/graphics/tifmerge|/usr/local|Library to merge TIFF files into multi-page TIFF files|/usr/ports/graphics/tifmerge/pkg/DESCR|adam@whizkidtech.net|graphics|tuc-1.10 unzip-5.40||
tkxanim-0.43|/usr/ports/graphics/tkxanim|/usr/local|Tcl/Tk frontend to xanim|/usr/ports/graphics/tkxanim/pkg/DESCR|jedgar@fxp.org|graphics tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 xanim-2.80.1|http://members.yourlink.net/aaron/tkxanim.html
togl-1.5|/usr/ports/graphics/togl|/usr/local|A Tk OpenGL widget|/usr/ports/graphics/togl/pkg/DESCR|aa8vb@ipass.net|graphics tk82|Mesa-3.0 XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|Mesa-3.0 XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.mesa3d.org/brianp/Togl.html
txtmerge-1.01|/usr/ports/graphics/txtmerge|/usr/local|Tool for making GIF Animations|/usr/ports/graphics/txtmerge/pkg/DESCR|nacai@iname.com|graphics|||
urt-3.1b1|/usr/ports/graphics/urt|/usr/local|Utah raster toolkit - a toolkit and library for raster image processing|/usr/ports/graphics/urt/pkg/DESCR|giffunip@asme.org|graphics|XFree86-3.3.5 jpeg-6b netpbm-8.0 tiff-3.5.3|XFree86-3.3.5 jpeg-6b tiff-3.5.3|
vcg-1.30|/usr/ports/graphics/vcg|/usr/X11R6|A Visualization Tool for compiler graphs|/usr/ports/graphics/vcg/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
whirlgif-2.01|/usr/ports/graphics/whirlgif|/usr/local|A tool for making GIF animations|/usr/ports/graphics/whirlgif/pkg/DESCR|nacai@iname.com|graphics|||
wmicons-1.0|/usr/ports/graphics/wmicons|/usr/X11R6|Icons mainly for use in Window Maker|/usr/ports/graphics/wmicons/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|graphics windowmaker|XFree86-3.3.5|XFree86-3.3.5|
xanim-2.80.1|/usr/ports/graphics/xanim|/usr/X11R6|Play most popular animation formats and show pictures|/usr/ports/graphics/xanim/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|http://xanim.va.pubnix.com/home.html
xaos-3.0|/usr/ports/graphics/xaos|/usr/local|A real-time fractal browser for X11 and ASCII terminals|/usr/ports/graphics/xaos/pkg/DESCR|jkoshy@freebsd.org|graphics|XFree86-3.3.5 png-1.0.5|XFree86-3.3.5 png-1.0.5|
xbm2gif-1.0|/usr/ports/graphics/xbm2gif|/usr/local|Converts xbm graphics to gif format|/usr/ports/graphics/xbm2gif/pkg/DESCR|adam@whizkidtech.net|graphics|gd-1.7.3 png-1.0.5||
xbmbrowser-5.1|/usr/ports/graphics/xbmbrowser|/usr/X11R6|View complete directories of X bitmaps and X pixmaps|/usr/ports/graphics/xbmbrowser/pkg/DESCR|tg@FreeBSD.org|graphics|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xdgagrab-0.3|/usr/ports/graphics/xdgagrab|/usr/X11R6|Capture an X server screen with a mouse pointer|/usr/ports/graphics/xdgagrab/pkg/DESCR|taoka@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
xdl-2.1|/usr/ports/graphics/xdl|/usr/X11R6|Display DL animations on an X screen|/usr/ports/graphics/xdl/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
xfig-3.2.2|/usr/ports/graphics/xfig|/usr/X11R6|A drawing program for X11|/usr/ports/graphics/xfig/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 Xaw3d-1.5 jpeg-6b xpm-3.4k|XFree86-3.3.5 Xaw3d-1.5 jpeg-6b netpbm-8.0 tiff-3.5.3 transfig-3.2.1 xpm-3.4k|
xfpovray-1.3.1|/usr/ports/graphics/xfpovray|/usr/X11R6|Graphical interface to POV-Ray|/usr/ports/graphics/xfpovray/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 gmake-3.78.1 xforms-0.88.1|XFree86-3.3.5 png-1.0.5 povray-3.0.1 xforms-0.88.1|
xfractint-3.10|/usr/ports/graphics/xfractint|/usr/local|The Unix port of fractint|/usr/ports/graphics/xfractint/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5 unzip-5.40|XFree86-3.3.5|http://spanky.triumf.ca/www/fractint/xfractint_port.html
xgrasp-1.7d|/usr/ports/graphics/xgrasp|/usr/X11R6|Display GL animations on X screen|/usr/ports/graphics/xgrasp/pkg/DESCR|ports@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
xli-1.16|/usr/ports/graphics/xli|/usr/X11R6|Xli, xsetbg, xview, xlito - utilities to display images on X11|/usr/ports/graphics/xli/pkg/DESCR|jkoshy@FreeBSD.org|graphics x11|XFree86-3.3.5 png-1.0.5|XFree86-3.3.5 png-1.0.5|
xmagv-1.11|/usr/ports/graphics/xmagv|/usr/X11R6|Viewer for X Window System|/usr/ports/graphics/xmagv/pkg/DESCR|flathill@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.oersted.co.jp/~yav/soft/#xmagv
xmandel-1.0|/usr/ports/graphics/xmandel|/usr/X11R6|Window based interface to Mandelbrot sets and Julia sets|/usr/ports/graphics/xmandel/pkg/DESCR|andreas@marvin.robin.de|graphics|XFree86-3.3.5|XFree86-3.3.5|
xmfract-1.4|/usr/ports/graphics/xmfract|/usr/X11R6|The dos based `fractint' with an X/Motif front end|/usr/ports/graphics/xmfract/pkg/DESCR|erich@FreeBSD.org|graphics|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmorph-97.09.11|/usr/ports/graphics/xmorph|/usr/X11R6|A digital image warping program|/usr/ports/graphics/xmorph/pkg/DESCR|erich@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
xmountains-2.4|/usr/ports/graphics/xmountains|/usr/X11R6|X11 based fractal landscape generator|/usr/ports/graphics/xmountains/pkg/DESCR|proff@iq.org|graphics|XFree86-3.3.5|XFree86-3.3.5|
xpaint-2.5.6|/usr/ports/graphics/xpaint|/usr/X11R6|A simple paint program|/usr/ports/graphics/xpaint/pkg/DESCR|jseger@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|
xpdf-0.90|/usr/ports/graphics/xpdf|/usr/X11R6|Display tool for PDF files|/usr/ports/graphics/xpdf/pkg/DESCR|chuckr@freebsd.org|graphics print|XFree86-3.3.5 autoconf-2.13 m4-1.4 t1lib-0.9.2 xpm-3.4k|XFree86-3.3.5 t1lib-0.9.2 xpm-3.4k|http://www.foolabs.com/xpdf/
xpm-3.4k|/usr/ports/graphics/xpm|/usr/X11R6|The X Pixmap library|/usr/ports/graphics/xpm/pkg/DESCR|jseger@FreeBSD.org|graphics x11|XFree86-3.3.5|XFree86-3.3.5|
xpx-1.41|/usr/ports/graphics/xpx|/usr/X11R6|A simple pixel editing tool to make datas for KISS|/usr/ports/graphics/xpx/pkg/DESCR|flathill@FreeBSD.org|graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.oersted.co.jp/~yav/soft/#xpx
xsane-0.45|/usr/ports/graphics/xsane|/usr/X11R6|Gtk-based X11 frontend for SANE (Scanner Access Now Easy)|/usr/ports/graphics/xsane/pkg/DESCR|domi@saargate.de|graphics|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 jpeg-6b png-1.0.5 sane-1.0.1 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 jpeg-6b png-1.0.5 sane-1.0.1 tiff-3.5.3|http://www.wolfsburg.de/~rauch/sane/sane-xsane.html
xv-3.10a|/usr/ports/graphics/xv|/usr/X11R6|An X11 program that displays images of various formats|/usr/ports/graphics/xv/pkg/DESCR|shige@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3|
xv-m17n-3.10a|/usr/ports/graphics/xv-m17n|/usr/X11R6|An X11 program that displays images of various formats with multilingualization|/usr/ports/graphics/xv-m17n/pkg/DESCR|shige@FreeBSD.org|graphics|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xv-3.10a|
xwpick-2.20|/usr/ports/graphics/xwpick|/usr/X11R6|Image pick up utility for X Window System|/usr/ports/graphics/xwpick/pkg/DESCR|andy@icc.surw.chel.su|graphics|XFree86-3.3.5|XFree86-3.3.5|
bitchx-75p3|/usr/ports/irc/bitchx|/usr/local|An alternative ircII color client|/usr/ports/irc/bitchx/pkg/DESCR|griffin@blackhole.iceworld.org|irc|||
blackened-1.7.1|/usr/ports/irc/blackened|/usr/local|The Blackened IRC Client|/usr/ports/irc/blackened/pkg/DESCR|andrews@technologist.com|irc|||http://www.blackened.com/blackened/
bnc-2.6.2|/usr/ports/irc/bnc|/usr/local|A simple IRC relay proxy with support for virtual hosting|/usr/ports/irc/bnc/pkg/DESCR|billf@FreeBSD.org|irc|||
epic-4.pre2.500|/usr/ports/irc/epic4|/usr/local|The (E)nhanced (P)rogrammable (I)RC-II (C)lient|/usr/ports/irc/epic4/pkg/DESCR|anders@sanyusan.se|irc|||http://epicsol.org/
ezbounce-0.99.2|/usr/ports/irc/ezbounce|/usr/local|A highly configurable IRC Proxy|/usr/ports/irc/ezbounce/pkg/DESCR|cpiazza@FreeBSD.org|irc|||http://druglord.freelsd.org/ezbounce/
irc-2.10.1|/usr/ports/irc/irc|/usr/local|The 'Internet Relay Chat' Server|/usr/ports/irc/irc/pkg/DESCR|torstenb@FreeBSD.org|irc|||
ircii-4.4|/usr/ports/irc/ircII|/usr/local|The 'Internet Relay Chat' Client|/usr/ports/irc/ircII/pkg/DESCR|torstenb@FreeBSD.org|irc|||
ircd-hybrid-5.3p7|/usr/ports/irc/ircd-hybrid|/usr/local|Irc server with many implemented options|/usr/ports/irc/ircd-hybrid/pkg/DESCR|desmo@bandwidth.org|irc|||
irssi-0.7.20.1|/usr/ports/irc/irssi|/usr/X11R6|An IRC client that uses GTK+ and (optionally) GNOME|/usr/ports/irc/irssi/pkg/DESCR|jim@FreeBSD.org|irc|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 libproplist-0.9.1 libtool-1.3.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libproplist-0.9.1|http://www.sicom.fi/~ikioma/irssi/home.htm
kvirc-0.9.0|/usr/ports/irc/kvirc|/usr/local|An enchanced visual irc client for KDE|/usr/ports/irc/kvirc/pkg/DESCR|anders@fix.no|irc kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.kvirc.org/
muh-2.04|/usr/ports/irc/muh|/usr/local|A smart irc-bouncing-tool that remains on IRC all the time|/usr/ports/irc/muh/pkg/DESCR|billf@FreeBSD.org|irc|gmake-3.78.1||http://mind.riot.org/muh/
ninja-1.1|/usr/ports/irc/ninja|/usr/local|Another ircII based irc client|/usr/ports/irc/ninja/pkg/DESCR|cpiazza@FreeBSD.org|irc|||http://ninja.pimped.org/
olirc-0.0.37|/usr/ports/irc/olirc|/usr/X11R6|A small irc client using GTK+|/usr/ports/irc/olirc/pkg/DESCR|nox@jelal.kn-bremen.de|irc|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://olirc.hexanet.fr/
p5-IRC-0.62|/usr/ports/irc/p5-IRC|/usr/local|Perl5 modules to implement the IRC protocol (RFC 1459)|/usr/ports/irc/p5-IRC/pkg/DESCR|jedgar@fxp.org|irc perl5|||http://www.funkplanet.com/irc/
quirc-0.9.79|/usr/ports/irc/quirc|/usr/local|An irc client for the X Window System that uses TCL/TK|/usr/ports/irc/quirc/pkg/DESCR|cpiazza@FreeBSD.org|irc tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://quirc.org/
roxirc-1.5|/usr/ports/irc/roxirc|/usr/local|A tcl/tk irc client|/usr/ports/irc/roxirc/pkg/DESCR|rox@fearme.com|irc tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://roxirc.lighter.net/
scrollz-1.8i5|/usr/ports/irc/scrollz|/usr/local|Fast, color-enabled IRC client|/usr/ports/irc/scrollz/pkg/DESCR|andrews@technologist.com|irc|bzip2-0.9.5d||http://www.scrollz.com/
sic-0.18a|/usr/ports/irc/sic|/usr/local|Another 'Internet Relay Chat' Client|/usr/ports/irc/sic/pkg/DESCR|sec@42.org|irc|||
sirc-2.211|/usr/ports/irc/sirc|/usr/local|Small (150k), fast, perl-based IRC client|/usr/ports/irc/sirc/pkg/DESCR|Doug@gorean.org|irc|||http://www.eleves.ens.fr:8080/home/espel/sirc/
tirc-1.2|/usr/ports/irc/tirc|/usr/local|Token's 'Internet Relay Chat' Client|/usr/ports/irc/tirc/pkg/DESCR|dr@domix.de|irc|||
tircproxy-0.4.3|/usr/ports/irc/tircproxy|/usr/local|IRC proxy server|/usr/ports/irc/tircproxy/pkg/DESCR|CoreDumped@CoreDumped.null.ru|irc|||
tkirc-1.202|/usr/ports/irc/tkirc|/usr/local|A GUI for the ircII Internet Relay Chat client|/usr/ports/irc/tkirc/pkg/DESCR|green@FreeBSD.org|irc tk82||XFree86-3.3.5 ircii-4.4 tcl-8.2.2 tk-8.2.2|http://www.north.de/~atte/tkirc/
trickyirc-1.1.0|/usr/ports/irc/trickyirc|/usr/local|Allows client independent detaching and reattaching of IRC sessions|/usr/ports/irc/trickyirc/pkg/DESCR|troll@digitalspark.net|irc|gmake-3.78.1||http://www.leb.net/~troll/
xchat-1.3.8|/usr/ports/irc/xchat|/usr/X11R6|An X11 IRC client using the GTK+ toolkit, and optionally, GNOME|/usr/ports/irc/xchat/pkg/DESCR|jim@FreeBSD.org|irc|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://xchat.linuxpower.org/
xgirc-0.1.1|/usr/ports/irc/xgirc|/usr/local|A gtk-based irc client for X Windows|/usr/ports/irc/xgirc/pkg/DESCR|jim@FreeBSD.org|irc|XFree86-3.3.5 gtk-1.0.6|XFree86-3.3.5 gtk-1.0.6|http://www.inforoute.capway.com/pieraut/
yagirc-0.66.1|/usr/ports/irc/yagirc|/usr/local|A graphical IRC client scriptable in Perl|/usr/ports/irc/yagirc/pkg/DESCR|mph@freebsd.org|irc|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.elpaso.net/~spoon/yagirc
zircon-1.18.227|/usr/ports/irc/zircon|/usr/local|An X11 interface to Internet Relay Chat|/usr/ports/irc/zircon/pkg/DESCR|jseger@FreeBSD.org|irc tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://catless.ncl.ac.uk/Programs/Zircon/
ja-Canna-3.2.2|/usr/ports/japanese/Canna|/usr/local|Kana-Kanji conversion system|/usr/ports/japanese/Canna/pkg/DESCR|max@FreeBSD.org|japanese|XFree86-3.3.5||
ja-FAQ-2.2|/usr/ports/japanese/FAQ|/usr|The Japanese version of FreeBSD FAQ|/usr/ports/japanese/FAQ/pkg/DESCR|sada@e-mail.ne.jp|japanese|docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 iso8879-1986 jade-1.2.1 linuxdoc-1.1 sgmlformat-1.7||
ja-VTPSfont-1.3|/usr/ports/japanese/VTPSfont|/usr/local|Create Virtual PostScript fonts produced by VFlib (Truetype fonts)|/usr/ports/japanese/VTPSfont/pkg/DESCR|taoka@FreeBSD.org|japanese print||bash-1.14.7|
ja-Wnn-4.2|/usr/ports/japanese/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Japanese built)|/usr/ports/japanese/Wnn/../../japanese/Wnn/pkg/DESCR|taoka@FreeBSD.org|japanese|XFree86-3.3.5||
ja-Wnn6-97.6.6|/usr/ports/japanese/Wnn6|/usr/local|A Japanese input method (this is not free)|/usr/ports/japanese/Wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese|||
ja-Wnn6-lib-98.10.28|/usr/ports/japanese/Wnn6-lib|/usr/local|Include files and a library of Wnn6|/usr/ports/japanese/Wnn6-lib/pkg/DESCR|taoka@FreeBSD.org|japanese|XFree86-3.3.5||http://www.omronsoft.co.jp
ja-a2ps-1.44|/usr/ports/japanese/a2ps|/usr/local|Text file to postscript converter (with Japanese support)|/usr/ports/japanese/a2ps/pkg/DESCR|saito@miv.t.u-tokyo.ac.jp|japanese print|||
ja-ack-1.39|/usr/ports/japanese/ack|/usr/local|Kanji code converter|/usr/ports/japanese/ack/pkg/DESCR|seiken@ARGV.AC|japanese converters|||
ja-acroread-jpnfont-1999.7.20|/usr/ports/japanese/acroread-jpnfont|/usr/local|Asian Font Packs for Acrobat Reader 4.0 (for Japanese)|/usr/ports/japanese/acroread-jpnfont/pkg/DESCR|taoka@FreeBSD.org|japanese||acroread-4.0 acroread-commfont-1999.7.20 linux_base-5.2 rpm-2.5.6|http://www.adobe.com/prodindex/acrobat/readstep.html
ja-addttfont-1.7|/usr/ports/japanese/addttfont|/usr/local|Automatically create a Japanese font environment by TrueType fonts|/usr/ports/japanese/addttfont/pkg/DESCR|taoka@FreeBSD.org|japanese perl5||XFree86-3.3.5 bash-1.14.7 freetype-1.3 gettext-0.10.35 ja-VTPSfont-1.3 ja-p5-jcode.pl-2.10 ja-p5-mkres-1.4 jpeg-6b netpbm-8.0 perlftlib-1.2 tgif-nls-4.1.16 tiff-3.5.3|
ja-binder-1.3|/usr/ports/japanese/binder|/usr/X11R6|A file manager on X window with TkStep|/usr/ports/japanese/binder/../../x11-fm/binder/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|x11-fm windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-bookview-2.4.5|/usr/ports/japanese/bookview|/usr/local|NDTP client using Japanized Tcl/Tk|/usr/ports/japanese/bookview/pkg/DESCR|takamune@avrl.mei.co.jp|japanese||XFree86-3.3.5 ja-tcl-8.0.5 ja-tk-8.0.5|http://www.sra.co.jp/people/m-kasahr/bookview/
ja-canuum-1.0|/usr/ports/japanese/canuum|/usr/local|Japanese input tty frontend for Canna using uum|/usr/ports/japanese/canuum/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|japanese|XFree86-3.3.5 ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-cdrom2-1996.06.16|/usr/ports/japanese/cdrom2|/usr/local|A tool to lookup CD-ROM dictionaries|/usr/ports/japanese/cdrom2/pkg/DESCR|max@FreeBSD.org|japanese misc|||
ja-chasen-2.0b6|/usr/ports/japanese/chasen|/usr/local|Japanese Morphological Analysis System|/usr/ports/japanese/chasen/pkg/DESCR|kuriyama@FreeBSD.org|japanese|||http://cactus.aist-nara.ac.jp/lab/nlt/chasen.html
ja-chimera-1.70p1|/usr/ports/japanese/chimera|/usr/X11R6|X/Athena World-Wide Web client + Japanese patch|/usr/ports/japanese/chimera/pkg/DESCR|ports@FreeBSD.org|japanese www|XFree86-3.3.5|XFree86-3.3.5|
ja-csrd-1.0|/usr/ports/japanese/csrd|/usr/local|Utility for Shogakukan Random House English-Japanese Dictionary|/usr/ports/japanese/csrd/pkg/DESCR|taoka@FreeBSD.org|japanese|||http://openlab.ring.gr.jp/edict/
ja-dbskkd-cdb-1.01|/usr/ports/japanese/dbskkd-cdb|/usr/local|Yet another dictionary server for SKK|/usr/ports/japanese/dbskkd-cdb/pkg/DESCR|matusita@jp.Freebsd.ORG|japanese|cdb-0.55 ja-skk-jisyoL-9.6||
ja-deepforest-1.0a|/usr/ports/japanese/deepforest|/usr/X11R6|A simple compress utilty using on JDE|/usr/ports/japanese/deepforest/../../archivers/deepforest/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|archivers windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-diclookup-mule-2.3.3|/usr/ports/japanese/diclookup-mule|/usr/local|CDROM dictionary client for mule|/usr/ports/japanese/diclookup-mule/pkg/DESCR|mita@jp.FreeBSD.org|japanese elisp|XFree86-3.3.5 ja-mule-wnn4-2.3 mule-common-2.3|XFree86-3.3.5 etlfonts-noncjk-1.0|
ja-dserver-2.2.2|/usr/ports/japanese/dserver|/usr/local|CDROM dictionary server & clients|/usr/ports/japanese/dserver/pkg/DESCR|mita@jp.FreeBSD.org|japanese|gmake-3.78.1|ja-less-332|
ja-dvi2dvi-1.1|/usr/ports/japanese/dvi2dvi|/usr/local|A DVI to DVI transformer|/usr/ports/japanese/dvi2dvi/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|gmake-3.78.1|ja-vftool-1.2|
ja-dvi2ps-2.0|/usr/ports/japanese/dvi2ps|/usr/local|DVI to PostScript converter Japanese version|/usr/ports/japanese/dvi2ps/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-nkf-1.62 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|
ja-dvi2tty-ascii-5.0|/usr/ports/japanese/dvi2tty|/usr/local|Character-based DVI file previewer|/usr/ports/japanese/dvi2tty/pkg/DESCR|max@FreeBSD.org|japanese print||ja-less-332|
ja-dvipsk-5.78a|/usr/ports/japanese/dvipsk|/usr/local|A DVI to PostScript translator + Japanese patch|/usr/ports/japanese/dvipsk/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|gmake-3.78.1|ja-ptex-common-2.1.8|
ja-dvipsk-vflib-5.78a|/usr/ports/japanese/dvipsk-vflib|/usr/local|A DVI to PostScript translator + Japanese patch + vflib patch|/usr/ports/japanese/dvipsk-vflib/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|XFree86-3.3.5 freetype-1.3 gmake-3.78.1 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-ptex-common-2.1.8 ja-vflib-2.24.1|
ja-e2ps-4.0|/usr/ports/japanese/e2ps|/usr/local|Text file to postscript converter (with Japanese support)|/usr/ports/japanese/e2ps/pkg/DESCR|kawahara@pine.kuee.kyoto-u.ac.jp|japanese print|||
ja-easypr-0.25|/usr/ports/japanese/easypr|/usr/local|A control panel for printers (with Japanese messages)|/usr/ports/japanese/easypr/pkg/DESCR|taoka@FreeBSD.org|japanese print||XFree86-3.3.5 ja-e2ps-4.0 ja-tcl-7.6 ja-tk-4.2 jpeg-6b netpbm-8.0 psutils-a4-1.17 tiff-3.5.3|http://www2.famille.ne.jp/~mituiwa/
ja-eb-2.3.5|/usr/ports/japanese/eb|/usr/local|C library for accessing EB, EBG, EBXA and EPWING CD-ROM dictionaries|/usr/ports/japanese/eb/pkg/DESCR|takamune@avrl.mei.co.jp|japanese|libtool-1.3.3||http://www.sra.co.jp/people/m-kasahr/eb/
ja-eblook-1.2|/usr/ports/japanese/eblook|/usr/local|Interactive EB interface command for seraching words in electoric dictionaries|/usr/ports/japanese/eblook/pkg/DESCR|shige@FreeBSD.org|japanese textproc|ja-eb-2.3.5|ja-eb-2.3.5|http://openlab.ring.gr.jp/lookup/eblook/
ja-ebw3-0.2b4|/usr/ports/japanese/ebw3|/usr/local|Access to Japanese EPWING or Electric-Book based CD-ROM via HTTP|/usr/ports/japanese/ebw3/pkg/DESCR|hikura@kaisei.org|japanese|||
ja-edict-19990714|/usr/ports/japanese/edict|/usr/local|Japanse-English dictionaries with access and maintenance utilities|/usr/ports/japanese/edict/pkg/DESCR|jhanna@home.com|japanese|unzip-5.40||
ja-jee-1.0|/usr/ports/japanese/ee|/usr/local|A simple, easy to use Japanese terminal-based screen editor|/usr/ports/japanese/ee/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-elisa10x8-1.0|/usr/ports/japanese/elisa10x8|/usr/X11R6|X11 8-dot kanji font 'elisa font'|/usr/ports/japanese/elisa10x8/pkg/DESCR|ishijima@tri.pref.osaka.jp|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ja-elisa8x8-1.0|/usr/ports/japanese/elisa8x8|/usr/X11R6|X11 8-dot kanji font 'elisa font'|/usr/ports/japanese/elisa8x8/pkg/DESCR|toshi@tea.forus.or.jp|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ja-elvis-1.8.4|/usr/ports/japanese/elvis|/usr/local|A clone of vi/ex, the standard UNIX editor, with Japanese patch|/usr/ports/japanese/elvis/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-emacs-manual-13.1999.09.12|/usr/ports/japanese/emacs-manual|/usr/local|Japanese translation of the GNU Emacs Manual|/usr/ports/japanese/emacs-manual/pkg/DESCR|okazaki@be.to|japanese|XFree86-3.3.5 emacs-20.4||
ja-emacs20-dl-canna-1.2|/usr/ports/japanese/emacs20-dl-canna|/usr/local|Dynamic loading module input method `Canna' on Emacs|/usr/ports/japanese/emacs20-dl-canna/pkg/DESCR|shige@FreeBSD.org|japanese editors|XFree86-3.3.5 apel-emacs20-9.22 autoconf-2.13 emacs-20.4 emacs-dl-20.4 gmake-3.78.1 ja-Canna-3.2.2 m4-1.4|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 emacs-dl-20.4 ja-Canna-3.2.2|
ja-emacs20-dl-wnn6-0.3.6|/usr/ports/japanese/emacs20-dl-wnn6|/usr/local|Dynamic loading module input method `Wnn' on Emacs|/usr/ports/japanese/emacs20-dl-wnn6/pkg/DESCR|shige@FreeBSD.org|japanese editors|XFree86-3.3.5 autoconf-2.13 emacs-20.4 emacs-dl-20.4 gmake-3.78.1 ja-Wnn6-lib-98.10.28 m4-1.4|XFree86-3.3.5 emacs-20.4 emacs-dl-20.4 ja-Wnn6-lib-98.10.28|
ja-epwutil-1.0|/usr/ports/japanese/epwutil|/usr/local|Utilities to manage Japanese EPWING or Electric-Book based CD-ROM|/usr/ports/japanese/epwutil/pkg/DESCR|takamune@avrl.mei.co.jp|japanese|||
ja-escpf-0.4b2|/usr/ports/japanese/escpf|/usr/local|Text filters for ESC/P, ESC/Page and ESC/PS printers|/usr/ports/japanese/escpf/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|||
ja-eterm-0.8.9|/usr/ports/japanese/eterm|/usr/X11R6|X11 terminal emulator based on rxvt/xterm that supports Japanese|/usr/ports/japanese/eterm/pkg/DESCR|nobutaka@nobutaka.com|japanese x11|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|
ja-ewipe-1.1.0|/usr/ports/japanese/ewipe|/usr/local|Tcl/tck-based presentation tool, with japanese configuration|/usr/ports/japanese/ewipe/../../misc/ewipe/pkg/DESCR|itojun@itojun.org|japanese misc tk42||XFree86-3.3.5 ja-tcl-7.6 ja-tk-4.2|http://al.ei.tuat.ac.jp/~sekisita/ewipe/
ja-exmh-2.1.1|/usr/ports/japanese/exmh2|/usr/local|X11/TK based mail reader front end to MH for Japanese environments|/usr/ports/japanese/exmh2/pkg/DESCR|ports@FreeBSD.org|japanese mail tk80|ja-tcl-8.2.2|XFree86-3.3.5 ja-less-332 ja-mh-6.8.4.3.03 ja-tcl-8.2.2 ja-tk-8.2.2 metamail-2.7 xloadimage-4.1|
ja-expect-5.30|/usr/ports/japanese/expect|/usr/local|A sophisticated scripter based on Japanized tcl/tk|/usr/ports/japanese/expect/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese lang tk80|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.0.5 ja-tk-8.0.5 m4-1.4|XFree86-3.3.5 ja-tcl-8.0.5 ja-tk-8.0.5|http://expect.nist.gov
ja-gawk-3.0.4|/usr/ports/japanese/gawk|/usr/local|GNU awk + multi-byte extension|/usr/ports/japanese/gawk/pkg/DESCR|ports@FreeBSD.org|japanese lang|||
ja-gd-1.6.3|/usr/ports/japanese/gd|/usr/local|A graphics library for fast GIF creation|/usr/ports/japanese/gd/pkg/DESCR|ichiro@ichiro.org|japanese graphics|libtool-1.3.3 png-1.0.5|png-1.0.5|
ja-gicq-0.33|/usr/ports/japanese/gicq|/usr/X11R6|GTK based ICQ program|/usr/ports/japanese/gicq/pkg/DESCR|flathill@FreeBSD.org|japanese net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 ja-libicq-0.33|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 ja-libicq-0.33|http://www.korsoft.com/gicq/
ja-gn-gnspool-1.40|/usr/ports/japanese/gn-gnspool|/usr/local|Simple Japanese Newsreader with Local Spool Support|/usr/ports/japanese/gn-gnspool/pkg/DESCR|seiken@ARGV.AC|japanese news|||
ja-gn-mnews-1.20|/usr/ports/japanese/gn-mnews|/usr/local|Simple news and E-mail reader configured to work with gnspool|/usr/ports/japanese/gn-mnews/pkg/DESCR|seiken@ARGV.AC|japanese news||ja-gn-gnspool-1.40 ja-mnews-1.21|
ja-gnomeicu-0.67|/usr/ports/japanese/gnome-icu|/usr/X11R6|GNOME ICQ client w/ Japanese support|/usr/ports/japanese/gnome-icu/pkg/DESCR|knu@idaemons.org|japanese net gnome|ORBit-0.5.0 XFree86-3.3.5 bzip2-0.9.5d esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 ja-libjcode-1.00 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://gnomeicu.gdev.net/
ja-gp-2.5p2|/usr/ports/japanese/gp|/usr/local|A GUI Printer manager written with Tcl/Tk|/usr/ports/japanese/gp/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|print tk42|ja-tcl-7.6|ImageMagick-4.2.9 XFree86-3.3.5 Xaw3d-1.5 freetype-1.3 gv-3.5.8 ja-tcl-7.6 ja-tk-4.2 jbigkit-1.0 jpeg-6b png-1.0.5 psutils-a4-1.17 tiff-3.5.3|
ja-grep-2.0|/usr/ports/japanese/grep|/usr/local|GNU grep + multi-byte extension|/usr/ports/japanese/grep/pkg/DESCR|ports@FreeBSD.org|japanese textproc|||
ja-groff-0.99|/usr/ports/japanese/groff|/usr/local|Japanese enhancement of GNU groff|/usr/ports/japanese/groff/pkg/DESCR|graphite@jp.freebsd.org|japanese print|gmake-3.78.1||
ja-gtkicq-0.60|/usr/ports/japanese/gtkicq|/usr/X11R6|Icq clone for japanese user|/usr/ports/japanese/gtkicq/pkg/DESCR|stanaka@bb.mbn.or.jp|japanese net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 ja-libjcode-1.00|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
ja-gxditview-0.99|/usr/ports/japanese/gxditview|/usr/X11R6|Japanized GNU's modified xditview|/usr/ports/japanese/gxditview/pkg/DESCR|ports@FreeBSD.org|japanese print|XFree86-3.3.5|XFree86-3.3.5 ja-groff-0.99|
ja-hex-2.03|/usr/ports/japanese/hex|/usr/local|A hexadecimal dump tool which handles Japanese|/usr/ports/japanese/hex/pkg/DESCR|yu@pastel.club.or.jp|japanese|XFree86-3.3.5|XFree86-3.3.5|
ja-ircii-2.8.2|/usr/ports/japanese/ircII|/usr/local|The 'Internet Relay Chat' Client|/usr/ports/japanese/ircII/pkg/DESCR|max@FreeBSD.org|japanese irc|||
ja-iv-3.1|/usr/ports/japanese/iv|/usr/local|A toolkit from Stanford University and Silicon Graphics + Japanese patches|/usr/ports/japanese/iv/pkg/DESCR|sanpei@sanpei.org|japanese graphics|XFree86-3.3.5|XFree86-3.3.5|
ja-japaneseAFM-1.0|/usr/ports/japanese/japaneseAFM|/usr/local|Japanese AFM fonts|/usr/ports/japanese/japaneseAFM/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese print|||
ja-jcode.pl-2.10|/usr/ports/japanese/jcode.pl|/usr/local|Perl library for Japanese character code conversion|/usr/ports/japanese/jcode.pl/pkg/DESCR|sada@e-mail.ne.jp|japanese|||
ja-jgv-0.2a|/usr/ports/japanese/jgv|/usr/X11R6|A graphic viewer with various image types|/usr/ports/japanese/jgv/../../graphics/jgv/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|graphics windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-jhd-2.3|/usr/ports/japanese/jhd|/usr/local|Japanese Hexdecimal Dump|/usr/ports/japanese/jhd/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-nkf-1.62||
ja-ls-0.1|/usr/ports/japanese/jls|/usr/local|Japanized ls|/usr/ports/japanese/jls/pkg/DESCR|shige@FreeBSD.org|japanese|||
ja-jpilot-0.96|/usr/ports/japanese/jpilot|/usr/local/pilot|Desktop Organizer Software for the Palm Pilot (Japanized)|/usr/ports/japanese/jpilot/../../palm/jpilot/pkg/DESCR|sumikawa@kame.net|palm comms|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 pilot-link-0.9.3 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 pilot-link-0.9.3 tcl-8.0.5 tk-8.0.5|http://jpilot.linuxbox.com/
ja-jlatex209-a17|/usr/ports/japanese/jtex209-ascii|/usr/local|ASCII Japanese pTeX based on LaTeX-209|/usr/ports/japanese/jtex209-ascii/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|gmake-3.78.1||
ja-jlatex209-a17-n152|/usr/ports/japanese/jtex209-both|/usr/local|Japanese TeX based on LaTeX-209 with both NTT and ASCII|/usr/ports/japanese/jtex209-both/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|gmake-3.78.1||
ja-jlatex209-n152|/usr/ports/japanese/jtex209-ntt|/usr/local|NTT Japanese TeX based on LaTeX-209|/usr/ports/japanese/jtex209-ntt/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|gmake-3.78.1||
ja-jvim-2.0r|/usr/ports/japanese/jvim|/usr/local|Japanized Vim|/usr/ports/japanese/jvim/pkg/DESCR|taoka@FreeBSD.org|japanese editors|||
ja-jvim-canna-2.0r|/usr/ports/japanese/jvim-canna|/usr/local|Japanized Vim (with Canna)|/usr/ports/japanese/jvim-canna/pkg/DESCR|taoka@FreeBSD.org|japanese editors|ja-Canna-3.2.2 ja-onew-canna-2.2.10|ja-Canna-3.2.2|
ja-jvim-canna+wnn4-2.0r|/usr/ports/japanese/jvim-canna+wnn4|/usr/local|Japanized Vim (with Canna and Wnn4)|/usr/ports/japanese/jvim-canna+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn4-2.2.10|ja-Canna-3.2.2 ja-Wnn-4.2|
ja-jvim-canna+wnn6-2.0r|/usr/ports/japanese/jvim-canna+wnn6|/usr/local|Japanized Vim (with Canna and Wnn6)|/usr/ports/japanese/jvim-canna+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn6-2.2.10|ja-Canna-3.2.2 ja-onew-canna+wnn6-2.2.10|
ja-jvim-wnn4-2.0r|/usr/ports/japanese/jvim-wnn4|/usr/local|Japanized Vim (with Wnn4)|/usr/ports/japanese/jvim-wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|ja-Wnn-4.2 ja-onew-wnn4-2.2.10|ja-Wnn-4.2|
ja-jvim-wnn6-2.0r|/usr/ports/japanese/jvim-wnn6|/usr/local|Japanized Vim (with Wnn6)|/usr/ports/japanese/jvim-wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|ja-Wnn-4.2 ja-onew-wnn6-2.2.10|ja-onew-wnn6-2.2.10|
ja-jvim-3.0.1.7j|/usr/ports/japanese/jvim3|/usr/local|Japanized Vim-3.0|/usr/ports/japanese/jvim3/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5|XFree86-3.3.5|
ja-jvim-canna-3.0.1.7j|/usr/ports/japanese/jvim3-canna|/usr/local|Japanized Vim-3.0 (with Canna)|/usr/ports/japanese/jvim3-canna/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Canna-3.2.2 ja-onew-canna-2.2.10|XFree86-3.3.5 ja-Canna-3.2.2|
ja-jvim-canna+wnn4-3.0.1.7j|/usr/ports/japanese/jvim3-canna+wnn4|/usr/local|Japanized Vim-3.0 (with Canna and Wnn4)|/usr/ports/japanese/jvim3-canna+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn4-2.2.10|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn-4.2|
ja-jvim-canna+wnn6-3.0.1.7j|/usr/ports/japanese/jvim3-canna+wnn6|/usr/local|Japanized Vim-3.0 (with Canna and Wnn6)|/usr/ports/japanese/jvim3-canna+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn6-2.2.10|XFree86-3.3.5 ja-Canna-3.2.2 ja-onew-canna+wnn6-2.2.10|
ja-jvim-direct_canna-3.0.1.7j|/usr/ports/japanese/jvim3-direct_canna|/usr/local|Japanized Vim-3.0 (direct connection to Canna)|/usr/ports/japanese/jvim3-direct_canna/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Canna-3.2.2|XFree86-3.3.5 ja-Canna-3.2.2|
ja-jvim-wnn4-3.0.1.7j|/usr/ports/japanese/jvim3-wnn4|/usr/local|Japanized Vim-3.0 (with Wnn4)|/usr/ports/japanese/jvim3-wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Wnn-4.2 ja-onew-wnn4-2.2.10|XFree86-3.3.5 ja-Wnn-4.2|
ja-jvim-wnn6-3.0.1.7j|/usr/ports/japanese/jvim3-wnn6|/usr/local|Japanized Vim-3.0 (with Wnn6)|/usr/ports/japanese/jvim3-wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 ja-Wnn-4.2 ja-onew-wnn6-2.2.10|XFree86-3.3.5 ja-onew-wnn6-2.2.10|
ja-naga10-1.0|/usr/ports/japanese/k10|/usr/X11R6|X11 10-dot kanji font 'naga10 font'|/usr/ports/japanese/k10/pkg/DESCR|usagi@clave.gr.jp|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ja-kaname12-1.1|/usr/ports/japanese/k12|/usr/X11R6|X11 12-dot kanji font|/usr/ports/japanese/k12/pkg/DESCR|mita@jp.FreeBSD.org|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|http://www.din.or.jp/~storm/fonts/
ja-kakasi-2.2.5|/usr/ports/japanese/kakasi|/usr/local|Kanji-Kana Simple Inverter, language filter for Japanese|/usr/ports/japanese/kakasi/pkg/DESCR|max@FreeBSD.org|japanese|||
ja-kappa20-0.3|/usr/ports/japanese/kappa20|/usr/X11R6|X11 20-dot kanji font 'kappa font'|/usr/ports/japanese/kappa20/pkg/DESCR|ginga@athena.club.or.jp|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
kbanner-2.1|/usr/ports/japanese/kbanner|/usr/local|Displays large japanese letters on the standard output|/usr/ports/japanese/kbanner/pkg/DESCR|sumikawa@kame.net|japanese|||
ja-kcc-1.0|/usr/ports/japanese/kcc|/usr/local|Kanji code conversion Filter|/usr/ports/japanese/kcc/pkg/DESCR|taoka@FreeBSD.org|japanese|||
ja-kinput2-canna-3.0|/usr/ports/japanese/kinput2-canna|/usr/X11R6|Input server of Japanese text (Canna)|/usr/ports/japanese/kinput2-canna/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2|XFree86-3.3.5 ja-Canna-3.2.2|
ja-kinput2-canna+sj3-3.0|/usr/ports/japanese/kinput2-canna+sj3|/usr/X11R6|Input server of Japanese text (Canna+SJ3)|/usr/ports/japanese/kinput2-canna+sj3/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2|
ja-kinput2-canna+sj3+wnn4-3.0|/usr/ports/japanese/kinput2-canna+sj3+wnn4|/usr/X11R6|Input server of Japanese text (Canna+SJ3+Wnn4)|/usr/ports/japanese/kinput2-canna+sj3+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn-4.2 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2|
ja-kinput2-canna+sj3+wnn6-3.0|/usr/ports/japanese/kinput2-canna+sj3+wnn6|/usr/X11R6|Input server of Japanese text (Canna+SJ3+Wnn6)|/usr/ports/japanese/kinput2-canna+sj3+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28|
ja-kinput2-canna+wnn4-3.0|/usr/ports/japanese/kinput2-canna+wnn4|/usr/X11R6|Input server of Japanese text (Canna+Wnn4)|/usr/ports/japanese/kinput2-canna+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn-4.2|XFree86-3.3.5 ja-Canna-3.2.2|
ja-kinput2-canna+wnn6-3.0|/usr/ports/japanese/kinput2-canna+wnn6|/usr/X11R6|Input server of Japanese text (Canna+Wnn6)|/usr/ports/japanese/kinput2-canna+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28|XFree86-3.3.5 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28|
ja-kinput2-sj3-3.0|/usr/ports/japanese/kinput2-sj3|/usr/X11R6|Input server of Japanese text (SJ3)|/usr/ports/japanese/kinput2-sj3/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-sj3-2.0.1.20|XFree86-3.3.5|
ja-kinput2-sj3+wnn4-3.0|/usr/ports/japanese/kinput2-sj3+wnn4|/usr/X11R6|Input server of Japanese text (SJ3+Wnn4)|/usr/ports/japanese/kinput2-sj3+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Wnn-4.2 ja-sj3-2.0.1.20|XFree86-3.3.5|
ja-kinput2-sj3+wnn6-3.0|/usr/ports/japanese/kinput2-sj3+wnn6|/usr/X11R6|Input server of Japanese text (SJ3+Wnn6)|/usr/ports/japanese/kinput2-sj3+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Wnn6-lib-98.10.28 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Wnn6-lib-98.10.28|
ja-kinput2-wnn4-3.0|/usr/ports/japanese/kinput2-wnn4|/usr/X11R6|Input server of Japanese text (Wnn4)|/usr/ports/japanese/kinput2-wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Wnn-4.2|XFree86-3.3.5|
ja-kinput2-wnn6-3.0|/usr/ports/japanese/kinput2-wnn6|/usr/X11R6|Input server of Japanese text (Wnn6)|/usr/ports/japanese/kinput2-wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-Wnn6-lib-98.10.28|XFree86-3.3.5 ja-Wnn6-lib-98.10.28|
ja-kon2-14dot-0.3|/usr/ports/japanese/kon2-14dot|/usr/local|Kanji On Console -- Display kanji characters on your own console|/usr/ports/japanese/kon2-14dot/../kon2-16dot/pkg/DESCR|shige@FreeBSD.org|japanese|||
ja-kon2-16dot-0.3|/usr/ports/japanese/kon2-16dot|/usr/local|Kanji On Console -- Display kanji characters on your own console|/usr/ports/japanese/kon2-16dot/pkg/DESCR|shige@FreeBSD.org|japanese|||
ja-kterm-6.2.0|/usr/ports/japanese/kterm|/usr/X11R6|An xterm that speaks Japanese|/usr/ports/japanese/kterm/pkg/DESCR|shige@FreeBSD.org|japanese x11|XFree86-3.3.5 ja-nkf-1.62 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ja-kterm16c-6.2.0|/usr/ports/japanese/kterm16c|/usr/X11R6|An xterm that speaks Japanese with 16 colors like on a VGA|/usr/ports/japanese/kterm16c/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|japanese x11|XFree86-3.3.5 ja-nkf-1.62 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ja-latex2html-98.1j2.1|/usr/ports/japanese/latex2html|/usr/local|Japanese latex2html with latex2html-98.1jpatch-2.1 patch|/usr/ports/japanese/latex2html/pkg/DESCR|ixtl@utmc.or.jp|japanese textproc||XFree86-3.3.5 dvips-5.76 ghostscript-5.10 gsfonts-5.10 jpeg-6b latex2e-99.06 netpbm-8.0 png-1.0.5 tex-3.14159 tiff-3.5.3|
ja-less-332|/usr/ports/japanese/less|/usr/local|Less + zcat + ISO-2022 - a pager similar to more and pg|/usr/ports/japanese/less/pkg/DESCR|nobu@psrc.isac.co.jp|japanese|||
ja-lesw-332|/usr/ports/japanese/lesw|/usr/local|Less + zcat + ISO-2022 + wide - a pager similar to more and pg|/usr/ports/japanese/lesw/pkg/DESCR|kodama@ayame.mfd.cs.fujitsu.co.jp|japanese|||http://www.pobox.com/~jam/less/
ja-libicq-0.33|/usr/ports/japanese/libicq|/usr/local|Library to add ICQ communication support to your software|/usr/ports/japanese/libicq/pkg/DESCR|flathill@FreeBSD.org|japanese net|glib-1.2.6 libtool-1.3.3|glib-1.2.6|http://www.montana.com/gabriel/gicq/
ja-libimg-1.2b2|/usr/ports/japanese/libimg|/usr/local|Enhanced Tk, adding support for many other Image formats:BMP,XBM,XPM,...|/usr/ports/japanese/libimg/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|graphics tk80 japanese|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.0.5 ja-tk-8.0.5 m4-1.4||http://home.wxs.nl/~nijtmans/img.html
ja-libjcode-1.00|/usr/ports/japanese/libjcode|/usr/local|Japanese charset conversion libraly|/usr/ports/japanese/libjcode/pkg/DESCR|stanaka@bb.mbn.or.jp|japanese net|||
ja-libslang-1.3.8.j067|/usr/ports/japanese/libslang|/usr/local|A library permits a programmer to develop software|/usr/ports/japanese/libslang/pkg/DESCR|mega@minz.org|japanese devel|||
ja-lipsf-1.13c|/usr/ports/japanese/lipsf|/usr/local|Text to LIPS filter|/usr/ports/japanese/lipsf/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|||
ja-lookup-emacs20-1.0|/usr/ports/japanese/lookup-emacs20|/usr/local|Search interface on Emacsen from CD-ROM books, etc|/usr/ports/japanese/lookup-emacs20/pkg/DESCR|taoka@FreeBSD.org|japanese elisp||XFree86-3.3.5 apel-emacs20-9.22 bitmap-emacs20-8.0 bitmap-font-8.0 emacs-20.4 flim-emacs20-1.12.7 ja-eb-2.3.5 ja-eblook-1.2 ja-lookup-mule-1.0|http://openlab.ring.gr.jp/lookup/index.html.en
ja-lookup-mule-1.0|/usr/ports/japanese/lookup-mule|/usr/local|A search interface on Emacsen from CD-ROM books, etc. |/usr/ports/japanese/lookup-mule/../lookup-mule/pkg/DESCR|taoka@FreeBSD.org|japanese elisp|ja-nkf-1.62|ja-eb-2.3.5 ja-eblook-1.2|http://openlab.ring.gr.jp/lookup/index.html.en
ja-lookup-xemacs-1.0|/usr/ports/japanese/lookup-xemacs|/usr/local|A search interface on Emacsen from CD-ROM books, etc. |/usr/ports/japanese/lookup-xemacs/../lookup-mule/pkg/DESCR|taoka@FreeBSD.org|japanese elisp|XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 ja-nkf-1.62 ja-xemacs-canna-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|ja-eb-2.3.5 ja-eblook-1.2|http://openlab.ring.gr.jp/lookup/index.html.en
ja-lynx-2.8.2.rel1|/usr/ports/japanese/lynx|/usr/local|A terminal-based World-Wide Web Client with multi-byte modification|/usr/ports/japanese/lynx/pkg/DESCR|shige@FreeBSD.org|japanese www|bzip2-0.9.5d|unzip-5.40 zip-2.2|
ja-lynx-2.8.3dev.16|/usr/ports/japanese/lynx-current|/usr/local|A terminal-based World-Wide Web Client with multi-byte modification|/usr/ports/japanese/lynx-current/pkg/DESCR|shige@FreeBSD.org|japanese www|bzip2-0.9.5d||
ja-lyx-1.0.3|/usr/ports/japanese/lyx|/usr/local|document processor interfaced with LaTeX (nearly WYSIWYG)|/usr/ports/japanese/lyx/pkg/DESCR|flathill@FreeBSD.ORG|japanese print|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 ja-platex2e-common-1998.09.01 ja-platex2e-euc-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8 xforms-0.88.1 xpm-3.4k|http://www.lyx.org/
ja-lyx_doc-1.0.3|/usr/ports/japanese/lyx-doc|/usr/local|Japanese Lyx documents translated from original ones.|/usr/ports/japanese/lyx-doc/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|japanese print|||
ja-magicpoint-1.05a|/usr/ports/japanese/magicpoint|/usr/X11R6|An X11-based presentation tool, configured with vflib support|/usr/ports/japanese/magicpoint/../../misc/magicpoint/pkg/DESCR|itojun@itojun.org|japanese misc|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|http://www.mew.org/mgp/
ja-makejvf-fkr-1.0|/usr/ports/japanese/makejvf|/usr/local|makejvf-1.0-fkr + TFM and VF|/usr/ports/japanese/makejvf/pkg/DESCR|inagaki@tg.rim.or.jp|japanese print|||
ja-man-1.1h|/usr/ports/japanese/man|/usr/local|A manual display command for Japanese (EUC)|/usr/ports/japanese/man/pkg/DESCR|kuriyama@FreeBSD.org|japanese||ja-groff-0.99 ja-less-332|
ja-man-doc-3.4|/usr/ports/japanese/man-doc|/usr|Japanese online manual pages corresponding to /usr/share/man/man*|/usr/ports/japanese/man-doc/pkg/DESCR|horikawa@jp.FreeBSD.org|japanese|||
ja-mendexk-euc-2.4c|/usr/ports/japanese/mendexk-euc|/usr/local|Index formatter for Japanese (EUC)|/usr/ports/japanese/mendexk-euc/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|gmake-3.78.1||
ja-mendexk-sjis-2.4c|/usr/ports/japanese/mendexk-sjis|/usr/local|Index formatter for Japanese (SJIS)|/usr/ports/japanese/mendexk-sjis/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|gmake-3.78.1 ja-nkf-1.62||
ja-mh-6.8.4.3.03|/usr/ports/japanese/mh|/usr/local|Rand MH mail handling system + Japanese patches|/usr/ports/japanese/mh/pkg/DESCR|motoyuki@freebsd.org|japanese mail|ja-less-332|ja-less-332|
ja-mhonarc-2.3.3|/usr/ports/japanese/mhonarc|/usr/local|WWW front end for mail archives|/usr/ports/japanese/mhonarc/pkg/DESCR|flathill@FreeBSD.org|japanese www|||
ja-micq-0.4.0|/usr/ports/japanese/micq|/usr/local|Text-based ICQ implementation|/usr/ports/japanese/micq/pkg/DESCR|flathill@FreeBSD.org|japanese net|||
ja-mimekit-1.7|/usr/ports/japanese/mimekit|/usr/local|Library to handle messages with MIME-encoded headers|/usr/ports/japanese/mimekit/pkg/DESCR|max@FreeBSD.org|japanese devel mail|||
ja-mnews-1.21|/usr/ports/japanese/mnews|/usr/local|Simple news and E-mail reader|/usr/ports/japanese/mnews/pkg/DESCR|seiken@ARGV.AC|japanese news|||
ja-mnews-gnspool-1.21|/usr/ports/japanese/mnews-gnspool|/usr/local|Simple news and E-mail reader (offline mode with gnspool)|/usr/ports/japanese/mnews-gnspool/../mnews/pkg/DESCR|seiken@ARGV.AC|japanese news||ja-gn-gnspool-1.40|
ja-mtools-3.6|/usr/ports/japanese/mtools|/usr/local|Tools for manipulating MSDOS files + support 1232KB , Unicode LFN|/usr/ports/japanese/mtools/pkg/DESCR|junya-w@remus.dti.ne.jp|japanese emulators|gmake-3.78.1||
ja-muggy-1.2b|/usr/ports/japanese/muggy|/usr/X11R6|A simple text editor for the X on TkStep|/usr/ports/japanese/muggy/../../editors/muggy/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-mule-canna-2.3|/usr/ports/japanese/mule-canna|/usr/local|A multilingual emacs, with Canna support built in (Only the executables)|/usr/ports/japanese/mule-canna/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-canna+sj3-2.3|/usr/ports/japanese/mule-canna+sj3|/usr/local|A multilingual emacs, with Canna and sj3 support built in (Only the executables)|/usr/ports/japanese/mule-canna+sj3/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-canna+sj3+wnn4-2.3|/usr/ports/japanese/mule-canna+sj3+wnn4|/usr/local|Multilingual emacs, with Canna, sj3, and Wnn4 support built-in|/usr/ports/japanese/mule-canna+sj3+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2 ja-Wnn-4.2 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-canna+sj3+wnn6-2.3|/usr/ports/japanese/mule-canna+sj3+wnn6|/usr/local|Multilingual emacs, with Canna, sj3, Wnn4, and Wnn6 support built-in|/usr/ports/japanese/mule-canna+sj3+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28 ja-sj3-2.0.1.20|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-canna+wnn4-2.3|/usr/ports/japanese/mule-canna+wnn4|/usr/local|Multilingual emacs, with Canna and Wnn4 support built-in|/usr/ports/japanese/mule-canna+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2 ja-Wnn-4.2|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-canna+wnn6-2.3|/usr/ports/japanese/mule-canna+wnn6|/usr/local|Multilingual emacs, with Canna, Wnn4, and Wnn6 support built-in|/usr/ports/japanese/mule-canna+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28|XFree86-3.3.5 ja-Canna-3.2.2 mule-common-2.3|
ja-mule-sj3-2.3|/usr/ports/japanese/mule-sj3|/usr/local|A multilingual emacs, with SJ3 support built in (Only the executables)|/usr/ports/japanese/mule-sj3/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-sj3-2.0.1.20|XFree86-3.3.5 mule-common-2.3|
ja-mule-sj3+wnn4-2.3|/usr/ports/japanese/mule-sj3+wnn4|/usr/local|A multilingual emacs, with sj3 and Wnn4 support built in (Only the executables)|/usr/ports/japanese/mule-sj3+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Wnn-4.2 ja-sj3-2.0.1.20|XFree86-3.3.5 mule-common-2.3|
ja-mule-sj3+wnn6-2.3|/usr/ports/japanese/mule-sj3+wnn6|/usr/local|Multilingual emacs, with sj3, Wnn4, and Wnn6 support built-in|/usr/ports/japanese/mule-sj3+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Wnn6-lib-98.10.28 ja-sj3-2.0.1.20|XFree86-3.3.5 mule-common-2.3|
ja-mule-wnn4-2.3|/usr/ports/japanese/mule-wnn4|/usr/local|A multilingual emacs, with Wnn4 support built in (Only the executables)|/usr/ports/japanese/mule-wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Wnn-4.2|XFree86-3.3.5 mule-common-2.3|
ja-mule-wnn6-2.3|/usr/ports/japanese/mule-wnn6|/usr/local|Multilingual emacs, with Wnn4, and Wnn6 support built-in|/usr/ports/japanese/mule-wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese editors|XFree86-3.3.5 gmake-3.78.1 ja-Wnn6-lib-98.10.28|XFree86-3.3.5 mule-common-2.3|
ja-mutt-1.0b3.j0|/usr/ports/japanese/mutt|/usr/local|Text-based mail client (Japanised Version)|/usr/ports/japanese/mutt/pkg/DESCR|shuna@pop16.odn.ne.jp|japanese mail|autoconf-2.13 automake-1.4 gettext-0.10.35 gmake-3.78.1 ja-libslang-1.3.8.j067 m4-1.4|ja-libslang-1.3.8.j067 urlview-0.7|http://www.mutt.org/
ja-namazu-1.3.0.8|/usr/ports/japanese/namazu|/usr/local|Search engine software intended for easy use|/usr/ports/japanese/namazu/pkg/DESCR|flathill@FreeBSD.org|japanese textproc|ja-kakasi-2.2.5 ja-nkf-1.62|ja-kakasi-2.2.5 ja-nkf-1.62|http://openlab.ring.gr.jp/namazu/
ja-ndtpd-2.3.5|/usr/ports/japanese/ndtpd|/usr/local|Server for accessing CD-ROM books with NDTP|/usr/ports/japanese/ndtpd/pkg/DESCR|takamune@avrl.mei.co.jp|japanese|ja-eb-2.3.5 libtool-1.3.3|ja-eb-2.3.5|http://www.sra.co.jp/people/m-kasahr/ndtpd/
ja-ne-3.00p17|/usr/ports/japanese/ne|/usr/local|This is Vz like text editor for japanese|/usr/ports/japanese/ne/pkg/DESCR|ele@pop17.odn.ne.jp|japanese editors|||http://www3.justnet.ne.jp/~ele/
ja-nethack-1.0.5.19970924|/usr/ports/japanese/nethack|/usr/local|A dungeon explorin', slashin', hackin' game|/usr/ports/japanese/nethack/pkg/DESCR|max@FreeBSD.org|japanese games|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.win.tue.nl/games/roguelike/nethack/
ja-netscape-fonts-1.0|/usr/ports/japanese/netscape-fonts|/usr/X11R6|Japanese Font Setup for Netscape Browsers|/usr/ports/japanese/netscape-fonts/pkg/DESCR|sada@freebsd.org|japanese www x11-fonts|XFree86-3.3.5|XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0|
ja-netscape-3.04|/usr/ports/japanese/netscape3.language|/usr/local|Japanese support for Netscape Navigator 3|/usr/ports/japanese/netscape3.language/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-3.04|
ja-netscape-communicator-4.08|/usr/ports/japanese/netscape4-communicator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape4-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-communicator-4.08|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-netscape-navigator-4.08|/usr/ports/japanese/netscape4-navigator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape4-navigator/../netscape4-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-navigator-4.08|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-netscape-communicator-4.61|/usr/ports/japanese/netscape46-communicator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape46-communicator/../netscape4-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-communicator-4.61|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-netscape-navigator-4.61|/usr/ports/japanese/netscape46-navigator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape46-navigator/../netscape4-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-navigator-4.61|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-netscape-communicator-4.7|/usr/ports/japanese/netscape47-communicator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape47-communicator/../netscape47-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-communicator-4.7|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-netscape-navigator-4.7|/usr/ports/japanese/netscape47-navigator|/usr/local|Netscape web-surfboard with Japanese resources|/usr/ports/japanese/netscape47-navigator/../netscape47-communicator/pkg/DESCR|sada@FreeBSD.org|japanese www||XFree86-3.3.5 ja-elisa8x8-1.0 ja-kaname12-1.1 ja-kappa20-0.3 ja-naga10-1.0 ja-netscape-fonts-1.0 netscape-navigator-4.7|http://www.rr.iij4u.or.jp/~sada/netscape.html
ja-newosaka-1.0|/usr/ports/japanese/newosaka|/usr/local|Translator of Japanese EUC documents into Osaka language|/usr/ports/japanese/newosaka/pkg/DESCR|nacai@iname.com|japanese|||http://www.power.co.jp/tm/tanaka/unix.html
ja-ng-1.3l|/usr/ports/japanese/ng|/usr/local|A very light Emacs-clone with japanese support|/usr/ports/japanese/ng/pkg/DESCR|ginga@athena.club.or.jp|japanese editors|||
ja-ng-canna-1.3l|/usr/ports/japanese/ng-canna|/usr/local|A very lightweight Emacs-clone with Japanese and Canna support|/usr/ports/japanese/ng-canna/pkg/DESCR|honda@kashio.info.mie-u.ac.jp|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-nkf-1.62|/usr/ports/japanese/nkf|/usr/local|Network Kanji code conversion Filter|/usr/ports/japanese/nkf/pkg/DESCR|max@FreeBSD.org|japanese|||
ja-nvi-eucjp-1.79.19990331|/usr/ports/japanese/nvi-euc-jp|/usr/local|A clone of vi/ex, with multilingual patch, default settings for euc-jp|/usr/ports/japanese/nvi-euc-jp/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-nvi-iso2022jp-1.79.19990331|/usr/ports/japanese/nvi-iso-2022-jp|/usr/local|A clone of vi/ex, with multilingual patch, default settings for iso-2022-jp|/usr/ports/japanese/nvi-iso-2022-jp/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-nvi-sjis-1.79.19990331|/usr/ports/japanese/nvi-sjis|/usr/local|A clone of vi/ex, with multilingual patch, default settings for sjis|/usr/ports/japanese/nvi-sjis/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|japanese editors|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-okphone-1.2|/usr/ports/japanese/okphone|/usr/local|Conference-calling phone with Japanese support|/usr/ports/japanese/okphone/pkg/DESCR|max@FreeBSD.org|japanese net|||
ja-oleo-1.6|/usr/ports/japanese/oleo|/usr/local|A Spreadsheet Program + Japanese patches|/usr/ports/japanese/oleo/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|japanese math|||http://www.hh.iij4u.or.jp/%7Ehayasida/oleo/
ja-onew-canna-2.2.10|/usr/ports/japanese/onew-canna|/usr/local|A library for Japanese Input Method Canna|/usr/ports/japanese/onew-canna/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-onew-canna+wnn4-2.2.10|/usr/ports/japanese/onew-canna+wnn4|/usr/local|A library for Japanese Input Method Canna and Wnn4|/usr/ports/japanese/onew-canna+wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-Canna-3.2.2 ja-Wnn-4.2|ja-Canna-3.2.2|
ja-onew-canna+wnn6-2.2.10|/usr/ports/japanese/onew-canna+wnn6|/usr/local|A library for Japanese Input Method Canna and Wnn6|/usr/ports/japanese/onew-canna+wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-Canna-3.2.2 ja-Wnn-4.2|ja-Canna-3.2.2|
ja-onew-wnn4-2.2.10|/usr/ports/japanese/onew-wnn4|/usr/local|A library for Japanese Input Method Wnn4|/usr/ports/japanese/onew-wnn4/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-Wnn-4.2||
ja-onew-wnn6-2.2.10|/usr/ports/japanese/onew-wnn6|/usr/local|A library for Japanese Input Method Wnn6|/usr/ports/japanese/onew-wnn6/pkg/DESCR|taoka@FreeBSD.org|japanese|ja-Wnn-4.2||
ja-p5-Jcode-0.60|/usr/ports/japanese/p5-Jcode|/usr/local|Perl extension interface to convert Japanese text|/usr/ports/japanese/p5-Jcode/pkg/DESCR|kuriyama@FreeBSD.org|japanese perl5|unzip-5.40||
ja-p5-jcode.pl-2.10|/usr/ports/japanese/p5-jcode.pl|/usr/local|Perl5 library for Japanese character code conversion|/usr/ports/japanese/p5-jcode.pl/pkg/DESCR|sada@FreeBSD.org|japanese perl5|||
ja-p5-man-5.000|/usr/ports/japanese/p5-manual|/usr/local|Perl5 japanese manual|/usr/ports/japanese/p5-manual/pkg/DESCR|sada@e-mail.ne.jp|japanese perl5|||
ja-p5-mkres-1.4|/usr/ports/japanese/p5-mkres|/usr/local|Create resources for tgif, vfontcap, .., for Japanese TrueType fonts|/usr/ports/japanese/p5-mkres/pkg/DESCR|taoka@FreeBSD.org|japanese perl5||XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2|
ja-paledit-0.91|/usr/ports/japanese/paledit|/usr/local|NTT DoCoMo PHS Paldio telephone data transfer tool|/usr/ports/japanese/paledit/pkg/DESCR|shige@FreeBSD.org|japanese sysutils|||
ja-perl-5.005.03|/usr/ports/japanese/perl5|/usr/local|Pattern Extraction and Recognition Language + Japanese patches|/usr/ports/japanese/perl5/pkg/DESCR|shige@FreeBSD.org|japanese perl5|||
jp-pgp-2.6.3|/usr/ports/japanese/pgp.language|/usr/local|Japanese language module for PGP|/usr/ports/japanese/pgp.language/pkg/DESCR|hikura@kaisei.org|japanese security|unzip-5.40|pgp-2.6.2 rsaref-2.0|
ja-pine-3.95|/usr/ports/japanese/pine|/usr/local|Program for Internet News and E-mail with Japanese Support|/usr/ports/japanese/pine/pkg/DESCR|max@FreeBSD.org|japanese mail|ja-Canna-3.2.2|ja-Canna-3.2.2|
ja-plain2-2.54|/usr/ports/japanese/plain2|/usr/local|A text converter from plain to any format|/usr/ports/japanese/plain2/pkg/DESCR|nkazushi@highway.or.jp|textproc|||
ja-plan-1.8.2|/usr/ports/japanese/plan|/usr/local|An X/Motif schedule planner with calendar|/usr/ports/japanese/plan/../../deskutils/plan/pkg/DESCR|obrien@FreeBSD.org|deskutils|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.IN-Berlin.DE/User/bitrot/plan.html
ja-platex2e-common-1998.09.01|/usr/ports/japanese/platex-common|/usr/local|Character code independent files for ASCII Japanese pLaTeX2e|/usr/ports/japanese/platex-common/pkg/DESCR|max@FreeBSD.org|japanese print|ja-ptex-common-2.1.8|ja-ptex-common-2.1.8|
ja-platex2e-euc-1998.09.01|/usr/ports/japanese/platex-euc|/usr/local|ASCII Japanese pLaTeX2e with Japanese EUC code support|/usr/ports/japanese/platex-euc/pkg/DESCR|max@FreeBSD.org|japanese print|ja-nkf-1.62 ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|
ja-platex2e-jis-1998.09.01|/usr/ports/japanese/platex-jis|/usr/local|ASCII Japanese pLaTeX2e with JIS code support|/usr/ports/japanese/platex-jis/pkg/DESCR|max@FreeBSD.org|japanese print|ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8|ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8|
ja-platex2e-sjis-1998.09.01|/usr/ports/japanese/platex-sjis|/usr/local|ASCII Japanese pLaTeX2e with Shift-JIS code support|/usr/ports/japanese/platex-sjis/pkg/DESCR|max@FreeBSD.org|japanese print|ja-nkf-1.62 ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8|ja-platex2e-common-1998.09.01 ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8|
ja-platex209-euc-1.0|/usr/ports/japanese/platex209-euc|/usr/local|ASCII Japanese pLaTeX 2.09 with Japanese EUC code support|/usr/ports/japanese/platex209-euc/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|ja-nkf-1.62 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|
ja-platex209-jis-1.0|/usr/ports/japanese/platex209-jis|/usr/local|ASCII Japanese pLaTeX 2.09 with JIS code support|/usr/ports/japanese/platex209-jis/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8|ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8|
ja-platex209-sjis-1.0|/usr/ports/japanese/platex209-sjis|/usr/local|ASCII Japanese pLaTeX 2.09 with Shift-JIS code support|/usr/ports/japanese/platex209-sjis/pkg/DESCR|watanabe@zlab.phys.nagoya-u.ac.jp|japanese print|ja-nkf-1.62 ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8|ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8|
ja-postgresql-6.5.3|/usr/ports/japanese/postgresql|/usr/local|A robust, next generation, object-relational DBMS plus Multibyte-patch|/usr/ports/japanese/postgresql/pkg/DESCR|ichiro@ichiro.org|japanese databases|gmake-3.78.1||http://www.PostgreSQL.ORG/
ja-ppxp-0.99072807|/usr/ports/japanese/ppxp|/usr/local|A new and easy to use PPP software|/usr/ports/japanese/ppxp/../../net/ppxp/pkg/DESCR|nosuzuki@e-mail.ne.jp|net tk82 japanese|XFree86-3.3.5 gmake-3.78.1 ja-tcl-8.0.5 ja-tk-8.0.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 ja-tcl-8.0.5 ja-tk-8.0.5 xforms-0.88.1 xpm-3.4k|http://www.dsl.gr.jp/~manabe/PPxP/
ja-prn-1.0|/usr/ports/japanese/prn|/usr/local|A yet another converter from text file to postscript (with Japanese support)|/usr/ports/japanese/prn/pkg/DESCR|taoka@FreeBSD.org|japanese print||ja-kcc-1.0|
ja-ptex-common-2.1.8|/usr/ports/japanese/ptex-common|/usr/local|Character code independent files for ASCII Japanese pTeX|/usr/ports/japanese/ptex-common/pkg/DESCR|max@FreeBSD.org|japanese print|gmake-3.78.1||
ja-ptex-euc-2.1.8|/usr/ports/japanese/ptex-euc|/usr/local|Japanese pTeX files to support EUC character set|/usr/ports/japanese/ptex-euc/pkg/DESCR|max@FreeBSD.org|japanese print|gmake-3.78.1|ja-ptex-common-2.1.8|
ja-ptex-jis-2.1.8|/usr/ports/japanese/ptex-jis|/usr/local|Japanese pTeX files to support JIS character set|/usr/ports/japanese/ptex-jis/pkg/DESCR|max@FreeBSD.org|japanese print|gmake-3.78.1|ja-ptex-common-2.1.8|
ja-ptex-sjis-2.1.8|/usr/ports/japanese/ptex-sjis|/usr/local|Japanese pTeX files to support Shift-JIS character set|/usr/ports/japanese/ptex-sjis/pkg/DESCR|max@FreeBSD.org|japanese print|gmake-3.78.1|ja-ptex-common-2.1.8|
ja-qkc-1.0|/usr/ports/japanese/qkc|/usr/local|Quick Kanji Code Converter (C version)|/usr/ports/japanese/qkc/pkg/DESCR|max@FreeBSD.org|japanese|unzip-5.40||
ja-recjis-1.0|/usr/ports/japanese/recjis|/usr/local|Tool for recovery of broken japanese text|/usr/ports/japanese/recjis/pkg/DESCR|nacai@iname.com|japanese|||
ja-recycler-0.1a|/usr/ports/japanese/recycler|/usr/X11R6|Trash can software that replaces the offix trash can|/usr/ports/japanese/recycler/../../deskutils/recycler/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|deskutils windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-rubytk-1.4.2|/usr/ports/japanese/rubytk|/usr/local|A Ruby interface to Tcl/Tk libraries|/usr/ports/japanese/rubytk/../../x11-toolkits/rubytk/pkg/DESCR|yasuf@big.or.jp|japanese x11-toolkits|XFree86-3.3.5 ja-tcl-8.2.2 ja-tk-8.2.2 ruby-1.4.2|XFree86-3.3.5 ja-tcl-8.2.2 ja-tk-8.2.2 ruby-1.4.2|
ja-rxvt-2.6.1|/usr/ports/japanese/rxvt|/usr/X11R6|An xterm replacement that supports pixmap background and Japanese|/usr/ports/japanese/rxvt/pkg/DESCR|honda@kashio.info.mie-u.ac.jp|japanese x11|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.rxvt.org/
ja-sed-3.02|/usr/ports/japanese/sed|/usr/local|GNU sed + multi-byte extension|/usr/ports/japanese/sed/pkg/DESCR|ports@FreeBSD.org|japanese textproc|gmake-3.78.1||
ja-seizedesktop-0.1a|/usr/ports/japanese/seizedesktop|/usr/X11R6|A customizer of disktop screen environment|/usr/ports/japanese/seizedesktop/../../misc/seizedesktop/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|misc windowmaker tkstep80 japanese|XFree86-3.3.5|XFree86-3.3.5 ja-libimg-1.2b2 ja-tcl-8.0.5 ja-tkstep-8.0.4|
ja-sj3-2.0.1.20|/usr/ports/japanese/sj3|/usr/local|A Japanese input method|/usr/ports/japanese/sj3/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese|XFree86-3.3.5||
ja-sjxa-1.5.11|/usr/ports/japanese/sjxa|/usr/X11R6|A X11 frontend of Japanese input method SJ3|/usr/ports/japanese/sjxa/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese x11|XFree86-3.3.5|XFree86-3.3.5 ja-sj3-2.0.1.20|
ja-skk-9.6|/usr/ports/japanese/skk|/usr/local|The "meta-port" for the SKK Japanese-input software|/usr/ports/japanese/skk/pkg/DESCR|matusita@jp.freebsd.org|japanese elisp||ja-skk-elisp-9.6 ja-skk-jisyoL-9.6 ja-skk-tools-9.6 ja-skkserv-9.6|http://skk.kuis.kyoto-u.ac.jp/skk/
ja-skk-elisp-9.6|/usr/ports/japanese/skk-elisp|/usr/local|Emacs-lisp frontend for the SKK Japanese-input software|/usr/ports/japanese/skk-elisp/pkg/DESCR|matusita@jp.freebsd.org|japanese elisp|XFree86-3.3.5 ja-skk-jisyoL-9.6 mule-2.3 mule-common-2.3|ja-skk-jisyoL-9.6|http://skk.kuis.kyoto-u.ac.jp/skk/
ja-skk-jisyoL-9.6|/usr/ports/japanese/skk-jisyo|/usr/local|Jisyo file for the SKK Japanese-input software|/usr/ports/japanese/skk-jisyo/pkg/DESCR|matusita@jp.freebsd.org|japanese|||http://skk.kuis.kyoto-u.ac.jp/skk/
ja-skk-tools-9.6|/usr/ports/japanese/skk-tools|/usr/local|Jisyo-tools for the SKK Japanese-input software|/usr/ports/japanese/skk-tools/pkg/DESCR|matusita@jp.freebsd.org|japanese|ja-skk-jisyoL-9.6||http://skk.kuis.kyoto-u.ac.jp/skk/
ja-skk-elisp-emacs20-10.55|/usr/ports/japanese/skk10-elisp-emacs20|/usr/local|Emacs-lisp frontend for the SKK-10 Japanese Input Method|/usr/ports/japanese/skk10-elisp-emacs20/pkg/DESCR|shige@FreeBSD.org|japanese elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 ja-skk-jisyoL-9.6|
ja-skkfep-0.85|/usr/ports/japanese/skkfep|/usr/local|SKK-like Kana-to-Kanji FrontEnd Processor|/usr/ports/japanese/skkfep/pkg/DESCR|azuki@azkey.org|japanese||ja-skk-9.6 ja-skk-elisp-9.6 ja-skk-jisyoL-9.6 ja-skk-tools-9.6 ja-skkserv-9.6|
ja-skkinput-2.03|/usr/ports/japanese/skkinput|/usr/X11R6|A SKK-like Japanese input method for X11|/usr/ports/japanese/skkinput/pkg/DESCR|yasuf@big.or.jp|japanese x11|XFree86-3.3.5|XFree86-3.3.5 ja-skk-jisyoL-9.6 ja-skkserv-9.6|
ja-skkserv-9.6|/usr/ports/japanese/skkserv|/usr/local|Dictionary server for the SKK Japanese-input software|/usr/ports/japanese/skkserv/pkg/DESCR|matusita@jp.freebsd.org|japanese|ja-skk-jisyoL-9.6|ja-skk-jisyoL-9.6|http://skk.kuis.kyoto-u.ac.jp/skk/
ja-slrn-0.9.5.7.1|/usr/ports/japanese/slrn|/usr/local|A newsreader based by S-Lang|/usr/ports/japanese/slrn/pkg/DESCR|mega@minz.org|japanese news|ja-libslang-1.3.8.j067|ja-libslang-1.3.8.j067|
ja-tcl-7.6|/usr/ports/japanese/tcl76|/usr/local|Japanized Tcl (Tool Command Language)|/usr/ports/japanese/tcl76/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese lang|autoconf-2.13 m4-1.4||
ja-tcl-8.0.5|/usr/ports/japanese/tcl80|/usr/local|Japanized Tool Command Language, version 8.0|/usr/ports/japanese/tcl80/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese lang tcl80|autoconf-2.13 m4-1.4||
ja-tcl-8.2.2|/usr/ports/japanese/tcl82|/usr/local|Japanized Tool Command Language, version 8.2|/usr/ports/japanese/tcl82/pkg/DESCR|ports@FreeBSD.org|japanese lang tcl82|autoconf-2.13 m4-1.4||
ja-tcsh-6.08.05|/usr/ports/japanese/tcsh|/usr/local|An extended C-shell with many useful features with multibyte support|/usr/ports/japanese/tcsh/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|||
ja-tcsh-nls-asuka-6.08.05|/usr/ports/japanese/tcsh-nls-asuka|/usr/local|Japanese NLS catalog for TCSH. ("Soryu Asuka Langley" taste)|/usr/ports/japanese/tcsh-nls-asuka/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-ayanami-6.08.05|/usr/ports/japanese/tcsh-nls-ayanami|/usr/local|Japanese NLS catalog for TCSH. ("Ayanami Rei" taste)|/usr/ports/japanese/tcsh-nls-ayanami/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-generic-6.08.05|/usr/ports/japanese/tcsh-nls-generic|/usr/local|Japanese NLS catalog for TCSH. ("Generic Japanese" taste)|/usr/ports/japanese/tcsh-nls-generic/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-koshiki-6.08.05|/usr/ports/japanese/tcsh-nls-koshiki|/usr/local|Japanese NLS catalog for TCSH. ("Koshiki Yukari" taste)|/usr/ports/japanese/tcsh-nls-koshiki/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-merril-6.08.05|/usr/ports/japanese/tcsh-nls-merril|/usr/local|Japanese NLS catalog for TCSH. ("Merril" taste)|/usr/ports/japanese/tcsh-nls-merril/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-miyakonjo-6.08.05|/usr/ports/japanese/tcsh-nls-miyakonjo|/usr/local|Japanese NLS catalog for TCSH. ("Miyakonjo" taste)|/usr/ports/japanese/tcsh-nls-miyakonjo/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-multi-6.08.05|/usr/ports/japanese/tcsh-nls-multi|/usr/local|Japanese NLS catalog for TCSH. ("Multi" taste)|/usr/ports/japanese/tcsh-nls-multi/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-rishu-6.08.05|/usr/ports/japanese/tcsh-nls-rishu|/usr/local|Japanese NLS catalog for TCSH. ("Rishu" taste)|/usr/ports/japanese/tcsh-nls-rishu/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-roomi-6.08.05|/usr/ports/japanese/tcsh-nls-roomi|/usr/local|Japanese NLS catalog for TCSH. ("Roomi" taste)|/usr/ports/japanese/tcsh-nls-roomi/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-tcsh-nls-ruri2-6.08.05|/usr/ports/japanese/tcsh-nls-ruri2|/usr/local|Japanese NLS catalog for TCSH. ("Hoshino Ruri" taste)|/usr/ports/japanese/tcsh-nls-ruri2/pkg/DESCR|issei@jp.FreeBSD.org|japanese shells|ja-nkf-1.62|ja-tcsh-6.08.05|
ja-texinfo-4.0|/usr/ports/japanese/texinfo|/usr/local|Typeset Texinfo files for printing. Uses TeX|/usr/ports/japanese/texinfo/pkg/DESCR|mitsuru@riken.go.jp|japanese print||ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|
ja-tgif-4.1.16|/usr/ports/japanese/tgif|/usr/X11R6|2-D drawing facility (with Japanese configuration)|/usr/ports/japanese/tgif/pkg/DESCR|mita@jp.FreeBSD.org|japanese|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b netpbm-8.0 png-1.0.5 pnmtopng-2.37.3 tgif-4.1.25 tiff-3.5.3|
ja-tgif2tex-1.46|/usr/ports/japanese/tgif2tex|/usr/local|Converting texts in figure by tgif to LaTeX commands (for Japanese)|/usr/ports/japanese/tgif2tex/pkg/DESCR|taoka@FreeBSD.org|print||ja-nkf-1.62|
ja-timidity++-slang-1.3.10|/usr/ports/japanese/timidity++-slang|/usr/local|Slang interface for TiMidity++.|/usr/ports/japanese/timidity++-slang/pkg/DESCR|yatt@msc.biglobe.ne.jp|japanese audio|XFree86-3.3.5 autoconf-2.13 ja-libslang-1.3.8.j067 m4-1.4|XFree86-3.3.5 ja-libslang-1.3.8.j067 timidity++-1.3.10|
ja-timidity++-tcltk-1.3.10|/usr/ports/japanese/timidity++-tcltk|/usr/local|Tcl/Tk interface for TiMidity++.|/usr/ports/japanese/timidity++-tcltk/pkg/DESCR|yatt@msc.biglobe.ne.jp|japanese audio|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.0.5 ja-tk-8.0.5 m4-1.4|XFree86-3.3.5 ja-tcl-8.0.5 ja-tk-8.0.5 timidity++-1.3.10|
ja-tk-4.2|/usr/ports/japanese/tk42|/usr/local|Japanized TK (Tcl Tool Kit)|/usr/ports/japanese/tk42/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese x11-toolkits|XFree86-3.3.5 autoconf-2.13 ja-tcl-7.6 m4-1.4|XFree86-3.3.5 ja-tcl-7.6|
ja-tk-8.0.5|/usr/ports/japanese/tk80|/usr/local|Graphical toolkit for Japanized TCL, version 8.0|/usr/ports/japanese/tk80/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese x11-toolkits tk80|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.0.5 m4-1.4|XFree86-3.3.5 ja-tcl-8.0.5|
ja-tk-8.2.2|/usr/ports/japanese/tk82|/usr/local|Graphical toolkit for Japanized TCL, version 8.2|/usr/ports/japanese/tk82/pkg/DESCR|ports@FreeBSD.org|japanese x11-toolkits tk82|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.2.2 m4-1.4|XFree86-3.3.5 ja-tcl-8.2.2|
ja-tkdesk-1.1p58|/usr/ports/japanese/tkdesk|/usr/local|A graphical, highly configurable and powerful file manager|/usr/ports/japanese/tkdesk/pkg/DESCR|yatt@msc.biglobe.ne.jp|japanese x11-fm tk42|XFree86-3.3.5 gmake-3.78.1 ja-tcl-7.6 ja-tk-4.2|XFree86-3.3.5 im-130 ja-e2ps-4.0 ja-easypr-0.25 ja-tcl-7.6 ja-tk-4.2 jpeg-6b netpbm-8.0 psutils-a4-1.17 tiff-3.5.3|http://www2.famille.ne.jp/~mituiwa/
ja-tkstep-8.0.4|/usr/ports/japanese/tkstep80|/usr/local|The Tk toolkit with a NeXTSTEP look and more|/usr/ports/japanese/tkstep80/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|japanese tk80|XFree86-3.3.5 autoconf-2.13 ja-tcl-8.0.5 m4-1.4|XFree86-3.3.5 ja-tcl-8.0.5|
ja-today-2.10b|/usr/ports/japanese/today|/usr/local|Tells you what day today is|/usr/ports/japanese/today/pkg/DESCR|rewsirow@ff.iij4u.or.jp|japanese games|ja-nkf-1.62 lha-1.14f||
ja-truetypefonts-1998.10.20|/usr/ports/japanese/truetypefonts|/usr/X11R6|Japanese TrueType Fonts|/usr/ports/japanese/truetypefonts/pkg/DESCR|candy@kgc.co.jp|japanese x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ja-tvi-0.9.2|/usr/ports/japanese/tvi|/usr/local|LaTeX source editor for vi users|/usr/ports/japanese/tvi/pkg/DESCR|sugimura@jp.FreeBSD.org|japanese||XFree86-3.3.5 ja-tcl-7.6 ja-tk-4.2|
ja-typist-2.0|/usr/ports/japanese/typist|/usr/local|Typing lessons (Japanese version)|/usr/ports/japanese/typist/pkg/DESCR|taoka@FreeBSD.org|japanese|||
ja-vfghostscript-2.6.2|/usr/ports/japanese/vfghostscript|/usr/local|GNU Postscript interpreter + Japanese VFontlib patch|/usr/ports/japanese/vfghostscript/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|
ja-vfghostscript-5.10|/usr/ports/japanese/vfghostscript5|/usr/local|GNU Postscript and PDF interpreter with Japanese vector font library|/usr/ports/japanese/vfghostscript5/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|
ja-vfghostscript-5.50|/usr/ports/japanese/vfghostscript55|/usr/local|Aladdin Postscript and PDF interpreter with Japanese vector font library|/usr/ports/japanese/vfghostscript55/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 gmake-3.78.1 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|
ja-vflib-2.24.1|/usr/ports/japanese/vflib|/usr/local|Japanese Vector font library with free vector font|/usr/ports/japanese/vflib/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 autoconf-2.13 freetype-1.3 m4-1.4|XFree86-3.3.5 freetype-1.3|http://www.se.hiroshima-u.ac.jp/~kakugawa/Hacks/VFlibMan/Index.html
ja-vftool-1.2|/usr/ports/japanese/vftool|/usr/local|Virtual font kit for using in dvi2ps, dvipsk or dvi2dvi (n2a,a2n,a2bk,p2pn)|/usr/ports/japanese/vftool/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese print|ja-japaneseAFM-1.0||
ja-vfxdvi118-17|/usr/ports/japanese/vfxdvi118|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi118/../vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts118-1.0|
ja-vfxdvi240-17|/usr/ports/japanese/vfxdvi240|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi240/../vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts240-1.0|
ja-vfxdvi300-17|/usr/ports/japanese/vfxdvi300|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts300-1.0|
ja-vfxdvi360-17|/usr/ports/japanese/vfxdvi360|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi360/../vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts360-1.0|
ja-vfxdvi400-17|/usr/ports/japanese/vfxdvi400|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi400/../vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts400-1.0|
ja-vfxdvi600-17|/usr/ports/japanese/vfxdvi600|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi600/../vfxdvi300/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 pkfonts600-1.0|
ja-vfxdvik-22.15|/usr/ports/japanese/vfxdvik|/usr/local|DVI Previewer(kpathsearch) for X. + jp-patch|/usr/ports/japanese/vfxdvik/pkg/DESCR|inagaki@tg.rim.or.jp|japanese print|XFree86-3.3.5 freetype-1.3 gmake-3.78.1 ja-vflib-2.24.1|XFree86-3.3.5 freetype-1.3 ja-makejvf-fkr-1.0 ja-vflib-2.24.1|
ja-w3-2.2.26|/usr/ports/japanese/w3|/usr/local|WWW browser based on emacs/mule|/usr/ports/japanese/w3/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese www elisp|XFree86-3.3.5 mule-2.3 mule-common-2.3||
ja-w3m-991203|/usr/ports/japanese/w3m|/usr/local|A pager/text-based WWW browser with Japanese support|/usr/ports/japanese/w3m/pkg/DESCR|nobutaka@nobutaka.com|japanese www|boehm-gc-5.0a3||http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/index.html
ja-w3m-ssl-991203|/usr/ports/japanese/w3m-ssl|/usr/local|A pager/text-based WWW browser with Japanese and SSL support|/usr/ports/japanese/w3m-ssl/pkg/DESCR|nobutaka@nobutaka.com|japanese www|boehm-gc-5.0a3 openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/index.html
ja-weblint97-0.12|/usr/ports/japanese/weblint97|/usr/local|An internationalized HTML checker with japanese message(EUC-JP)|/usr/ports/japanese/weblint97/pkg/DESCR|ports@FreeBSD.org|japanese www||ja-jcode.pl-2.10|http://www.sfc.keio.ac.jp/%7Emimasa/jweblint/
ja-wine-99.01.31|/usr/ports/japanese/wine|/usr/local|MS-Windows 3.1/95/NT emulator for Unix (Alpha release)|/usr/ports/japanese/wine/pkg/DESCR|j1594016@ed.kagu.sut.ac.jp|japanese emulators|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ja-word-0.99.12|/usr/ports/japanese/word|/usr/local|Free Japanese word processor which is distributed in GPL2|/usr/ports/japanese/word/pkg/DESCR|sada@FreeBSD.ORG|japanese|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www2.famille.ne.jp/~mituiwa/#word
ja-xemacs-canna-21.1.8|/usr/ports/japanese/xemacs-canna|/usr/local|XEmacs(version 21.1.8) text editor, with SJ3, SKK and Canna support.|/usr/ports/japanese/xemacs-canna/../xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 ja-Canna-3.2.2 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
ja-xemacs-canna+wnn4-21.1.8|/usr/ports/japanese/xemacs-canna+wnn4|/usr/local|XEmacs(version 21.1.8) text editor, with SJ3, SKK, Canna and Wnn4 support.|/usr/ports/japanese/xemacs-canna+wnn4/../xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 ja-Canna-3.2.2 ja-Wnn-4.2 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
ja-xemacs-canna+wnn6-21.1.8|/usr/ports/japanese/xemacs-canna+wnn6|/usr/local|XEmacs(version 21.1.8) text editor, with SJ3, SKK, Canna and Wnn6 support.|/usr/ports/japanese/xemacs-canna+wnn6/../xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 ja-Canna-3.2.2 ja-Wnn6-lib-98.10.28 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
ja-xemacs-sumo-canna-21.1.8|/usr/ports/japanese/xemacs-sumo-canna|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/japanese/xemacs-sumo-canna/../../editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 ja-xemacs-canna-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
ja-xemacs-sumo-canna+wnn4-21.1.8|/usr/ports/japanese/xemacs-sumo-canna+wnn4|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/japanese/xemacs-sumo-canna+wnn4/../../editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 ja-xemacs-canna+wnn4-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
ja-xemacs-sumo-canna+wnn6-21.1.8|/usr/ports/japanese/xemacs-sumo-canna+wnn6|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/japanese/xemacs-sumo-canna+wnn6/../../editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 ja-xemacs-canna+wnn6-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
ja-xemacs-sumo-wnn4-21.1.8|/usr/ports/japanese/xemacs-sumo-wnn4|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/japanese/xemacs-sumo-wnn4/../../editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 ja-xemacs-wnn4-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
ja-xemacs-sumo-wnn6-21.1.8|/usr/ports/japanese/xemacs-sumo-wnn6|/usr/local|The "meta-port" for XEmacs Mule with SUMO packages.|/usr/ports/japanese/xemacs-sumo-wnn6/../../editors/xemacs-mule-sumo/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|editors||XFree86-3.3.5 faces-1.6.1 ja-xemacs-wnn6-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-mule-sumo-pkg-19990713 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|
ja-xemacs-wnn4-21.1.8|/usr/ports/japanese/xemacs-wnn4|/usr/local|XEmacs(version 21.1.8) text editor, with SJ3, SKK and Wnn4 support.|/usr/ports/japanese/xemacs-wnn4/../xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 ja-Wnn-4.2 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
ja-xemacs-wnn6-21.1.8|/usr/ports/japanese/xemacs-wnn6|/usr/local|XEmacs(version 21.1.8) text editor, with SJ3, SKK and Wnn6 support.|/usr/ports/japanese/xemacs-wnn6/../xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|XFree86-3.3.5 autoconf-2.13 faces-1.6.1 ja-Wnn6-lib-98.10.28 jpeg-6b m4-1.4 png-1.0.5 tiff-3.5.3 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|
ja-xfig-3.2.2|/usr/ports/japanese/xfig|/usr/X11R6|A drawing program for X11|/usr/ports/japanese/xfig/pkg/DESCR|mita@jp.FreeBSD.org|japanese graphics|XFree86-3.3.5 Xaw3d-1.5 jpeg-6b xpm-3.4k|XFree86-3.3.5 Xaw3d-1.5 jpeg-6b netpbm-8.0 tiff-3.5.3 transfig-3.2.1 xpm-3.4k|
ja-xjman-0.4|/usr/ports/japanese/xjman|/usr/local|Japanized X manual from "The X Japanese Documentation Project"|/usr/ports/japanese/xjman/pkg/DESCR|sada@FreeBSD.org|japanese|bzip2-0.9.5d||
ja-xklock-2.7.1|/usr/ports/japanese/xklock|/usr/X11R6|X key lock in the Japanese language|/usr/ports/japanese/xklock/pkg/DESCR|nkazushi@highway.or.jp|japanese x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ja-xnetmaj-2.0.7|/usr/ports/japanese/xnetmaj|/usr/X11R6|A mahhjong game for X|/usr/ports/japanese/xnetmaj/pkg/DESCR|nacai@iname.com|japanese games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ja-xshodo-2.0|/usr/ports/japanese/xshodo|/usr/X11R6|A paint tool for Shodo, the Japanese traditional writing character|/usr/ports/japanese/xshodo/pkg/DESCR|nacai@iname.com|japanese|XFree86-3.3.5|XFree86-3.3.5|
ja-xshodou-1.11|/usr/ports/japanese/xshodou|/usr/X11R6|A Japanese shodou program for X based on Tcl/Tk|/usr/ports/japanese/xshodou/pkg/DESCR|sakai@miya.ee.kagu.sut.ac.jp|japanese tk80|XFree86-3.3.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|
ja-xv-3.10a|/usr/ports/japanese/xv|/usr/X11R6|An X11 program that displays images of various formats with japanization|/usr/ports/japanese/xv/pkg/DESCR|shige@FreeBSD.org|japanese graphics|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xv-3.10a|
xyagamo-0.1b|/usr/ports/japanese/xyagamo|/usr/X11R6|Japanese version four players mahjong game|/usr/ports/japanese/xyagamo/pkg/DESCR|shinmaru@dokidoki.ne.jp|japanese games|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.dokidoki.ne.jp/home2/shinmaru/mahjong/index.html
ja-zipcodes-19980130|/usr/ports/japanese/zipcodes|/usr/local|Japanese zipcode tables. includes both 3/5 and 7 digits form|/usr/ports/japanese/zipcodes/pkg/DESCR|itojun@itojun.org|japanese misc|ja-nkf-1.62 lha-1.14f||http://www.postal.mpt.go.jp/
collections-1.1|/usr/ports/java/collections|/usr/local|API for exchanging of DataItem's between InfoBus Producers and Consumers|/usr/ports/java/collections/pkg/DESCR|noway@nohow.demon.co.uk|java|unzip-5.40|jdk-1.1.8|http://java.sun.com/beans/infobus/index.html
guavac-1.2|/usr/ports/java/guavac|/usr/local|Java compiler and decompiler developed under GPL|/usr/ports/java/guavac/pkg/DESCR|nacai@iname.com|java|gcc-2.95.2 gmake-3.78.1||http://www.cs.berkeley.edu/~engberg/guavac/
infobus-1.2|/usr/ports/java/infobus|/usr/local|Enables dynamic exchange of data between JavaBeans(TM)|/usr/ports/java/infobus/pkg/DESCR|noway@nohow.demon.co.uk|java|unzip-5.40|collections-1.1 jdk-1.1.8|http://java.sun.com/beans/infobus/index.html
jaf-1.0.1|/usr/ports/java/jaf|/usr/local|JavaBeansTM Activation Framework|/usr/ports/java/jaf/pkg/DESCR|noway@nohow.demon.co.uk|java|unzip-5.40|jdk-1.1.8|http://java.sun.com/beans/glasgow/jaf.html
java_cup-10.g|/usr/ports/java/java-cup|/usr/local|An LALR parser generator in Java|/usr/ports/java/java-cup/pkg/DESCR|nordwick@xcf.berkeley.edu|java|jdk-1.1.8|jdk-1.1.8|
javac_netscape-1.0.1|/usr/ports/java/javac_netscape|/usr/local|Java compiler using Netscape 3.0+|/usr/ports/java/javac_netscape/pkg/DESCR|smpatel@umiacs.umd.edu|java||XFree86-3.3.5 jdk-1.1.8 netscape-3.04|
javamail-1.1.2|/usr/ports/java/javamail|/usr/local|A set of abstract Java classes that model a mail system|/usr/ports/java/javamail/pkg/DESCR|noway@nohow.demon.co.uk|java|unzip-5.40|jaf-1.0.1 jdk-1.1.8|http://www.javasoft.com/products/javamail/index.html
jdk-1.1.8|/usr/ports/java/jdk|/usr/local|Sun's Java Developers Kit|/usr/ports/java/jdk/pkg/DESCR|nate@FreeBSD.org|java devel|||http://www.freebsd.org/java/
jdk-doc-1.1.8|/usr/ports/java/jdk-doc|/usr/local|Sun's Java Developers Kit documentation|/usr/ports/java/jdk-doc/pkg/DESCR|martti.kuparinen@ericsson.com|java|||http://www.freebsd.org/java/
jdk-tutorial-1.1.8|/usr/ports/java/jdk-tutorial|/usr/local|Sun's Java Developers Kit tutorial|/usr/ports/java/jdk-tutorial/pkg/DESCR|martti.kuparinen@ericsson.com|java|||http://www.freebsd.org/java/
jfc-1.1.1|/usr/ports/java/jfc|/usr/local|Java Foundation Classes (JFC)/Swing|/usr/ports/java/jfc/pkg/DESCR|kuriyama@FreeBSD.org|java|unzip-5.40|jdk-1.1.8|http://java.sun.com/products/jfc/
jikes-1.06|/usr/ports/java/jikes|/usr/local|A Java source to byte-code compiler made available by IBM|/usr/ports/java/jikes/pkg/DESCR|archie@whistle.com|java|||http://www.ibm.com/research/jikes
jlex-1.2.3|/usr/ports/java/jlex|/usr/local|A lexical analyzer generator, written for Java, in Java|/usr/ports/java/jlex/pkg/DESCR|jake@checker.org|java|jdk-1.1.8||http://www.cs.princeton.edu/~appel/modern/java/JLex/
jsdk-2.0|/usr/ports/java/jsdk|/usr/local|Sun's Java Servlet Developers Kit|/usr/ports/java/jsdk/pkg/DESCR|greg@greg.rim.or.jp|java||jdk-1.1.8|
kaffe-1.0.5|/usr/ports/java/kaffe|/usr/local|Multi-platform Java virtual machine including JIT compiler and AWT package|/usr/ports/java/kaffe/pkg/DESCR|xaa@xaa.iae.nl|java|XFree86-3.3.5 giflib-4.1.0 jpeg-6b png-1.0.5|XFree86-3.3.5 giflib-4.1.0 jpeg-6b png-1.0.5|http://www.kaffe.org
netrexx-1.151|/usr/ports/java/netrexx|/usr/local|Human-oriented programming language for writing/using Java classes|/usr/ports/java/netrexx/pkg/DESCR|ports@freebsd.org|java lang||jdk-1.1.8|http://www2.hursley.ibm.com/
shujit-0.3.13|/usr/ports/java/shujit|/usr/local|A Just In Time java bytecode compiler|/usr/ports/java/shujit/pkg/DESCR|jake@checker.org|java|gcc-2.95.2 gdbm-1.8.0 gmake-3.78.1 jdk-1.1.8 ruby-1.4.2|jdk-1.1.8|
tya-1.5|/usr/ports/java/tya|/usr/local|A ``100% unofficial'' JIT-compiler for java|/usr/ports/java/tya/pkg/DESCR|jake@checker.org|java|jdk-1.1.8||
ko-Wnn-4.2|/usr/ports/korean/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Korean built)|/usr/ports/korean/Wnn/pkg/DESCR|taoka@FreeBSD.org|korean|XFree86-3.3.5||
ko-acroread-korfont-1999.7.20|/usr/ports/korean/acroread-korfont|/usr/local|Asian Font Packs for Acrobat Reader 4.0 (for Korean)|/usr/ports/korean/acroread-korfont/pkg/DESCR|taoka@FreeBSD.org|korean||acroread-4.0 acroread-commfont-1999.7.20 linux_base-5.2 rpm-2.5.6|http://www.adobe.com/prodindex/acrobat/readstep.html
ko-afterstep-1.0pr3h1|/usr/ports/korean/afterstep|/usr/X11R6|Window manager, with Korean support, originally based on Bowman-NeXTSTEP|/usr/ports/korean/afterstep/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-wm afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ko-ami-0.5.2|/usr/ports/korean/ami|/usr/X11R6|Just another Korean X11 Input Method|/usr/ports/korean/ami/pkg/DESCR|cjh@kr.freebsd.org|korean x11|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
ko-baekmukfonts-bdf-1.1|/usr/ports/korean/baekmukfonts-bdf|/usr/X11R6|Free Hangul fonts for X11(baekmuk)|/usr/ports/korean/baekmukfonts-bdf/pkg/DESCR|cjh@kr.freebsd.org|korean x11-fonts|XFree86-3.3.5|XFree86-3.3.5|http://www.mizi.co.kr/software/baekmuk/index.html
ko-bitchx-75p1|/usr/ports/korean/bitchx|/usr/local|Alternative BitchX client patched for korean|/usr/ports/korean/bitchx/pkg/DESCR|hollywar@mail.holywar.net|korean net|||
ko-byeoroo-0.0.19990605.3|/usr/ports/korean/byeoroo|/usr/X11R6|Korean X11 Input Method|/usr/ports/korean/byeoroo/pkg/DESCR|cjh@kr.freebsd.org|korean x11|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5 ko-hanyangfonts-1.0 ko-johabfonts-3.04|
ko-elm-2.4h4.1|/usr/ports/korean/elm|/usr/local|ELM Mail User Agent, patched for Korean E-Mail|/usr/ports/korean/elm/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail|||
ko-engdic-0.2|/usr/ports/korean/engdic|/usr/local|An English dictionary utility for Korean|/usr/ports/korean/engdic/pkg/DESCR|hollywar@mail.holywar.net|korean deskutils|||
ko-eterm-0.8.9|/usr/ports/korean/eterm|/usr/X11R6|X11 terminal emulator based on rxvt/xterm that supports korean|/usr/ports/korean/eterm/pkg/DESCR|hollywar@mail.holywar.net|korean x11|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b ko-hanyangfonts-1.0 png-1.0.5 tiff-3.5.3|
ko-ghostscript-ft-5.10|/usr/ports/korean/ftghostscript5|/usr/local|Aladdin Postscript interpreter with Korean Truetype fonts support|/usr/ports/korean/ftghostscript5/pkg/DESCR|cjh@kr.FreeBSD.org|korean print|XFree86-3.3.5 freetype-1.3 jpeg-6b png-1.0.5|XFree86-3.3.5 freetype-1.3 gsfonts-5.10 ko-munhwafonts-cid-1.0 png-1.0.5|http://www.kr.freebsd.org/~cjh/freetime/printings/gs-ko/
ko-fvwm95-2.0.42ah3|/usr/ports/korean/fvwm95|/usr/X11R6|Win95 lookalike version of the fvwm2 window manager with Korean support|/usr/ports/korean/fvwm95/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-wm|XFree86-3.3.5 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ko-gau-0.3.1|/usr/ports/korean/gau|/usr/X11R6|Gtk-based Hangul-enabled terminal emulation with serial/socket|/usr/ports/korean/gau/pkg/DESCR|cjh@kr.freebsd.org|korean comms x11|XFree86-3.3.5 gmake-3.78.1 ko-gtk-1.0.6|XFree86-3.3.5 ko-gtk-1.0.6 ko-johabfonts-3.04 lrzsz-0.12.20|
ko-gtk-1.0.6|/usr/ports/korean/gtk10|/usr/X11R6|General Toolkit for X11 GUI, Korean patched|/usr/ports/korean/gtk10/pkg/DESCR|cjh@kr.freebsd.org|korean x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|http://pseudo.snu.ac.kr/~hwang
ko-h2ps-2.06|/usr/ports/korean/h2ps|/usr/local|Formats an ascii file for printing on a postscript printer with Korean char|/usr/ports/korean/h2ps/pkg/DESCR|junker@jazz.snu.ac.kr|korean print|||
ko-han-1.0fb|/usr/ports/korean/han|/usr/local|A hangul console|/usr/ports/korean/han/pkg/DESCR|junker@jazz.snu.ac.kr|korean|gmake-3.78.1||
ko-hanIM-1.1b|/usr/ports/korean/hanIM|/usr/X11R6|Mizi Research's Korean X11 Input Method|/usr/ports/korean/hanIM/pkg/DESCR|cjh@kr.freebsd.org|korean x11|XFree86-3.3.5 rpm-2.5.6|XFree86-3.3.5 ko-linux_locale-1.0 ko-mizifonts-1.1 linux_base-5.2 rpm-2.5.6|
ko-hanemacs-19.34b1|/usr/ports/korean/hanemacs|/usr/local|Korean version of GNU editing macros|/usr/ports/korean/hanemacs/pkg/DESCR|junker@jazz.snu.ac.kr|korean editors|gmake-3.78.1||
ko-hanmutt-0.60h9|/usr/ports/korean/hanmutt|/usr/local|"The Mongrel of Mail User Agents", with Korean mail support|/usr/ports/korean/hanmutt/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail|||
ko-hanterm-3.1.3|/usr/ports/korean/hanterm|/usr/X11R6|An xterm hacked for managing Korean languages|/usr/ports/korean/hanterm/pkg/DESCR|cjh@kr.freebsd.org|korean x11|XFree86-3.3.5|XFree86-3.3.5 ko-johabfonts-3.04|http://elf.kaist.ac.kr/hanterm/
ko-hanterm-xf-17|/usr/ports/korean/hanterm-xf86|/usr/X11R6|An X11R6-based xterm hacked for managing Korean languages|/usr/ports/korean/hanterm-xf86/pkg/DESCR|cjh@kr.freebsd.org|korean x11|XFree86-3.3.5|XFree86-3.3.5 ko-johabfonts-3.04|http://www.kr.FreeBSD.org/~hwang/hanterm/index.html
ko-hanyangfonts-1.0|/usr/ports/korean/hanyangfonts|/usr/X11R6|Hanyang Hangul fonts for X11|/usr/ports/korean/hanyangfonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ko-hcode-2.1.3|/usr/ports/korean/hcode|/usr/local|Hangul code conversion utility|/usr/ports/korean/hcode/pkg/DESCR|junker@jazz.snu.ac.kr|korean|||
ko-helvis-1.8h2-|/usr/ports/korean/helvis|/usr/local|A clone of vi/ex, the standard UNIX editor, supporting Hangul|/usr/ports/korean/helvis/pkg/DESCR|junker@jazz.snu.ac.kr|korean editors|||
ko-HLaTeX-wansungstd-0.98|/usr/ports/korean/hlatex-wansungstd|/usr/local|LaTeX package to use Hangul with LaTeX|/usr/ports/korean/hlatex-wansungstd/pkg/DESCR|cjh@kr.freebsd.org|korean print|XFree86-3.3.5 bzip2-0.9.5d libwww-5.2.6 png-1.0.5 teTeX-1.0.6|XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|
ko-hlatexfonts-ocf-1.0|/usr/ports/korean/hlatexfonts-ocf|/usr/local|HLaTeX(OCF format) fonts collection|/usr/ports/korean/hlatexfonts-ocf/pkg/DESCR|cjh@kr.freebsd.org|korean print|gsfonts-5.10||
ko-HLaTeXpsfonts-wansungstd-0.98|/usr/ports/korean/hlatexpsfonts-wansungstd|/usr/local|Korean PostScript font collection for HLaTeX(standard)|/usr/ports/korean/hlatexpsfonts-wansungstd/pkg/DESCR|cjh@kr.freebsd.org|korean print|XFree86-3.3.5 bzip2-0.9.5d ko-HLaTeX-wansungstd-0.98 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|XFree86-3.3.5 ko-HLaTeX-wansungstd-0.98 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|
ko-hmconv-1.0p3|/usr/ports/korean/hmconv|/usr/local|Hangul code conversion utility for E-mail|/usr/ports/korean/hmconv/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail|||
ko-hpscat-1.3jshin|/usr/ports/korean/hpscat|/usr/local|Hangul Text Printing Utility|/usr/ports/korean/hpscat/pkg/DESCR|junker@jazz.snu.ac.kr|korean print||ko-hcode-2.1.3|
ko-johabfonts-3.04|/usr/ports/korean/johabfonts|/usr/X11R6|Hangul fonts for X11(johab) used in many hangul-related programs|/usr/ports/korean/johabfonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ko-kaistfonts-ksc-1.0|/usr/ports/korean/kaistfonts|/usr/X11R6|X11 KAIST font(ksc5601.1987-0 encoding) collection|/usr/ports/korean/kaistfonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-fonts|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
ko-linux_locale-1.0|/usr/ports/korean/linux_locale|/compat/linux|Glibc 2.0 Korean locale for linux compatibility|/usr/ports/korean/linux_locale/pkg/DESCR|cjh@kr.freebsd.org|korean emulators|linux_base-5.2 rpm-2.5.6|linux_base-5.2 rpm-2.5.6|
ko-linuxdoc-sgml-1.6bh2|/usr/ports/korean/linuxdoc-sgml|/usr/local|Korean patch version of Linuxdoc-SGML|/usr/ports/korean/linuxdoc-sgml/pkg/DESCR|junker@jazz.snu.ac.kr|korean textproc|||
ko-mizifonts-1.1|/usr/ports/korean/mizifont|/usr/X11R6|Mizi Research's Korean X11 Font(ksc5601.1987-[01] encoding)|/usr/ports/korean/mizifont/pkg/DESCR|cjh@kr.freebsd.org|korean x11-fonts|XFree86-3.3.5 rpm-2.5.6|XFree86-3.3.5|http://www.mizi.co.kr
ko-mule-wnn4-2.3|/usr/ports/korean/mule-wnn4|/usr/local|A multilingual emacs, with Wnn4 support built in (Only the executables)|/usr/ports/korean/mule-wnn4/pkg/DESCR|taoka@FreeBSD.org|korean editors|XFree86-3.3.5 gmake-3.78.1 ko-Wnn-4.2|XFree86-3.3.5 mule-common-2.3|
ko-munhwafonts-cid-1.0|/usr/ports/korean/munhwafonts-cid|/usr/local|Munhwa CID fonts collection(Basic set)|/usr/ports/korean/munhwafonts-cid/pkg/DESCR|cjh@kr.freebsd.org|korean print|gsfonts-5.10||
ko-netscape-3.04|/usr/ports/korean/netscape3|/usr/local|Netscape-3.01 web-surfboard (international version, Korean)|/usr/ports/korean/netscape3/pkg/DESCR|junker@jazz.snu.ac.kr|korean www||XFree86-3.3.5 ko-hanyangfonts-1.0 netscape-3.04|
ko-netscape-communicator-4.08|/usr/ports/korean/netscape4-communicator|/usr/local|Netscape web-surfboard with Korean resources|/usr/ports/korean/netscape4-communicator/pkg/DESCR|cjh@kr.freebsd.org|korean www||XFree86-3.3.5 ko-hanyangfonts-1.0 ko-mizifonts-1.1 netscape-communicator-4.08|http://www.kr.freebsd.org/~cjh/freetime/mozilla/netscape-ko/
ko-netscape-navigator-4.08|/usr/ports/korean/netscape4-navigator|/usr/local|Netscape web-surfboard with Korean resources|/usr/ports/korean/netscape4-navigator/pkg/DESCR|cjh@kr.freebsd.org|korean www||XFree86-3.3.5 ko-hanyangfonts-1.0 ko-mizifonts-1.1 netscape-navigator-4.08|http://www.kr.freebsd.org/~cjh/freetime/mozilla/netscape-ko/
ko-netscape-communicator-4.61|/usr/ports/korean/netscape46-communicator|/usr/local|Netscape web-surfboard with Korean resources|/usr/ports/korean/netscape46-communicator/../netscape4-communicator/pkg/DESCR|cjh@kr.freebsd.org|korean www||XFree86-3.3.5 ko-hanyangfonts-1.0 ko-mizifonts-1.1 netscape-communicator-4.61|http://www.kr.freebsd.org/~cjh/freetime/mozilla/netscape-ko/
ko-netscape-navigator-4.61|/usr/ports/korean/netscape46-navigator|/usr/local|Netscape web-surfboard with Korean resources|/usr/ports/korean/netscape46-navigator/../netscape4-communicator/pkg/DESCR|cjh@kr.freebsd.org|korean www||XFree86-3.3.5 ko-hanyangfonts-1.0 ko-mizifonts-1.1 netscape-navigator-4.61|http://www.kr.freebsd.org/~cjh/freetime/mozilla/netscape-ko/
ko-nh2ps-2.3.1|/usr/ports/korean/nh2ps|/usr/local|Formats an Korean text file for printing on a postscript printer|/usr/ports/korean/nh2ps/pkg/DESCR|junker@jazz.snu.ac.kr|korean print||XFree86-3.3.5 freetype-1.3 gsfonts-5.10 ko-ghostscript-ft-5.10 ko-munhwafonts-cid-1.0 png-1.0.5|
ko-nhpf-1.42|/usr/ports/korean/nhpf|/usr/local|Hangul Printing Filter for Netscape with embedded font|/usr/ports/korean/nhpf/pkg/DESCR|junker@jazz.snu.ac.kr|korean www|||
ko-nhppf-2.1|/usr/ports/korean/nhppf|/usr/local|Hangul printing filter for Netscape 3.0 and above|/usr/ports/korean/nhppf/pkg/DESCR|cjh@kr.freebsd.org|korean||XFree86-3.3.5 ko-HLaTeX-wansungstd-0.98 ko-HLaTeXpsfonts-wansungstd-0.98 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|
ko-nvi-euckr-1.79.19990331|/usr/ports/korean/nvi-euc-kr|/usr/local|A clone of vi/ex, with multilingual patch, default settings for euc-kr|/usr/ports/korean/nvi-euc-kr/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|korean editors|||
ko-nvi-iso2022kr-1.79.19990331|/usr/ports/korean/nvi-iso-2022-kr|/usr/local|A clone of vi/ex, with multilingual patch, default settings for iso-2022-kr|/usr/ports/korean/nvi-iso-2022-kr/../../editors/nvi-m17n/pkg/DESCR|itojun@itojun.org|korean editors|||
ko-pgp-2.6.3|/usr/ports/korean/pgp.language|/usr/local|Korean language module for PGP|/usr/ports/korean/pgp.language/pkg/DESCR|cjh@kr.freebsd.org|korean security|unzip-5.40|pgp-2.6.2 rsaref-2.0|
ko-pine-3.96k.3|/usr/ports/korean/pine|/usr/local|Program for Internet E-mail(Korean) and News|/usr/ports/korean/pine/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail news|||
ko-pinetreefonts-1.01|/usr/ports/korean/pinetreefonts|/usr/X11R6|Hangul fonts for X11(pinetree, KSC5601-1987-0 encoding)|/usr/ports/korean/pinetreefonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
ko-vim-5.0.1.0.3.8|/usr/ports/korean/vim|/usr/local|A vi "workalike", with Korean language support|/usr/ports/korean/vim/pkg/DESCR|junker@jazz.snu.ac.kr|korean editors|XFree86-3.3.5|XFree86-3.3.5|
ETHOberonV4-0.9|/usr/ports/lang/ETHOberonV4|/usr/local|Oberon-2/V4 from ETH (Linux emulation)|/usr/ports/lang/ETHOberonV4/pkg/DESCR|jhicks@glenatl.glenayre.com|lang||linux_base-5.2 rpm-2.5.6|http://www.oberon.ethz.ch/
gofer-2.30a|/usr/ports/lang/Gofer|/usr/local|A lazy functional language|/usr/ports/lang/Gofer/pkg/DESCR|hsu@FreeBSD.org|lang|||
STk-3.1.1|/usr/ports/lang/STk|/usr/local|A scheme interpreter with full access to the Tk graphical package|/usr/ports/lang/STk/pkg/DESCR|jmacd@FreeBSD.org|lang|XFree86-3.3.5|XFree86-3.3.5|
sather-1.0.5|/usr/ports/lang/Sather|/usr/local|Sather compiler|/usr/ports/lang/Sather/pkg/DESCR|obrien@FreeBSD.org|lang|||
TenDRA-4.1.2|/usr/ports/lang/TenDRA|/usr/local|A portable but mostly-unsupported C/C++ compiler|/usr/ports/lang/TenDRA/pkg/DESCR|rnordier@FreeBSD.org|lang|||http://alph.dera.gov.uk/TenDRA/
atlast-1.0|/usr/ports/lang/atlast|/usr/local|Autodesk Threaded Language Application System Toolkit|/usr/ports/lang/atlast/pkg/DESCR|giffunip@asme.org|lang|||
bc-gcc-2.7.2p1.0.2|/usr/ports/lang/bc-gcc|/usr/local|Gcc with bounds checking support for pointers and memory|/usr/ports/lang/bc-gcc/pkg/DESCR|obrien@FreeBSD.org|lang|||http://www-dse.doc.ic.ac.uk/~rj3/bounds-checking.html
bwbasic-2.20|/usr/ports/lang/bwbasic|/usr/local|The Bywater Basic interpreter|/usr/ports/lang/bwbasic/pkg/DESCR|msmith@gsoft.com.au|lang|||
caml-0.74|/usr/ports/lang/caml-light|/usr/local|A strongly typed functional language belonging to the ML family|/usr/ports/lang/caml-light/pkg/DESCR|jkoshy@freebsd.org|lang elisp|XFree86-3.3.5|XFree86-3.3.5|http://pauillac.inria.fr/caml/index-eng.html
cim-3.29|/usr/ports/lang/cim|/usr/local|Compiler for the SIMULA programming language|/usr/ports/lang/cim/pkg/DESCR|ports@FreeBSD.org|lang|||http://www.ifi.uio.no/~cim/cim.html
cmucl-18b|/usr/ports/lang/cmucl|/usr/local|The CMU implementation of Common Lisp|/usr/ports/lang/cmucl/pkg/DESCR|cracauer@cons.org|lang|||http://www.cons.org/cmucl/
dylan-2.2.0|/usr/ports/lang/dylan|/usr/local|CMU Gwydion project interpreter and compiler for the Dylan language|/usr/ports/lang/dylan/pkg/DESCR|housel@acm.org|lang|gmake-3.78.1||http://www.gwydiondylan.org/
gcc-2.95.2|/usr/ports/lang/egcs|/usr/local|GNU compiler suite|/usr/ports/lang/egcs/pkg/DESCR|obrien@FreeBSD.org|lang java|bzip2-0.9.5d gmake-3.78.1||http://egcs.cygnus.com/
eiffel-13a|/usr/ports/lang/eiffel|/usr/local|A compiler for the object-oriented language Eiffel|/usr/ports/lang/eiffel/pkg/DESCR|erich@FreeBSD.org|lang|||
elisp-manual-20-2.5|/usr/ports/lang/elisp-manual|/usr/local|Emacs Lisp reference manual|/usr/ports/lang/elisp-manual/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|lang|||
elk-3.0.3|/usr/ports/lang/elk|/usr/local|An embeddable Scheme interpreter|/usr/ports/lang/elk/pkg/DESCR|ports@FreeBSD.org|lang|XFree86-3.3.5|XFree86-3.3.5|
emacs-lisp-intro-1.05|/usr/ports/lang/emacs-lisp-intro|/usr/local|An introduction to Emacs Lisp programming|/usr/ports/lang/emacs-lisp-intro/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|lang|||
eperl-2.2.14|/usr/ports/lang/eperl|/usr/local|Embedded Perl 5 Language|/usr/ports/lang/eperl/pkg/DESCR|rse@engelschall.com|lang www perl5|||http://www.engelschall.com/sw/eperl/
erlang_base-47.4.1|/usr/ports/lang/erlang|/usr/local|A functional programming language from Ericsson|/usr/ports/lang/erlang/pkg/DESCR|seb@erix.ericsson.se|lang|gmake-3.78.1||http://www.erlang.org/
expect-5.31|/usr/ports/lang/expect|/usr/local|A sophisticated scripter based on tcl/tk|/usr/ports/lang/expect/pkg/DESCR|ports@freebsd.org|lang tcl82 tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://expect.nist.gov
f2c-2.0.1|/usr/ports/lang/f2c|/usr/local|Fortran-to-C converter and its run-time libraries|/usr/ports/lang/f2c/pkg/DESCR|kargl@troutmask.apl.washington.edu|lang|||http://www.netlib.org
f77-0.3|/usr/ports/lang/f77|/usr/local|Fortran 77 driver utility for f2c and gcc|/usr/ports/lang/f77/pkg/DESCR|kargl@troutmask.apl.washington.edu|lang||f2c-2.0.1 fpp-1.1|
pfe-0.9.14|/usr/ports/lang/forth|/usr/local|Implementation of ANSI Forth|/usr/ports/lang/forth/pkg/DESCR|ports@FreeBSD.org|lang|||
gawk-3.0.4|/usr/ports/lang/gawk|/usr/local|the gnu version of awk|/usr/ports/lang/gawk/pkg/DESCR|andreas@FreeBSD.org|lang|||
gcc-devel-19991110|/usr/ports/lang/gcc-devel|/usr/local|EGCS enhanced version of the GNU compiler suite (inprogress version)|/usr/ports/lang/gcc-devel/pkg/DESCR|obrien@FreeBSD.org|lang java|gmake-3.78.1||http://egcs.cygnus.com
gcc-2.8.1|/usr/ports/lang/gcc28|/usr/local|Latest and greatest version of the GNU compiler suite|/usr/ports/lang/gcc28/pkg/DESCR|obrien@FreeBSD.org|lang|gmake-3.78.1||
gcl-2.3|/usr/ports/lang/gcl|/usr/local|GNU Common Lisp|/usr/ports/lang/gcl/pkg/DESCR|jseger@FreeBSD.org|lang tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
ghc-4.04|/usr/ports/lang/ghc|/usr/local|A Compiler for the functional language Haskell|/usr/ports/lang/ghc/pkg/DESCR|simonmar@microsoft.com|lang|gmake-3.78.1||http://www.haskell.org/ghc/
glibstdc++-2.8.1.1|/usr/ports/lang/glibstdc++28|/usr/local|ISO Standard C++ library (includes the STL) for G++ 2.8.0|/usr/ports/lang/glibstdc++28/pkg/DESCR|obrien@FreeBSD.org|lang|gcc-2.8.1 gmake-3.78.1|gcc-2.8.1|
gnat-3.12p|/usr/ports/lang/gnat|/usr/local|The GNU Ada Compiler system|/usr/ports/lang/gnat/pkg/DESCR|eischen@vigrid.com|lang|gmake-3.78.1||
gnomeobjc-1.0.40|/usr/ports/lang/gnomeobjc|/usr/X11R6|Objective C libraries for the Gnome Desktop Environment|/usr/ports/lang/gnomeobjc/pkg/DESCR|nakai@FreeBSD.org|lang gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
guile-1.3.4|/usr/ports/lang/guile|/usr/local|GNU's Ubiquitous Intelligent Language for Extension|/usr/ports/lang/guile/pkg/DESCR|jseger@FreeBSD.org|lang|libtool-1.3.3||
guileobjc-0.3.8|/usr/ports/lang/guileobjc|/usr/local|Library to send message from GNU GUILE to Objective C objects|/usr/ports/lang/guileobjc/pkg/DESCR|nacai@iname.com|lang|guile-1.3.4 libobjects-0.1.19|guile-1.3.4|
hugs-98|/usr/ports/lang/hugs|/usr/local|An interpreter for the functional programming language Haskell 98|/usr/ports/lang/hugs/pkg/DESCR|Torsten.Grust@uni-konstanz.de|lang|||
ici-2.1.3|/usr/ports/lang/ici|/usr/local|A dynamic interpretive language with C's control flow and expressions|/usr/ports/lang/ici/pkg/DESCR|andy@research.canon.com.au|lang|||http://www.zeta.org.au/~atrn/ici/
icon-9.3.2|/usr/ports/lang/icon|/usr/local|The Icon programming language|/usr/ports/lang/icon/pkg/DESCR|ports@FreeBSD.org|lang|||http://www.cs.arizona.edu/icon/
intel2gas-1.2|/usr/ports/lang/intel2gas|/usr/local|Converts Intel assembly language (nasm) to AT&T syntax (gas)|/usr/ports/lang/intel2gas/pkg/DESCR|adam@whizkidtech.net|lang|||
intercal-0.19|/usr/ports/lang/intercal|/usr/local|The C-INTERCAL compiler, ick, and supporting libraries|/usr/ports/lang/intercal/pkg/DESCR|mph@freebsd.org|lang|||http://www.tuxedo.org/~esr/intercal/
irb-0.6.1|/usr/ports/lang/irb|/usr/local|Interactive Ruby|/usr/ports/lang/irb/pkg/DESCR|yasuf@big.or.jp|lang||ruby-1.4.2|
itcl-3.0.1|/usr/ports/lang/itcl|/usr/local|[incr Tcl] (A.K.A. ``itcl'')|/usr/ports/lang/itcl/pkg/DESCR|dmlb@ragnet.demon.co.uk|lang|tcl-8.2.2|tcl-8.2.2|
lcc-3.6|/usr/ports/lang/lcc|/usr/local|Compiler from `A Retargetable C Compiler: Design and Implementation'|/usr/ports/lang/lcc/pkg/DESCR|obrien@FreeBSD.org|lang|||http://www.cs.princeton.edu/software/lcc/
libobjects-0.1.19|/usr/ports/lang/libobjects|/usr/local|GNU Objective-C Class Library|/usr/ports/lang/libobjects/pkg/DESCR|nacai@iname.com|lang|||
librep-0.8|/usr/ports/lang/librep|/usr/local|an Emacs Lisp like runtime library|/usr/ports/lang/librep/pkg/DESCR|nakai@FreeBSD.org|lang|gmake-3.78.1||
ucblogo-4.6|/usr/ports/lang/logo|/usr/local|Brian Harvey's logo language interpreter|/usr/ports/lang/logo/pkg/DESCR|jmacd@FreeBSD.org|lang|XFree86-3.3.5|XFree86-3.3.5|
lua-3.1|/usr/ports/lang/lua|/usr/local|Small, compilable scripting language providing easy access to C code|/usr/ports/lang/lua/pkg/DESCR|richard@homemail.com|lang|||http://www.tecgraf.puc-rio.br/lua/
m3gdb-4.17|/usr/ports/lang/m3gdb|/usr/local|The GNU debugger with support for Modula-3|/usr/ports/lang/m3gdb/pkg/DESCR|jdp@FreeBSD.org|lang devel|||
mawk-1.3.3|/usr/ports/lang/mawk|/usr/local|An implementation of new/posix awk|/usr/ports/lang/mawk/pkg/DESCR|obrien@FreeBSD.org|lang|||
mit-scheme-7.3|/usr/ports/lang/mit-scheme|/usr/local|MIT Scheme: includes runtime, compiler, and edwin binaries|/usr/ports/lang/mit-scheme/pkg/DESCR|jmacd@FreeBSD.org|lang|XFree86-3.3.5|XFree86-3.3.5|
mixal-1.06|/usr/ports/lang/mixal|/usr/local|Assembler and interpreter for Donald Knuth's mythical MIX computer|/usr/ports/lang/mixal/pkg/DESCR|obrien@FreeBSD.org|lang|||
mocka-95.02|/usr/ports/lang/mocka|/usr/local|Modula 2 Compiler from University of Karlsruhe|/usr/ports/lang/mocka/pkg/DESCR|helbig@informatik.ba-stuttgart.de|lang|gmake-3.78.1||
modula-3-3.6|/usr/ports/lang/modula-3|/usr/local|Modula-3 compiler and libraries from DEC Systems Research Center|/usr/ports/lang/modula-3/pkg/DESCR|jdp@polstra.com|lang|XFree86-3.3.5 modula-3-lib-3.6|XFree86-3.3.5 modula-3-lib-3.6|http://www.research.digital.com/SRC/modula-3/html/home.html
modula-3-lib-3.6|/usr/ports/lang/modula-3-lib|/usr/local|The shared libraries needed for executing Modula-3 programs|/usr/ports/lang/modula-3-lib/pkg/DESCR|jdp@polstra.com|lang|XFree86-3.3.5|XFree86-3.3.5|
modula-3-socks-1.0|/usr/ports/lang/modula-3-socks|/usr/local|SOCKS support for Modula-3 programs|/usr/ports/lang/modula-3-socks/pkg/DESCR|jdp@polstra.com|lang|||
moscow_ml-1.4|/usr/ports/lang/moscow_ml|/usr/local|Moscow ML, a version of Standard ML|/usr/ports/lang/moscow_ml/pkg/DESCR|chuckr@freefall.FreeBSD.org|lang|||http://www.dina.kvl.dk/~sestoft/mosml.html
nawk-99.06.20|/usr/ports/lang/nawk|/usr/local|Brian Kernighan's pattern scanning and processing language|/usr/ports/lang/nawk/pkg/DESCR|obrien@FreeBSD.org|lang|||http://cm.bell-labs.com/cm/cs/awkbook/index.html
nqc-2.0.1|/usr/ports/lang/nqc|/usr/local|A compiler for writing programs for the Lego RCX|/usr/ports/lang/nqc/pkg/DESCR|kbyanc@posi.net|lang|||http://www.enteract.com/~dbaum/nqc/
o2c-1.16|/usr/ports/lang/o2c|/usr/local|Oberon-2 compiler|/usr/ports/lang/o2c/pkg/DESCR|ob@seicom.NET|lang|||http://cognac.informatik.uni-kl.de/~oberon1/o2c/o2c_home.html
objc-2.2.15|/usr/ports/lang/objc|/usr/local|Portable Object Compiler|/usr/ports/lang/objc/pkg/DESCR|chuckr@freebsd.org|lang|boehm-gc-5.0a3||
ocaml-2.02|/usr/ports/lang/ocaml|/usr/local|An ML language based on a complete class-based objective system|/usr/ports/lang/ocaml/pkg/DESCR|ortmann@isl.net|lang|XFree86-3.3.5|XFree86-3.3.5|http://caml.inria.fr/ocaml/
otcl-1.0a4|/usr/ports/lang/otcl|/usr/local|MIT Object Tcl|/usr/ports/lang/otcl/pkg/DESCR|obonilla@fisicc-ufm.edu|lang|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
p2c-1.21a|/usr/ports/lang/p2c|/usr/local|Pascal to C translator|/usr/ports/lang/p2c/pkg/DESCR|jmz@FreeBSD.org|lang|||
p5-ExtUtils-F77-1.12|/usr/ports/lang/p5-F77|/usr/local|Tells you how to link C programs with Fortran subroutines.|/usr/ports/lang/p5-F77/pkg/DESCR|jmz@FreeBSD.org|lang perl5|||
p5-Tcl-b2|/usr/ports/lang/p5-Tcl|/usr/local|A Tcl extension module for Perl5|/usr/ports/lang/p5-Tcl/pkg/DESCR|jfitz@FreeBSD.org|lang perl5|tcl-8.2.2|tcl-8.2.2|
p5-ePerl-2.2.14|/usr/ports/lang/p5-ePerl|/usr/local|Perl Modules of ePerl package: Parse::ePerl, Apache::ePerl|/usr/ports/lang/p5-ePerl/pkg/DESCR|rse@engelschall.com|lang www perl5|||http://www.engelschall.com/sw/eperl/
pbasic-2.0|/usr/ports/lang/pbasic|/usr/local|Phil Cockroft's Basic Interpreter (previously Rabbit Basic)|/usr/ports/lang/pbasic/pkg/DESCR|asami@FreeBSD.org|lang|||
perl-5.00502|/usr/ports/lang/perl5|/usr/local|Pattern Extraction and Recognition Language|/usr/ports/lang/perl5/pkg/DESCR|markm@FreeBSD.org|lang devel perl5|||
pgcc-2.95.1|/usr/ports/lang/pgcc|/usr/local|Gcc compiler optimized for x86 architecture (based on EGCS)|/usr/ports/lang/pgcc/pkg/DESCR|obrien@FreeBSD.org|lang|autoconf-2.13 bzip2-0.9.5d gmake-3.78.1 m4-1.4||http://www.gcc.ml.org/
pike-0.6|/usr/ports/lang/pike|/usr/local|A dynamic programming language with a syntax similar to C++|/usr/ports/lang/pike/pkg/DESCR|vns@delta.odessa.ua|lang|||http://pike.idonex.se/
ptoc-3.41|/usr/ports/lang/ptoc|/usr/local|ANSI/Turbo Pascal to C/C++ converter|/usr/ports/lang/ptoc/pkg/DESCR|andy@icc.surw.chel.su|lang|XFree86-3.3.5|XFree86-3.3.5|http://www.ispras.ru/~knizhnik/
python-1.5.2|/usr/ports/lang/python|/usr/local|An interpreted object-oriented programming language|/usr/ports/lang/python/pkg/DESCR|tg@FreeBSD.org|lang python tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
python-doc-html-1.5.2|/usr/ports/lang/python-doc-html|/usr/local|Documentation for the Python programming language|/usr/ports/lang/python-doc-html/pkg/DESCR|tg@FreeBSD.org|lang python|||http://www.python.org/doc/
python-doc-pdf-a4-1.5.2|/usr/ports/lang/python-doc-pdf-a4|/usr/local|Documentation for the Python programming language|/usr/ports/lang/python-doc-pdf-a4/../python-doc-html/pkg/DESCR|tg@FreeBSD.org|lang python|||http://www.python.org/doc/
python-doc-pdf-letter-1.5.2|/usr/ports/lang/python-doc-pdf-letter|/usr/local|Documentation for the Python programming language|/usr/ports/lang/python-doc-pdf-letter/../python-doc-html/pkg/DESCR|tg@FreeBSD.org|lang python|||http://www.python.org/doc/
python-doc-postscript-a4-1.5.2|/usr/ports/lang/python-doc-postscript-a4|/usr/local|Documentation for the Python programming language|/usr/ports/lang/python-doc-postscript-a4/../python-doc-html/pkg/DESCR|tg@FreeBSD.org|lang python|||http://www.python.org/doc/
python-doc-postscript-letter-1.5.2|/usr/ports/lang/python-doc-postscript-letter|/usr/local|Documentation for the Python programming language|/usr/ports/lang/python-doc-postscript-letter/../python-doc-html/pkg/DESCR|tg@FreeBSD.org|lang python|||http://www.python.org/doc/
rexx-imc-1.7|/usr/ports/lang/rexx-imc|/usr/local|A procedural programming language designed by IBM's UK Laboratories|/usr/ports/lang/rexx-imc/pkg/DESCR|jfitz@FreeBSD.org|lang|||
ruby-1.4.2|/usr/ports/lang/ruby|/usr/local|An object-oriented interpreted scripting language|/usr/ports/lang/ruby/pkg/DESCR|yasuf@big.or.jp|lang|||http://www.ruby-lang.org/
scheme48-0.46|/usr/ports/lang/scheme48|/usr/local|The Scheme Underground's implementation of R4RS|/usr/ports/lang/scheme48/pkg/DESCR|jmacd@FreeBSD.org|lang|||
schemetoc-93.3.15|/usr/ports/lang/schemetoc|/usr/local|Scheme-to-C, a compiler and interpreter for compiling scheme into C|/usr/ports/lang/schemetoc/pkg/DESCR|jmacd@FreeBSD.org|lang|XFree86-3.3.5|XFree86-3.3.5|
scm-4e1|/usr/ports/lang/scm|/usr/local|A scheme interpreter|/usr/ports/lang/scm/pkg/DESCR|ports@FreeBSD.org|lang|gmake-3.78.1||
siod-3.4|/usr/ports/lang/siod|/usr/local|A small footprint implementation of the Scheme programming language|/usr/ports/lang/siod/pkg/DESCR|jkoshy@FreeBSD.org|lang|||http://people.delphi.com/gjc/siod.html
slib-2c5|/usr/ports/lang/slib|/usr/local|A portable scheme library for all standard scheme implementation|/usr/ports/lang/slib/pkg/DESCR|nacai@iname.com|lang|scheme48-0.46||
smalltalk-1.1.5|/usr/ports/lang/smalltalk|/usr/local|GNU Smalltalk|/usr/ports/lang/smalltalk/pkg/DESCR|jraynard@FreeBSD.org|lang|gdbm-1.8.0||
smlnj-110.9.1|/usr/ports/lang/sml-nj|/usr/local|A popular functional language from Bell Labs|/usr/ports/lang/sml-nj/pkg/DESCR|jkoshy@freebsd.org|lang|gmake-3.78.1||http://cm.bell-labs.com/cm/cs/what/smlnj/index.html
squeak-1.31|/usr/ports/lang/squeak1|/usr/local|A Smalltalk system with graphical user interface|/usr/ports/lang/squeak1/pkg/DESCR|jesse@cs.uni-magdeburg.de|lang|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://squeak.cs.uiuc.edu/
squeak-2.4|/usr/ports/lang/squeak2|/usr/local|Full Smalltalk 80 with portability to UN*X, Mac, and Windows|/usr/ports/lang/squeak2/pkg/DESCR|jesse@cs.uni-magdeburg.de|lang|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://squeak.cs.uiuc.edu/
sr-2.3.1|/usr/ports/lang/sr|/usr/local|A parallel language "Synchronization Resources"|/usr/ports/lang/sr/pkg/DESCR|rssh@cki.ipri.kiev.ua|lang|||
swi-pl-3.2.9|/usr/ports/lang/swi-pl|/usr/local|Edinburgh-style Prolog compiler|/usr/ports/lang/swi-pl/pkg/DESCR|max@FreeBSD.org|lang|gmake-3.78.1||
tcl-7.6|/usr/ports/lang/tcl76|/usr/local|Tool Command Language|/usr/ports/lang/tcl76/pkg/DESCR|taguchi@tohoku.iij.ad.jp|lang tcl76|||http://www.scriptics.com
tcl-8.0.5|/usr/ports/lang/tcl80|/usr/local|Tool Command Language|/usr/ports/lang/tcl80/pkg/DESCR|cwt@freebsd.org|lang tcl80|||http://www.scriptics.com
tcl-thread-8.1.b1|/usr/ports/lang/tcl81-thread|/usr/local|Tcl81 with threads support|/usr/ports/lang/tcl81-thread/pkg/DESCR|ejc@FreeBSD.org|lang tcl81|||http://www.scriptics.com
tcl-8.2.2|/usr/ports/lang/tcl82|/usr/local|Tool Command Language|/usr/ports/lang/tcl82/pkg/DESCR|jseger@FreeBSD.org|lang tcl82|||http://www.scriptics.com
tclX-8.0.4|/usr/ports/lang/tclX80|/usr/local|Extended TCL|/usr/ports/lang/tclX80/pkg/DESCR|jseger@FreeBSD.org|lang tcl80 tk80|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|
tclplugin-2.0|/usr/ports/lang/tclplugin|/usr/local|Tcl Plug-in for Netscape Navigator|/usr/ports/lang/tclplugin/pkg/DESCR|andreas@FreeBSD.org|lang|XFree86-3.3.5 netscape-communicator-4.08|XFree86-3.3.5 netscape-communicator-4.08|http://sunscript.sun.com/plugin/
wamcc-2.22|/usr/ports/lang/wamcc|/usr/local|Prolog-to-C translator from Inria|/usr/ports/lang/wamcc/pkg/DESCR|wghicks@bellsouth.net|lang|||
yorick-1.4.1|/usr/ports/lang/yorick|/usr/local|An Interpreted Language for Scientific Computing|/usr/ports/lang/yorick/pkg/DESCR|giffunip@asme.org|lang math|XFree86-3.3.5|XFree86-3.3.5|ftp://ftp-icf.llnl.gov/pub/Yorick/yorick-ad.html
adcomplain-3.52|/usr/ports/mail/adcomplain|/usr/local|Complain about inappropriate commercial use (f.e. SPAM) of usenet/e-mail|/usr/ports/mail/adcomplain/pkg/DESCR|ache@FreeBSD.org|mail news|||
asmail-0.54|/usr/ports/mail/asmail|/usr/X11R6|Biff-type program, designed to match AfterStep|/usr/ports/mail/asmail/pkg/DESCR|brett@peloton.runet.edu|mail afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
balsa-0.4.9.5|/usr/ports/mail/balsa|/usr/X11R6|A mail reader for the gnome interface|/usr/ports/mail/balsa/pkg/DESCR|ports@FreeBSD.org|mail gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libproplist-0.9.1 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libproplist-0.9.1 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.balsa.net/
bbmail-0.6.2|/usr/ports/mail/bbmail|/usr/local|A tool intended for Blackbox that checks for new mail|/usr/ports/mail/bbmail/pkg/DESCR|cpiazza@FreeBSD.org|mail|XFree86-3.3.5|XFree86-3.3.5|http://bbtools.windsofstorm.net/
biffer-1.0|/usr/ports/mail/biffer|/usr/local|A better mail notification server|/usr/ports/mail/biffer/pkg/DESCR|jsellens@generalconcepts.com|mail||XFree86-3.3.5 xmsg-1.0|
bulk_mailer-1.12|/usr/ports/mail/bulk_mailer|/usr/local|Speeds delivery to mailing lists by sorting & batching addresses|/usr/ports/mail/bulk_mailer/pkg/DESCR|dlowe@saturn5.com|mail|||
cmail-2.10|/usr/ports/mail/cmail|/usr/local|A simple mail counter, useful for multiple mailfiles|/usr/ports/mail/cmail/pkg/DESCR|chip@eboai.org|mail|||http://www.eboai.org/~chip/scripts.html
coolmail-1.3|/usr/ports/mail/coolmail|/usr/local|A Xbiff like mail tool with animated 3D graphics|/usr/ports/mail/coolmail/pkg/DESCR|ust@cert.siemens.de|mail|XFree86-3.3.5|XFree86-3.3.5|
cucipop-1.31|/usr/ports/mail/cucipop|/usr/local|Cubic Circle's POP3 daemon (fully RFC1939 compliant)|/usr/ports/mail/cucipop/pkg/DESCR|vanilla@FreeBSD.org|mail|||
cyrus-1.5.19|/usr/ports/mail/cyrus|/usr/local|The cyrus mail server, supporting POP3, KPOP, and IMAP4 protocols|/usr/ports/mail/cyrus/pkg/DESCR|stb@FreeBSD.org|mail tcl82|makedepend-95.07.05 tcl-8.2.2|tcl-8.2.2|http://andrew2.andrew.cmu.edu/cyrus/imapd/
distribute-2.1.24|/usr/ports/mail/distribute|/usr/local|Mail dispatcher for mailing list. Fits nicely with majordomo|/usr/ports/mail/distribute/pkg/DESCR|kuriyama@FreeBSD.org|mail|||
elm-2.4ME+61|/usr/ports/mail/elm|/usr/local|A once-popular mail user agent|/usr/ports/mail/elm/pkg/DESCR|ache@FreeBSD.org|mail|||
emil-2.1b9|/usr/ports/mail/emil|/usr/local|Mail format/encoding converter|/usr/ports/mail/emil/pkg/DESCR|ports@FreeBSD.org|mail|||http://www.uu.se/emil
exim-3.12|/usr/ports/mail/exim|/usr/local|High performance MTA for Unix systems on the Internet|/usr/ports/mail/exim/pkg/DESCR|sheldonh@FreeBSD.org|mail|XFree86-3.3.5|XFree86-3.3.5|http://www.exim.org/
exmh-1.6.9|/usr/ports/mail/exmh|/usr/local|X11/TK based mail reader front end to MH|/usr/ports/mail/exmh/pkg/DESCR|peter@FreeBSD.org|mail tk82|tcl-8.2.2|XFree86-3.3.5 metamail-2.7 mh-6.8.4 tcl-8.2.2 tk-8.2.2 xloadimage-4.1|
exmh-2.1.1|/usr/ports/mail/exmh2|/usr/local|X11/TK based mail reader front end to MH|/usr/ports/mail/exmh2/pkg/DESCR|markm@FreeBSD.org|mail tk82|tcl-8.2.2|XFree86-3.3.5 metamail-2.7 mh-6.8.4 tcl-8.2.2 tk-8.2.2 xloadimage-4.1|
ezmlm-0.53|/usr/ports/mail/ezmlm|/usr/local|An easy-to-use, high-speed mailing list manager for qmail|/usr/ports/mail/ezmlm/pkg/DESCR|tom@eborcom.com|mail||qmail-1.03|
ezmlm-idx-0.322|/usr/ports/mail/ezmlm-idx|/usr/local|Improved version of the ezmlm-0.53 mailing list management software|/usr/ports/mail/ezmlm-idx/pkg/DESCR|tom@FreeBSD.org|mail||qmail-1.03|http://www.ezmlm.org/
faces-1.6.1|/usr/ports/mail/faces|/usr/local|Visual mail, user and print face server|/usr/ports/mail/faces/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|mail|XFree86-3.3.5|XFree86-3.3.5|
fetchmail-5.2.0|/usr/ports/mail/fetchmail|/usr/local|Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap|/usr/ports/mail/fetchmail/pkg/DESCR|ve@sci.fi|mail|||http://www.tuxedo.org/~esr/fetchmail
gbuffy-0.2.2|/usr/ports/mail/gbuffy|/usr/X11R6|A GTK+ multiple mailbox "biff" program|/usr/ports/mail/gbuffy/pkg/DESCR|kaj@Raditex.se|mail gnome|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libproplist-0.9.1|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libproplist-0.9.1|http://www.fiction.net/blong/programs/gbuffy/
gensig-2.2|/usr/ports/mail/gensig|/usr/local|A random .signature generator|/usr/ports/mail/gensig/pkg/DESCR|arensb@ooblick.com|mail|||
glbiff-0.2.11|/usr/ports/mail/glbiff|/usr/X11R6|Xbiff-like program for X Window System with nice 3D output|/usr/ports/mail/glbiff/pkg/DESCR|andy@icc.surw.chel.su|mail|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|http://www.eecg.utoronto.ca/~mac/projects/glbiff.html
grepmail-4.1|/usr/ports/mail/grepmail|/usr/local|Search mailboxes for a given regexp and display matching emails|/usr/ports/mail/grepmail/pkg/DESCR|jedgar@fxp.org|mail|||http://www.cs.virginia.edu/~dwc3q/code/
hbiff-1.2|/usr/ports/mail/hbiff|/usr/local|A replacement for xbiff that handles popup window with mail headers|/usr/ports/mail/hbiff/pkg/DESCR|obrien@FreeBSD.org|mail|XFree86-3.3.5|XFree86-3.3.5|
im-130|/usr/ports/mail/im|/usr/local|Set of user interfaces of Email and NetNews|/usr/ports/mail/im/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|autoconf-2.13 m4-1.4||
imap-uw-4.5|/usr/ports/mail/imap-uw|/usr/local|University of Washington IMAP4rev1/POP2/POP3 mail servers|/usr/ports/mail/imap-uw/pkg/DESCR|imap-uw@freebsd.ady.ro|mail|||
kbiff-2.3|/usr/ports/mail/kbiff|/usr/local|Mail notification utility for KDE with nice features|/usr/ports/mail/kbiff/pkg/DESCR|kris@FreeBSD.org|mail kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://home.sprintmail.com/~granroth/kbiff/
knewmail-3.1|/usr/ports/mail/knewmail|/usr/local|Mail notifier for the KDE enviorment|/usr/ports/mail/knewmail/pkg/DESCR|wellers@netvision.net.il|mail kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.slac.com/mpilone/knewmail_home/
mailagent-3.0.68|/usr/ports/mail/mailagent|/usr/local|A sophisticated automatic mail-processing tool|/usr/ports/mail/mailagent/pkg/DESCR|max@FreeBSD.org|mail|||
mailcrypt-3.4|/usr/ports/mail/mailcrypt|/usr/local|An Emacs/PGP interface|/usr/ports/mail/mailcrypt/pkg/DESCR|murray@cdrom.com|mail|XFree86-3.3.5 emacs-19.34b||http://cag-www.lcs.mit.edu/mailcrypt/
maildrop-0.64|/usr/ports/mail/maildrop|/usr/local|Replacement local mail delivery agent, similar to procmail|/usr/ports/mail/maildrop/pkg/DESCR|tom@eborcom.com|mail|gdbm-1.8.0||http://www.flounder.net/~mrsam/maildrop/
mailx-0.5|/usr/ports/mail/mailx|/usr/local|Mail command with mailx extensions|/usr/ports/mail/mailx/pkg/DESCR|issei@jp.FreeBSD.org|mail|||
majorcool-1.3.2|/usr/ports/mail/majorcool|/usr/local|A Web Interface to Majordomo|/usr/ports/mail/majorcool/pkg/DESCR|andreas@FreeBSD.org|mail|||http://ncrinfo.ncr.com/pub/contrib/unix/MajorCool/
majordomo-1.94.4|/usr/ports/mail/majordomo|/usr/local|The Majordomo mailing list manager|/usr/ports/mail/majordomo/pkg/DESCR|jfitz@FreeBSD.org|mail|||http://www.greatcircle.com/majordomo/
mbx2mbox-0.2|/usr/ports/mail/mbx2mbox|/usr/local|MS Outlook Express .mbx to mbox file converter|/usr/ports/mail/mbx2mbox/pkg/DESCR|ports@FreeBSD.org|mail|||http://www.cs.virginia.edu/~dwc3q/code/
metamail-2.7|/usr/ports/mail/metamail|/usr/local|Implementation of MIME, the Multipurpose Internet Mail Extensions|/usr/ports/mail/metamail/pkg/DESCR|torstenb@FreeBSD.org|mail|XFree86-3.3.5|XFree86-3.3.5 xloadimage-4.1|
mew-emacs-1.94|/usr/ports/mail/mew|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 emacs-19.34b|im-130|
mew-emacs20-1.94|/usr/ports/mail/mew-emacs20|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-emacs20/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 emacs-20.4|im-130|
mew-mule-1.94|/usr/ports/mail/mew-mule|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-mule/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 mule-2.3 mule-common-2.3|im-130|
mew-xemacs-1.94|/usr/ports/mail/mew-xemacs|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-xemacs/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-19.16 xpm-3.4k|im-130|
mew-xemacs-mule-1.94|/usr/ports/mail/mew-xemacs-mule|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-xemacs-mule/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 faces-1.6.1 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xpm-3.4k|im-130|
mew-xemacs20-1.94|/usr/ports/mail/mew-xemacs20|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-xemacs20/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 jpeg-6b png-1.0.5 xemacs-20.4 xpm-3.4k|im-130|
mew-xemacs21-1.94|/usr/ports/mail/mew-xemacs21|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew-xemacs21/../../mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail elisp|XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-21.1 xemacs-packages-1.0 xpm-3.4k|im-130|
mh-6.8.4|/usr/ports/mail/mh|/usr/local|Rand MH mail handling system|/usr/ports/mail/mh/pkg/DESCR|pst@FreeBSD.org|mail|||
minimalist-2.0.2|/usr/ports/mail/minimalist|/usr/local|A minimalistic mailing list manager|/usr/ports/mail/minimalist/pkg/DESCR|gmarco@giovannelli.it|mail|||http://www.webest.com/minimalist
ml-3.4|/usr/ports/mail/ml|/usr/X11R6|An X11 IMAP client|/usr/ports/mail/ml/pkg/DESCR|albast@xs4all.nl|mail|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://people.netscape.com/max/ml/index.html
mmr-1.5.2|/usr/ports/mail/mmr|/usr/local|Curses based MIME Mail Reader|/usr/ports/mail/mmr/pkg/DESCR|andy@icc.surw.chel.su|mail|||http://www.devolution.com/~slouken/projects/mmr/index.html
movemail-1.0|/usr/ports/mail/movemail|/usr/local|Move your mail box to annother location|/usr/ports/mail/movemail/pkg/DESCR|wosch@FreeBSD.org|mail|||
mutt-1.0|/usr/ports/mail/mutt|/usr/local|"The Mongrel of Mail User Agents" (part Elm, Pine, mh)|/usr/ports/mail/mutt/pkg/DESCR|obrien@FreeBSD.org|mail|docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 iso8879-1986 ispell-3.1.20c jade-1.2.1 libslang-1.2.2 linuxdoc-1.1 sgmlformat-1.7|ispell-3.1.20c libslang-1.2.2 urlview-0.7|http://www.mutt.org/
newmail-1.0.1|/usr/ports/mail/newmail|/usr/local|A tool for checking for new mail in multiple mail boxes|/usr/ports/mail/newmail/pkg/DESCR|andrew@ugh.net.au|mail|||
nmh-1.0|/usr/ports/mail/nmh|/usr/local|A cleaned up MH mailer suite|/usr/ports/mail/nmh/pkg/DESCR|Scott.Blachowicz@seaslug.org|mail|||http://www.mhost.com/nmh/
p5-IMAP-Admin-0.8.2|/usr/ports/mail/p5-IMAP-Admin|/usr/local|Perl module for basic IMAP server administration|/usr/ports/mail/p5-IMAP-Admin/pkg/DESCR|martti.kuparinen@ericsson.com|mail perl5|||
p5-MIME-Lite-1.135|/usr/ports/mail/p5-MIME-Lite|/usr/local|A simple interface for creating (not parsing!) MIME messages|/usr/ports/mail/p5-MIME-Lite/pkg/DESCR|veers@disturbed.net|mail perl5|||
p5-MIME-Tools-4.122|/usr/ports/mail/p5-MIME-Tools|/usr/local|A set of perl5 modules for MIME|/usr/ports/mail/p5-MIME-Tools/pkg/DESCR|eivind@FreeBSD.org|mail perl5||p5-IO-stringy-1.203 p5-MIME-Base64-2.11 p5-Mail-Tools-1.12 p5-Net-1.0606|
p5-Mail-Folder-0.07|/usr/ports/mail/p5-Mail-Folder|/usr/local|Perl module for a folder-independant interface to email folders|/usr/ports/mail/p5-Mail-Folder/pkg/DESCR|jfitz@FreeBSD.org|mail perl5|p5-File-Sync-0.06 p5-Mail-Tools-1.12 p5-Net-1.0606 p5-TimeDate-1.08|p5-File-Sync-0.06 p5-Mail-Tools-1.12 p5-Net-1.0606 p5-TimeDate-1.08|
p5-Mail-POP3Client-1.15|/usr/ports/mail/p5-Mail-POP3Client|/usr/local|Perl5 module to talk to a POP3 (RFC1081) server|/usr/ports/mail/p5-Mail-POP3Client/pkg/DESCR|jfitz@FreeBSD.org|mail perl5|||
p5-Mail-Tools-1.12|/usr/ports/mail/p5-Mail-Tools|/usr/local|Perl5 modules for dealing with Internet e-mail messages|/usr/ports/mail/p5-Mail-Tools/pkg/DESCR|jfitz@FreeBSD.org|mail perl5|p5-Net-1.0606|p5-Net-1.0606|
pathalias-9.11|/usr/ports/mail/pathalias|/usr/local|Mail routing tools|/usr/ports/mail/pathalias/pkg/DESCR|dirk.meyer@dinoex.sub.org|mail|||
pgpsendmail-1.4|/usr/ports/mail/pgpsendmail|/usr/local|PGP sign/encrypt/decrypt messages automatically|/usr/ports/mail/pgpsendmail/pkg/DESCR|ache@FreeBSD.org|mail|pgp-2.6.2 rsaref-2.0||
pine-3.96|/usr/ports/mail/pine3|/usr/local|Program for Internet E-mail and News|/usr/ports/mail/pine3/pkg/DESCR|ports@FreeBSD.org|mail news|||http://www.washington.edu/pine/
pine-4.21|/usr/ports/mail/pine4|/usr/local|PINE(tm) -- a Program for Internet News & Email|/usr/ports/mail/pine4/pkg/DESCR|pine@freebsd.ady.ro|mail news|||http://www.washington.edu/pine/
pine4-ssl-4.10.1.3|/usr/ports/mail/pine4-ssl|/usr/local|PINE(tm) -- a Program for Internet News & Email|/usr/ports/mail/pine4-ssl/../pine4/pkg/DESCR|nsayer@freebsd.org|mail news|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://www.washington.edu/pine/
poppassd-4.0|/usr/ports/mail/poppassd|/usr/local|A server to allow users to change their password from within Eudora|/usr/ports/mail/poppassd/pkg/DESCR|andrew@ugh.net.au|mail|||
qpopper-2.53|/usr/ports/mail/popper|/usr/local|Berkeley POP 3 server (now maintained by Qualcomm)|/usr/ports/mail/popper/pkg/DESCR|ache@freebsd.org|mail|||
postfix-19990906.02|/usr/ports/mail/postfix|/usr/local|Good alternative to sendmail|/usr/ports/mail/postfix/pkg/DESCR|torstenb@FreeBSD.org|mail|||http://www.postfix.org/
postilion-0.9.2|/usr/ports/mail/postilion|/usr/local|Mail client with the NeXt look|/usr/ports/mail/postilion/pkg/DESCR|gljohns@bellsouth.net|mail tk82|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|http://www.postilion.org
premail-0.46|/usr/ports/mail/premail|/usr/local|E-mail privacy package, support anon remailers, PGP, nyms|/usr/ports/mail/premail/pkg/DESCR|ache@FreeBSD.org|security mail|pgp-2.6.2 rsaref-2.0||
procmail-3.13.1|/usr/ports/mail/procmail|/usr/local|A local mail delivery agent|/usr/ports/mail/procmail/pkg/DESCR|ache@FreeBSD.org|mail|||
prom-mew-1.93.4|/usr/ports/mail/prom-mew|/usr/local|Procmail reader for Mew on GNU Emacs|/usr/ports/mail/prom-mew/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|mail elisp||procmail-3.13.1|
prom-wl-1.0.2|/usr/ports/mail/prom-wl|/usr/local|Procmail reader for Wanderlust on GNU Emacs|/usr/ports/mail/prom-wl/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|mail elisp||procmail-3.13.1|
qmail-1.03|/usr/ports/mail/qmail|/var/qmail|A SECURE, reliable, efficient, simple, and FAST MTA for UNIX systems|/usr/ports/mail/qmail/pkg/DESCR|lioux@gns.com.br|mail|||http://www.qmail.org/
qmail-contrib-0.1|/usr/ports/mail/qmail-contrib|/var/qmail|Contributed programs for qmail|/usr/ports/mail/qmail-contrib/pkg/DESCR|ports@freebsd.org|mail||qmail-1.03|
qmailanalog-0.70|/usr/ports/mail/qmailanalog|/usr/local|A collection of tools to analyze qmail-send's activity|/usr/ports/mail/qmailanalog/pkg/DESCR|ports@freebsd.org|mail||qmail-1.03|
rblcheck-1.4|/usr/ports/mail/rblcheck|/usr/local|Command-line interface to Paul Vixie's RBL filter|/usr/ports/mail/rblcheck/pkg/DESCR|itojun@itojun.org|mail|||http://www.xnet.com/~emarshal/rblcheck/
rblsmtpd-0.70|/usr/ports/mail/rblsmtpd|/usr/local|RBL (Realtime Blackhole List) smtp daemon for blocking SPAM|/usr/ports/mail/rblsmtpd/pkg/DESCR|john@nlc.net.au|mail|||ftp://koobera.math.uic.edu/www/rblsmtpd.html
rftp-1.2|/usr/ports/mail/rftp|/usr/local|Automatically reconstruct ftpmail- or bitftp-retrieved files|/usr/ports/mail/rftp/pkg/DESCR|kline@thought.org|mail|||
rlytest-1.16|/usr/ports/mail/rlytest|/usr/local|Test an SMTP host for third-party relay|/usr/ports/mail/rlytest/pkg/DESCR|paul@it.ca|mail security|||http://www.unicom.com/sw/#rlytest
serialmail-0.75|/usr/ports/mail/serialmail|/usr/local|Tools for passing mail across serial links|/usr/ports/mail/serialmail/pkg/DESCR|tom@FreeBSD.org|mail||qmail-1.03 ucspi-tcp-0.84|http://pobox.com/~djb/serialmail.html
sigrot-1.0|/usr/ports/mail/sigrot|/usr/local|Util to rotate your mail/news signature|/usr/ports/mail/sigrot/pkg/DESCR|marijn@stack.nl|mail|||
smail-3.2.0.107|/usr/ports/mail/smail|/usr/local|A program used for receiving and delivering mail|/usr/ports/mail/smail/pkg/DESCR|torstenb@FreeBSD.org|mail|libident-0.22||
smtpd-2.0|/usr/ports/mail/smtpd|/usr/local|Obtuse smtpd/smtpfwdd, part of the Juniper firewall toolkit|/usr/ports/mail/smtpd/pkg/DESCR|jonny@jonny.eng.br|mail security|||http://www.obtuse.com/smtpd.html
smtpfeed-1.00|/usr/ports/mail/smtpfeed|/usr/local|SMTP Fast Exploding External Deliverer for Sendmail|/usr/ports/mail/smtpfeed/pkg/DESCR|itojun@itojun.org|mail|||
spruce-0.4.8c|/usr/ports/mail/spruce|/usr/X11R6|A simple GTK based email client|/usr/ports/mail/spruce/pkg/DESCR|cpiazza@FreeBSD.org|mail|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.xtorshun.org/spruce/
tkrat-1.2|/usr/ports/mail/tkrat|/usr/local|A mail user agent for X with a Tcl/Tk user interface|/usr/ports/mail/tkrat/pkg/DESCR|appleseed@his.com|mail tk82|XFree86-3.3.5 imap-uw-4.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 imap-uw-4.5 tcl-8.2.2 tk-8.2.2|
wanderlust-emacs-1.0.3|/usr/ports/mail/wanderlust-emacs|/usr/local|Yet another message interface on Emacsen|/usr/ports/mail/wanderlust-emacs/pkg/DESCR|nobutaka@nobutaka.com|mail elisp|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7 semi-emacs-1.13.4|XFree86-3.3.5 apel-emacs-9.22 custom-emacs-1.9962 emacs-19.34b flim-emacs-1.12.7 semi-emacs-1.13.4|
wanderlust-emacs20-1.0.3|/usr/ports/mail/wanderlust-emacs20|/usr/local|Yet another message interface on Emacsen|/usr/ports/mail/wanderlust-emacs20/../../mail/wanderlust-emacs/pkg/DESCR|nobutaka@nobutaka.com|mail elisp|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7 semi-emacs20-1.13.4|XFree86-3.3.5 apel-emacs20-9.22 emacs-20.4 flim-emacs20-1.12.7 semi-emacs20-1.13.4|
wanderlust-mule-1.0.3|/usr/ports/mail/wanderlust-mule|/usr/local|Yet another message interface on Emacsen|/usr/ports/mail/wanderlust-mule/../../mail/wanderlust-emacs/pkg/DESCR|nobutaka@nobutaka.com|mail elisp|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 mule-2.3 mule-common-2.3 semi-mule-1.13.4|XFree86-3.3.5 apel-mule-9.22 custom-mule-1.9962 flim-mule-1.12.7 mule-common-2.3 semi-mule-1.13.4|
wanderlust-xemacs-mule-1.0.3|/usr/ports/mail/wanderlust-xemacs-mule|/usr/local|Yet another message interface on Emacsen|/usr/ports/mail/wanderlust-xemacs-mule/../../mail/wanderlust-emacs/pkg/DESCR|nobutaka@nobutaka.com|mail elisp|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 semi-xemacs-mule-1.13.4 tiff-3.5.3 xemacs-mule-21.1.8 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k|XFree86-3.3.5 apel-xemacs-mule-9.22 faces-1.6.1 flim-xemacs-mule-1.12.7 jpeg-6b png-1.0.5 semi-xemacs-mule-1.13.4 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-sumo-pkg-19990713 xpm-3.4k|
wanderlust-xemacs20-1.0.3|/usr/ports/mail/wanderlust-xemacs20|/usr/local|Yet another message interface on Emacsen|/usr/ports/mail/wanderlust-xemacs20/../../mail/wanderlust-emacs/pkg/DESCR|nobutaka@nobutaka.com|mail elisp|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 jpeg-6b png-1.0.5 semi-xemacs20-1.13.4 xemacs-20.4 xpm-3.4k|XFree86-3.3.5 apel-xemacs20-9.22 flim-xemacs20-1.12.7 jpeg-6b png-1.0.5 semi-xemacs20-1.13.4 xemacs-20.4 xpm-3.4k|
wmbiff-0.1a|/usr/ports/mail/wmbiff|/usr/X11R6|An xbiff-like Window Maker dock app|/usr/ports/mail/wmbiff/pkg/DESCR|jim@FreeBSD.org|mail windowmaker afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://ccat.elect.ru:8100/wmbiff/
wmmail-0.63a|/usr/ports/mail/wmmail|/usr/X11R6|A little mail notifier for the WindowMaker dock|/usr/ports/mail/wmmail/pkg/DESCR|jim@FreeBSD.org|mail windowmaker|XFree86-3.3.5 libproplist-0.9.1 xpm-3.4k|XFree86-3.3.5 libproplist-0.9.1 xpm-3.4k|http://www.eecg.utoronto.ca/~chanb/wmmail.html
wmpop3-0.5.6a|/usr/ports/mail/wmpop3|/usr/X11R6|A POP3 mail check for the Window Maker dock|/usr/ports/mail/wmpop3/pkg/DESCR|jim@FreeBSD.org|mail windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.cs.mun.ca/~scotth/
xbuffy-3.3|/usr/ports/mail/xbuffy|/usr/X11R6|A replacement for xbiff that handles multiple mail files|/usr/ports/mail/xbuffy/pkg/DESCR|dchapes@zeus.leitch.com|mail|XFree86-3.3.5|XFree86-3.3.5|
xfaces-3.3|/usr/ports/mail/xfaces|/usr/X11R6|Mail image display for X|/usr/ports/mail/xfaces/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|mail|XFree86-3.3.5 faces-1.6.1 nas-1.2.5 xpm-3.4k|XFree86-3.3.5 faces-1.6.1 xpm-3.4k|
xfmail-1.4.0|/usr/ports/mail/xfmail|/usr/X11R6|An X Window System application for receiving electronic mail|/usr/ports/mail/xfmail/pkg/DESCR|gena@NetVision.net.il|mail|XFree86-3.3.5 bzip2-0.9.5d xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|http://xfmail.slappy.org/
xlbiff-3.0|/usr/ports/mail/xlbiff|/usr/X11R6|The X Literate Biff - displays the from and subject from incoming mails|/usr/ports/mail/xlbiff/pkg/DESCR|obrien@FreeBSD.org|mail|XFree86-3.3.5|XFree86-3.3.5|
xmail-1.6|/usr/ports/mail/xmail|/usr/X11R6|An X-based interface to the Berkeley mail program|/usr/ports/mail/xmail/pkg/DESCR|andreas@FreeBSD.org|mail|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmailbox-2.5|/usr/ports/mail/xmailbox|/usr/X11R6|Mailbox checker with sound and animation for X Window System|/usr/ports/mail/xmailbox/pkg/DESCR|andy@icc.surw.chel.su|mail|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xpbiff-1.27|/usr/ports/mail/xpbiff|/usr/X11R6|A replacement for xbiff that handles popup window with mail header|/usr/ports/mail/xpbiff/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|mail|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xpbiff-youbin-1.27|/usr/ports/mail/xpbiff-youbin|/usr/X11R6|A replacement for xbiff that handles popup window with mail header via youbin|/usr/ports/mail/xpbiff-youbin/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|mail|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k youbin-2.13|
youbin-2.13|/usr/ports/mail/youbin|/usr/local|Mail arrival notification service package|/usr/ports/mail/youbin/pkg/DESCR|max@FreeBSD.org|mail|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.agusa.nuie.nagoya-u.ac.jp/software/youbin/youbin-e.html
zmailer-2.99.51|/usr/ports/mail/zmailer|/usr/local|A fully functional fast, robust SMTP server and transport agent|/usr/ports/mail/zmailer/pkg/DESCR|veers@disturbed.net|mail|||
PDL-2.0|/usr/ports/math/PDL|/usr/local|Perl Data Language|/usr/ports/math/PDL/pkg/DESCR|tobez@plab.ku.dk|math perl5|Mesa-3.0 XFree86-3.3.5 pgperl-2.15 pgplot-5.2|Mesa-3.0 XFree86-3.3.5 pgperl-2.15 pgplot-5.2|http://www.aao.gov.au/local/www/kgb/perldl/
R-a4-0.64.2|/usr/ports/math/R-a4|/usr/local|Statistical analysis language similar to AT&T's S language|/usr/ports/math/R-a4/../R-letter/pkg/DESCR|maurice@serc.rmit.edu.au|math|XFree86-3.3.5|XFree86-3.3.5|http://stat.auckland.ac.nz/r/r.html
R-letter-0.64.2|/usr/ports/math/R-letter|/usr/local|Statistical analysis language similar to AT&T's S language|/usr/ports/math/R-letter/pkg/DESCR|maurice@serc.rmit.edu.au|math|XFree86-3.3.5|XFree86-3.3.5|http://stat.auckland.ac.nz/r/r.html
Scilab-2.4.1|/usr/ports/math/Scilab|/usr/X11R6|A free CACSD Package by INRIA|/usr/ports/math/Scilab/pkg/DESCR|paulo@isr.uc.pt|math cad|XFree86-3.3.5|XFree86-3.3.5 pvm-3.4.7 xless-1.7|http://www-rocq.inria.fr/scilab/
abs-0.6|/usr/ports/math/abs|/usr/local|A free spreadsheet with graphical user interface|/usr/ports/math/abs/pkg/DESCR|gmarco@giovannelli.it|math|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.ping.be/bertin/abs.shtml
add-1.0|/usr/ports/math/add|/usr/local|Full-screen editing calculator|/usr/ports/math/add/pkg/DESCR|andy@icc.surw.chel.su|math|||http://www.clark.net/pub/dickey/add/add.html
apc-1.0|/usr/ports/math/apc|/usr/X11R6|An xforms based Auto Payment Calculator|/usr/ports/math/apc/pkg/DESCR|eagriff@global2000.net|math|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|
blas-1.0|/usr/ports/math/blas|/usr/local|Basic Linear Algebra, level 1, 2, and 3|/usr/ports/math/blas/pkg/DESCR|ports@FreeBSD.org|math|||
calc-2.9.3|/usr/ports/math/calc|/usr/local|Arbitrary precision calculator|/usr/ports/math/calc/pkg/DESCR|jmz@FreeBSD.org|math|||
calctool-2.4.13|/usr/ports/math/calctool|/usr/X11R6|A multi-GUI (text, X, xview, NeWS, sunview) calculator program|/usr/ports/math/calctool/pkg/DESCR|nsayer@quack.kfu.com|math|XFree86-3.3.5|XFree86-3.3.5|
dcdflib.c-1.1|/usr/ports/math/dcdflib|/usr/local|Library of C Routines for Cumulative Distribution Functions|/usr/ports/math/dcdflib/pkg/DESCR|tobez@plab.ku.dk|math|||
eispack-1.0|/usr/ports/math/eispack|/usr/local|Eigenvalue system package|/usr/ports/math/eispack/pkg/DESCR|ports@FreeBSD.org|math|blas-1.0|blas-1.0|
eval-113|/usr/ports/math/eval|/usr/local|A full featured floating point expression evaluator|/usr/ports/math/eval/pkg/DESCR|eserte@cs.tu-berlin.de|math|lha-1.14f||
femlab-1.1|/usr/ports/math/femlab|/usr/X11R6|Interactive program for solving partial differential equations in 2D|/usr/ports/math/femlab/pkg/DESCR|giffunip@asme.org|math cad|XFree86-3.3.5 Xaw3d-1.5 libsx-1.1|XFree86-3.3.5|http://www.math.chalmers.se/Math/Research//Femlab/
fftpack-1.0|/usr/ports/math/fftpack|/usr/local|Biharmonic equation in rectangular geometry and polar coordinates|/usr/ports/math/fftpack/pkg/DESCR|giffunip@asme.org|math|||
fftw-2.1.3|/usr/ports/math/fftw|/usr/local|Fast C routines to compute the Discrete Fourier Transform|/usr/ports/math/fftw/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|math|gmake-3.78.1||http://www.fftw.org/
freefem-3.4|/usr/ports/math/freefem|/usr/X11R6|A language for the Finite Element Method|/usr/ports/math/freefem/pkg/DESCR|giffunip@asme.org|math cad|XFree86-3.3.5 unzip-5.40|XFree86-3.3.5|http://www.asci.fr/~prudhomm/gfem-html/
Fudgit-2.41|/usr/ports/math/fudgit|/usr/local|Multi-purpose data-processing and fitting program|/usr/ports/math/fudgit/pkg/DESCR|jmz@FreeBSD.org|math|gmake-3.78.1||
geg-1.0.1|/usr/ports/math/geg|/usr/X11R6|Visualise multiple 2D-functions of one variable|/usr/ports/math/geg/pkg/DESCR|domi@saargate.de|math|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.infolaunch.com/~daveb/
gnumeric-0.44|/usr/ports/math/gnumeric|/usr/X11R6|The GNOME spreadsheet|/usr/ports/math/gnumeric/pkg/DESCR|nakai@FreeBSD.org|math gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libglade-0.9 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libglade-0.9 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xpm-3.4k|
gnuplot-3.7|/usr/ports/math/gnuplot|/usr/local|A command-driven interactive function plotting program|/usr/ports/math/gnuplot/pkg/DESCR|chuckr@FreeBSD.org|math graphics|XFree86-3.3.5 gd-1.7.3 png-1.0.5|XFree86-3.3.5 png-1.0.5|
gnuplot371+-1.1.9|/usr/ports/math/gnuplot+|/usr/local|A command-driven interactive function plotting program|/usr/ports/math/gnuplot+/pkg/DESCR|nakaji@tutrp.tut.ac.jp|math japanese graphics|XFree86-3.3.5 autoconf-2.13 freetype-1.3 gd-1.7.3 gmake-3.78.1 ja-vflib-2.24.1 m4-1.4 png-1.0.5|XFree86-3.3.5 freetype-1.3 ja-vflib-2.24.1 png-1.0.5|
grace-5.0.3g|/usr/ports/math/grace|/usr/X11R6|A powerful plotting tool (successor of xmgr)|/usr/ports/math/grace/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|math print|XFree86-3.3.5 afm-1.0 fftw-2.1.3 gmake-3.78.1 jpeg-6b libhelp-1.8.1 netcdf-3.5b2 pdflib-2.01 png-1.0.5 tiff-3.5.3 xbae-4.7 xpm-3.4k|XFree86-3.3.5 afm-1.0 fftw-2.1.3 jpeg-6b netcdf-3.5b2 pdflib-2.01 png-1.0.5 tiff-3.5.3 xbae-4.7 xpm-3.4k|
grpn-1.1.0|/usr/ports/math/grpn|/usr/X11R6|GTK+-based reverse polish notation (RPN) calculator|/usr/ports/math/grpn/pkg/DESCR|jedgar@fxp.org|math gnome|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://wilkins.ne.mediaone.net/grpn.html
hexcalc-1.11|/usr/ports/math/hexcalc|/usr/X11R6|A multi-radix calculator for x11|/usr/ports/math/hexcalc/pkg/DESCR|ports@FreeBSD.org|math|XFree86-3.3.5|XFree86-3.3.5|
lapack-3.0|/usr/ports/math/lapack|/usr/local|A library of Fortran 77 subroutines for linear algebra|/usr/ports/math/lapack/pkg/DESCR|jmz@FreeBSD.org|math|||
ranlib-1.0|/usr/ports/math/libranlib|/usr/local|Library of Routines for Random Number Generation|/usr/ports/math/libranlib/pkg/DESCR|tg@FreeBSD.org|math|||
linpack-1.0|/usr/ports/math/linpack|/usr/local|Linear Algebra package|/usr/ports/math/linpack/pkg/DESCR|ports@FreeBSD.org|math|blas-1.0|blas-1.0|
metis-4.0|/usr/ports/math/metis|/usr/local|A package for unstructured graph partitioning|/usr/ports/math/metis/pkg/DESCR|ports@FreeBSD.org|math|||
netcdf-3.5b2|/usr/ports/math/netcdf|/usr/local|Library for machine-independent, array-oriented data access|/usr/ports/math/netcdf/pkg/DESCR|ports@FreeBSD.org|math|||http://www.unidata.ucar.edu/packages/netcdf/
ngraph-6.3.06|/usr/ports/math/ngraph|/usr/local|A XY plotting tool for students, scientists and engineers|/usr/ports/math/ngraph/pkg/DESCR|sanpei@jp.FreeBSD.org|math|Motif-2.1.10 XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www2e.biglobe.ne.jp/~isizaka/
py-numeric-1.8|/usr/ports/math/numpy|/usr/local|The Numeric Extension to Python|/usr/ports/math/numpy/pkg/DESCR|tg@FreeBSD.org|math python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://xfiles.llnl.gov/python.htm
octave-2.0.13|/usr/ports/math/octave|/usr/local|High-level interactive language for numerical computations|/usr/ports/math/octave/pkg/DESCR|chuckr@FreeBSD.org|math|XFree86-3.3.5 gmake-3.78.1 gnuplot-3.7 png-1.0.5|XFree86-3.3.5 gnuplot-3.7 png-1.0.5|
oleo-1.99.5|/usr/ports/math/oleo|/usr/local|The GNU spreadsheet for X11 and terminals|/usr/ports/math/oleo/pkg/DESCR|ports@FreeBSD.org|math|XFree86-3.3.5 gettext-0.10.35|XFree86-3.3.5|http://www.gnu.org/software/oleo/oleo.html
p5-MatrixReal-1.2|/usr/ports/math/p5-MatrixReal|/usr/local|A perl module implementing a Matrix of Reals|/usr/ports/math/p5-MatrixReal/pkg/DESCR|sander@haldjas.folklore.ee|math perl5|||
p5-Set-IntSpan-1.07|/usr/ports/math/p5-Set-IntSpan|/usr/local|Manages sets of integers|/usr/ports/math/p5-Set-IntSpan/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|math perl5|||
pari-2.0.16b|/usr/ports/math/pari|/usr/local|Mathmatics library and advanced calculator package|/usr/ports/math/pari/pkg/DESCR|yoshiaki@kt.rim.or.jp|math|gmake-3.78.1||
ParMetis-2.0|/usr/ports/math/parmetis|/usr/local|A package for parallel (mpi) unstructured graph partitioning|/usr/ports/math/parmetis/pkg/DESCR|eoin@maths.tcd.ie|math|mpich-1.1.2 rsaref-2.0 ssh-1.2.27|mpich-1.1.2 rsaref-2.0 ssh-1.2.27|
plplot-4.99j|/usr/ports/math/plplot|/usr/local|A scientific plotting package|/usr/ports/math/plplot/pkg/DESCR|ports@FreeBSD.org|math|XFree86-3.3.5|XFree86-3.3.5|
py-scientific-2.0b1|/usr/ports/math/py-scientific|/usr/local|Collection of Python modules for scientific computing|/usr/ports/math/py-scientific/pkg/DESCR|ports@FreeBSD.org|math python|XFree86-3.3.5 netcdf-3.5b2 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 netcdf-3.5b2 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.python.net/crew/hinsen/scientific.html
py-gist-1.5|/usr/ports/math/pygist|/usr/local|Python interface for the Gist graphics package|/usr/ports/math/pygist/pkg/DESCR|tg@FreeBSD.org|math python|XFree86-3.3.5 py-numeric-1.8 py-rng-1.0 python-1.5.2 tcl-8.2.2 tk-8.2.2 yorick-1.4.1|XFree86-3.3.5 py-numeric-1.8 py-rng-1.0 python-1.5.2 tcl-8.2.2 tk-8.2.2|
rcalc-0.1|/usr/ports/math/rcalc|/usr/X11R6|Symbolic calculator for GNOME|/usr/ports/math/rcalc/pkg/DESCR|jedgar@fxp.org|math gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://rat.spunge.org/rcalc/
py-rng-1.0|/usr/ports/math/rng|/usr/local|Random Number Generator module for python|/usr/ports/math/rng/pkg/DESCR|tg@FreeBSD.org|math python|XFree86-3.3.5 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 py-numeric-1.8 python-1.5.2 tcl-8.2.2 tk-8.2.2|
sc-6.21|/usr/ports/math/sc|/usr/local|A curses-based spreadsheet program|/usr/ports/math/sc/pkg/DESCR|semper@doubt.com|math|||
siag-3.1.18|/usr/ports/math/siag|/usr/X11R6|Scheme-based "office" for X and curses. Sexy interface using Xaw3d|/usr/ports/math/siag/pkg/DESCR|mi@aldan.algebra.com|math|XFree86-3.3.5 Xaw3d-1.5 gdbm-1.8.0 t1lib-0.9.2 tcl-8.2.2 xpm-3.4k|XFree86-3.3.5 Xaw3d-1.5 catdoc-0.90.3 gnuplot-3.7 png-1.0.5 tcl-8.2.2 xpm-3.4k|http://www.edu.stockholm.se/siag/
simpack-3.0|/usr/ports/math/simpack|/usr/local|SimPack & Sim++ libraries and tools for simulatiom modelling|/usr/ports/math/simpack/pkg/DESCR|rssh@cki.ipri.kiev.ua|math|XFree86-3.3.5||
snns-4.1|/usr/ports/math/snns|/usr/local|Fully featured neural network simulator|/usr/ports/math/snns/pkg/DESCR|reg@shale.csir.co.za|math|XFree86-3.3.5|XFree86-3.3.5|
spin-3.35|/usr/ports/math/spin|/usr/local|An on-the-fly verification system for asynchronous concurrent systems|/usr/ports/math/spin/pkg/DESCR|jhanna@home.com|math|||
ss-1.3.3|/usr/ports/math/ss|/usr/local|A curses-based SpreadSheet program|/usr/ports/math/ss/pkg/DESCR|giffunip@asme.org|math|||
superlu-1.1|/usr/ports/math/superlu|/usr/local|A library of routines for performing sparse factorization|/usr/ports/math/superlu/pkg/DESCR|ports@FreeBSD.org|math|blas-1.0||http://www.cs.berkeley.edu/~xiaoye/superlu.html
topaz-3.22|/usr/ports/math/topaz|/usr/local|A command driven graph plotting system for scientists and engineers|/usr/ports/math/topaz/pkg/DESCR|issei@jp.FreeBSD.ORG|math|XFree86-3.3.5 libgnugetopt-1.1 ncurses-4.2|XFree86-3.3.5 libgnugetopt-1.1 ncurses-4.2|http://hp.vector.co.jp/authors/VA007663/topaz/
umatrix-1.1|/usr/ports/math/umatrix|/usr/local|Simple matrix package|/usr/ports/math/umatrix/pkg/DESCR|ssigala@globalnet.it|math|||
umfpack-2.2|/usr/ports/math/umfpack|/usr/local|Unsymmetric-pattern Multifrontal Package|/usr/ports/math/umfpack/pkg/DESCR|ports@FreeBSD.org|math|blas-1.0||
vtk-2.3|/usr/ports/math/vtk|/usr/local|The Visualization Toolkit|/usr/ports/math/vtk/pkg/DESCR|ports@FreeBSD.org|math|Mesa-3.0 XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|Mesa-3.0 XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|
Wingz-142|/usr/ports/math/wingz|/usr/X11R6|A Commercial Spreadsheet|/usr/ports/math/wingz/pkg/DESCR|ports@FreeBSD.org|math|XFree86-3.3.5|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|
xgfe-2.0|/usr/ports/math/xgfe|/usr/X11R6|An X11 front-end for Gnuplot|/usr/ports/math/xgfe/pkg/DESCR|mph@freebsd.org|math|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 gnuplot-3.7 png-1.0.5 qt-1.42|
xgraph-11.3.2|/usr/ports/math/xgraph|/usr/X11R6|A program that helps you plot graphs|/usr/ports/math/xgraph/pkg/DESCR|sanpei@sanpei.org|math print|XFree86-3.3.5|XFree86-3.3.5|
xldlas-0.85|/usr/ports/math/xldlas|/usr/X11R6|An XForms-based statistics package|/usr/ports/math/xldlas/pkg/DESCR|giffunip@asme.org|math|XFree86-3.3.5 xforms-0.88.1|XFree86-3.3.5 xforms-0.88.1|http://sunsite.math.klte.hu/mirrors/xldlas/
xlispstat-3.44|/usr/ports/math/xlispstat|/usr/local|A statistics/X11 based lisp interpreter|/usr/ports/math/xlispstat/pkg/DESCR|erich@FreeBSD.org|math lang|||
xmgr-4.1.1|/usr/ports/math/xmgr|/usr/X11R6|A powerful XY plotting tool for workstations or X-terminals using X|/usr/ports/math/xmgr/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|math print|Motif-2.1.10 XFree86-3.3.5 hdf-4.1r3 jpeg-6b libhelp-1.8.1 xbae-4.7 xpm-3.4k|XFree86-3.3.5 xbae-4.7 xpm-3.4k|
xplot-0.90|/usr/ports/math/xplot|/usr/X11R6|X-windows plotting package|/usr/ports/math/xplot/pkg/DESCR|fenner@FreeBSD.org|math graphics net|XFree86-3.3.5|XFree86-3.3.5|
xspread-3.1.1c|/usr/ports/math/xspread|/usr/local|A spreadsheet program for X and terminals|/usr/ports/math/xspread/pkg/DESCR|ports@FreeBSD.org|math|XFree86-3.3.5|XFree86-3.3.5|
xwpl-1.3|/usr/ports/math/xwpl|/usr/local|The X Wavelet Packet Laboratory|/usr/ports/math/xwpl/pkg/DESCR|giffunip@asme.org|math|||
imm-3.5a1|/usr/ports/mbone/imm|/usr/X11R6|Internet Image(or other data) Multicaster (and receiver)|/usr/ports/mbone/imm/pkg/DESCR|fenner@freebsd.org|mbone tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
mbone_vcr-1.4a2|/usr/ports/mbone/mbone_vcr|/usr/X11R6|A tool to record and play back multicast sessions|/usr/ports/mbone/mbone_vcr/pkg/DESCR|fenner@FreeBSD.org|mbone tk42|XFree86-3.3.5 autoconf-2.13 gmake-3.78.1 m4-1.4 tcl-7.6 tk-4.2|XFree86-3.3.5 tcl-7.6 tk-4.2|
nte-1.5a29|/usr/ports/mbone/nte|/usr/X11R6|Multicast Network Text Editor|/usr/ports/mbone/nte/pkg/DESCR|fenner@FreeBSD.org|mbone tk80|XFree86-3.3.5 gmake-3.78.1 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|
rat-4.0.4|/usr/ports/mbone/rat|/usr/local|Multicast and unicast robust audio conferencing tool|/usr/ports/mbone/rat/pkg/DESCR|O.Hodson@cs.ucl.ac.uk|mbone audio|XFree86-3.3.5 gmake-3.78.1 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www-mice.cs.ucl.ac.uk/multimedia/software/rat/
rtpmon-1.0a7|/usr/ports/mbone/rtpmon|/usr/X11R6|A program to montior loss in multicast sessions|/usr/ports/mbone/rtpmon/pkg/DESCR|fenner@FreeBSD.org|mbone tk82|XFree86-3.3.5 autoconf-2.13 m4-1.4 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
rtptools-1.9|/usr/ports/mbone/rtptools|/usr/local|A set of tools to record, playback and monitor RTPv2 data streams|/usr/ports/mbone/rtptools/pkg/DESCR|fenner@FreeBSD.org|mbone|||
sdr-2.7|/usr/ports/mbone/sdr|/usr/X11R6|Multicast Session Directory|/usr/ports/mbone/sdr/pkg/DESCR|fenner@FreeBSD.org|mbone tk82|XFree86-3.3.5 gmake-3.78.1 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/
sdr-2.7e|/usr/ports/mbone/sdr-current|/usr/X11R6|Multicast Session Directory (experimental version with encryption)|/usr/ports/mbone/sdr-current/pkg/DESCR|fenner@FreeBSD.org|mbone tk80|XFree86-3.3.5 gmake-3.78.1 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|http://www-mice.cs.ucl.ac.uk/multimedia/software/sdr/
speak_freely-6.1c|/usr/ports/mbone/speak_freely|/usr/local|Voice Communication Over Data Networks|/usr/ports/mbone/speak_freely/pkg/DESCR|ache@FreeBSD.org|mbone audio security|gsm-1.0.10|gsm-1.0.10|
vat-4.0b2|/usr/ports/mbone/vat|/usr/X11R6|The Visual Audio Tool - multicast audioconferencing|/usr/ports/mbone/vat/pkg/DESCR|fenner@FreeBSD.org|mbone tk82|XFree86-3.3.5 autoconf-2.13 gsm-1.0.10 m4-1.4 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 gsm-1.0.10 tcl-8.2.2 tk-8.2.2|
vic-2.8|/usr/ports/mbone/vic|/usr/X11R6|MBONE video tool|/usr/ports/mbone/vic/pkg/DESCR|fenner@FreeBSD.org|mbone tk82|XFree86-3.3.5 autoconf-2.13 m4-1.4 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
wb-1.59|/usr/ports/mbone/wb|/usr/X11R6|A shared drawing (whiteboard) tool using multicast|/usr/ports/mbone/wb/pkg/DESCR|fenner@FreeBSD.org|mbone|XFree86-3.3.5|XFree86-3.3.5 ghostscript-5.10 gsfonts-5.10 png-1.0.5|
221upgrade-1998.03.08|/usr/ports/misc/221upgrade|/|A convenience package to upgrade your 2.2.1 system to 2.2-stable for ports|/usr/ports/misc/221upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
222upgrade-1998.03.08|/usr/ports/misc/222upgrade|/|A convenience package to upgrade your 2.2.2 system to 2.2-stable for ports|/usr/ports/misc/222upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
225upgrade-1998.03.08|/usr/ports/misc/225upgrade|/|A convenience package to upgrade your 2.2.5 system to 2.2-stable for ports|/usr/ports/misc/225upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
227upgrade-1998.03.08|/usr/ports/misc/227upgrade|/|A convenience package to upgrade your 2.2.7 system to 2.2-stable for ports|/usr/ports/misc/227upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
30upgrade-1999.05.20|/usr/ports/misc/30upgrade|/|A convenience package to upgrade your 3.0 system to 3-stable for ports|/usr/ports/misc/30upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
31upgrade-1999.05.20|/usr/ports/misc/31upgrade|/|A convenience package to upgrade your 3.1 system to 3-stable for ports|/usr/ports/misc/31upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
32upgrade-1999.05.20|/usr/ports/misc/32upgrade|/|A convenience package to upgrade your 3.2 system to 3-stable for ports|/usr/ports/misc/32upgrade/pkg/DESCR|asami@FreeBSD.org|misc|||
Howto-1.0|/usr/ports/misc/Howto|/usr/local|Linux HOW-TOs modified for applicablity on FreeBSD|/usr/ports/misc/Howto/pkg/DESCR|ports@FreeBSD.org|misc|docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 iso8879-1986 jade-1.2.1 linuxdoc-1.1 sgmlformat-1.7||
aclgen-2.02|/usr/ports/misc/aclgen|/usr/local|Optimize Cisco routers ip access lists|/usr/ports/misc/aclgen/pkg/DESCR|ports@FreeBSD.org|misc|||
acron-1.0|/usr/ports/misc/acron|/usr/local|Database of acronyms and abbreviations|/usr/ports/misc/acron/pkg/DESCR|ports@FreeBSD.org|misc|||
alevt-1.5.1|/usr/ports/misc/alevt|/usr/X11R6|X11 Teletext decoding and display program. (reads from /dev/vbi)|/usr/ports/misc/alevt/pkg/DESCR|roger@freebsd.org|misc|XFree86-3.3.5 gmake-3.78.1 png-1.0.5|XFree86-3.3.5 png-1.0.5|
amanda-2.3.0|/usr/ports/misc/amanda|/usr/local|The Advanced Maryland Automatic Network Disk Archiver|/usr/ports/misc/amanda/pkg/DESCR|ports@FreeBSD.org|misc|||
amanda-2.4.1|/usr/ports/misc/amanda24|/usr/local|The Advanced Maryland Automatic Network Disk Archiver|/usr/ports/misc/amanda24/pkg/DESCR|cwt@FreeBSD.org|misc|XFree86-3.3.5 gnuplot-3.7 png-1.0.5|XFree86-3.3.5 gnuplot-3.7 png-1.0.5|
asbutton-0.3|/usr/ports/misc/asbutton|/usr/X11R6|A dockapp that displays 4 or 9 buttons to run apps of your choice|/usr/ports/misc/asbutton/pkg/DESCR|jim@FreeBSD.org|misc windowmaker afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
astrolog-5.40|/usr/ports/misc/astrolog|/usr/local|An astrology program for X11 and alpha-numeric terminals|/usr/ports/misc/astrolog/pkg/DESCR|ache@FreeBSD.org|misc|XFree86-3.3.5|XFree86-3.3.5|
bb-1.2|/usr/ports/misc/bb|/usr/local|High quality audio-visual demonstration for text terminal|/usr/ports/misc/bb/pkg/DESCR|andy@icc.surw.chel.su|misc|aalib-1.2|aalib-1.2|
bbjd-1.01|/usr/ports/misc/bbjd|/usr/local|Bbjd - beat the blackjack dealer|/usr/ports/misc/bbjd/pkg/DESCR|dima@chg.ru|misc|gmake-3.78.1||
bidwatcher-1.0.2b|/usr/ports/misc/bidwatcher|/usr/local|Bid monitor for eBay|/usr/ports/misc/bidwatcher/pkg/DESCR|andrews@technologist.com|misc|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|http://www.low-fi.com/bw/download.html
bottlerocket-0.04b|/usr/ports/misc/bottlerocket|/usr/local|Home Automation Software for the X10 FireCracker kit|/usr/ports/misc/bottlerocket/pkg/DESCR|msmith@freebsd.org|misc|gmake-3.78.1||http://mlug.missouri.edu/~tymm/
buffer-1.17.1|/usr/ports/misc/buffer|/usr/local|Buffer sporadic I/O for faster tape and pipe throughput|/usr/ports/misc/buffer/pkg/DESCR|jonny@jonny.eng.br|misc|bzip2-0.9.5d||
cassowary-0.52|/usr/ports/misc/cassowary|/usr/local|constraint solving toolkit|/usr/ports/misc/cassowary/pkg/DESCR|nakai@FreeBSD.org|misc|gcc-2.95.2 gmake-3.78.1 gtl-0.3.1 guile-1.3.4|gtl-0.3.1|
chord-3.6|/usr/ports/misc/chord|/usr/local|Produce PS sheet-music from text input|/usr/ports/misc/chord/pkg/DESCR|ports@FreeBSD.org|misc|||
cmatrix-0.98c|/usr/ports/misc/cmatrix|/usr/local|Show a scrolling 'Matrix' like screen|/usr/ports/misc/cmatrix/pkg/DESCR|andy@icc.surw.chel.su|misc|||http://www.plattsburgh.edu/faculty/allegrcr/cmatrix/index.html
colorls-2.2.7|/usr/ports/misc/colorls|/usr/local|An ls that can use color to display file attributes|/usr/ports/misc/colorls/pkg/DESCR|asami@FreeBSD.org|misc|||
colortail-0.2.0|/usr/ports/misc/colortail|/usr/local|A colour-able replacement for tail(1)|/usr/ports/misc/colortail/pkg/DESCR|cpiazza@FreeBSD.org|misc|||http://www.student.hk-r.se/~pt98jan/colortail.html
crosspad-19991202|/usr/ports/misc/crosspad|/usr/local|Crosspad data downloader/converter|/usr/ports/misc/crosspad/pkg/DESCR|itojun@itojun.org|misc|||http://www.cross-pcg.com/
cstream-1.4|/usr/ports/misc/cstream|/usr/local|Dd(1)-like tool, precise bandwidth limiting/reporting, fifo support|/usr/ports/misc/cstream/pkg/DESCR|cracauer@cons.org|misc|||http://www.cons.org/cracauer/cstream.html
cwish-3.37|/usr/ports/misc/cwish|/usr/local|Curses based user friendly windowing shell|/usr/ports/misc/cwish/pkg/DESCR|obrien@FreeBSD.org|misc|||
deco-3.8.2|/usr/ports/misc/deco|/usr/local|Demos Commander, a free Norton Commander clone|/usr/ports/misc/deco/pkg/DESCR|andy@icc.surw.chel.su|misc|||
dejagnu-1.3|/usr/ports/misc/dejagnu|/usr/local|Automated program/system tester|/usr/ports/misc/dejagnu/pkg/DESCR|markm@FreeBSD.org|misc tk80||XFree86-3.3.5 expect-5.31 tcl-8.2.2 tk-8.2.2|
delay-1.3|/usr/ports/misc/delay|/usr/local|A delay program with feedback to the user|/usr/ports/misc/delay/pkg/DESCR|gmarco@giovannelli.it|misc|||
diction-0.8|/usr/ports/misc/diction|/usr/local|GNU diction and style|/usr/ports/misc/diction/pkg/DESCR|ports@freebsd.org|misc|gmake-3.78.1||http://www.fsf.org/software/diction/diction.html
display-1.1|/usr/ports/misc/display|/usr/local|Runs a specified command over and over|/usr/ports/misc/display/pkg/DESCR|ports@FreeBSD.org|misc|||
dotfile-2.2|/usr/ports/misc/dotfile|/usr/local|A GUI dotfile generator program to create .config files|/usr/ports/misc/dotfile/pkg/DESCR|oly@world.std.com|misc tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
estic-1.40|/usr/ports/misc/estic|/usr/local|Controller for ISDN TK-Anlage (PBX) made by Istec|/usr/ports/misc/estic/pkg/DESCR|jhs@FreeBSD.org|misc|XFree86-3.3.5 unzip-5.40|XFree86-3.3.5|
ewipe-1.1.0|/usr/ports/misc/ewipe|/usr/local|Tcl/tk-based presentation tool|/usr/ports/misc/ewipe/pkg/DESCR|itojun@itojun.org|misc tk42|||http://al.ei.tuat.ac.jp/~sekisita/ewipe/
ezload-0.3.1|/usr/ports/misc/ezload|/usr/local|Down-/uploader for AnchorChip's EZ-USB chip|/usr/ports/misc/ezload/pkg/DESCR|n_hibma@FreeBSD.ORG|misc|||
fd-1.03k|/usr/ports/misc/fd|/usr/local|A file and directory management tool|/usr/ports/misc/fd/pkg/DESCR|nobu@psrc.isac.co.jp|misc|||
fep-1.0|/usr/ports/misc/fep|/usr/local|A general purpose front end for command line editing|/usr/ports/misc/fep/pkg/DESCR|nobu@psrc.isac.co.jp|misc|||
figlet-2.2|/usr/ports/misc/figlet|/usr/local|SysV banner-like program prints strings in large fancy ASCII art|/usr/ports/misc/figlet/pkg/DESCR|obrien@FreeBSD.org|misc|||http://st-www.cs.uiuc.edu/users/chai/figlet.html
fortuneit-1.51|/usr/ports/misc/fortuneit|/usr/local|A very funny fortune file in Italian|/usr/ports/misc/fortuneit/pkg/DESCR|gmarco@giovannelli.it|misc|||http://www.pluto.linux.it/~zuse/fortune.it
freedialog-0.3|/usr/ports/misc/freedialog|/usr/local|An implementation of dialog(1) under a BSD-friendly license|/usr/ports/misc/freedialog/pkg/DESCR|howardjp@wam.umd.edu|misc|freelibiberty-0.1||
geekcode-1.5|/usr/ports/misc/geekcode|/usr/local|A Geek Code Generator|/usr/ports/misc/geekcode/pkg/DESCR|cpiazza@FreeBSD.org|misc|||http://seymour.napalm.net/geekcode.html
git-4.3.19|/usr/ports/misc/git|/usr/local|GNU Interactive Tools - a file system browser for UNIX systems|/usr/ports/misc/git/pkg/DESCR|jseger@FreeBSD.org|misc|||
gnomeusersguide-1.0.72|/usr/ports/misc/gnomeusersguide|/usr/X11R6|GNOME users guide|/usr/ports/misc/gnomeusersguide/pkg/DESCR|nakai@FreeBSD.org|misc gnome|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
gnomeutils-1.0.50|/usr/ports/misc/gnomeutils|/usr/X11R6|GNOME support utilities|/usr/ports/misc/gnomeutils/pkg/DESCR|nakai@FreeBSD.org|misc gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeobjc-1.0.40 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeobjc-1.0.40 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnuls-4.0|/usr/ports/misc/gnuls|/usr/local|GNU colorized `ls'|/usr/ports/misc/gnuls/pkg/DESCR|bmc@WillsCreek.COM|misc|||
gone-1.3.1|/usr/ports/misc/gone|/usr/local|A terminal locking utility with many improvements over lock(1)|/usr/ports/misc/gone/pkg/DESCR|marcus@miami.edu|misc|||
gplbp-0.91|/usr/ports/misc/gplbp|/usr/X11R6|Pilot Logbook application|/usr/ports/misc/gplbp/pkg/DESCR|jedgar@fxp.org|misc|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
grun-0.8.1|/usr/ports/misc/grun|/usr/X11R6|Gtk-launcher similar to the Windows(tm) "Run..." dialog|/usr/ports/misc/grun/pkg/DESCR|domi@saargate.de|misc|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.geocities.com/ResearchTriangle/Facility/1468/sg/grun.html
gtkfind-0.10|/usr/ports/misc/gtkfind|/usr/local|The program to use to have to remember all the options to find(1)|/usr/ports/misc/gtkfind/pkg/DESCR|billf@FreeBSD.org|misc|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtl-0.3.1|/usr/ports/misc/gtl|/usr/local|the graph template library that supports graphs and graph algorithm|/usr/ports/misc/gtl/pkg/DESCR|nakai@FreeBSD.org|misc|gcc-2.95.2||
gyvescm-0.0.10|/usr/ports/misc/gyvescm|/usr/local|Scheme library for the GYVE graphic editor|/usr/ports/misc/gyvescm/pkg/DESCR|nacai@iname.com|misc|guile-1.3.4 guileobjc-0.3.8||
iselect-1.2.0|/usr/ports/misc/iselect|/usr/local|Interactive Selection Tool|/usr/ports/misc/iselect/pkg/DESCR|rse@engelschall.com|misc|||http://www.engelschall.com/sw/iselect/
jargon-4.1.1|/usr/ports/misc/jargon|/usr/local|The famous jargon file in info file format|/usr/ports/misc/jargon/pkg/DESCR|s.moeding@ndh.net|misc|||
jive-1.1|/usr/ports/misc/jive|/usr/local|Filter that converts English text to Jive|/usr/ports/misc/jive/pkg/DESCR|obrien@FreeBSD.org|misc|||
kdeutils-1.1.2|/usr/ports/misc/kdeutils11|/usr/local|Utilities for the KDE integrated X11 desktop|/usr/ports/misc/kdeutils11/pkg/DESCR|se@freebsd.org|misc kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kdeutils-i18n-1.1.2|/usr/ports/misc/kdeutils11-i18n|/usr/local|Utilities for the KDE integrated X11 desktop|/usr/ports/misc/kdeutils11-i18n/pkg/DESCR|imura@kde.gr.jp|misc kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
kp-1.00|/usr/ports/misc/kp|/usr/X11R6|The Keyboard Practicer, touch-type training program|/usr/ports/misc/kp/pkg/DESCR|asami@FreeBSD.org|misc|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
kwatch-0.3|/usr/ports/misc/kwatch|/usr/local|KDE/Qt log file viewer|/usr/ports/misc/kwatch/pkg/DESCR|zerium@webindex.no|misc kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
less-340|/usr/ports/misc/less|/usr/local|A better pager utility|/usr/ports/misc/less/pkg/DESCR|ache@FreeBSD.org|misc|||
ile-2.0|/usr/ports/misc/lile|/usr/local|An Input Line Editor that wraps itself around programs|/usr/ports/misc/lile/pkg/DESCR|jmz@FreeBSD.org|misc|||
logsurfer-1.41|/usr/ports/misc/logsurfer|/usr/local|Processes logfiles and perform certain actions|/usr/ports/misc/logsurfer/pkg/DESCR|shanee@augusta.de|misc|||
lv-4.49.3|/usr/ports/misc/lv|/usr/local|Powerful Multilingual File Viewer|/usr/ports/misc/lv/pkg/DESCR|sumikawa@kame.net|misc|||http://www.ff.iij4u.or.jp/~nrt/lv/
magicpoint-1.05a|/usr/ports/misc/magicpoint|/usr/X11R6|An X11-based presentation tool|/usr/ports/misc/magicpoint/pkg/DESCR|itojun@itojun.org|misc|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3|http://www.mew.org/mgp/
i18n-man-1.1|/usr/ports/misc/man.el|/usr/local|Browse I18N capable UNIX manual pages with Mule, Emacs and XEmacs|/usr/ports/misc/man.el/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|misc elisp|||
mc-4.5.40|/usr/ports/misc/mc|/usr/local|Midnight Commander, a free Norton Commander Clone|/usr/ports/misc/mc/pkg/DESCR|reg@shale.csir.co.za|misc|gettext-0.10.35 glib-1.2.6 gmake-3.78.1|gettext-0.10.35 glib-1.2.6|
mgp-mode.el-1.22|/usr/ports/misc/mgp-mode.el|/usr/local|A mode of Emacs for editing MagicPoint files|/usr/ports/misc/mgp-mode.el/pkg/DESCR|taoka@FreeBSD.org|misc elisp||XFree86-3.3.5 freetype-1.3 magicpoint-1.05a|
mmv-1.01b|/usr/ports/misc/mmv|/usr/local|Move/copy/append/link multiple files with sophisticated wildcard matching|/usr/ports/misc/mmv/pkg/DESCR|me@FreeBSD.org|misc|||
most-4.9.0|/usr/ports/misc/most|/usr/local|A pager (like less) which has support for windows and binary files|/usr/ports/misc/most/pkg/DESCR|rhwang@bigpanda.com|misc|libslang-1.2.2|libslang-1.2.2|http://space.mit.edu/%7Edavis/most.html
mshell-1.0|/usr/ports/misc/mshell|/usr/local|A Unix menuing shell|/usr/ports/misc/mshell/pkg/DESCR|jmz@FreeBSD.org|misc|||
numchar-1.0|/usr/ports/misc/numchar|/usr/local|Converts phone numbers between digits and characters|/usr/ports/misc/numchar/pkg/DESCR|adam@whizkidtech.net|misc|||
nwrite-1.9.2|/usr/ports/misc/nwrite|/usr/local|Improved, recipient configureable replacement for /usr/bin/write|/usr/ports/misc/nwrite/pkg/DESCR|daveh@csua.berkeley.edu|misc|||
p5-Array-PrintCols-2.1|/usr/ports/misc/p5-Array-PrintCols|/usr/local|Perl5 module to print arrays of elements in sorted columns|/usr/ports/misc/p5-Array-PrintCols/pkg/DESCR|jfitz@FreeBSD.org|misc perl5|||
p5-Business-CreditCard-0.21|/usr/ports/misc/p5-Business-CreditCard|/usr/local|Perl5 module to validate/generate credit card checksums/names|/usr/ports/misc/p5-Business-CreditCard/pkg/DESCR|jfitz@FreeBSD.org|misc perl5|||
p5-Locale-Codes-1.00|/usr/ports/misc/p5-Locale-Codes|/usr/local|Perl5 module providing access to ISO3166 and ISO639 Country Codes|/usr/ports/misc/p5-Locale-Codes/pkg/DESCR|jfitz@FreeBSD.org|misc perl5|||
pdmenu-1.2.50|/usr/ports/misc/pdmenu|/usr/local|A simple console menu program|/usr/ports/misc/pdmenu/pkg/DESCR|nbm@rucus.ru.ac.za|misc|gmake-3.78.1 libslang-1.2.2|libslang-1.2.2|
peq-0.7.1|/usr/ports/misc/peq|/usr/local|Fortune like program|/usr/ports/misc/peq/pkg/DESCR|gvg@uunet.co.za|games|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
pinfo-0.5.9|/usr/ports/misc/pinfo|/usr/local|Ncurses based, lynx style info documentation browser|/usr/ports/misc/pinfo/pkg/DESCR|ports@FreeBSD.org|misc|gettext-0.10.35 ncurses-4.2|gettext-0.10.35 ncurses-4.2|http://zeus.polsl.gliwice.pl/~pborys/
proxyper308-freebsd3-elf-x86|/usr/ports/misc/proxyper|/usr/local|The official distributed.net v2 personal proxy|/usr/ports/misc/proxyper/pkg/DESCR|globalpanic@gmx.net|misc|||http://www.distributed.net/proxies/
qclock-1.0|/usr/ports/misc/qclock|/usr/local|A text based clock that tells you what time it is|/usr/ports/misc/qclock/pkg/DESCR|brett@peloton.runet.edu|misc|||
quotes-1.4.0|/usr/ports/misc/quotes|/usr/local|Script to fetch headlines and financial news|/usr/ports/misc/quotes/pkg/DESCR|dima@Chg.RU|misc|||http://www.iae.nl/users/grimaldo/OpenSoft/quotes.shtml
rc5des-2.7106.444|/usr/ports/misc/rc5des|/usr/local|Distributed.net rc5des brute force client|/usr/ports/misc/rc5des/pkg/DESCR|dbaker@distributed.net|misc|||http://www.distributed.net/
rfc-2.0|/usr/ports/misc/rfc|/usr/local|Perl script to search for RFC's|/usr/ports/misc/rfc/pkg/DESCR|jedgar@fxp.org|misc||lynx-2.8.2rel.1|http://www.dewn.com/rfc/
rpm-2.5.6|/usr/ports/misc/rpm|/usr/local|The Red Hat Package Manager|/usr/ports/misc/rpm/pkg/DESCR|ports@FreeBSD.org|misc|autoconf-2.13 gdbm-1.8.0 gmake-3.78.1 m4-1.4||http://www.rpm.org/
rpm2cpio-1.0|/usr/ports/misc/rpm2cpio|/usr/local|Convert .rpm files for extraction with /usr/bin/cpio, needs just perl|/usr/ports/misc/rpm2cpio/pkg/DESCR|nox@jelal.kn-bremen.de|misc|||
rtfm-0.2|/usr/ports/misc/rtfm|/usr/local|A FreeBSD documentation search mechanism|/usr/ports/misc/rtfm/pkg/DESCR|chris@FreeBSD.org|misc|||
screen-3.9.5|/usr/ports/misc/screen|/usr/local|A multi-screen window manager|/usr/ports/misc/screen/pkg/DESCR|ache@FreeBSD.org|misc|||
scriptkit-0.1.6|/usr/ports/misc/scriptkit|/usr/local|Guile script kit for GYVE port|/usr/ports/misc/scriptkit/pkg/DESCR|nacai@iname.com|misc|guile-1.3.4 guileobjc-0.3.8||
seizedesktop-0.1a|/usr/ports/misc/seizedesktop|/usr/X11R6|A customizer of disktop screen environment|/usr/ports/misc/seizedesktop/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|x11-toolkits windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
sls-1.00|/usr/ports/misc/sls|/usr/local|List information about file(s) and directories|/usr/ports/misc/sls/pkg/DESCR|sec@42.org|misc|||
sma-0.9.13|/usr/ports/misc/sma|/usr/local|Scour Media Agent client for UNIX|/usr/ports/misc/sma/pkg/DESCR|dburr@FreeBSD.org|misc||samba-2.0.6|http://www.scour.net/
splitvt-1.6.3|/usr/ports/misc/splitvt|/usr/local|Run two shells in a split window/terminal|/usr/ports/misc/splitvt/pkg/DESCR|obrien@FreeBSD.org|misc|||
sshbuddy-1.02|/usr/ports/misc/sshbuddy|/usr/local|Simple and small GUI utility to manage ssh sessions|/usr/ports/misc/sshbuddy/pkg/DESCR|dan@freebsd.org|misc||XFree86-3.3.5 expect-5.31 tcl-8.2.2 tk-8.2.2|
tcb-1.4a|/usr/ports/misc/tcb|/usr/local|File viewer for terminal|/usr/ports/misc/tcb/pkg/DESCR|andy@icc.surw.chel.su|misc|gmake-3.78.1||http://www.osk.3web.ne.jp/~moody/tcbj/
team-3.1|/usr/ports/misc/team|/usr/local|Portable multi-buffered tape streaming utility|/usr/ports/misc/team/pkg/DESCR|joerg@FreeBSD.org|misc|||
tet-3.2e|/usr/ports/misc/tet|/usr/local|An test execution framework from the Open Group|/usr/ports/misc/tet/pkg/DESCR|jkoshy@freebsd.org|misc|||http://tetworks.opengroup.org/datasheet.html
tkcron-2.12|/usr/ports/misc/tkcron|/usr/local|A frontend to crontab|/usr/ports/misc/tkcron/pkg/DESCR|sander@haldjas.folklore.ee|misc tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tkinfo-2.4|/usr/ports/misc/tkinfo|/usr/local|A tk script to read GNU "info" files and display them|/usr/ports/misc/tkinfo/pkg/DESCR|tg@FreeBSD.org|misc tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tkman-2.1b2|/usr/ports/misc/tkman|/usr/local|A Tcl/Tk based manual browser|/usr/ports/misc/tkman/pkg/DESCR|tg@freebsd.org|misc tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 glimpse-4.1 rman-3.0.8 tcl-8.2.2 tk-8.2.2|
tkRunIt-0.94.1|/usr/ports/misc/tkrunit|/usr/local|GUI app launcher with completion and history|/usr/ports/misc/tkrunit/pkg/DESCR|steve@farrell.org|misc||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
uk-phone-1.0|/usr/ports/misc/uk-phone|/usr/local|United Kingdom phone codes|/usr/ports/misc/uk-phone/pkg/DESCR|brian@FreeBSD.org|misc|||
uk-postcodes-1.0|/usr/ports/misc/uk-postcodes|/usr/local|United Kingdom post codes|/usr/ports/misc/uk-postcodes/pkg/DESCR|brian@FreeBSD.org|misc|||
unclutter-8|/usr/ports/misc/unclutter|/usr/X11R6|Remove idle cursor image from screen|/usr/ports/misc/unclutter/pkg/DESCR|shanee@augusta.de|misc|XFree86-3.3.5|XFree86-3.3.5|
upclient-3.04|/usr/ports/misc/upclient|/usr/local|The Server Uptimes project client|/usr/ports/misc/upclient/pkg/DESCR|kbyanc@posi.net|misc|||http://uptime.hexon.cx/
us-zipcodes-1.0|/usr/ports/misc/us-zipcodes|/usr/local|USA postal code|/usr/ports/misc/us-zipcodes/pkg/DESCR|ports@FreeBSD.org|misc|||
vbidecode-1.1.3|/usr/ports/misc/vbidecode|/usr/local|Get Videotext/Teletext (.vtx) and other VBI data from TV channels|/usr/ports/misc/vbidecode/pkg/DESCR|roger@freebsd.org|misc|||
vera-1.5|/usr/ports/misc/vera|/usr/local|Virtual Entity of Relevant Acronyms|/usr/ports/misc/vera/pkg/DESCR|dima@Chg.RU|misc|||
videotext-0.6.971023|/usr/ports/misc/videotext|/usr/X11R6|X11/Xview TV Videotext/Teletext page viewer (.vtx files)|/usr/ports/misc/videotext/pkg/DESCR|roger@freebsd.org|misc|XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 png-1.0.5 xview-3.2.1|XFree86-3.3.5 giflib-4.1.0 png-1.0.5 xview-3.2.1|http://home.pages.de/~videotext/
viz-1.1.1|/usr/ports/misc/viz|/usr/local|Convert invisible (binary) characters to a visible form|/usr/ports/misc/viz/pkg/DESCR|bjn@visi.com|misc|||
wmcp-1.2.8|/usr/ports/misc/wmcp|/usr/X11R6|A dockable pager for WindowMaker|/usr/ports/misc/wmcp/pkg/DESCR|jim@FreeBSD.org|misc windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.linuxbox.com/~bac/
wmmand-1.0|/usr/ports/misc/wmmand|/usr/X11R6|A DockApp mandelbrot explorer|/usr/ports/misc/wmmand/pkg/DESCR|cpiazza@FreeBSD.org|misc windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmstock-0.06|/usr/ports/misc/wmstock|/usr/X11R6|Cool WindowMaker Dockapp that shows stock ticker(s)|/usr/ports/misc/wmstock/pkg/DESCR|andrews@technologist.com|misc windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://mattfischer.com/wmstock/
wmWeather-1.31|/usr/ports/misc/wmweather|/usr/X11R6|A WMaker dockapp which displays meteorological data for your city|/usr/ports/misc/wmweather/pkg/DESCR|kris@FreeBSD.org|misc windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.nws.noaa.gov/oso/siteloc.shtml
xd-2.3|/usr/ports/misc/xd|/usr/local|Yet another dump utility|/usr/ports/misc/xd/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|misc|||
xdelta-1.0.2|/usr/ports/misc/xdelta|/usr/local|A diff/patch utility for binary files|/usr/ports/misc/xdelta/pkg/DESCR|jmacd@FreeBSD.org|misc|gdbm-1.8.0 glib-1.2.6 libtool-1.3.3|glib-1.2.6|
xenmenu-0.8b|/usr/ports/misc/xenmenu|/usr/local|Highly customizable, text-based menu generator|/usr/ports/misc/xenmenu/pkg/DESCR|andy@icc.surw.chel.su|misc|||http://www.cs.purdue.edu/homes/steinkf/software/xenmenu
xgas-1.0|/usr/ports/misc/xgas|/usr/X11R6|The animated simulation of an ideal gas|/usr/ports/misc/xgas/pkg/DESCR|nacai@iname.com|misc|XFree86-3.3.5|XFree86-3.3.5|
xless-1.7|/usr/ports/misc/xless|/usr/X11R6|An X11 viewer for text files. Useful as an add-on tool for other apps|/usr/ports/misc/xless/pkg/DESCR|conrads@home.com|misc|XFree86-3.3.5|XFree86-3.3.5|
xpns-1.0|/usr/ports/misc/xpns|/usr/X11R6|Petri-Net Simulator for Xwindows|/usr/ports/misc/xpns/pkg/DESCR|giffunip@asme.org|misc cad|XFree86-3.3.5|XFree86-3.3.5|http://www.ee.uwa.edu.au/~braunl/pns/
xquote-1.1|/usr/ports/misc/xquote|/usr/X11R6|A quote retrieval tool for X|/usr/ports/misc/xquote/pkg/DESCR|mph@freebsd.org|misc|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtail-0.1|/usr/ports/misc/xtail|/usr/local|Watches the growth of files or directories|/usr/ports/misc/xtail/pkg/DESCR|gmarco@giovannelli.it|misc|||
xtar-1.4|/usr/ports/misc/xtar|/usr/X11R6|View and manipulate contents of a tar file|/usr/ports/misc/xtar/pkg/DESCR|shanee@augusta.de|misc|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ytree-1.65|/usr/ports/misc/ytree|/usr/local|DOS-XTREE(tm) look-a-like file manager|/usr/ports/misc/ytree/pkg/DESCR|andy@icc.surw.chel.su|misc|||http://www.han.de/~werner/ytree.html
SSLtelnet-0.13|/usr/ports/net/SSLtelnet|/usr/local|SSL enhanced telnet/telnetd|/usr/ports/net/SSLtelnet/pkg/DESCR|issei@jp.FreeBSD.org|net security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
archie-1.4.1|/usr/ports/net/archie|/usr/local|Prospero client for the archie service|/usr/ports/net/archie/pkg/DESCR|torstenb@FreeBSD.org|net|||
archie.el-3.0.2|/usr/ports/net/archie.el|/usr/local|A mock-interface to Archie for Emacs|/usr/ports/net/archie.el/pkg/DESCR|taoka@FreeBSD.org|net elisp||archie-1.4.1|
argus-1.7.b.1e|/usr/ports/net/argus|/usr/local|A generic IP network transaction auditing tool|/usr/ports/net/argus/pkg/DESCR|jhanna@home.com|net security|||
arla-0.28|/usr/ports/net/arla|/usr/local|A free AFS client implementation|/usr/ports/net/arla/pkg/DESCR|thepish@freebsd.org|net|||http://www.stacken.kth.se/projekt/arla/
arpwatch-2.1a4|/usr/ports/net/arpwatch|/usr/local|Monitor arp & rarp requests|/usr/ports/net/arpwatch/pkg/DESCR|brian@Awfulhak.org|net|||
ascend-radius-980618|/usr/ports/net/ascend-radius|/usr/local|The Ascend modified Radius Daemon|/usr/ports/net/ascend-radius/pkg/DESCR|jfitz@FreeBSD.org|net|||
bb-1.2a|/usr/ports/net/bb|/usr/local|Monitoring and Notifocation for Systems and Networks|/usr/ports/net/bb/pkg/DESCR|andreas@FreeBSD.org|net|||http://maclawran.ca/~sean/bb-dnld/index.html
bind-8.2.2.p5|/usr/ports/net/bind8|/usr/local|The Berkeley Internet Name Daemon, an implementation of DNS|/usr/ports/net/bind8/pkg/DESCR|jseger@FreeBSD.org|net|||
bing-1.0.4|/usr/ports/net/bing|/usr/local|A point-to-point bandwith measurement tool|/usr/ports/net/bing/pkg/DESCR|jseger@freebsd.org|net|||
binkd-0.9.2|/usr/ports/net/binkd|/usr/local|Fidonet TCP/IP mailer|/usr/ports/net/binkd/pkg/DESCR|andy@icc.surw.chel.su|net|unzip-5.40||http://www.corbina.net/~maloff/binkd/
boclient-1.21|/usr/ports/net/boclient|/usr/local|Client program for the Back Orifice Windows program|/usr/ports/net/boclient/pkg/DESCR|darius@dons.net.au|net security|||http://www.cultdeadcow.com/
bounce-1.0|/usr/ports/net/bounce|/usr/local|Bounce tcp connections to another machine/port|/usr/ports/net/bounce/pkg/DESCR|obrien@FreeBSD.org|net security|||
bpft-2.0|/usr/ports/net/bpft|/usr/local|The BPF Traffic Collector|/usr/ports/net/bpft/pkg/DESCR|oddbjorn@tricknology.org|net|||
brouted-1.2b|/usr/ports/net/brouted|/usr/local|Dynamic routing daemon acting on source IP of TCP connection|/usr/ports/net/brouted/pkg/DESCR|swjeong@kitel.co.kr|net|||
cap-6.0.198|/usr/ports/net/cap|/usr/local|Columbia AppleTalk Package for UNIX|/usr/ports/net/cap/pkg/DESCR|ports@FreeBSD.org|net|||
choparp-971007|/usr/ports/net/choparp|/usr/local|Simple proxy arp daemon|/usr/ports/net/choparp/pkg/DESCR|itojun@itojun.org|net|||
ciscoconf-1.0|/usr/ports/net/ciscoconf|/usr/local|Fetches configuration from Cisco routers and stores them under RCS|/usr/ports/net/ciscoconf/pkg/DESCR|jabley@clear.co.nz|net|XFree86-3.3.5||http://www.patho.gen.nz/~jabley/
citrix_ica-3.0.15|/usr/ports/net/citrix_ica|/usr/local|Citrix(R) client for the Microsoft Windows Terminal Server|/usr/ports/net/citrix_ica/pkg/DESCR|msmith@FreeBSD.org|comms||linux_base-5.2 rpm-2.5.6|http://www.citrix.com/products/metaframe.asp
clog-1.6|/usr/ports/net/clog|/usr/local|Tcp connection logger daemon|/usr/ports/net/clog/pkg/DESCR|obrien@FreeBSD.org|net security|||
clusterit-1.2|/usr/ports/net/clusterit|/usr/local|A collection of clustering tools|/usr/ports/net/clusterit/pkg/DESCR|dima@chg.ru|net devel|||http://www.inficad.com/~garbled/clusterit.html
cnet-1.4p4|/usr/ports/net/cnet|/usr/local|A networking simulator|/usr/ports/net/cnet/pkg/DESCR|ports@FreeBSD.org|net|XFree86-3.3.5 xpm-3.4k xview-3.2.1|XFree86-3.3.5 xpm-3.4k xview-3.2.1|
coda-client-5.3.2|/usr/ports/net/coda5_client|/usr/local|Client programs for a replicated high-performance network file system|/usr/ports/net/coda5_client/pkg/DESCR|rvb@cs.cmu.edu|net|gdbm-1.8.0 gmake-3.78.1||http://www.coda.cs.cmu.edu/
coda-doc-5.2.0.1|/usr/ports/net/coda5_doc|/usr/local|An experimental, replicated, high-performance network file system|/usr/ports/net/coda5_doc/pkg/DESCR|ijliao@csie.nctu.edu.tw|net|||http://www.coda.cs.cmu.edu/
coda-server-5.3.2|/usr/ports/net/coda5_server|/usr/local|Server programs for a replicated high-performance network file system|/usr/ports/net/coda5_server/pkg/DESCR|rvb@cs.cmu.edu|net|gdbm-1.8.0 gmake-3.78.1||http://www.coda.cs.cmu.edu
coda-client-4.6.6.1|/usr/ports/net/coda_client|/usr/local|An experimental, replicated, high-performance network file system|/usr/ports/net/coda_client/pkg/DESCR|rvb@cs.cmu.edu|net|gdbm-1.8.0 gmake-3.78.1||http://www.coda.cs.cmu.edu/
coda-doc-4.6.5.3|/usr/ports/net/coda_doc|/usr/local|An experimental, replicated, high-performance network file system|/usr/ports/net/coda_doc/pkg/DESCR|rvb@cs.cmu.edu|net|||http://www.coda.cs.cmu.edu/
coda-intro-4.6.6.1|/usr/ports/net/coda_intro|/usr/local|An experimental, replicated, high-performance network file system|/usr/ports/net/coda_intro/pkg/DESCR|rvb@cs.cmu.edu|net|||http://www.coda.cs.cmu.edu/
coda-server-4.6.6.1|/usr/ports/net/coda_server|/usr/local|An experimental, replicated, high-performance network file system|/usr/ports/net/coda_server/pkg/DESCR|rvb@cs.cmu.edu|net|gdbm-1.8.0 gmake-3.78.1||http://www.coda.cs.cmu.edu/
cvsup-16.1|/usr/ports/net/cvsup|/usr/local|A general network file distribution system optimized for CVS repositories|/usr/ports/net/cvsup/pkg/DESCR|jdp@FreeBSD.org|devel net|XFree86-3.3.5 modula-3-3.6 modula-3-lib-3.6|XFree86-3.3.5 modula-3-lib-3.6|http://www.polstra.com/projects/freeware/CVSup/
cvsup-bin-16.1|/usr/ports/net/cvsup-bin|/usr/local|A general network file distribution system optimized for CVS repositories|/usr/ports/net/cvsup-bin/pkg/DESCR|jdp@freebsd.org|devel net|||http://www.polstra.com/projects/freeware/CVSup/
cvsup-mirror-1.0|/usr/ports/net/cvsup-mirror|/usr/local|A kit for easily setting up a FreeBSD mirror site using CVSup|/usr/ports/net/cvsup-mirror/pkg/DESCR|jdp@FreeBSD.org|net||XFree86-3.3.5 cvsup-16.1 modula-3-lib-3.6|http://www.polstra.com/projects/freeware/CVSup/
cvsupd-bin-16.1|/usr/ports/net/cvsupd-bin|/usr/local|A general network file distribution system optimized for CVS repositories|/usr/ports/net/cvsupd-bin/pkg/DESCR|jdp@freebsd.org|devel net|||http://www.polstra.com/projects/freeware/CVSup/
dante-1.1.0|/usr/ports/net/dante|/usr/local|A circuit-level firewall/proxy|/usr/ports/net/dante/pkg/DESCR|anders@fix.no|security net|libtool-1.3.3||http://www.inet.no/dante/
ddup-2.0.4|/usr/ports/net/ddup|/usr/local|A DynDNS client for FreeBSD|/usr/ports/net/ddup/pkg/DESCR|cjm2@altavista.net|net|||http://www.gandy.dyndns.org/~thomas/ddup.shtml
delegate-5.9.4|/usr/ports/net/delegate|/usr/local|General purpose TCP/IP proxy system|/usr/ports/net/delegate/pkg/DESCR|max@FreeBSD.org|net www japanese|||http://wall.etl.go.jp/delegate/
dgd-1.1p6|/usr/ports/net/dgd|/usr/local|Dworkin's Generic Driver (network server)|/usr/ports/net/dgd/pkg/DESCR|adam@veda.is|net lang|||
dgd-lpmud-2.4.5|/usr/ports/net/dgd-lpmud|/usr/local|LPmud mudlib, for use with DGD|/usr/ports/net/dgd-lpmud/pkg/DESCR|adam@veda.is|net devel games||dgd-1.1p6|
dgd-net-1.1p6|/usr/ports/net/dgd-net|/usr/local|Dworkin's Generic Driver (network server) + extra networking support + regexps|/usr/ports/net/dgd-net/pkg/DESCR|adam@veda.is|net lang|||
dhid-3.0|/usr/ports/net/dhid|/usr/local|dhis client for updating dynamic DNS entries in dhisd DNS tables|/usr/ports/net/dhid/pkg/DESCR|oryx@ungulate.net|net|||
bsddip-1.02|/usr/ports/net/dip|/usr/local|Dialup IP program|/usr/ports/net/dip/pkg/DESCR|joerg@FreeBSD.org|net|||
dlint-1.3.3|/usr/ports/net/dlint|/usr/local|Lint for DNS zones (Domain Name Server zone verification utility)|/usr/ports/net/dlint/pkg/DESCR|obrien@FreeBSD.org|net|||
dnsutl-1.5|/usr/ports/net/dnsutl|/usr/local|Programs to make using DNS easier|/usr/ports/net/dnsutl/pkg/DESCR|Karl.Dietz@triplan.com|net|||
dnswalk-2.0.2|/usr/ports/net/dnswalk|/usr/local|DNS debugger - requests a zone transfer and analyzes the result|/usr/ports/net/dnswalk/pkg/DESCR|mph@freebsd.org|net||p5-Net-DNS-0.12|http://www.cis.ohio-state.edu/~barr/dnswalk/
doc-2.1.4|/usr/ports/net/doc|/usr/local|Diagnose unhealthy DNS domains|/usr/ports/net/doc/pkg/DESCR|sanpei@jp.FreeBSD.org|net|||
domtools-1.4.0|/usr/ports/net/domtools|/usr/local|Set of utilities for extracting information from DNS records|/usr/ports/net/domtools/pkg/DESCR|veers@disturbed.net|net|||
echoping-2.2.0|/usr/ports/net/echoping|/usr/local|A ping-like program that uses tcp and/or http|/usr/ports/net/echoping/pkg/DESCR|peter@FreeBSD.org|net|||
elsa-1.0b-017|/usr/ports/net/elsa|/usr/local|Streaming Quicktime server for FreeBSD|/usr/ports/net/elsa/pkg/DESCR|jedgar@fxp.org|net|||http://www.entera.com
etherboot-4.2|/usr/ports/net/etherboot|/usr/local|Netboot FreeBSD a.out/ELF kernels|/usr/ports/net/etherboot/pkg/DESCR|ambrisko@whistle.com|net|gmake-3.78.1 nasm-0.98||
ethereal-0.7.8|/usr/ports/net/ethereal|/usr/X11R6|A network analyzer that lets you capture|/usr/ports/net/ethereal/pkg/DESCR|billf@FreeBSD.org|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://ethereal.zing.org
fping-1.20|/usr/ports/net/fping|/usr/local|Quickly ping N hosts w/o flooding the network|/usr/ports/net/fping/pkg/DESCR|obrien@FreeBSD.org|net|||
freewais-sf-2.2.12|/usr/ports/net/freewais-sf|/usr/local|An enhanced Wide Area Information Server|/usr/ports/net/freewais-sf/pkg/DESCR|ports@FreeBSD.org|net databases|||http://ls6-www.informatik.uni-dortmund.de/ir/projects/freeWAIS-sf/
fspclient-0.0.h|/usr/ports/net/fspclient|/usr/local|A client for the fsp service|/usr/ports/net/fspclient/pkg/DESCR|ache@FreeBSD.org|net|||
gaim-0.9.10|/usr/ports/net/gaim|/usr/X11R6|Gtk+ open-source 'clone' of AOL's Instant Messenger client|/usr/ports/net/gaim/pkg/DESCR|jim@FreeBSD.org|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.marko.net/gaim/
gated-3.5.11|/usr/ports/net/gated|/usr/local|Routing protocol daemon|/usr/ports/net/gated/pkg/DESCR|peter@FreeBSD.org|net|||
Generic-NQS-3.50.4|/usr/ports/net/generic-nqs|/usr/local|Generic Network Queuing System|/usr/ports/net/generic-nqs/pkg/DESCR|tonym@angis.org.au|net|||
ggsd-0.1|/usr/ports/net/ggsd|/usr/local|Start a network server to execute scripts|/usr/ports/net/ggsd/pkg/DESCR|dima@chg.ru|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://devplanet.fastethernet.net/files.html
gicq-0.33|/usr/ports/net/gicq|/usr/X11R6|GTK based ICQ program|/usr/ports/net/gicq/pkg/DESCR|flathill@FreeBSD.org|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libicq-0.33|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libicq-0.33|http://www.korsoft.com/gicq/
gnomeicu-0.65|/usr/ports/net/gnome-icu|/usr/X11R6|GNOME ICQ client|/usr/ports/net/gnome-icu/pkg/DESCR|nectar@FreeBSD.org|net gnome|ORBit-0.5.0 XFree86-3.3.5 bzip2-0.9.5d esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://gnomeicu.gdev.net/
gnome-vnc-0.1|/usr/ports/net/gnome-vnc|/usr/X11R6|Gnome-VNC is a GNOME/gtk viewer for VNC servers|/usr/ports/net/gnome-vnc/pkg/DESCR|domi@saargate.de|net|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnomenetwork-1.0.2|/usr/ports/net/gnomenetwork|/usr/X11R6|Network applications for the GNOME desktop|/usr/ports/net/gnomenetwork/pkg/DESCR|reg@shale.csir.co.za|net gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gnomeobjc-1.0.40 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeobjc-1.0.40 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnu-finger-1.37|/usr/ports/net/gnu-finger|/usr/local|GNU version of finger|/usr/ports/net/gnu-finger/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|net|||
gopher-2.3|/usr/ports/net/gopher|/usr/local|Client and server for access to a distributed document service|/usr/ports/net/gopher/pkg/DESCR|ports@FreeBSD.org|net|freeWAIS-0.5||
gtic-1.3b|/usr/ports/net/gtic|/usr/local|The GNU file forwarder (FSC-0087) for fidonet-like networks|/usr/ports/net/gtic/pkg/DESCR|dsh@vlink.ru|net|||
gtksamba-0.3.2pl1|/usr/ports/net/gtksamba|/usr/X11R6|Samba configuration tool for X Window System|/usr/ports/net/gtksamba/pkg/DESCR|andy@icc.surw.chel.su|net|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.open-systems.com/gtksamba.html
gtkyahoo-0.16|/usr/ports/net/gtkyahoo|/usr/X11R6|Yahoo Messenger Client using GTK|/usr/ports/net/gtkyahoo/pkg/DESCR|dannyman@dannyland.org|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.unixtools.org/gtkyahoo/
h2n-1.29|/usr/ports/net/h2n|/usr/local|Translate host table to name server file format|/usr/ports/net/h2n/pkg/DESCR|sada@FreeBSD.org|net|||
hesiod-3.0.2|/usr/ports/net/hesiod|/usr/local|A directory service built on DNS and BIND|/usr/ports/net/hesiod/pkg/DESCR|nectar@FreeBSD.org|net|||
icb-5.0.9|/usr/ports/net/icb|/usr/local|Internet CB - a mostly-defunct chat client|/usr/ports/net/icb/pkg/DESCR|obrien@FreeBSD.org|net|||
icmpinfo-1.11|/usr/ports/net/icmpinfo|/usr/local|Looks at the icmp messages received by the host|/usr/ports/net/icmpinfo/pkg/DESCR|obrien@NUXI.com|net sysutils|||
icmpquery-1.0.3|/usr/ports/net/icmpquery|/usr/local|Small utility for finding out time & netmask through ICMP|/usr/ports/net/icmpquery/pkg/DESCR|dom@myrddin.demon.co.uk|net|||
icqlib-0.1.3|/usr/ports/net/icqlib|/usr/local|Icqlib (not libicq!), used by kicq|/usr/ports/net/icqlib/pkg/DESCR|paxvel@iname.com|net|||http://www.cn.ua/~denis/kde/icqlib.html
icqnix-b1|/usr/ports/net/icqnix|/usr/local|ICQ client for the X Window System for UNIX based PCs|/usr/ports/net/icqnix/pkg/DESCR|yinjieh@csie.nctu.edu.tw|net|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 esound-0.2.16 libaudiofile-0.1.9 qt-1.42|http://icqnix.linuxbox.com/
iplog-2.0-1017|/usr/ports/net/iplog|/usr/local|TCP/IP traffic logging tool|/usr/ports/net/iplog/pkg/DESCR|dr@domix.de|security|gmake-3.78.1||
ipw-3.3a|/usr/ports/net/ipw|/usr/local|A "whois" replacement that automatically queries several databases|/usr/ports/net/ipw/pkg/DESCR|mph@freebsd.org|net|||http://mjhb.marina-del-rey.ca.us/ipw/
isc-dhcp-2.0|/usr/ports/net/isc-dhcp2|/usr/local|ISC Dynamic Host Configuration Protocol client and server code|/usr/ports/net/isc-dhcp2/pkg/DESCR|jseger@FreeBSD.org|net|||
ivs-3.5|/usr/ports/net/ivs|/usr/local|INRIA Videoconference Software|/usr/ports/net/ivs/pkg/DESCR|jseger@FreeBSD.org|net|XFree86-3.3.5|XFree86-3.3.5|
kdenetwork-1.1.2|/usr/ports/net/kdenetwork11|/usr/local|Network modules for the KDE integrated X11 desktop|/usr/ports/net/kdenetwork11/pkg/DESCR|se@freebsd.org|net news kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d gdbm-1.8.0 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 kdesupport-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 uulib-0.5.13|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 kdesupport-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 uulib-0.5.13|
kdenetwork-i18n-1.1.2|/usr/ports/net/kdenetwork11-i18n|/usr/local|Network modules for the KDE integrated X11 desktop|/usr/ports/net/kdenetwork11-i18n/pkg/DESCR|imura@kde.gr.jp|net news kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 gdbm-1.8.0 gettext-0.10.35 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 uulib-0.5.13|Mesa-3.0 XFree86-3.3.5 gdbm-1.8.0 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 uulib-0.5.13 xpm-3.4k|
ktelnet-0.61|/usr/ports/net/kdetelnet|/usr/local|A Frontend for telnet, rlogin, ssh in K Desktop Environment|/usr/ports/net/kdetelnet/pkg/DESCR|hanspb@persbraten.vgs.no|net kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kicq-0.3.0|/usr/ports/net/kicq|/usr/local|KDE/Qt based ICQ clone|/usr/ports/net/kicq/pkg/DESCR|paxvel@iname.com|net kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 icqlib-0.1.3 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 icqlib-0.1.3 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.cn.ua/~denis/kde/kicq.html
ksamba-0.3.3|/usr/ports/net/ksamba|/usr/local|KDE/Q program to setup/configure samba|/usr/ports/net/ksamba/pkg/DESCR|hanspb@persbraten.vgs.no|kde net|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
ldap-3.3|/usr/ports/net/ldap|/usr/local|An implementation of the Lightweight Directory Access Protocol|/usr/ports/net/ldap/pkg/DESCR|lukin@okbmei.msk.su|net|||
ldapsdk-1998.12.31|/usr/ports/net/ldapsdk|/usr/local|Mozilla LDAP sdk|/usr/ports/net/ldapsdk/pkg/DESCR|paul@FreeBSD.org|net|gmake-3.78.1||
libicq-0.33|/usr/ports/net/libicq|/usr/local|Library to add ICQ communication support to your software|/usr/ports/net/libicq/pkg/DESCR|flathill@FreeBSD.org|net|glib-1.2.6 libtool-1.3.3|glib-1.2.6|
libnet-0.99g|/usr/ports/net/libnet|/usr/local|A C library for creating IP packets|/usr/ports/net/libnet/pkg/DESCR|shipley@dis.org|net|||
libsocket++-1.10|/usr/ports/net/libsocket++|/usr/local|A C++ wrapper library to the sockets|/usr/ports/net/libsocket++/pkg/DESCR|narvi@haldjas.folklore.ee|net|||
libunp-1.0|/usr/ports/net/libunp|/usr/local|The networking library used in UNIX Network Programming Volume 1 2e|/usr/ports/net/libunp/pkg/DESCR|james@targetnet.com|net|gmake-3.78.1||
libunpipc-1.0|/usr/ports/net/libunpipc|/usr/local|The networking library used in UNIX Network Programming Volume 2 2e|/usr/ports/net/libunpipc/pkg/DESCR|james@targetnet.com|net|gmake-3.78.1||
licq-0.61|/usr/ports/net/licq|/usr/local|X11 and QT-based ICQ-compatible program|/usr/ports/net/licq/pkg/DESCR|green@FreeBSD.org|net|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
macipgw-1.0|/usr/ports/net/macipgw|/usr/local|MacIP Gateway to allow IP-access from AppleTalk-only networks|/usr/ports/net/macipgw/pkg/DESCR|stb@freebsd.org|net|netatalk-1.4b2|netatalk-1.4b2|
mars_nwe-0.99b17|/usr/ports/net/mars_nwe|/usr/local|Netware server emulator for Un*x systems|/usr/ports/net/mars_nwe/pkg/DESCR|bp@FreeBSD.org|net|||http://www.compu-art.de/mars_nwe/
micq-0.4.3|/usr/ports/net/micq|/usr/local|Text-based ICQ implementation|/usr/ports/net/micq/pkg/DESCR|mph@freebsd.org|net|||
mopd-2.5.3|/usr/ports/net/mopd|/usr/local|MOP Loader Daemon for netbooting DEC machines|/usr/ports/net/mopd/pkg/DESCR|obrien@FreeBSD.org|net|||
mpd-2.0b2|/usr/ports/net/mpd|/usr/local|Multi-link PPP daemon|/usr/ports/net/mpd/pkg/DESCR|archie@freebsd.org|net|||
mpd-3.0b1|/usr/ports/net/mpd-netgraph|/usr/local|Multi-link PPP daemon based on netgraph(4)|/usr/ports/net/mpd-netgraph/pkg/DESCR|archie@freebsd.org|net|||
mpich-1.1.2|/usr/ports/net/mpich|/usr/local|Message Passing Interface (MPI) Library|/usr/ports/net/mpich/pkg/DESCR|dbader@eece.unm.edu|net||rsaref-2.0 ssh-1.2.27|
mrt-1.5.1a|/usr/ports/net/mrt|/usr/local|Multi-threaded Routing Toolkit|/usr/ports/net/mrt/pkg/DESCR|itojun@itojun.org|net|||http://www.merit.edu/~mrt/mrt_doc
mrtg-2.8.8|/usr/ports/net/mrtg|/usr/local|The multi-router traffic grapher|/usr/ports/net/mrtg/pkg/DESCR|jfitz@FreeBSD.org|net|gd-1.7.3 png-1.0.5||http://www.mrtg.org/
mtr-0.41|/usr/ports/net/mtr|/usr/local|Traceroute and ping in a single graphical network diagnostic tool|/usr/ports/net/mtr/pkg/DESCR|billf@FreeBSD.org|net|||http://www.bitwizard.nl/mtr/
naim-0.9.5-recon4|/usr/ports/net/naim|/usr/local|Curses based AOL Instant Messager implementation|/usr/ports/net/naim/pkg/DESCR|mharo@FreeBSD.org|net|||http://naim.n.ml.org/
nam-1.0a7|/usr/ports/net/nam|/usr/local|The UCB/LBNL Network Animator|/usr/ports/net/nam/pkg/DESCR|obonilla@fisicc-ufm.edu|net|XFree86-3.3.5 otcl-1.0a4 tcl-8.2.2 tclcl-1.0b8 tk-8.2.2||http://www-mash.cs.berkeley.edu/nam/
ncplib-1.3.4|/usr/ports/net/ncplib|/usr/local|NetWare client for FreeBSD.|/usr/ports/net/ncplib/pkg/DESCR|bp@butya.kz|net|||http://www.chat.ru/~rbp/ncpleng.html
netatalk-1.4b2|/usr/ports/net/netatalk|/usr/local|File and print server for AppleTalk networks|/usr/ports/net/netatalk/pkg/DESCR|stb@freebsd.org|net print|||http://www.umich.edu/~rsug/netatalk/
netatalk-1.4b2+asun-2.1.3|/usr/ports/net/netatalk-asun|/usr/local|File and print server for AppleTalk networks, with improvements by A. Sun|/usr/ports/net/netatalk-asun/pkg/DESCR|stb@freebsd.org|net print|||http://www.umich.edu/~rsug/netatalk/
netcat-1.10|/usr/ports/net/netcat|/usr/local|Simple utility which reads and writes data across network connections|/usr/ports/net/netcat/pkg/DESCR|obrien@FreeBSD.org|net|||
netpipes-4.2|/usr/ports/net/netpipes|/usr/local|A group of shell utilities to connect programs to sockets|/usr/ports/net/netpipes/pkg/DESCR|doconnor@gsoft.com.au|net|||
nettest-92.11.09|/usr/ports/net/nettest|/usr/local|Performs client and server functions for timing data throughput|/usr/ports/net/nettest/pkg/DESCR|proot@iaces.com|net|||
nocol-4.2.2b1|/usr/ports/net/nocol|/usr/local|Network/Service monitoring software|/usr/ports/net/nocol/pkg/DESCR|bradh@iafrica.com|net|||http://www.netplex-tech.com/software/nocol/
ns-2.1b5|/usr/ports/net/ns|/usr/local|The UCB/LBNL Network Simulator Version 2|/usr/ports/net/ns/pkg/DESCR|obonilla@fisicc-ufm.edu|net|XFree86-3.3.5 otcl-1.0a4 tcl-8.2.2 tclcl-1.0b8 tk-8.2.2|tcl-8.2.2|http://www-mash.cs.berkeley.edu/ns/
nslint-2.0|/usr/ports/net/nslint|/usr/local|Perform consistency checks on DNS files|/usr/ports/net/nslint/pkg/DESCR|dglo@SSEC.WISC.EDU|net|||
nstreams-0.99.1|/usr/ports/net/nstreams|/usr/local|Analyses network traffic and produces ipfw rules to allow it|/usr/ports/net/nstreams/pkg/DESCR|darius@dons.net.au|net|||
ntimelord-1.0|/usr/ports/net/ntimelord|/usr/local|A time server daemon for Macintoshes running 'tardis' for netatalk|/usr/ports/net/ntimelord/pkg/DESCR|naiki@bfd.es.hokudai.ac.jp|net||netatalk-1.4b2|
ntop-1.1|/usr/ports/net/ntop|/usr/local|Shows network usage with an interface similar to top(1)|/usr/ports/net/ntop/pkg/DESCR|billf@FreeBSD.org|net|||http://jake.unipi.it/~deri/ntop/
ntp-4.0.93a|/usr/ports/net/ntp|/usr/local|The Network Time Protocol Distribution|/usr/ports/net/ntp/pkg/DESCR|andreas@FreeBSD.org|net|autoconf-2.13 m4-1.4||http://www.eecis.udel.edu/~ntp/
nttcp-1.4|/usr/ports/net/nttcp|/usr/local|A client/server program for testing network performance|/usr/ports/net/nttcp/pkg/DESCR|billf@FreeBSD.org|net benchmarks|gmake-3.78.1||
openldap-1.2.7|/usr/ports/net/openldap|/usr/local|Open source LDAP client and server software|/usr/ports/net/openldap/pkg/DESCR|ulmo@earthling.net|net databases|||http://www.openldap.org/
p5-Archie-1.5|/usr/ports/net/p5-Archie|/usr/local|Perl5 module to make Archie queries via Prospero requests|/usr/ports/net/p5-Archie/pkg/DESCR|jfitz@FreeBSD.org|net perl5|||
p5-Net-1.0606|/usr/ports/net/p5-Net|/usr/local|Perl5 modules to access and use network protocols|/usr/ports/net/p5-Net/pkg/DESCR|jfitz@FreeBSD.org|net perl5|||
p5-Net-DNS-0.12|/usr/ports/net/p5-Net-DNS|/usr/local|Perl5 interface to the DNS resolver|/usr/ports/net/p5-Net-DNS/pkg/DESCR|jfitz@FreeBSD.org|net perl5|||
p5-Net-RawIP-0.06b|/usr/ports/net/p5-Net-RawIP|/usr/local|A perl module to manipulate raw IP packets|/usr/ports/net/p5-Net-RawIP/pkg/DESCR|dima@chg.ru|net perl5|||http://quake.skif.net/RawIP/
p5-Net-Telnet-3.01|/usr/ports/net/p5-Net-Telnet|/usr/local|Perl5 module to access and use telnet protocol|/usr/ports/net/p5-Net-Telnet/pkg/DESCR|kuriyama@opt.phys.waseda.ac.jp|net perl5|||
p5-Net-Whois-0.22|/usr/ports/net/p5-Net-Whois|/usr/local|A perl5 module to get information using the Whois protocol|/usr/ports/net/p5-Net-Whois/pkg/DESCR|jfitz@FreeBSD.org|net perl5||p5-Locale-Codes-1.00|
p5-SNMP-1.8.1|/usr/ports/net/p5-SNMP|/usr/local|A perl5 module for interfacing with the CMU SNMP library|/usr/ports/net/p5-SNMP/pkg/DESCR|jfitz@FreeBSD.org|net perl5|ucd-snmp-4.0.1|ucd-snmp-4.0.1|
p5-SNMP-Util-1.6|/usr/ports/net/p5-SNMP-Util|/usr/local|Perl modules to perform SNMP set,get,walk,next,walk_hash etc|/usr/ports/net/p5-SNMP-Util/pkg/DESCR|fenner@FreeBSD.org|net perl5||p5-SNMP-1.8.1 ucd-snmp-4.0.1|
p5-SNMP_Session-0.75|/usr/ports/net/p5-SNMP_Session|/usr/local|A perl5 module for providing rudimentary access to SNMPv1 agents|/usr/ports/net/p5-SNMP_Session/pkg/DESCR|ports@FreeBSD.org|net perl5|||
p5-Socks-0.03|/usr/ports/net/p5-Socks|/usr/local|Perl5 module to communicate with socks v4 and v5 servers|/usr/ports/net/p5-Socks/pkg/DESCR|Nacai@iname.com|net|||
p5-URI-1.03|/usr/ports/net/p5-URI|/usr/local|Perl5 interface to Uniform Resource Identifier (URI) references|/usr/ports/net/p5-URI/pkg/DESCR|ache@FreeBSD.org|net perl5|p5-MIME-Base64-2.11||
p5-pRPC-modules-0.1005|/usr/ports/net/p5-pRPC|/usr/local|Perl module for writing RPC servers and clients|/usr/ports/net/p5-pRPC/pkg/DESCR|vanilla@FreeBSD.org|net perl5|p5-Storable-0.6.7||
pathchar-a1|/usr/ports/net/pathchar|/usr/local|LBNL Internet path characterization tool|/usr/ports/net/pathchar/pkg/DESCR|obrien@FreeBSD.org|net|||http://www.caida.org/Pathchar/
pchar-1.0|/usr/ports/net/pchar|/usr/local|Sandia Internet path characterization tool|/usr/ports/net/pchar/pkg/DESCR|obrien@FreeBSD.org|net|||http://www.ca.sandia.gov/~bmah/Software/pchar/
pcnfsd-93.02.16|/usr/ports/net/pcnfsd|/usr/local|Sun PC NFS authentication and printing server|/usr/ports/net/pcnfsd/pkg/DESCR|ports@FreeBSD.org|net|||
perldap-1_2_2|/usr/ports/net/perldap|/usr/local|Perl interface to LDAP|/usr/ports/net/perldap/pkg/DESCR|paul@FreeBSD.org|net|ldapsdk-1998.12.31|ldapsdk-1998.12.31|
pipsecd-19991014|/usr/ports/net/pipsecd|/usr/local|Simple IPSEC tunnel tool from Pierre Beyssac|/usr/ports/net/pipsecd/pkg/DESCR|patrick@mindstep.com|net security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
pmf-1.13.1|/usr/ports/net/pmf|/usr/local|Padrone's Mud Frontend|/usr/ports/net/pmf/pkg/DESCR|ports@freebsd.org|net|||
poptop-1.0.0|/usr/ports/net/poptop|/usr/local|A Windows 9x compatible PPTP (VPN) server.|/usr/ports/net/poptop/pkg/DESCR|nsayer@freebsd.org|net|||
ppp-nt-2.2.7|/usr/ports/net/ppp-nt|/usr/local|User-ppp + multimedia nat + time schedule|/usr/ports/net/ppp-nt/pkg/DESCR|sada@FreeBSD.org|net|||
pppload-1.0|/usr/ports/net/pppload|/usr/local|Display the current throughput of a particular network device in a window|/usr/ports/net/pppload/pkg/DESCR|ports@FreeBSD.org|net sysutils|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
pptpclient-1.0.2|/usr/ports/net/pptpclient|/usr/local|PPTP client for establishing a VPN link with an NT server|/usr/ports/net/pptpclient/pkg/DESCR|jdp@freebsd.org|net|||http://www.pdos.lcs.mit.edu/~cananian/Projects/PPTP/
ppxp-0.99072807|/usr/ports/net/ppxp|/usr/local|A new and easy to use PPP software|/usr/ports/net/ppxp/pkg/DESCR|nosuzuki@e-mail.ne.jp|net tk82|XFree86-3.3.5 gmake-3.78.1 tcl-8.2.2 tk-8.2.2 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2 xforms-0.88.1 xpm-3.4k|http://www.dsl.gr.jp/~manabe/PPxP/
priss-1.0|/usr/ports/net/priss|/usr/local|Based on Apple's open source RTP/RTSP streaming Quicktime server|/usr/ports/net/priss/pkg/DESCR|richard@homemail.com|net|||http://www.streamingserver.org/
pvm-3.4.7|/usr/ports/net/pvm|/usr/local|Parallel Virtual Machine libraries and environment|/usr/ports/net/pvm/pkg/DESCR|dima@Chg.RU|net|XFree86-3.3.5|XFree86-3.3.5|http://www.epm.ornl.gov/pvm/pvm_home.html
queso-980922|/usr/ports/net/queso|/usr/local|Determine the remote OS using simple tcp packets|/usr/ports/net/queso/pkg/DESCR|obrien@FreeBSD.org|net security|||http://www.apostols.org/projectz/queso/
radius-basic-3.6B|/usr/ports/net/radius|/usr/local|A remote authentication server|/usr/ports/net/radius/pkg/DESCR|ports@FreeBSD.org|net|||
radiusclient-0.3|/usr/ports/net/radiusclient|/usr/local|Client library and basic utilities for Radius authenticated login|/usr/ports/net/radiusclient/pkg/DESCR|maurice@serc.rmit.edu.au|net|gmake-3.78.1 libtool-1.3.3||http://www.cityline.net/~lf/radius/
radiusd-cistron-1.6.1|/usr/ports/net/radiusd-cistron|/usr/local|A RADIUS-compliant remote authentication and accouting server|/usr/ports/net/radiusd-cistron/pkg/DESCR|john@nlc.net.au|net|||
radreport-1.3|/usr/ports/net/radreport|/usr/local|Perl script for processing radius logs|/usr/ports/net/radreport/pkg/DESCR|kbyanc@posi.net|net|||
ratoolset-3.5.8|/usr/ports/net/ratoolset|/usr/local|A suite of policy analysis tools|/usr/ports/net/ratoolset/pkg/DESCR|jfitz@FreeBSD.org|net tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
rboot-3.0.1|/usr/ports/net/rboot|/usr/local|A remote-boot solution for M$ operating systems|/usr/ports/net/rboot/pkg/DESCR|m.butkus@tu-bs.de|net|||http://www.bs.ni.schule.de/support/rboot/
rdist-6.1.5|/usr/ports/net/rdist6|/usr/local|A network file distribution/synchronisation utility|/usr/ports/net/rdist6/pkg/DESCR|peter@FreeBSD.org|net|||http://www.magnicomp.com/
relay-1.10|/usr/ports/net/relay|/usr/local|TCP proxy server with telnet, ftp, finger client wrappers|/usr/ports/net/relay/pkg/DESCR|obrien@FreeBSD.org|net security|||
rinetd-0.61|/usr/ports/net/rinetd|/usr/local|A simple TCP port redirector|/usr/ports/net/rinetd/pkg/DESCR|veers@disturbed.net|net|||
ripetools-2.4|/usr/ports/net/ripetools|/usr/local|RIPE's own version of whois, and a RIPE database tool|/usr/ports/net/ripetools/pkg/DESCR|joe@uk.freebsd.org|net|||
rmsg-1.64|/usr/ports/net/rmsg|/usr/local|A network messaging system|/usr/ports/net/rmsg/pkg/DESCR|torstenb@FreeBSD.org|net|||
rrdtool-1.0.7|/usr/ports/net/rrdtool|/usr/local|Round Robin Database Tools|/usr/ports/net/rrdtool/pkg/DESCR|dima@Chg.RU|net|||http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
rshell-1.0|/usr/ports/net/rshell|/usr/local|A front end for rsh(1) and rcp(1)|/usr/ports/net/rshell/pkg/DESCR|wosch@FreeBSD.org|net|||
rsync-2.3.1|/usr/ports/net/rsync|/usr/local|A network file distribution/synchronization utility|/usr/ports/net/rsync/pkg/DESCR|obrien@FreeBSD.org|net|||
rtsp_proxy-1.0|/usr/ports/net/rtsp_proxy|/usr/local|Apple Computer's open source RTP/RTSP streaming Quicktime proxy|/usr/ports/net/rtsp_proxy/pkg/DESCR|richard@homemail.com|net|||http://www.apple.com/quicktime/resources/qt4/us/proxy/
rwhois-1.0b9.2|/usr/ports/net/rwhois|/usr/local|The Internic referral whois server|/usr/ports/net/rwhois/pkg/DESCR|jfitz@FreeBSD.org|net|||
samba-2.0.6|/usr/ports/net/samba|/usr/local|A free SMB and CIFS client and server for UNIX|/usr/ports/net/samba/pkg/DESCR|hosokawa@jp.FreeBSD.org|net|||
scotty-2.1.9|/usr/ports/net/scotty|/usr/local|Network management extensions to tcl|/usr/ports/net/scotty/pkg/DESCR|phk@freebsd.org|net tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://wwwhome.cs.utwente.nl/~schoenw/scotty/
sendfile-2.1|/usr/ports/net/sendfile|/usr/local|Simple Asynchronous File Transfer Reference Implementation|/usr/ports/net/sendfile/pkg/DESCR|sec@42.org|net|||
sharity-light-1.2|/usr/ports/net/sharity-light|/usr/local|An userland smbfs --- SMB to NFS protocols converter|/usr/ports/net/sharity-light/pkg/DESCR|dt@FreeBSD.org|net|||http://www.obdev.at/Products/
slirp-1.0c|/usr/ports/net/slirp|/usr/local|A SLIP/CSLIP emulator for users with shell accounts|/usr/ports/net/slirp/pkg/DESCR|A.C.P.M.Kalker@student.utwente.nl|net|||
smbtcpdump-3.4|/usr/ports/net/smbtcpdump|/usr/local|Tcpdump(1) hacked to better understand SMB packets|/usr/ports/net/smbtcpdump/pkg/DESCR|obrien@FreeBSD.org|net security|||
sniffit-0.3.7b|/usr/ports/net/sniffit|/usr/local|A packet sniffer program. For educational use|/usr/ports/net/sniffit/pkg/DESCR|obrien@FreeBSD.org|net security|||http://reptile.rug.ac.be/~coder/sniffit/sniffit.html
socks5-1.0.10|/usr/ports/net/socks5|/usr/local|SOCKS v5 application layer gateway and clients|/usr/ports/net/socks5/pkg/DESCR|imp@freebsd.org|net security|||
sup-2.0|/usr/ports/net/sup|/usr/local|CMU's Software Update Protocol package|/usr/ports/net/sup/pkg/DESCR|ports@FreeBSD.org|net|||
tac_plus-2.1|/usr/ports/net/tac_plus|/usr/local|A remote authentication/authorization/accounting server|/usr/ports/net/tac_plus/pkg/DESCR|andreas@FreeBSD.org|net|bzip2-0.9.5d||http://www.cisco.com/warp/public/146/187.html
tac_plus-F4.0.3|/usr/ports/net/tac_plus4|/usr/local|The Cisco remote authentication/authorization/accounting server.|/usr/ports/net/tac_plus4/pkg/DESCR|tasic@lucky.net|net|||
tcpflow-0.12|/usr/ports/net/tcpflow|/usr/local|A tool for capturing data transmitted as part of TCP connections|/usr/ports/net/tcpflow/pkg/DESCR|jose@we.lc.ehu.es|net|||http://www.circlemud.org/~jelson/software/tcpflow/
tcpshow-1.74|/usr/ports/net/tcpshow|/usr/local|Decode tcpdump(1) output|/usr/ports/net/tcpshow/pkg/DESCR|obrien@FreeBSD.org|net security|||
tcptrace-5.2.0|/usr/ports/net/tcptrace|/usr/local|A TCP dump file analysis tool|/usr/ports/net/tcptrace/pkg/DESCR|fenner@FreeBSD.org|net|||
tdetect-0.2.1|/usr/ports/net/tdetect|/usr/local|Utility for detecting traceroutes and reporting them via syslog|/usr/ports/net/tdetect/pkg/DESCR|shipley@dis.org|net|||http://sb.123.org/
telnetx-940401|/usr/ports/net/telnetx|/usr/local|Telnet client with binary transfer protocols support|/usr/ports/net/telnetx/pkg/DESCR|max@FreeBSD.org|net||bpl+-1.0 kermit-7.0.196-beta rzsz-3.50|
telserv-1.0|/usr/ports/net/telserv|/usr/local|A telnet server analogous to the unix talk command|/usr/ports/net/telserv/pkg/DESCR|obrien@FreeBSD.org|net security|||
tik-0.59|/usr/ports/net/tik|/usr/local|A Tcl/Tk based AOL Instant Messenger (AIM) Chat Client|/usr/ports/net/tik/pkg/DESCR|astralblue@usa.net|net tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
tintin-1.5.6|/usr/ports/net/tintin++|/usr/local|A client program to help playing muds|/usr/ports/net/tintin++/pkg/DESCR|ache@FreeBSD.org|net games|||
tf-4.0s1|/usr/ports/net/tinyfugue|/usr/local|A popular programmable MUD client, with macro support and more|/usr/ports/net/tinyfugue/pkg/DESCR|jseger@FreeBSD.org|net games|||http://tf.tcp.com/~hawkeye/tf/
tn3270-4.4|/usr/ports/net/tn3270|/usr/local|Full-screen remote login to IBM VM/CMS|/usr/ports/net/tn3270/pkg/DESCR|markm@FreeBSD.ORG|net|||
traceroute_990522|/usr/ports/net/traceroute|/usr/local|Version of 'traceroute' that shows the AS network number of each hop|/usr/ports/net/traceroute/pkg/DESCR|dima@Chg.RU|net|||
trafshow-2.0|/usr/ports/net/trafshow|/usr/local|Full screen visualization of the network traffic|/usr/ports/net/trafshow/pkg/DESCR|jseger@FreeBSD.org|net|||
ttcp-1.12|/usr/ports/net/ttcp|/usr/local|Benchmarking tool for analysing TCP and UDP performance|/usr/ports/net/ttcp/pkg/DESCR|mharo@FreeBSD.org|net|||
ttt-1.4|/usr/ports/net/ttt|/usr/local|Tele Traffic Tapper, a network traffic monitoring tool|/usr/ports/net/ttt/pkg/DESCR|kjc@csl.sony.co.jp|net tk82|XFree86-3.3.5 blt-2.4m tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 blt-2.4m tcl-8.2.2 tk-8.2.2|
tund-0.20|/usr/ports/net/tund|/usr/local|IP over UDP tunnel with encryption|/usr/ports/net/tund/pkg/DESCR|ks@itp.ac.ru|net|openssl-0.9.4 rsaref-2.0||http://www.chg.ru/~ks/tund/
ucd-snmp-4.0.1|/usr/ports/net/ucd-snmp|/usr/local|An extendable SNMP implimentation|/usr/ports/net/ucd-snmp/pkg/DESCR|gpalmer@FreeBSD.org|net|||http://ucd-snmp.ucdavis.edu/
vnc-3.3.3|/usr/ports/net/vnc|/usr/X11R6|Display X and Win32 desktops on remote X/Win32/Java displays|/usr/ports/net/vnc/pkg/DESCR|bmah@ca.sandia.gov|net|XFree86-3.3.5|XFree86-3.3.5|http://www.uk.research.att.com/vnc/
freeWAIS-0.5|/usr/ports/net/wais|/usr/local|FreeWAIS from CNIDR|/usr/ports/net/wais/pkg/DESCR|ports@FreeBSD.org|net|||
wide-dhcp-1.4.0p6|/usr/ports/net/wide-dhcp|/usr/local|Dynamic Host Configuration Protocol, WIDE-Implimentation|/usr/ports/net/wide-dhcp/pkg/DESCR|obrien@FreeBSD.org|net|||
wmnet-1.2|/usr/ports/net/wmnet|/usr/local|A network bandwidth monitor intended for the WindowMaker dock|/usr/ports/net/wmnet/pkg/DESCR|rneswold@mcs.net|net windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://isufug.ee.iastate.edu/~joff/wmnet.html
xarchie-2.0.10|/usr/ports/net/xarchie|/usr/X11R6|X11 front-end program for the archie network search service|/usr/ports/net/xarchie/pkg/DESCR|ports@FreeBSD.org|net|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
xferstats-2.14|/usr/ports/net/xferstats|/usr/local|Compiles information about file transfers from logfiles|/usr/ports/net/xferstats/pkg/DESCR|dima@Chg.RU|net|glib-1.2.6|glib-1.2.6|http://xferstats.off.net
xicq-071298|/usr/ports/net/xicq|/usr/local|Xtropy's ICQ Client|/usr/ports/net/xicq/pkg/DESCR|scrappy@FreeBSD.org|net|gmake-3.78.1||http://www.xtrophy.dk/xicq/
xipmsg-0.8087|/usr/ports/net/xipmsg|/usr/X11R6|A popup style message communication tool for X11|/usr/ports/net/xipmsg/pkg/DESCR|candy@kgc.co.jp|net|XFree86-3.3.5|XFree86-3.3.5|
xisp-2.6|/usr/ports/net/xisp|/usr/local|A user-friendly X interface to pppd/chat|/usr/ports/net/xisp/pkg/DESCR|morishim@cig.mot.com|net|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|http://users.hol.gr/~dbouras/
xwhois-0.4.0|/usr/ports/net/xwhois|/usr/X11R6|A GTK-based frontend to the whois service (RFC954)|/usr/ports/net/xwhois/pkg/DESCR|billf@FreeBSD.org|net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.goatnet.ml.org/software.html
ytalk-3.1.1|/usr/ports/net/ytalk|/usr/local|A new "talk" that can talk to multiple parties at once|/usr/ports/net/ytalk/pkg/DESCR|dom@myrddin.demon.co.uk|net|||http://www.eleves.ens.fr:8080/home/espel/ytalk/
zebra-0.81|/usr/ports/net/zebra|/usr/local|Free multithreaded RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector)|/usr/ports/net/zebra/pkg/DESCR|andreas@FreeBSD.org|net|||http://www.zebra.org/
zephyr-2.0.4|/usr/ports/net/zephyr|/usr/local|Real time message passing and notification service|/usr/ports/net/zephyr/pkg/DESCR|ports@FreeBSD.org|net|XFree86-3.3.5|XFree86-3.3.5|
ztelnet-1.0p3|/usr/ports/net/ztelnet|/usr/local|Telnet program with zmodem transfer|/usr/ports/net/ztelnet/pkg/DESCR|junker@jazz.snu.ac.kr|net|||
atp-1.50|/usr/ports/news/atp|/usr/local|A QWK message packet reader and composer for FreeBSD|/usr/ports/news/atp/pkg/DESCR|dburr@FreeBSD.org|news|gmake-3.78.1|unzip-5.40 zip-2.2|
aub-2.0.5|/usr/ports/news/aub|/usr/local|Assemble usenet binaries|/usr/ports/news/aub/pkg/DESCR|obrien@FreeBSD.org|news|||
bgrab-1.2.3|/usr/ports/news/bgrab|/usr/local|Rael's Binary Grabber - downloads binaries from newsgroups|/usr/ports/news/bgrab/pkg/DESCR|kbyanc@posi.net|news||mmencode-2.7|http://thelamb.dhs.org/~rael/bgrab/
cnews-cr.g|/usr/ports/news/cnews|/usr/local|An nntp server|/usr/ports/news/cnews/pkg/DESCR|dirk.meyer@dinoex.sub.org|news|||
dejasearch-1.6.3|/usr/ports/news/dejasearch|/usr/local|A frontend to DejaNews for searching Usenet archives|/usr/ports/news/dejasearch/pkg/DESCR|kris@FreeBSD.org|news||p5-libwww-5.44|http://homemade.hypermart.net/dejasearch/
diablo-1.15|/usr/ports/news/diablo|/usr/local|A news transit system for backbone news feeders|/usr/ports/news/diablo/pkg/DESCR|jfitz@FreeBSD.org|news|xmake-1.05||http://www.backplane.com/
dnews-4.7k|/usr/ports/news/dnews|/usr/local|Commercial nntp server with feature and speed enhancements over inn and cnews|/usr/ports/news/dnews/pkg/DESCR|ports@FreeBSD.org|news|||http://netwinsite.com/
fidogate-4.2.9|/usr/ports/news/fidogate|/usr/local|Fido-Internet Gateway and Tosser|/usr/ports/news/fidogate/pkg/DESCR|dirk.meyer@dinoex.sub.org|news|gmake-3.78.1|ifmail-2.15|http://morannon.fido.de/fidogate/
gup-0.4|/usr/ports/news/gup|/usr/local|Allows remote sites to change their newsgroup subscriptions|/usr/ports/news/gup/pkg/DESCR|dsh@vlink.ru|news|||
ifmail-2.15|/usr/ports/news/ifmail|/usr/local|FidoNet(tm) support package for UN*X platform|/usr/ports/news/ifmail/pkg/DESCR|dirk.meyer@dinoex.sub.org|news|||
inn-2.2.1|/usr/ports/news/inn|/usr/local|InterNetNews -- the Internet meets Netnews|/usr/ports/news/inn/pkg/DESCR|torstenb@FreeBSD.org|news|gmake-3.78.1||
inn-stable-v22|/usr/ports/news/inn-stable|/usr/local|InterNetNews Version 2 -- the Internet meets Netnews|/usr/ports/news/inn-stable/pkg/DESCR|andreas@FreeBSD.org|news|||http://www.isc.org/inn.html
knews-1.0b.1|/usr/ports/news/knews|/usr/X11R6|A threaded nntp newsreader for X|/usr/ports/news/knews/pkg/DESCR|andreas@FreeBSD.org|news|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b mp-letter-3.0.1 png-1.0.5 xpm-3.4k|
leafnode-1.9.2|/usr/ports/news/leafnode|/usr/local|USENET software package designed for small sites|/usr/ports/news/leafnode/pkg/DESCR|brian@Awfulhak.org|news|||
leafnode+-2.8|/usr/ports/news/leafnode+|/usr/local|Multi-user offline Usenet news package for small sites|/usr/ports/news/leafnode+/pkg/DESCR|tom@FreeBSD.org|news|||http://www.io.com/~kazushi/freeware/leafnode+.html
newsfetch-1.21|/usr/ports/news/newsfetch|/usr/local|Download news articles from NNTP server|/usr/ports/news/newsfetch/pkg/DESCR|itojun@itojun.org|news|||
newsfish-1.1|/usr/ports/news/newsfish|/usr/local|Batch USENET news reader with filter capabilities|/usr/ports/news/newsfish/pkg/DESCR|asaddi@philosophysw.com|news|||http://www.philosophysw.com/software/newsfish/
nn-6.5.3|/usr/ports/news/nn|/usr/local|Newsreader|/usr/ports/news/nn/pkg/DESCR|jooji@webnology.com|news|||
nntp-1.5.11.5|/usr/ports/news/nntp|/usr/local|NNTP with NOV support|/usr/ports/news/nntp/pkg/DESCR|adam@veda.is|news|cnews-cr.g||
nntpbtr-1.7|/usr/ports/news/nntpbtr|/usr/local|NNTP bulk transfer|/usr/ports/news/nntpbtr/pkg/DESCR|dk@farm.org|news|||
nntpcache-2.3.2|/usr/ports/news/nntpcache|/usr/local|News caching/anti-spam/server-merging system|/usr/ports/news/nntpcache/pkg/DESCR|nntpcache@nntpcache.org|news|gmake-3.78.1 pgp-2.6.2 rsaref-2.0||http://www.nntpcache.org/
p5-Gateway-0.42|/usr/ports/news/p5-Gateway|/usr/local|Robomoderation and mail to news gatewaying toolkit|/usr/ports/news/p5-Gateway/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|news perl5|p5-Net-1.0606 p5-Net-DNS-0.12 p5-News-Article-1.21 p5-PGP-Sign-0.15 pgp-2.6.2 rsaref-2.0|p5-Net-1.0606 p5-Net-DNS-0.12 p5-News-Article-1.21 p5-PGP-Sign-0.15 pgp-2.6.2 rsaref-2.0|
p5-News-Article-1.21|/usr/ports/news/p5-News-Article|/usr/local|Object for handling Usenet articles in mail or news form|/usr/ports/news/p5-News-Article/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|news perl5||p5-Net-1.0606 p5-Net-DNS-0.12 p5-PGP-Sign-0.15 pgp-2.6.2 rsaref-2.0|
p5-News-Newsrc-1.07|/usr/ports/news/p5-News-Newsrc|/usr/local|Manage newsrc files|/usr/ports/news/p5-News-Newsrc/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|news perl5||p5-Set-IntSpan-1.07|
pan-0.6.5|/usr/ports/news/pan|/usr/X11R6|Threaded GNOME newsreader based on Agent for Windows|/usr/ports/news/pan/pkg/DESCR|jedgar@fxp.org|news gnome|ORBit-0.5.0 XFree86-3.3.5 bzip2-0.9.5d esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.superpimp.org/
pgpmoose-1.19|/usr/ports/news/pgpmoose|/usr/local|PGP Moose - signatures for moderated newsgroups|/usr/ports/news/pgpmoose/pkg/DESCR|dirk.meyer@dinoex.sub.org|news security|||
plor-0.3.1|/usr/ports/news/plor|/usr/local|An alpha-release reader for reading SOUP and QWK packets|/usr/ports/news/plor/pkg/DESCR|hoek@FreeBSD.org|news||zip-2.2|
rkive-3.1|/usr/ports/news/rkive|/usr/local|A USENET newsgroup archiver|/usr/ports/news/rkive/pkg/DESCR|torstenb@FreeBSD.org|news|||
slnr-2.3.0|/usr/ports/news/slnr|/usr/local|A simplistic reader for SOUP (HDPF) mail and news packets|/usr/ports/news/slnr/pkg/DESCR|ac199@freenet.hamilton.on.ca|news||zip-2.2|
slrn-0.9.5.7|/usr/ports/news/slrn|/usr/local|SLang-based newsreader|/usr/ports/news/slrn/pkg/DESCR|xaa@xaa.iae.nl|news|bzip2-0.9.5d libslang-1.2.2|libslang-1.2.2|
slurp-1.10|/usr/ports/news/slurp|/usr/local|Passive NNTP client to retrieve Usenet articles from a remote server|/usr/ports/news/slurp/pkg/DESCR|jraynard@FreeBSD.org|news|||
suck-4.2.2|/usr/ports/news/suck|/usr/local|Receives/sends news to/from localhost via NNTP|/usr/ports/news/suck/pkg/DESCR|jseger@FreeBSD.org|news|gmake-3.78.1||
tin-1.4.1|/usr/ports/news/tin|/usr/local|TIN newsreader (termcap based)|/usr/ports/news/tin/pkg/DESCR|ache@FreeBSD.org|news|bzip2-0.9.5d uulib-0.5.13|uulib-0.5.13|
trn-3.6|/usr/ports/news/trn|/usr/local|Threaded Read News newsreader|/usr/ports/news/trn/pkg/DESCR|smace@FreeBSD.org|news||mpack-1.5|
trn-4.0b72|/usr/ports/news/trn4|/usr/local|Version 4.0 of the threaded readnews newsreader|/usr/ports/news/trn4/pkg/DESCR|mph@freebsd.org|news|||http://www.clari.net/~wayne/
unpost-2.3.4|/usr/ports/news/unpost|/usr/local|Extract binary files from multi-segment uuencoded postings|/usr/ports/news/unpost/pkg/DESCR|volf@oasis.IAEhv.nl|news|||
xmitbin-1.9|/usr/ports/news/xmitbin|/usr/local|Posts or mails binary and sourcecode files intelligently|/usr/ports/news/xmitbin/pkg/DESCR|dburr@FreeBSD.org|news mail|||
xvnews-2.3.2|/usr/ports/news/xvnews|/usr/X11R6|An OPEN LOOK news reader|/usr/ports/news/xvnews/pkg/DESCR|shanee@augusta.de|news|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
imgvtopgm-2.0|/usr/ports/palm/imgvtopgm|/usr/local|Palm Pilot Image Viewer to PGM Converter|/usr/ports/palm/imgvtopgm/pkg/DESCR|sumikawa@kame.net|palm graphics|XFree86-3.3.5 jpeg-6b netpbm-8.0 tiff-3.5.3||http://www.trends.net/~mu/pilot.html#imgvtopgm
jpilot-0.96|/usr/ports/palm/jpilot|/usr/local/pilot|Desktop Organizer Software for the Palm Pilot|/usr/ports/palm/jpilot/pkg/DESCR|varju@webct.com|palm comms|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 pilot-link-0.9.3 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 pilot-link-0.9.3 tcl-8.0.5 tk-8.0.5|http://jpilot.linuxbox.com/
kpilot-3.0.2|/usr/ports/palm/kpilot|/usr/local|3Com PalmPilot interface for the KDE integrated X11 desktop|/usr/ports/palm/kpilot/pkg/DESCR|dima@freebsd.org|palm comms kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.slac.com/pilone/kpilot_home/moreinfo.html
pilot-link-0.9.3|/usr/ports/palm/pilot-link|/usr/local/pilot|PalmPilot communications utilities (backup/restore/install/debug/...)|/usr/ports/palm/pilot-link/pkg/DESCR|dima@freebsd.org|palm comms tk80|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|
pilot_makedoc-0.7|/usr/ports/palm/pilot_makedoc|/usr/local|Converts text into the Doc format used by PalmPilots|/usr/ports/palm/pilot_makedoc/pkg/DESCR|jfitz@FreeBSD.org|palm textproc|||http://www.concentric.net/~rbram/
syncal-0.8.1|/usr/ports/palm/syncal|/usr/local/pilot|Synchronize your PalmPilot with ical|/usr/ports/palm/syncal/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|palm comms deskutils|XFree86-3.3.5 pilot-link-0.9.3 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 ical-2.2 pilot-link-0.9.3 tcl-8.0.5 tcl-8.2.2 tk-8.0.5 tk-8.2.2|
xcopilot-0.6.6|/usr/ports/palm/xcopilot|/usr/X11R6|Emulator for US Robotics Pilot PDA|/usr/ports/palm/xcopilot/pkg/DESCR|nsayer@quack.kfu.com|palm emulators|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
a2ps-a4-4.12|/usr/ports/print/a2ps-a4|/usr/local|Formats an ascii file for printing on a postscript printer|/usr/ports/print/a2ps-a4/../a2ps-letter/pkg/DESCR|chuckr@FreeBSD.org|print|||
a2ps-letter-4.12|/usr/ports/print/a2ps-letter|/usr/local|Formats an ascii file for printing on a postscript printer|/usr/ports/print/a2ps-letter/pkg/DESCR|chuckr@FreeBSD.org|print|||
a2ps-letterdj-4.12|/usr/ports/print/a2ps-letterdj|/usr/local|Formats an ascii file for printing on a postscript printer|/usr/ports/print/a2ps-letterdj/../a2ps-letter/pkg/DESCR|chuckr@FreeBSD.org|print|||
a2ps-a4-4.3|/usr/ports/print/a2ps43-a4|/usr/local|Formats an ascii file for printing on a postscript printer|/usr/ports/print/a2ps43-a4/../a2ps43-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
a2ps-letter-4.3|/usr/ports/print/a2ps43-letter|/usr/local|Formats an ascii file for printing on a postscript printer|/usr/ports/print/a2ps43-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
acroread-3.02|/usr/ports/print/acroread|/usr/local|View, distribute and print PDF documents|/usr/ports/print/acroread/pkg/DESCR|tg@FreeBSD.org|print||linux_base-5.2 rpm-2.5.6|
acroread-commfont-1999.7.20|/usr/ports/print/acroread-commfont|/usr/local|Asian Font Packs for Acrobat Reader 4.0 (for common files)|/usr/ports/print/acroread-commfont/pkg/DESCR|taoka@FreeBSD.org|japanese print||acroread-4.0 linux_base-5.2 rpm-2.5.6|http://www.adobe.com/prodindex/acrobat/readstep.html
acroread-4.0|/usr/ports/print/acroread4|/usr/local|View, distribute and print PDF documents|/usr/ports/print/acroread4/pkg/DESCR|dima@FreeBSD.org|print||linux_base-5.2 rpm-2.5.6|
afm-1.0|/usr/ports/print/afm|/usr/local|Adobe Font Metrics|/usr/ports/print/afm/pkg/DESCR|ports@FreeBSD.org|print|||
amspsfnt-1.0|/usr/ports/print/amspsfnt|/usr/local|AMSFonts PostScript Fonts (Adobe Type 1 format)|/usr/ports/print/amspsfnt/pkg/DESCR|ports@FreeBSD.org|print|XFree86-3.3.5 p5-type1inst-0.6.1||
apsfilter-5.1.3|/usr/ports/print/apsfilter|/usr/local|Lpd magic print filter with auto file type recognition|/usr/ports/print/apsfilter/pkg/DESCR|andreas@FreeBSD.org|print|bzip2-0.9.5d|XFree86-3.3.5 a2ps-letter-4.12 bzip2-0.9.5d ghostscript-5.50 html2ps-letter-1.0 jpeg-6b netpbm-8.0 png-1.0.5 psutils-letter-1.17 recode-3.4 tiff-3.5.3 transfig-3.2.1 xpm-3.4k|http://www.FreeBSD.org/~andreas/apsfilter/index.html
asprint-1.0|/usr/ports/print/asprint|/usr/X11R6|A simple browser to allow a user to print|/usr/ports/print/asprint/pkg/DESCR|brett@peloton.runet.edu|print|XFree86-3.3.5|XFree86-3.3.5|
bibcard-0.6.4|/usr/ports/print/bibcard|/usr/X11R6|X11 interface for ediing BibTeX files|/usr/ports/print/bibcard/pkg/DESCR|obrien@NUXI.com|print databases|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
bibview-2.2|/usr/ports/print/bibview|/usr/X11R6|Graphical interface for manipulating BibTeX bibliography databases|/usr/ports/print/bibview/pkg/DESCR|dbader@eece.unm.edu|databases print|XFree86-3.3.5|XFree86-3.3.5|
c2ps-a4-4.0|/usr/ports/print/c2ps-a4|/usr/local|A PostScript pretty-printer for C source|/usr/ports/print/c2ps-a4/../c2ps-letter/pkg/DESCR|mph@freebsd.org|print|||http://www.geocities.com/SiliconValley/Park/2055/
c2ps-letter-4.0|/usr/ports/print/c2ps-letter|/usr/local|A PostScript pretty-printer for C source|/usr/ports/print/c2ps-letter/pkg/DESCR|mph@freebsd.org|print|||http://www.geocities.com/SiliconValley/Park/2055/
cdlabelgen-1.5.0|/usr/ports/print/cdlabelgen|/usr/local|Generate postscript for frontcards and traycards for CDs|/usr/ports/print/cdlabelgen/pkg/DESCR|nox@jelal.kn-bremen.de|print|||http://www.red-bean.com/~bwf/software/cdlabelgen/
cmpsfont-1.0|/usr/ports/print/cmpsfont|/usr/local|Computer Modern PostScript Fonts (Adobe Type 1 format)|/usr/ports/print/cmpsfont/pkg/DESCR|ports@FreeBSD.org|print|XFree86-3.3.5 p5-type1inst-0.6.1||
detex-2.6|/usr/ports/print/detex|/usr/local|Strips TeX/LaTeX codes from a file|/usr/ports/print/detex/pkg/DESCR|obrien@FreeBSD.org|print|||
dvi2tty-1.0|/usr/ports/print/dvi2tty|/usr/local|A dvi-file previewer for text only devices|/usr/ports/print/dvi2tty/pkg/DESCR|jsutton@bbcon.com.au|print|||
dvi2xx-0.51a9|/usr/ports/print/dvi2xx|/usr/local|Convert dvi files to HP LaserJet or IBM 3812 format|/usr/ports/print/dvi2xx/pkg/DESCR|jmz@FreeBSD.org|print|||
dvips-5.76|/usr/ports/print/dvips|/usr/local|Convert a TeX DVI file to PostScript|/usr/ports/print/dvips/pkg/DESCR|jmz@FreeBSD.org|print|||
dvips2ascii-1.3|/usr/ports/print/dvips2ascii|/usr/local|PostScript (created by dvips) to ascii converter|/usr/ports/print/dvips2ascii/pkg/DESCR|eserte@cs.tu-berlin.de|print|||
dviselect-1.3|/usr/ports/print/dviselect|/usr/local|Extract pages from DVI files|/usr/ports/print/dviselect/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.78.1||
enscript-a4-1.6.1|/usr/ports/print/enscript-a4|/usr/local|ASCII-to-PostScript filter|/usr/ports/print/enscript-a4/../enscript-letter/pkg/DESCR|kline@thought.org|print|gmake-3.78.1||
enscript-letter-1.6.1|/usr/ports/print/enscript-letter|/usr/local|ASCII-to-PostScript filter|/usr/ports/print/enscript-letter/pkg/DESCR|kline@thought.org|print|gmake-3.78.1||
enscript-letterdj-1.6.1|/usr/ports/print/enscript-letterdj|/usr/local|ASCII-to-PostScript filter|/usr/ports/print/enscript-letterdj/../enscript-letter/pkg/DESCR|kline@thought.org|print|gmake-3.78.1||
enscriptfonts-0.75|/usr/ports/print/enscriptfonts|/usr/local|More than 120 free- and share-ware fonts to extend enscript-1.5|/usr/ports/print/enscriptfonts/pkg/DESCR|kline@thought.org|print|||
freetype-1.3|/usr/ports/print/freetype|/usr/local|A free and portable TrueType font rendering engine|/usr/ports/print/freetype/pkg/DESCR|jseger@FreeBSD.org|print|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
ggv-0.70|/usr/ports/print/ggv|/usr/X11R6|GNOME ghostscript viewer|/usr/ports/print/ggv/pkg/DESCR|nakai@FreeBSD.org|print gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
ghostscript-5.10|/usr/ports/print/ghostscript5|/usr/local|GNU Postscript interpreter + hpdj driver|/usr/ports/print/ghostscript5/pkg/DESCR|ports@FreeBSD.org|print|XFree86-3.3.5 jpeg-6b png-1.0.5|XFree86-3.3.5 gsfonts-5.10 png-1.0.5|http://www.gnu.org/software/ghostscript/ghostscript.html
ghostscript-5.50|/usr/ports/print/ghostscript55|/usr/local|Aladdin Postscript interpreter|/usr/ports/print/ghostscript55/pkg/DESCR|andreas@FreeBSD.org|print|XFree86-3.3.5 gmake-3.78.1 jpeg-6b png-1.0.5 unzip-5.40|XFree86-3.3.5 png-1.0.5|http://www.cs.wisc.edu/~ghost/index.html
ghostview-1.5|/usr/ports/print/ghostview|/usr/X11R6|An X11 front-end for ghostscript, the GNU postscript previewer|/usr/ports/print/ghostview/pkg/DESCR|ports@FreeBSD.org|print|XFree86-3.3.5|XFree86-3.3.5|
gnomeprint-0.10|/usr/ports/print/gnomeprint|/usr/X11R6|Gnome print support library|/usr/ports/print/gnomeprint/pkg/DESCR|nakai@FreeBSD.org|print gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 ghostscript-5.10 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gsfonts-5.10 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.levien.com/gnome/print-arch.html
gp-2.5p2|/usr/ports/print/gp|/usr/local|A GUI Printer manager written with Tcl/Tk|/usr/ports/print/gp/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|print tk42|tcl-7.6|ImageMagick-4.2.9 XFree86-3.3.5 Xaw3d-1.5 freetype-1.3 gv-3.5.8 jbigkit-1.0 jpeg-6b png-1.0.5 psutils-letter-1.17 tcl-7.6 tiff-3.5.3 tk-4.2|
gsfonts-5.10|/usr/ports/print/gsfonts|/usr/local|Fonts used by GNU Ghostscript|/usr/ports/print/gsfonts/pkg/DESCR|ports@FreeBSD.org|print|XFree86-3.3.5 p5-type1inst-0.6.1||
gv-3.5.8|/usr/ports/print/gv|/usr/X11R6|A PostScript and PDF previewer|/usr/ports/print/gv/pkg/DESCR|obrien@freebsd.org|print|XFree86-3.3.5 Xaw3d-1.5|XFree86-3.3.5 Xaw3d-1.5|
hp2xx-3.20|/usr/ports/print/hp2xx|/usr/local|A HPGL converter into some vector- and raster formats, previewer for X11|/usr/ports/print/hp2xx/pkg/DESCR|Lars.Koeller@Uni-Bielefeled.DE|print x11|XFree86-3.3.5 png-1.0.5|XFree86-3.3.5 png-1.0.5|
html2latex-0.9|/usr/ports/print/html2latex|/usr/local|Convert HTML document into LaTeX|/usr/ports/print/html2latex/pkg/DESCR|joerg@FreeBSD.org|print|||
html2ps-A4-1.0|/usr/ports/print/html2ps-a4|/usr/local|HTML to PostScript converter|/usr/ports/print/html2ps-a4/../html2ps-letter/pkg/DESCR|andreas@FreeBSD.org|print www perl5|ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 ghostscript-5.50 jbigkit-1.0 jpeg-6b libwww-5.2.6 netpbm-8.0 p5-libwww-5.44 png-1.0.5 teTeX-1.0.6 tiff-3.5.3 weblint-1.020||http://www.tdb.uu.se/~jan/html2ps.html
html2ps-letter-1.0|/usr/ports/print/html2ps-letter|/usr/local|HTML to PostScript converter|/usr/ports/print/html2ps-letter/pkg/DESCR|andreas@FreeBSD.org|print www perl5|ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 ghostscript-5.50 jbigkit-1.0 jpeg-6b libwww-5.2.6 netpbm-8.0 p5-libwww-5.44 png-1.0.5 teTeX-1.0.6 tiff-3.5.3 weblint-1.020||http://www.tdb.uu.se/~jan/html2ps.html
Hyperlatex-2.3.1|/usr/ports/print/hyperlatex|/usr/local|Produce HTML and printed documents from LaTeX source|/usr/ports/print/hyperlatex/pkg/DESCR|witr@rwwa.com|print|XFree86-3.3.5 emacs-20.4|XFree86-3.3.5 emacs-20.4 latex2e-99.06 tex-3.14159|http://www.cs.ust.hk/~otfried/Hyperlatex/
ifhp-3.3.10|/usr/ports/print/ifhp|/usr/local|LPRng print filter for text, PostScript, PCL, HP, Xerox, etc printers|/usr/ports/print/ifhp/pkg/DESCR|papowell@astart.com|print|||
jadetex-2.3|/usr/ports/print/jadetex|/usr/local|JadeTeX is a TeX backend for Jade, for typesetting SGML documents|/usr/ports/print/jadetex/pkg/DESCR|kelly@plutotech.com|print|XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6|
klyx-0.10.0|/usr/ports/print/klyx|/usr/local|A KDE/Qt port of LyX, a graphical front-end for LaTeX|/usr/ports/print/klyx/pkg/DESCR|tom@eborcom.com|print kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
latex2e-99.06|/usr/ports/print/latex|/usr/local|TeX macro package|/usr/ports/print/latex/pkg/DESCR|jmz@FreeBSD.org|print|tex-3.14159|tex-3.14159|
lout-3.17|/usr/ports/print/lout|/usr/local|LaTeX like document creation system with PostScript/PDF output|/usr/ports/print/lout/pkg/DESCR|ports@FreeBSD.org|print|gmake-3.78.1||http://snark.niif.spb.su/~uwe/lout/lout.html
lprps-a4-2.5|/usr/ports/print/lprps-a4|/usr/local|PostScript printer filter package supporting a bidirectional serial channel|/usr/ports/print/lprps-a4/../lprps-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
lprps-letter-2.5|/usr/ports/print/lprps-letter|/usr/local|PostScript printer filter package supporting a bidirectional serial channel|/usr/ports/print/lprps-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
lyx-1.0.4|/usr/ports/print/lyx|/usr/local|Document processor interfaced with LaTeX (nearly WYSIWYG)|/usr/ports/print/lyx/pkg/DESCR|andreas@FreeBSD.org|print|XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 libwww-5.2.6 png-1.0.5 teTeX-1.0.6 xforms-0.88.1 xpm-3.4k|http://www.lyx.org/
magicfilter-1.2|/usr/ports/print/magicfilter|/usr/local|Customizable, extensible automatic printer filter|/usr/ports/print/magicfilter/pkg/DESCR|cjh@kr.freebsd.org|print|XFree86-3.3.5 ghostscript-5.50 gmake-3.78.1 png-1.0.5|XFree86-3.3.5 ghostscript-5.50 png-1.0.5|
makeindex-3.0.8|/usr/ports/print/makeindex|/usr/local|A general purpose, formatter-independent index processor|/usr/ports/print/makeindex/pkg/DESCR|jmz@FreeBSD.org|print|||
mgv-3.1.5|/usr/ports/print/mgv|/usr/X11R6|A PostScript and PDF previewer|/usr/ports/print/mgv/pkg/DESCR|handy@physics.montana.edu|print|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.trends.net/~mu/mgv.html
mp-a4-3.0.1|/usr/ports/print/mp-a4|/usr/local|A PostScript printing util for ASCII files, email, USENET news articles, etc|/usr/ports/print/mp-a4/../mp-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
mp-letter-3.0.1|/usr/ports/print/mp-letter|/usr/local|A PostScript printing util for ASCII files, email, USENET news articles, etc|/usr/ports/print/mp-letter/pkg/DESCR|obrien@FreeBSD.org|print|||
mpage-2.5|/usr/ports/print/mpage|/usr/local|Print multiple pages per sheet of paper|/usr/ports/print/mpage/pkg/DESCR|kchowksey@hss.hns.com|print|||
musixtex-T97|/usr/ports/print/musixtex|/usr/local|A set of TeX macros to typeset music|/usr/ports/print/musixtex/pkg/DESCR|jmz@FreeBSD.org|print|tex-3.14159|tex-3.14159|
nenscript-1.13.3|/usr/ports/print/nenscript|/usr/local|A clone of the proprietary enscript program from Adobe Systems|/usr/ports/print/nenscript/pkg/DESCR|cjm2@altavista.net|print|bzip2-0.9.5d||
offix-printer-2.4|/usr/ports/print/offix-printer|/usr/X11R6|OffiX printer icon with support of DND protocol|/usr/ports/print/offix-printer/pkg/DESCR|ruslan@shevchenko.kiev.ua|print offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1 xpm-3.4k|XFree86-3.3.5 libdnd-1.1 xpm-3.4k|
pbm2ppa-0.8.6|/usr/ports/print/pbm2ppa|/usr/local|Convert PBM images to PPA for some HP printers|/usr/ports/print/pbm2ppa/pkg/DESCR|smace@freebsd.org|print|gmake-3.78.1|XFree86-3.3.5 enscript-letter-1.6.1 ghostscript-5.10 gsfonts-5.10 png-1.0.5|
pclprint-1.0|/usr/ports/print/pclprint|/usr/local|Utility for printing to HP (Laser,Desk)Jets using PCL rather than PS|/usr/ports/print/pclprint/pkg/DESCR|andrews@technologist.com|print|||
pdflib-2.01|/usr/ports/print/pdflib|/usr/local|A C library for dynamically generating PDF|/usr/ports/print/pdflib/pkg/DESCR|dirk@FreeBSD.org|print|jpeg-6b tiff-3.5.3|afm-1.0 jpeg-6b tiff-3.5.3|http://www.ifconnection.de/~tm/software/pdflib/
pdq-2.1.1|/usr/ports/print/pdq|/usr/local|A straightforward, flexible print subsystem|/usr/ports/print/pdq/pkg/DESCR|yinjieh@csie.nctu.edu.tw|print|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://feynman.tam.uiuc.edu/pdq/introduction.html
perlftlib-1.2|/usr/ports/print/perlftlib|/usr/local|Libraries to use the FreeType library from the perl language|/usr/ports/print/perlftlib/pkg/DESCR|taoka@FreeBSD.org|print perl5|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10|http://www.io.com/~kazushi/xtt/#perlftlib
pkfonts118-1.0|/usr/ports/print/pkfonts118|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts118/../pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
pkfonts240-1.0|/usr/ports/print/pkfonts240|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts240/../pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
pkfonts300-1.0|/usr/ports/print/pkfonts300|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
pkfonts360-1.0|/usr/ports/print/pkfonts360|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts360/../pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
pkfonts400-1.0|/usr/ports/print/pkfonts400|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts400/../pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
pkfonts600-1.0|/usr/ports/print/pkfonts600|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts600/../pkfonts300/pkg/DESCR|ports@FreeBSD.org|print|||
psutils-a4-1.17|/usr/ports/print/psutils-a4|/usr/local|Utilities for manipulating PostScript documents|/usr/ports/print/psutils-a4/../psutils-letter/pkg/DESCR|jmz@FreeBSD.org|print|||
psutils-letter-1.17|/usr/ports/print/psutils-letter|/usr/local|Utilities for manipulating PostScript documents|/usr/ports/print/psutils-letter/pkg/DESCR|jmz@FreeBSD.org|print|||
rlpr-2.00|/usr/ports/print/rlpr|/usr/local|Send print jobs to lpd servers anywhere on a network|/usr/ports/print/rlpr/pkg/DESCR|mi@aldan.algebra.com|print net|gettext-0.10.35|gettext-0.10.35|
rtf2latex-1.5|/usr/ports/print/rtf2latex|/usr/local|A filter that converts RTF (MS's Rich Text Format) into LaTeX|/usr/ports/print/rtf2latex/pkg/DESCR|ports@FreeBSD.org|print|||
t1utils-1.14|/usr/ports/print/t1utils|/usr/local|Five utilities for manipulating t1 fonts|/usr/ports/print/t1utils/pkg/DESCR|mwm@phone.net|print|||
teTeX-1.0.6|/usr/ports/print/teTeX|/usr/local|Thomas Esser's distribution of TeX & friends|/usr/ports/print/teTeX/pkg/DESCR|br@netland.inka.de|print|XFree86-3.3.5 gmake-3.78.1 libwww-5.2.6 png-1.0.5|XFree86-3.3.5 libwww-5.2.6 png-1.0.5|
tex-3.14159|/usr/ports/print/tex|/usr/local|TeX and METAFONT|/usr/ports/print/tex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.78.1||
texinfo-2.218|/usr/ports/print/texinfo|/usr/local|Typeset Texinfo files for printing. Uses TeX|/usr/ports/print/texinfo/pkg/DESCR|jmz@FreeBSD.org|print|tex-3.14159|tex-3.14159|
tgif2tex-1.46|/usr/ports/print/tgif2tex|/usr/local|Converting texts in figure by tgif to LaTeX commands|/usr/ports/print/tgif2tex/pkg/DESCR|taoka@FreeBSD.org|print|||
tr2latex-2.2|/usr/ports/print/tr2latex|/usr/local|Convert a document from troff to LaTeX|/usr/ports/print/tr2latex/pkg/DESCR|ports@FreeBSD.org|print|||
transfig-3.2.1|/usr/ports/print/transfig|/usr/X11R6|Tools to convert Xfig's .fig files|/usr/ports/print/transfig/pkg/DESCR|chuckr@freebsd.org|print|XFree86-3.3.5 jpeg-6b xpm-3.4k|XFree86-3.3.5 jpeg-6b netpbm-8.0 tiff-3.5.3 xpm-3.4k|
virtualpaper-1.4|/usr/ports/print/virtualpaper|/usr/local|Virtual Paper document storage and viewing software|/usr/ports/print/virtualpaper/pkg/DESCR|jdp@FreeBSD.org|print|XFree86-3.3.5 modula-3-3.6 modula-3-lib-3.6|XFree86-3.3.5 modula-3-lib-3.6|http://www.research.digital.com:80/SRC/virtualpaper/
xdvi-pl20|/usr/ports/print/xdvi|/usr/X11R6|A DVI Previewer for the X Window System|/usr/ports/print/xdvi/pkg/DESCR|jmz@FreeBSD.org|print|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
xdvik-20a|/usr/ports/print/xdvik|/usr/local|DVI Previewer(kpathsearch) for X|/usr/ports/print/xdvik/pkg/DESCR|JBD01226@niftyserve.ne.jp|print|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5 tex-3.14159|
xmbibtex-1.5|/usr/ports/print/xmbibtex|/usr/X11R6|A reference manager based on the BibTeX file format|/usr/ports/print/xmbibtex/pkg/DESCR|ports@FreeBSD.org|print databases|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtem-7.00|/usr/ports/print/xtem|/usr/local|Tcl/Tk-based development menu (environment?) for TeX|/usr/ports/print/xtem/pkg/DESCR|ports@FreeBSD.org|print||XFree86-3.3.5 tcl-8.0.5 tclX-8.0.4 tk-8.0.5|http://ftp.iwd.uni-bremen.de/xtem/xtem_texmenu.html
yatex-1.67|/usr/ports/print/yatex|/usr/local|Yet Another LaTeX mode and html mode on Emacs (for Emacs19, Emacs20)|/usr/ports/print/yatex/pkg/DESCR|taoka@FreeBSD.org|print elisp|||http://www.yatex.org/
yatex-mule-1.67|/usr/ports/print/yatex-mule|/usr/local|Yet Another LaTeX mode and html mode on Emacs (for mule 2.3)|/usr/ports/print/yatex-mule/../yatex/pkg/DESCR|taoka@FreeBSD.org|print elisp|||http://www.yatex.org/
yatex-xemacs-1.67|/usr/ports/print/yatex-xemacs|/usr/local|Yet Another LaTeX mode and html mode on Emacs (for XEmacs19, XEmacs20)|/usr/ports/print/yatex-xemacs/../yatex/pkg/DESCR|taoka@FreeBSD.org|print elisp|||http://www.yatex.org/
yatex-xemacs-mule-1.67|/usr/ports/print/yatex-xemacs-mule|/usr/local|Yet Another LaTeX mode and html mode on Emacs (for XEmacs-mule)|/usr/ports/print/yatex-xemacs-mule/../yatex/pkg/DESCR|taoka@FreeBSD.org|print elisp|XFree86-3.3.5 faces-1.6.1 ja-Canna-3.2.2 ja-nkf-1.62 ja-xemacs-canna-21.1.8 jpeg-6b png-1.0.5 tiff-3.5.3 xemacs-mule-common-21.1.8 xemacs-mule-packages-1.0 xemacs-packages-1.0 xemacs-sumo-pkg-19990713 xpm-3.4k||http://www.yatex.org/
ru-X11-3.3|/usr/ports/russian/X.language|/usr/X11R6|Setup X locale/nls/keyboard/fonts for russian language (koi8-r)|/usr/ports/russian/X.language/pkg/DESCR|ache@FreeBSD.org|russian x11|XFree86-3.3.5|XFree86-3.3.5|
rapache-1.3.9|/usr/ports/russian/apache13|/usr/local|The extremely popular Apache http server. Very fast, very clean|/usr/ports/russian/apache13/pkg/DESCR|vns@delta.odessa.ua|www russian|||http://apache.lexa.ru/
cyrproxy-1.4.2|/usr/ports/russian/cyrproxy|/usr/local|Cyrillic proxy for network protocols|/usr/ports/russian/cyrproxy/pkg/DESCR|andy@icc.surw.chel.su|russian net www|||http://www.lexa.ru/lexa/cyrproxy.html
ru-d1489-1.4|/usr/ports/russian/d1489|/usr/local|Cp866<->koi8-r and cp1251<->koi8-r decoders and font converter acc. to RFC1489|/usr/ports/russian/d1489/pkg/DESCR|ache@FreeBSD.org|russian|||
ru-elm-2.4ME|/usr/ports/russian/elm.language|/usr/local|Tune Elm with MIME for KOI8-R defaults|/usr/ports/russian/elm.language/pkg/DESCR|ache@FreeBSD.org|russian mail||elm-2.4ME+61|
ru-gd-1.3|/usr/ports/russian/gd|/usr/local|Graphics library for fast GIF creation (uses fonts in KOI8-R encoding)|/usr/ports/russian/gd/pkg/DESCR|gsm@infosite.ru|russian graphics|||
koi8rPS-1.0|/usr/ports/russian/koi8r-ps|/usr/local|Add Russian (KOI8) fonts to your PostScript fonts collection|/usr/ports/russian/koi8r-ps/pkg/DESCR|mi@aldan.algebra.com|russian print|||
ru-netscape-3.01|/usr/ports/russian/netscape3.language|/usr/X11R6|Tune netscape3.01 to work with russian (koi8-r) fonts|/usr/ports/russian/netscape3.language/pkg/DESCR|ache@FreeBSD.org|russian www|XFree86-3.3.5|XFree86-3.3.5 netscape-3.04 ru-X11-3.3|
ru-pgp-2.6.3ia|/usr/ports/russian/pgp.language|/usr/local|Russian language module for PGP|/usr/ports/russian/pgp.language/pkg/DESCR|ache@FreeBSD.org|russian|unzip-5.40|pgp-2.6.2 rsaref-2.0|
ru-pine-3.96|/usr/ports/russian/pine.language|/usr/local|Tune Pine for Russian (KOI8-R) defaults|/usr/ports/russian/pine.language/pkg/DESCR|ache@FreeBSD.org|russian mail||pine-3.96|
ru-ispell-1.0|/usr/ports/russian/rispell|/usr/local|Russian (KOI8-R) dictionary for ISPELL|/usr/ports/russian/rispell/pkg/DESCR|ache@FreeBSD.org|textproc russian|ispell-3.1.20c||
ru-wmcyrx-2.1|/usr/ports/russian/wmcyrx|/usr/local|The cyrillic keyboard layout manager for Window Maker|/usr/ports/russian/wmcyrx/pkg/DESCR|ozz@FreeBSD.org.ru|russian windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://yard.hitech.mipt.ru/~mini/cyrx.html
xruskb-1.9.3|/usr/ports/russian/xruskb|/usr/X11R6|A keyboard layout switcher and indicator|/usr/ports/russian/xruskb/pkg/DESCR|ports@freebsd.org|russian x11|XFree86-3.3.5|XFree86-3.3.5|
bjorb-0.5.5p1|/usr/ports/security/bjorb|/usr/local|Secure TCP relay software with SSL|/usr/ports/security/bjorb/pkg/DESCR|issei@jp.FreeBSD.org|net security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://www.hitachi-ms.co.jp/bjorb/
bro-0.5a|/usr/ports/security/bro|/usr/local|System for detecting Network Intruders in real-time|/usr/ports/security/bro/pkg/DESCR|obrien@FreeBSD.org|security net|||
bugs-1.8.1|/usr/ports/security/bugs|/usr/local|Great cryptography library and sample programs|/usr/ports/security/bugs/pkg/DESCR|stephane@lituus.fr|security|gmake-3.78.1||
cfs-1.3.3.1|/usr/ports/security/cfs|/usr/local|A cryptographic file system implemented as a user-space NFS server|/usr/ports/security/cfs/pkg/DESCR|green@FreeBSD.org|security|||
checkpassword-0.81|/usr/ports/security/checkpassword|/usr/local|A simple password-checking interface|/usr/ports/security/checkpassword/pkg/DESCR|sada@FreeBSD.org|security|||http://cr.yp.to/checkpwd.html
chrootuid-1.2|/usr/ports/security/chrootuid|/usr/local|A simple wrapper that combines chroot(8) and su(1) into one program|/usr/ports/security/chrootuid/pkg/DESCR|truckman@FreeBSD.org|security|sharutils-4.2||
cops-1.04|/usr/ports/security/cops|/usr/local|A system secureness checker|/usr/ports/security/cops/pkg/DESCR|oly@world.std.com|security|||
crack-5.0|/usr/ports/security/crack|/usr/local|The "Sensible" Unix Password Cracker|/usr/ports/security/crack/pkg/DESCR|obrien@FreeBSD.org|security|||
donkey-0.5|/usr/ports/security/donkey|/usr/local|An alternative for S/KEY's key command|/usr/ports/security/donkey/pkg/DESCR|max@FreeBSD.org|security|||
fakebo-0.4.1|/usr/ports/security/fakebo|/usr/local|A fake BackOrifice client emulator|/usr/ports/security/fakebo/pkg/DESCR|kris@FreeBSD.org|security|||http://yi.com/home/KosturjakVlatko/fakebo.htm
firewalk-0.9.9b|/usr/ports/security/firewalk|/usr/local|A network auditing tool|/usr/ports/security/firewalk/pkg/DESCR|shipley@dis.org|security net|libnet-0.99g||http://www.packetfactory.net/firewalk/
fwtk-2.1|/usr/ports/security/fwtk|/usr/local|A toolkit used for building firewalls based on proxy services|/usr/ports/security/fwtk/pkg/DESCR|obrien@FreeBSD.org|security net|||
gnupg-1.0.0|/usr/ports/security/gnupg|/usr/local|The GNU Privacy Guard|/usr/ports/security/gnupg/pkg/DESCR|kuriyama@FreeBSD.org|security|||http://www.gnupg.org/
gpasman-1.3.0|/usr/ports/security/gpasman|/usr/X11R6|A password manager that stores password information encrypted|/usr/ports/security/gpasman/pkg/DESCR|domi@saargate.de|security|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtkportscan-1.2|/usr/ports/security/gtkportscan|/usr/local|A simple port scanner that prints out open ports|/usr/ports/security/gtkportscan/pkg/DESCR|cpiazza@FreeBSD.org|security net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://armageddon.splorg.org/gtkportscan/
heimdal-0.2d|/usr/ports/security/heimdal|/usr/local|Heimdal is a re-implementation of Kerberos V.|/usr/ports/security/heimdal/pkg/DESCR|nectar@FreeBSD.ORG|security|gmake-3.78.1 libtool-1.3.3||http://www.pdc.kth.se/heimdal/
identify-0.7|/usr/ports/security/identify|/usr/local|Client side ident protocol daemon wrapper|/usr/ports/security/identify/pkg/DESCR|nsayer@quack.kfu.com|security net|libident-0.22||
john-1.6|/usr/ports/security/john|/usr/local|Featureful Unix password cracker|/usr/ports/security/john/pkg/DESCR|obrien@FreeBSD.org|security|||
keynote-2b4|/usr/ports/security/keynote|/usr/local|A Trust-Management System.|/usr/ports/security/keynote/pkg/DESCR|se@FreeBSD.org|security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://www.cis.upenn.edu/~angelos/keynote.html
keyprint-1.0|/usr/ports/security/keyprint|/usr/local|Print S/Key keys on a piece of paper, twice the size of a credit card|/usr/ports/security/keyprint/pkg/DESCR|mharo@FreeBSD.org|security|||
kmap-0.4|/usr/ports/security/kmap|/usr/local|KDE GUI frontend for the nmap scanning utility|/usr/ports/security/kmap/pkg/DESCR|obrien@FreeBSD.org|security net|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 nmap-2.3b9 png-1.0.5 qt-1.42 tiff-3.5.3|http://www.islc.net/~icszepp/kmap/index.html
krb5-1.1|/usr/ports/security/krb5|/usr/local|An authentication system developed at MIT, successor to Kerberos IV|/usr/ports/security/krb5/pkg/DESCR|nectar@FreeBSD.org|security|gmake-3.78.1 m4-1.4||http://web.mit.edu/kerberos/www/
l0pht-watch-1.1|/usr/ports/security/l0pht-watch|/usr/local|A program to report on what goes on in /tmp|/usr/ports/security/l0pht-watch/pkg/DESCR|dom@myrddin.demon.co.uk|security|||http://www.l0pht.com/advisories.html
libident-0.22|/usr/ports/security/libident|/usr/local|A small library to interface the ident protocol server (rfc1413)|/usr/ports/security/libident/pkg/DESCR|torstenb@FreeBSD.org|devel net security|||
libmcrypt-2.2|/usr/ports/security/libmcrypt|/usr/local|Multi-cipher cryptographic library (used in PHP3)|/usr/ports/security/libmcrypt/pkg/DESCR|nsayer@freebsd.org|security|||
libparanoia-1.3|/usr/ports/security/libparanoia|/usr/local|Safe (in the mean of stack smashing) reincarnation of strcpy et al|/usr/ports/security/libparanoia/pkg/DESCR|snar@paranoia.ru|security|||http://www.lexa.ru/snar/libparanoia/
mhash-0.6.1|/usr/ports/security/mhash|/usr/local|Cryptographic hashing library (used in PHP3)|/usr/ports/security/mhash/pkg/DESCR|nsayer@freebsd.org|security|||
nbaudit-1.0|/usr/ports/security/nbaudit|/usr/local|NetBIOS Auditing Tool / Security Kit|/usr/ports/security/nbaudit/pkg/DESCR|obrien@FreeBSD.org|security net|||
nessus-0.99.1|/usr/ports/security/nessus|/usr/local|A security scanner: looks for vulnerabilities in a given network|/usr/ports/security/nessus/pkg/DESCR|anders@fix.no|security|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 nessus-libnasl-0.99.1 nessus-libraries-0.99.1|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 nessus-libnasl-0.99.1 nessus-libraries-0.99.1|http://www.nessus.org/
nessus-libnasl-0.99.1|/usr/ports/security/nessus-libnasl|/usr/local|Nessus Attack Scripting Language|/usr/ports/security/nessus-libnasl/pkg/DESCR|anders@fix.no|security|nessus-libraries-0.99.1|nessus-libraries-0.99.1|http://www.nessus.org/doc/nasl.html
nessus-libraries-0.99.1|/usr/ports/security/nessus-libraries|/usr/local|Libraries for Nessus, the security scanner|/usr/ports/security/nessus-libraries/pkg/DESCR|anders@fix.no|security|||http://www.nessus.org/
nessus-plugins-0.99.1|/usr/ports/security/nessus-plugins|/usr/local|Plugins for Nessus, the security scanner|/usr/ports/security/nessus-plugins/pkg/DESCR|anders@fix.no|security|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 nessus-0.99.1 nessus-libnasl-0.99.1 nessus-libraries-0.99.1||http://www.nessus.org/
nmap-2.3b9|/usr/ports/security/nmap|/usr/local|Port scanning utility for large networks|/usr/ports/security/nmap/pkg/DESCR|obrien@FreeBSD.org|security net|||http://www.insecure.org/nmap/index.html
nmapfe-0.9.5|/usr/ports/security/nmapfe|/usr/local|GUI frontend for the nmap scanning utility|/usr/ports/security/nmapfe/pkg/DESCR|obrien@FreeBSD.org|security net|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 nmap-2.3b9|http://www.insecure.org/nmap/index.html
OpenSSH-1.2|/usr/ports/security/openssh|/usr/local|OpenBSD's secure shell client and server (remote login program)|/usr/ports/security/openssh/pkg/DESCR|green@FreeBSD.org|security net|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://www.openssh.com/
openssl-0.9.4|/usr/ports/security/openssl|/usr/local|SSL and crypto library|/usr/ports/security/openssl/pkg/DESCR|dirk@FreeBSD.org|security devel|rsaref-2.0|rsaref-2.0|http://www.openssl.org
p5-Authen-PAM-0.08|/usr/ports/security/p5-Authen-PAM|/usr/local|A Perl interface to the PAM library|/usr/ports/security/p5-Authen-PAM/pkg/DESCR|matt@zigg.com|security perl5|||
p5-Authen-Radius-0.05|/usr/ports/security/p5-Authen-Radius|/usr/local|A perl5 module to provide simple Radius client facilities|/usr/ports/security/p5-Authen-Radius/pkg/DESCR|jfitz@FreeBSD.org|security net perl5|p5-MD5-1.7||
p5-Crypt-DES-1.0|/usr/ports/security/p5-Crypt-DES|/usr/local|Perl5 interface to DES block cipher|/usr/ports/security/p5-Crypt-DES/pkg/DESCR|jfitz@FreeBSD.org|security perl5|||
p5-Crypt-IDEA-1.0|/usr/ports/security/p5-Crypt-IDEA|/usr/local|Perl5 interface to IDEA block cipher|/usr/ports/security/p5-Crypt-IDEA/pkg/DESCR|jfitz@FreeBSD.org|security perl5|||
p5-Digest-MD5-2.09|/usr/ports/security/p5-Digest-MD5|/usr/local|Perl5 interface to MD5, MD2, SHA1 and HMAC Message-Digest Algorithms|/usr/ports/security/p5-Digest-MD5/pkg/DESCR|ache@FreeBSD.org|security perl5|||
p5-MD5-1.7|/usr/ports/security/p5-MD5|/usr/local|Perl5 interface to MD5 Message-Digest Algorithm|/usr/ports/security/p5-MD5/pkg/DESCR|jfitz@FreeBSD.org|security perl5|||
p5-PGP-0.3a|/usr/ports/security/p5-PGP|/usr/local|Perl5 module to work with PGP messages|/usr/ports/security/p5-PGP/pkg/DESCR|jfitz@FreeBSD.org|security perl5|pgp-2.6.2 rsaref-2.0||
p5-PGP-Sign-0.15|/usr/ports/security/p5-PGP-Sign|/usr/local|Create detached PGP signatures for data|/usr/ports/security/p5-PGP-Sign/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|security perl5||pgp-2.6.2 rsaref-2.0|
pgp-2.6.2|/usr/ports/security/pgp|/usr/local|PGP MIT or International version - Public-Key encryption for the masses|/usr/ports/security/pgp/pkg/DESCR|ache@FreeBSD.org|security|gmake-3.78.1 rsaref-2.0 unzip-5.40|rsaref-2.0|
pgp-5.0i|/usr/ports/security/pgp5|/usr/local|Public-Key encryption for the masses|/usr/ports/security/pgp5/pkg/DESCR|markm@FreeBSD.org|security|||http://www.pgpi.com
pidentd-2.8.5|/usr/ports/security/pidentd|/usr/local|An RFC1413 identification server|/usr/ports/security/pidentd/pkg/DESCR|torstenb@FreeBSD.org|security net|||
pktsuckers-1.2|/usr/ports/security/pktsuckers|/usr/local|Log contents of unwanted UDP packets and TCP connections|/usr/ports/security/pktsuckers/pkg/DESCR|wkt@cs.adfa.edu.au|security net|||
portscanner-1.0|/usr/ports/security/portscanner|/usr/local|A simple and easy to use TCP port scanner|/usr/ports/security/portscanner/pkg/DESCR|billf@FreeBSD.org|security net|||http://www.ameth.org/~veilleux/
portsentry-0.90|/usr/ports/security/portsentry|/usr/local|Port scan detection and active defense|/usr/ports/security/portsentry/pkg/DESCR|chris@still.whet.org|security|||http://www.psionic.com/abacus/portsentry/
rsaref-2.0|/usr/ports/security/rsaref|/usr/local|Encryption/authentication library, RSA/MDX/DES|/usr/ports/security/rsaref/pkg/DESCR|ache@FreeBSD.org|security|||
skip-1.0|/usr/ports/security/skip|/usr/local|Stateless IP layer security and encryption from Sun Microsystems|/usr/ports/security/skip/pkg/DESCR|archie@whistle.com|security|XFree86-3.3.5 gmake-3.78.1 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|http://skip.incog.com/
slush-0.1.1|/usr/ports/security/slush|/usr/local|A telnet-like application which uses a secure SSL channel|/usr/ports/security/slush/pkg/DESCR|shipley@dis.org|security net|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
smurflog-2.1|/usr/ports/security/smurflog|/usr/local|A program to assist logging of smurf attacks|/usr/ports/security/smurflog/pkg/DESCR|nectar@FreeBSD.org|net security|||
sniff-1.0|/usr/ports/security/sniff|/usr/local|Program to sniff logins and passwords|/usr/ports/security/sniff/pkg/DESCR|veraldi@cs.unibo.it|security|||
snort-1.3|/usr/ports/security/snort|/usr/local|Lightweight network intrusion detection system|/usr/ports/security/snort/pkg/DESCR|dirk@FreeBSD.org|security net|||http://www.clark.net/~roesch/security.html
ssh-1.2.27|/usr/ports/security/ssh|/usr/local|Secure shell client and server (remote login program)|/usr/ports/security/ssh/pkg/DESCR|torstenb@FreeBSD.org|security net|rsaref-2.0|rsaref-2.0|
ssh-2.0.13|/usr/ports/security/ssh2|/usr/local|Secure shell client and server (remote login program)|/usr/ports/security/ssh2/pkg/DESCR|issei@jp.FreeBSD.org|security net|rsaref-2.0 ssh-1.2.27|rsaref-2.0 ssh-1.2.27|http://www.ssh.fi/
sslproxy-19980614|/usr/ports/security/sslproxy|/usr/local|Proxies non-SSL request over an SSL connection|/usr/ports/security/sslproxy/pkg/DESCR|alexlh@funk.org|security|openssl-0.9.4 rsaref-2.0|rsaref-2.0|
strobe-1.06|/usr/ports/security/strobe|/usr/local|Fast scatter/gather TCP port scanner|/usr/ports/security/strobe/pkg/DESCR|jseger@FreeBSD.org|security net|||
stunnel-3.4a|/usr/ports/security/stunnel|/usr/local|SSL encryption wrapper for standard network daemons|/usr/ports/security/stunnel/pkg/DESCR|martti.kuparinen@ericsson.com|security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
sudo-1.6|/usr/ports/security/sudo|/usr/local|Allow others to run commands as root|/usr/ports/security/sudo/pkg/DESCR|mharo@FreeBSD.org|security|||
super-3.12.1|/usr/ports/security/super|/usr/local|Allow others to run commands as root|/usr/ports/security/super/pkg/DESCR|obrien@FreeBSD.org|security sysutils|||
swatch-2.2|/usr/ports/security/swatch|/usr/local|The Simple WATCHer and filter|/usr/ports/security/swatch/pkg/DESCR|jfitz@FreeBSD.org|security sysutils|||
tcp_wrappers-7.6|/usr/ports/security/tcp_wrapper|/usr/local|TCP/IP daemon wrapper package|/usr/ports/security/tcp_wrapper/pkg/DESCR|torstenb@FreeBSD.org|security net|||
tripwire-1.2|/usr/ports/security/tripwire|/usr/local|File system security and verification program|/usr/ports/security/tripwire/pkg/DESCR|jgreco@ns.sol.net|security net|||
vscan-3.1.8|/usr/ports/security/vscan|/usr/local|Scan MS-DOS files for viruses|/usr/ports/security/vscan/pkg/DESCR|obrien@FreeBSD.org|security|||
xinetd-2.1.8.7|/usr/ports/security/xinetd|/usr/local|Replacement for inetd with control and logging|/usr/ports/security/xinetd/pkg/DESCR|vanilla@FreeBSD.org|security|gmake-3.78.1||
bash-1.14.7|/usr/ports/shells/bash1|/usr/local|The GNU Borne Again Shell|/usr/ports/shells/bash1/pkg/DESCR|obrien@FreeBSD.org|shells|||
bash-2.03|/usr/ports/shells/bash2|/usr/local|The GNU Borne Again Shell|/usr/ports/shells/bash2/pkg/DESCR|ache@FreeBSD.org|shells|||
es-0.9b1|/usr/ports/shells/es|/usr/local|An extensible shell, derived from plan9's rc|/usr/ports/shells/es/pkg/DESCR|erich@FreeBSD.org|shells|||
esh-0.8|/usr/ports/shells/esh|/usr/local|The ``easy shell'', a small shell with Lisp-like syntax|/usr/ports/shells/esh/pkg/DESCR|nectar@FreeBSD.org|shells|||
ksh-19931228|/usr/ports/shells/ksh93|/usr/local|The official AT&T release of KornShell 93|/usr/ports/shells/ksh93/pkg/DESCR|naddy@mips.rhein-neckar.de|shells|||http://www.kornshell.com/
pdksh-5.2.14|/usr/ports/shells/pdksh|/usr/local|The Public Domain Korn Shell|/usr/ports/shells/pdksh/pkg/DESCR|tg@FreeBSD.org|shells|||
rc-1.6|/usr/ports/shells/rc|/usr/local|A unix incarnation of the plan9 shell|/usr/ports/shells/rc/pkg/DESCR|saken@hotel.rmta.org|shells plan9|||http://www.star.le.ac.uk/~tjg/rc/
scsh-0.5.1|/usr/ports/shells/scsh|/usr/local|A Unix shell embedded into Scheme, with access to all Posix calls|/usr/ports/shells/scsh/pkg/DESCR|cracauer@cons.org|shells lang|||
tcsh-6.09.00|/usr/ports/shells/tcsh|/usr/local|An extended C-shell with many useful features|/usr/ports/shells/tcsh/pkg/DESCR|ache@FreeBSD.org|shells|||
zsh-3.0.7|/usr/ports/shells/zsh|/usr/local|The Z shell|/usr/ports/shells/zsh/pkg/DESCR|torstenb@FreeBSD.org|shells|||
zsh-3.1.6|/usr/ports/shells/zsh-devel|/usr/local|The Z shell (development version)|/usr/ports/shells/zsh-devel/pkg/DESCR|shige@FreeBSD.org|shells|||
LPRng-3.6.8|/usr/ports/sysutils/LPRng|/usr/local|An Enhanced Printer Spooler|/usr/ports/sysutils/LPRng/pkg/DESCR|desmo@bandwidth.org|sysutils print|||
afio-2.4.5|/usr/ports/sysutils/afio|/usr/local|Archiver & backup program w/ builtin compression|/usr/ports/sysutils/afio/pkg/DESCR|nox@jelal.hb.north.de|sysutils|||
asapm-2.7|/usr/ports/sysutils/asapm|/usr/X11R6|Laptop battery status display for X11|/usr/ports/sysutils/asapm/pkg/DESCR|handy@physics.montana.edu|sysutils|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
ascpu-1.6|/usr/ports/sysutils/ascpu|/usr/X11R6|CPU statistics monitor utility for XFree86|/usr/ports/sysutils/ascpu/pkg/DESCR|dima@Chg.RU|sysutils afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://bewoner.dma.be/Albert/afterstep/
asfsm-1.0p15|/usr/ports/sysutils/asfsm|/usr/X11R6|File-system monitor for the AfterStep window manager|/usr/ports/sysutils/asfsm/pkg/DESCR|jack@germanium.xtalwind.net|sysutils afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
asmem-1.4|/usr/ports/sysutils/asmem|/usr/local|An AfterStep look-n-feel memory utilization monitor|/usr/ports/sysutils/asmem/pkg/DESCR|jack@germanium.xtalwind.net|sysutils afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
asmon-0.60|/usr/ports/sysutils/asmon|/usr/local|A swallowable applet monitors the CPU usage, memory and swap, etc|/usr/ports/sysutils/asmon/pkg/DESCR|jack@germanium.xtalwind.net|sysutils afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
asrpages-0.1|/usr/ports/sysutils/asrpages|/usr/local|Alt.sysadmin.recovery manpage collection|/usr/ports/sysutils/asrpages/pkg/DESCR|sheldonh@FreeBSD.org|sysutils|||
bchunk-1.0.0|/usr/ports/sysutils/bchunk|/usr/local|Converts .bin/.cue files to .iso/audio|/usr/ports/sysutils/bchunk/pkg/DESCR|ports@FreeBSD.org|sysutils|||http://hes.iki.fi/bchunk/
bkpupsd-1.0|/usr/ports/sysutils/bkpupsd|/usr/local|A simple UPS daemon for APC BK Pro(TM)|/usr/ports/sysutils/bkpupsd/pkg/DESCR|mwatts@edu1.tokyo-med.ac.jp|sysutils|||
cd-write-1.4.1|/usr/ports/sysutils/cd-write|/usr/local|A X11 based CD-burner|/usr/ports/sysutils/cd-write/pkg/DESCR|jmz@FreeBSD.org|sysutils|XFree86-3.3.5 tcl-8.2.2 tix-4.1.0.007 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tix-4.1.0.007 tk-8.2.2|
cdrecord-1.8a33|/usr/ports/sysutils/cdrecord|/usr/local|Cdrecord and cdda2wav (CD-DA ripper) allow you to record CD-R's|/usr/ports/sysutils/cdrecord/pkg/DESCR|dirk@FreeBSD.org|sysutils audio|gmake-3.78.1||http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html
cfengine-1.5.3|/usr/ports/sysutils/cfengine|/usr/local|GNU cfengine - a systems administration tool for networks|/usr/ports/sysutils/cfengine/pkg/DESCR|jseger@FreeBSD.org|sysutils|||
comconsole-0.1|/usr/ports/sysutils/comconsole|/usr/local|Setup your PC to use serial port COM1 as its console device|/usr/ports/sysutils/comconsole/pkg/DESCR|sada@FreeBSD.org|sysutils|||
consolehm-1.2|/usr/ports/sysutils/consolehm|/usr/local|Console based LM78/LM79 hardware monitor for FreeBSD|/usr/ports/sysutils/consolehm/pkg/DESCR|mmuir@es.co.nz|sysutils|||
contool-3.3a|/usr/ports/sysutils/contool|/usr/X11R6|Console tool for openlook|/usr/ports/sysutils/contool/pkg/DESCR|nsayer@quack.kfu.com|sysutils|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
copytape-1.0|/usr/ports/sysutils/copytape|/usr/local|A program that is used to duplicate magtapes|/usr/ports/sysutils/copytape/pkg/DESCR|ports@FreeBSD.org|sysutils|sharutils-4.2||
cpbk-2.0|/usr/ports/sysutils/cpbk|/usr/local|Backup Copy programm|/usr/ports/sysutils/cpbk/pkg/DESCR|ozz@FreeBSD.org.ru|sysutils|||
cpdup-1.02|/usr/ports/sysutils/cpdup|/usr/local|A comprehensive filesystem mirroring program|/usr/ports/sysutils/cpdup/pkg/DESCR|dillon@FreeBSD.ORG|sysutils|||
daemontools-0.53|/usr/ports/sysutils/daemontools|/usr/local|Service monitoring and logging utilities by djb|/usr/ports/sysutils/daemontools/pkg/DESCR|dom@myrddin.demon.co.uk|sysutils|||http://pobox.com/~djb/daemontools.html
diskusage-1.00|/usr/ports/sysutils/diskusage|/usr/local|Shows current user diskusage in kilobytes|/usr/ports/sysutils/diskusage/pkg/DESCR|maske@intsyst.com|sysutils|||http://www.intsyst.com/freebsd/
doconfig-1.1|/usr/ports/sysutils/doconfig|/usr/local|Kernel `config' wrapper ala Digital Unix's doconfig|/usr/ports/sysutils/doconfig/pkg/DESCR|nectar@FreeBSD.org|sysutils|||
ffsrecov-0.1|/usr/ports/sysutils/ffsrecov|/usr/local|Recover files from a corrupt FFS|/usr/ports/sysutils/ffsrecov/pkg/DESCR|jmg@freebsd.org|sysutils|||
flexbackup-0.9.8|/usr/ports/sysutils/flexbackup|/usr/local|A perl-based, flexible tape backup system. Uses dump, cpio, or afio.|/usr/ports/sysutils/flexbackup/pkg/DESCR|jreynold@primenet.com|sysutils||afio-2.4.5 buffer-1.17.1|http://members.home.com/flexbackup/
gcombust-0.1.25|/usr/ports/sysutils/gcombust|/usr/X11R6|A GTK+ frontend for mkisofs and cdrecord|/usr/ports/sysutils/gcombust/pkg/DESCR|nox@jelal.kn-bremen.de|sysutils|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 cdrecord-1.8a33 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.iki.fi/jmunsin/gcombust
glload-0.4.0|/usr/ports/sysutils/glload|/usr/X11R6|Gl base load monitor|/usr/ports/sysutils/glload/pkg/DESCR|vanilla@FreeBSD.org|sysutils|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|http://student.ex.ba-heidenheim.de/glload
gnomeadmin-1.0.3|/usr/ports/sysutils/gnomeadmin|/usr/X11R6|GNOME administraction package|/usr/ports/sysutils/gnomeadmin/pkg/DESCR|nacai@iname.com|sysutils gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gnomeobjc-1.0.40 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeobjc-1.0.40 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnomecontrolcenter-1.0.51|/usr/ports/sysutils/gnomecontrolcenter|/usr/X11R6|Control center for GNOME project|/usr/ports/sysutils/gnomecontrolcenter/pkg/DESCR|vanilla@FreeBSD.org|sysutils gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gpart-0.1e|/usr/ports/sysutils/gpart|/usr/local|Tries to recover lost partition tables and file systems|/usr/ports/sysutils/gpart/pkg/DESCR|andrew@ugh.net.au|sysutils|gmake-3.78.1||http://home.pages.de/~michab/gpart/
tar-1.12|/usr/ports/sysutils/gtar|/usr/local|The GNU tape archiver|/usr/ports/sysutils/gtar/pkg/DESCR|andreas@FreeBSD.org|sysutils|||
gtop-1.0.5|/usr/ports/sysutils/gtop|/usr/X11R6|GNOME system moniter program|/usr/ports/sysutils/gtop/pkg/DESCR|nakai@FreeBSD.org|sysutils gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libgtop-1.0.6 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
guiTAR-0.1.4|/usr/ports/sysutils/guitar|/usr/X11R6|A gtk+/GNOME frontend to tar, gzip, bzip2, slp, rar, lha, arj and zip|/usr/ports/sysutils/guitar/pkg/DESCR|domi@saargate.de|sysutils|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://disq.bir.net.tr/guitar/
healthd-0.2|/usr/ports/sysutils/healthd|/usr/local|A daemon to monitor vital motherboard parameters|/usr/ports/sysutils/healthd/pkg/DESCR|jim@thehousleys.net|sysutils|||http://healthd.thehousleys.net/
idled-1.16|/usr/ports/sysutils/idled|/usr/local|A daemon that logs out idle users and those users hogging resources|/usr/ports/sysutils/idled/pkg/DESCR|andrew@ugh.net.au|sysutils|||http://www.darkwing.com/idled/
ipsc-0.4.0|/usr/ports/sysutils/ipsc|/usr/local|An IP Subnet Calculator|/usr/ports/sysutils/ipsc/pkg/DESCR|jeremy@external.org|sysutils gnome x11|prips-0.9.2||http://www.interloper.net/~dan/software/software.html
lavaps-1.8|/usr/ports/sysutils/lavaps|/usr/local|lavaps -- a lava lamp of currently running processes|/usr/ports/sysutils/lavaps/pkg/DESCR|johnh@isi.edu|sysutils|XFree86-3.3.5 gcc-2.95.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
libretto-config-1.0b5|/usr/ports/sysutils/libretto-config|/usr/local|Libretto BIOS Setting Program|/usr/ports/sysutils/libretto-config/pkg/DESCR|shige@FreeBSD.org|sysutils|||
lmmon-0.61|/usr/ports/sysutils/lmmon|/usr/local|Display information gathered from MB power management controller|/usr/ports/sysutils/lmmon/pkg/DESCR|jedgar@fxp.org|sysutils|||http://www.fxp.org/~jedgar/
lsof-4.47.2|/usr/ports/sysutils/lsof|/usr/local|Lists information about open files. (simular to fstat(1))|/usr/ports/sysutils/lsof/pkg/DESCR|obrien@FreeBSD.org|sysutils|||
manck-1.2|/usr/ports/sysutils/manck|/usr/local|Manual page consistency checker|/usr/ports/sysutils/manck/pkg/DESCR|wosch@FreeBSD.org|sysutils|||
mei-1.53|/usr/ports/sysutils/mei|/usr/local|Formats magneto-optical disk for MS-DOS FAT filesystem|/usr/ports/sysutils/mei/pkg/DESCR|itojun@itojun.org|sysutils|ja-nkf-1.62||
mkhybrid-1.11.3|/usr/ports/sysutils/mkhybrid|/usr/local|Create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem|/usr/ports/sysutils/mkhybrid/pkg/DESCR|murray@cdrom.com|sysutils|||
mkhybrid-1.12b5.2|/usr/ports/sysutils/mkhybrid12|/usr/local|Create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem|/usr/ports/sysutils/mkhybrid12/pkg/DESCR|murray@cdrom.com|sysutils|||
mkisofs-1.12b5|/usr/ports/sysutils/mkisofs|/usr/local|Create iso9660/Rock Ridge/Joliet filesystems|/usr/ports/sysutils/mkisofs/pkg/DESCR|dirk@FreeBSD.org|sysutils|gmake-3.78.1||
nologin-1.0|/usr/ports/sysutils/no-login|/usr/local|Refuse a login to a user, and make a note of it in syslog|/usr/ports/sysutils/no-login/pkg/DESCR|dburr@FreeBSD.org|sysutils|||
npadmin-0.7|/usr/ports/sysutils/npadmin|/usr/local|An SNMP based command line network printer management tool|/usr/ports/sysutils/npadmin/pkg/DESCR|dom@myrddin.demon.co.uk|sysutils print|||
obliterate-0.4|/usr/ports/sysutils/obliterate|/usr/local|Securely delete file[s].|/usr/ports/sysutils/obliterate/pkg/DESCR|wes@softweyr.com|sysutils|||
pib-1.1|/usr/ports/sysutils/pib|/usr/local|GUI Ports Collection management tool|/usr/ports/sysutils/pib/pkg/DESCR|msmith@freebsd.org|sysutils tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
prips-0.9.2|/usr/ports/sysutils/prips|/usr/local|Prints IP subnet ranges by list or CIDR|/usr/ports/sysutils/prips/pkg/DESCR|jeremy@external.org|sysutils|||http://www.interloper.net/~dan/software/software.html
psmisc-17|/usr/ports/sysutils/psmisc|/usr/local|A port of the Linux pstree, killall and pidof commands|/usr/ports/sysutils/psmisc/pkg/DESCR|rantapaa@uswest.net|sysutils|||
rdate-1.0|/usr/ports/sysutils/rdate|/usr/local|Sets the clock of the local host to the time of another host|/usr/ports/sysutils/rdate/pkg/DESCR|cracauer@cons.org|sysutils|||
roottail-0.0.4b|/usr/ports/sysutils/roottail|/usr/X11R6|Simple utility to tail files/logs to a root X window|/usr/ports/sysutils/roottail/pkg/DESCR|jedgar@fxp.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|http://hypertek.net/root-tail/
rtty-3.2|/usr/ports/sysutils/rtty|/usr/local|Multiuser "tip"/"cu" replacement with logging|/usr/ports/sysutils/rtty/pkg/DESCR|ports@FreeBSD.org|sysutils|||
sdd-1.22|/usr/ports/sysutils/sdd|/usr/local|Faster and improved version of dd|/usr/ports/sysutils/sdd/pkg/DESCR|naddy@mips.rhein-neckar.de|sysutils|gmake-3.78.1||
setquota-0.1|/usr/ports/sysutils/setquota|/usr/local|Command line quota tools|/usr/ports/sysutils/setquota/pkg/DESCR|winter@jurai.net|sysutils|||
skill-3.7.7|/usr/ports/sysutils/skill|/usr/local|SuperKILL, kill or renice processes by pid, name, tty or uid|/usr/ports/sysutils/skill/pkg/DESCR|jonny@jonny.eng.br|sysutils|||
socket-1.1|/usr/ports/sysutils/socket|/usr/local|Create tcp socket and connect to stdin/out|/usr/ports/sysutils/socket/pkg/DESCR|wosch@FreeBSD.org|sysutils net|||
star-1.2|/usr/ports/sysutils/star|/usr/local|Unique standard tape archiver with many enhancements.|/usr/ports/sysutils/star/pkg/DESCR|andreas@FreeBSD.org|sysutils|gmake-3.78.1||
stat-1.3|/usr/ports/sysutils/stat|/usr/local|Print inode contents|/usr/ports/sysutils/stat/pkg/DESCR|wosch@FreeBSD.org|sysutils|||
stmpclean-0.1|/usr/ports/sysutils/stmpclean|/usr/local|Remove old files from temporary directories|/usr/ports/sysutils/stmpclean/pkg/DESCR|shalunov@mccme.ru|sysutils|||
su2-1.3|/usr/ports/sysutils/su2|/usr/local|An enhanced su, allows users to su with own password + more|/usr/ports/sysutils/su2/pkg/DESCR|jmg@freebsd.org|sysutils security|||
tcplist-2.2|/usr/ports/sysutils/tcplist|/usr/local|Lists tcp connections to/from the local machine (+username on both sides)|/usr/ports/sysutils/tcplist/pkg/DESCR|obrien@NUXI.com|sysutils net||lsof-4.47.2|
tua-4.0|/usr/ports/sysutils/tua|/usr/local|The Uucp Analyzer|/usr/ports/sysutils/tua/pkg/DESCR|torstenb@FreeBSD.org|sysutils|||
ucspi-tcp-0.84|/usr/ports/sysutils/ucspi-tcp|/usr/local|Command-line tools for building TCP client-server applications|/usr/ports/sysutils/ucspi-tcp/pkg/DESCR|dom@myrddin.demon.co.uk|sysutils net|||http://pobox.com/~djb/ucspi-tcp.html
upsd-2.0|/usr/ports/sysutils/upsd|/usr/local|APC Smart UPS Monitoring Daemon|/usr/ports/sysutils/upsd/pkg/DESCR|alexis@ww.net|sysutils|||
upsmon-2.1.3|/usr/ports/sysutils/upsmon|/usr/local|Basic UPS monitor for the APC SmartUPS devices|/usr/ports/sysutils/upsmon/pkg/DESCR|ports@FreeBSD.org|sysutils|||
uwatch-1.0|/usr/ports/sysutils/uwatch|/usr/local|Monitor user's logins and logouts.|/usr/ports/sysutils/uwatch/pkg/DESCR|howardjp@wam.umd.edu|sysutils|||
webmin-0.73|/usr/ports/sysutils/webmin|/usr/local|Web-based interface for system administration for Unix|/usr/ports/sysutils/webmin/pkg/DESCR|andreas@FreeBSD.org|sysutils|||http://www.webmin.com/webmin/
wmapm-3.01|/usr/ports/sysutils/wmapm|/usr/X11R6|Laptop battery status display for WindowMaker|/usr/ports/sysutils/wmapm/pkg/DESCR|taoka@FreeBSD.org|sysutils windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmavgload-0.7.0|/usr/ports/sysutils/wmavgload|/usr/X11R6|Another WindowMaker load gauge|/usr/ports/sysutils/wmavgload/pkg/DESCR|kushn@mail.kar.net|sysutils windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmbattery-1.11|/usr/ports/sysutils/wmbattery|/usr/X11R6|WindowMaker dockapp that displays info about your battery|/usr/ports/sysutils/wmbattery/pkg/DESCR|andrews@technologist.com|sysutils windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://kitenet.net/programs/wmbattery/
wmfire-0.0.3.9|/usr/ports/sysutils/wmfire|/usr/X11R6|Window Maker dock app showing load average as a flame|/usr/ports/sysutils/wmfire/pkg/DESCR|jedgar@fxp.org|sysutils|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmhm-1.3|/usr/ports/sysutils/wmhm|/usr/local|WindowMaker dockable LM78/LM79 hardware monitor for FreeBSD|/usr/ports/sysutils/wmhm/pkg/DESCR|mmuir@es.co.nz|sysutils windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.mongol.dhis.org/wmhm/
wminet-2.0.2|/usr/ports/sysutils/wminet|/usr/X11R6|WindowMaker dockable inetd monitor|/usr/ports/sysutils/wminet/pkg/DESCR|sk-ports@vegamuse.org|sysutils windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmlmmon-0.60|/usr/ports/sysutils/wmlmmon|/usr/X11R6|WM dock app to display info from MB power management controllers|/usr/ports/sysutils/wmlmmon/pkg/DESCR|jedgar@fxp.org|sysutils windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.fxp.org/~jedgar/
wmmon-1.0b2|/usr/ports/sysutils/wmmon|/usr/X11R6|WindowMaker dockable system load/performance monitor|/usr/ports/sysutils/wmmon/pkg/DESCR|sk-ports@vegamuse.org|sysutils windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmmount-1.0b1|/usr/ports/sysutils/wmmount|/usr/X11R6|The freespace for Window Maker|/usr/ports/sysutils/wmmount/pkg/DESCR|ozz@FreeBSD.org.ru|sysutils windowmaker afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.geocities.com/SiliconValley/Vista/2471/
xbatt-1.2.1|/usr/ports/sysutils/xbatt|/usr/X11R6|Laptop battery status display for X11|/usr/ports/sysutils/xbatt/pkg/DESCR|nobu@psrc.isac.co.jp|sysutils|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xcpustate-2.5|/usr/ports/sysutils/xcpustate|/usr/X11R6|System monitoring utility graphicaly showing cpu load and status|/usr/ports/sysutils/xcpustate/pkg/DESCR|obrien@FreeBSD.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xdu-3.0|/usr/ports/sysutils/xdu|/usr/X11R6|Graphically display output of du|/usr/ports/sysutils/xdu/pkg/DESCR|ports@FreeBSD.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xfsm-1.99|/usr/ports/sysutils/xfsm|/usr/X11R6|X File System Monitor|/usr/ports/sysutils/xfsm/pkg/DESCR|vanilla@FreeBSD.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xloadface-1.6.1|/usr/ports/sysutils/xloadface|/usr/X11R6|Network load monitor for X11|/usr/ports/sysutils/xloadface/pkg/DESCR|kazu@jp.freebsd.org|sysutils|XFree86-3.3.5 ja-nkf-1.62|XFree86-3.3.5|
xlogmaster-1.6.0|/usr/ports/sysutils/xlogmaster|/usr/local|Quick & easy monitoring of logfiles and devices|/usr/ports/sysutils/xlogmaster/pkg/DESCR|aw1@stade.co.uk|sysutils|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://porter.desy.de/~greve/xlogmaster/
xosview-1.7.3|/usr/ports/sysutils/xosview|/usr/X11R6|A graphical performance meter|/usr/ports/sysutils/xosview/pkg/DESCR|obrien@FreeBSD.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|http://lore.ece.utexas.edu/~bgrayson/xosview.html
xperfmon++-2.0|/usr/ports/sysutils/xperfmon|/usr/X11R6|A graphical X11 system performance monitor|/usr/ports/sysutils/xperfmon/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xperfmon++-3.0|/usr/ports/sysutils/xperfmon3|/usr/X11R6|Xperfmon++ : A graphical X11 system performance monitor|/usr/ports/sysutils/xperfmon3/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xsysinfo-1.4a|/usr/ports/sysutils/xsysinfo|/usr/X11R6|A system information display tool|/usr/ports/sysutils/xsysinfo/pkg/DESCR|jdli@csie.nctu.edu.tw|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xsysstats-1.34|/usr/ports/sysutils/xsysstats|/usr/X11R6|A system information display tool|/usr/ports/sysutils/xsysstats/pkg/DESCR|obrien@FreeBSD.org|sysutils|XFree86-3.3.5|XFree86-3.3.5|
xwatch-0.1.0|/usr/ports/sysutils/xwatch|/usr/local|A Gtk-based program for watching files (e.g. logs) in a window|/usr/ports/sysutils/xwatch/pkg/DESCR|mph@freebsd.org|sysutils|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
agrep-2.04|/usr/ports/textproc/agrep|/usr/local|Approximate grep (fast approximate pattern-matching tool)|/usr/ports/textproc/agrep/pkg/DESCR|obrien@NUXI.com|textproc|||
aspell-0.28.2.1|/usr/ports/textproc/aspell|/usr/local|Spelling checker with better suggestion logic than ispell|/usr/ports/textproc/aspell/pkg/DESCR|ade@lovett.com|textproc|gcc-2.95.2 gmake-3.78.1 libtool-1.3.3||http://metalab.unc.edu/kevina/aspell/
br-ispell-2.4|/usr/ports/textproc/br-ispell|/usr/local|Ispell dictionary for brazilian portuguese|/usr/ports/textproc/br-ispell/pkg/DESCR|jonny@jonny.eng.br|textproc|ispell-3.1.20c||http://www.ime.usp.br/~ueda/br.ispell
c2html-0.6.3|/usr/ports/textproc/c2html|/usr/local|C-language sources to HTML converter|/usr/ports/textproc/c2html/pkg/DESCR|mkamm@gmx.net|textproc www|autoconf-2.13 m4-1.4||
catdoc-0.90.3|/usr/ports/textproc/catdoc|/usr/local|Convert MS Word documents to plain ASCII or TeX. TK viewer included|/usr/ports/textproc/catdoc/pkg/DESCR|brion@queeg.com|textproc|||http://www.ice.ru/~vitus/catdoc/
cocoon-1.5|/usr/ports/textproc/cocoon|/usr/local|100% pure Java publishing framework servlet|/usr/ports/textproc/cocoon/pkg/DESCR|kuriyama@FreeBSD.org|textproc www java||apache-1.3.9 apache-jserv-1.0 jdk-1.1.8 jsdk-2.0|http://java.apache.org/cocoon/
code2html-0.8.7c|/usr/ports/textproc/code2html|/usr/local|Sourcecode to HTML converter|/usr/ports/textproc/code2html/pkg/DESCR|jedgar@fxp.org|textproc||bzip2-0.9.5d|http://www.cosy.sbg.ac.at/~ppalfrad/code2html/
dict-1.4.9|/usr/ports/textproc/dict|/usr/local|Dictionary Server Protocol (RFC2229) client|/usr/ports/textproc/dict/pkg/DESCR|obrien@FreeBSD.org|textproc|gmake-3.78.1||http://www.dict.org/
diffstat-1.27|/usr/ports/textproc/diffstat|/usr/local|Make a histogram summarizing "diff" output|/usr/ports/textproc/diffstat/pkg/DESCR|trevor@jpj.net|textproc devel|||http://www.clark.net/pub/dickey/diffstat/diffstat.html
docbook-1.0|/usr/ports/textproc/docbook|/usr/local|Meta-port for the different versions of the DocBook DTD|/usr/ports/textproc/docbook/pkg/DESCR|nik@freebsd.org|textproc||docbook-241 docbook-3.0 docbook-3.1 iso8879-1986|http://www.oasis-open.org/docbook/
docbook-241|/usr/ports/textproc/docbook-241|/usr/local|V2.4.1 of the DocBook DTD, designed for technical documentation|/usr/ports/textproc/docbook-241/pkg/DESCR|nik@FreeBSD.org|textproc||iso8879-1986|http://www.ora.com/davenport/
docbook-3.0|/usr/ports/textproc/docbook-300|/usr/local|V3.0 of the DocBook DTD, designed for technical documentation|/usr/ports/textproc/docbook-300/pkg/DESCR|nik@FreeBSD.org|textproc||iso8879-1986|http://www.ora.com/davenport/
docbook-3.1|/usr/ports/textproc/docbook-310|/usr/local|V3.1 of the DocBook DTD, designed for technical documentation|/usr/ports/textproc/docbook-310/pkg/DESCR|nik@FreeBSD.org|textproc|unzip-5.40|iso8879-1986|http://www.ora.com/davenport/
docbook-xml-3.1.7|/usr/ports/textproc/docbook-xml|/usr/local|XML version of the DocBook V3.1 DTD|/usr/ports/textproc/docbook-xml/pkg/DESCR|kuriyama@FreeBSD.org|textproc|unzip-5.40||http://nwalsh.com/docbook/xml/
docproj-1.1|/usr/ports/textproc/docproj|/usr/local|The "meta-port" for the FreeBSD Documentation Project|/usr/ports/textproc/docproj/pkg/DESCR|nik@freebsd.org|textproc||docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 dsssl-docbook-modular-1.48 html-4.0b iso8879-1986 jade-1.2.1 linuxdoc-1.1 lynx-2.8.2rel.1 sgmlformat-1.7 sp-1.3 tidy-0.10.99.1|
dsssl-docbook-modular-1.48|/usr/ports/textproc/dsssl-docbook-modular|/usr/local|DSSSL stylesheets for the DocBook DTD by Norman Walsh|/usr/ports/textproc/dsssl-docbook-modular/pkg/DESCR|kuriyama@FreeBSD.org|textproc|docbook-3.0 iso8879-1986 unzip-5.40|docbook-3.0 iso8879-1986|
dtd-catalogs-1.0|/usr/ports/textproc/dtd-catalogs|/usr/local|SGML DTDs catalogs|/usr/ports/textproc/dtd-catalogs/pkg/DESCR|shige@FreeBSD.org|textproc||docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 html-4.0b iso12083-1993 iso8879-1986 linuxdoc-1.1|
expat-1.1|/usr/ports/textproc/expat|/usr/local|XML 1.0 parser written in C|/usr/ports/textproc/expat/pkg/DESCR|dirk@FreeBSD.org|textproc|unzip-5.40||http://www.jclark.com/xml/expat.html
freegrep-0.14|/usr/ports/textproc/freegrep|/usr/local|An implementation of grep(1) under a BSD-friendly license|/usr/ports/textproc/freegrep/pkg/DESCR|howardjp@wam.umd.edu|textproc|freelibiberty-0.1|freelibiberty-0.1|
gdict-0.7|/usr/ports/textproc/gdict|/usr/local|Small program that finds definitions of arbitrary (english) words|/usr/ports/textproc/gdict/pkg/DESCR|domi@saargate.de|textproc|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.psilord.com/code/
glimpse-4.1|/usr/ports/textproc/glimpse|/usr/local|Text search engine|/usr/ports/textproc/glimpse/pkg/DESCR|chuckr@freebsd.org|textproc databases|gmake-3.78.1||http://glimpse.cs.arizona.edu/
grap-0.95b|/usr/ports/textproc/grap|/usr/local|An implementation of Kernigan & Bentley's grap language|/usr/ports/textproc/grap/pkg/DESCR|faber@lunabase.org|textproc graphics|||http://www.kohala.com/~rstevens/troff/troff.html
gxditview-1.10|/usr/ports/textproc/gxditview|/usr/X11R6|An X11 based previewer for groff output|/usr/ports/textproc/gxditview/pkg/DESCR|dom@myrddin.demon.co.uk|textproc|XFree86-3.3.5|XFree86-3.3.5|
htdig-3.1.3|/usr/ports/textproc/htdig|/usr/local|A www indexing and searching system|/usr/ports/textproc/htdig/pkg/DESCR|billf@FreeBSD.org|textproc www||apache-1.3.9|http://www.htdig.org
html-4.0b|/usr/ports/textproc/html|/usr/local|All W3C published SGML DTDs for HTML|/usr/ports/textproc/html/pkg/DESCR|jfieber@FreeBSD.org|textproc|||
info2html-1.1|/usr/ports/textproc/info2html|/usr/local|Translate GNU info files into HTML pages|/usr/ports/textproc/info2html/pkg/DESCR|wosch@FreeBSD.org|textproc|||
isearch-1.14|/usr/ports/textproc/isearch|/usr/local|Text Search Engine by CNIDR|/usr/ports/textproc/isearch/pkg/DESCR|giffunip@asme.org|textproc databases|||http://www.cnidr.org/ir/isearch.html
iso12083-1993|/usr/ports/textproc/iso12083|/usr/local|SGML DTDs from the The Electronic Publishing Special Interest Group|/usr/ports/textproc/iso12083/pkg/DESCR|jfieber@FreeBSD.org|textproc|||
iso8879-1986|/usr/ports/textproc/iso8879|/usr/local|Character entity sets from ISO 8879:1986 (SGML)|/usr/ports/textproc/iso8879/pkg/DESCR|jfieber@FreeBSD.org|textproc|unzip-5.40||
ispell-3.1.20c|/usr/ports/textproc/ispell|/usr/local|An interactive spelling checker|/usr/ports/textproc/ispell/pkg/DESCR|jmz@FreeBSD.org|textproc elisp|||http://fmg-www.cs.ucla.edu/geoff/ispell.html
jade-1.2.1|/usr/ports/textproc/jade|/usr/local|An object-oriented SGML/XML parser toolkit and DSSSL engine|/usr/ports/textproc/jade/pkg/DESCR|jfieber@FreeBSD.org|textproc|||
java2html-0.6.3|/usr/ports/textproc/java2html|/usr/local|Java sources to HTML converter|/usr/ports/textproc/java2html/pkg/DESCR|mkamm@gmx.net|textproc www|autoconf-2.13 m4-1.4||
latex2html-98.1p1|/usr/ports/textproc/latex2html|/usr/local|Convert LaTeX documents to HTML|/usr/ports/textproc/latex2html/pkg/DESCR|brett@peloton.runet.edu|textproc||XFree86-3.3.5 dvips-5.76 ghostscript-5.10 gsfonts-5.10 jpeg-6b latex2e-99.06 netpbm-8.0 png-1.0.5 tex-3.14159 tiff-3.5.3|
latte-1.1|/usr/ports/textproc/latte|/usr/local|Simple language for marking up text in a very expressive way|/usr/ports/textproc/latte/pkg/DESCR|dr@domix.de|textproc|gcc-2.95.2 libtool-1.3.3||
libxml-1.7.3|/usr/ports/textproc/libxml|/usr/local|Xml parser library for GNOME|/usr/ports/textproc/libxml/pkg/DESCR|nakai@FreeBSD.org|textproc gnome|libtool-1.3.3||
linuxdoc-1.1|/usr/ports/textproc/linuxdoc|/usr/local|The Linuxdoc SGML DTD|/usr/ports/textproc/linuxdoc/pkg/DESCR|jfieber@FreeBSD.org|textproc||iso8879-1986|
lotusxsl-0.18.4|/usr/ports/textproc/lotusxsl|/usr/local|XSLT (XSL Transformations) implementation|/usr/ports/textproc/lotusxsl/pkg/DESCR|kuriyama@FreeBSD.org|textproc|unzip-5.40|jdk-1.1.8 jfc-1.1.1 xml4j-2.0.15|http://www.alphaworks.ibm.com/formula/lotusxsl/
man2html-3.0.1|/usr/ports/textproc/man2html|/usr/local|Convert nroff(1) man pages to HTML|/usr/ports/textproc/man2html/pkg/DESCR|demon@gpad.ac.ru|textproc|||http://www.oac.uci.edu/indiv/ehood/man2html.html
mgdiff-1.0|/usr/ports/textproc/mgdiff|/usr/X11R6|A graphical front end to the Unix diff command|/usr/ports/textproc/mgdiff/pkg/DESCR|andreas@marvin.robin.de|textproc|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
mswordview-0.5.14.6|/usr/ports/textproc/mswordview|/usr/local|MS-WORD to HTML converter|/usr/ports/textproc/mswordview/pkg/DESCR|sumikawa@kame.net|textproc|XFree86-3.3.5 freetype-1.3 libwmf-0.1.16 xpm-3.4k|XFree86-3.3.5|http://www.csn.ul.ie/~caolan/docs/MSWordView.html
nfbtrans-7.53|/usr/ports/textproc/nfbtrans|/usr/local|ASCII text to Grade Two braille translator|/usr/ports/textproc/nfbtrans/pkg/DESCR|max@FreeBSD.org|textproc|unzip-5.40||
nicetext-0.9|/usr/ports/textproc/nicetext|/usr/local|Convert files to pseudo-natural-language text and back again|/usr/ports/textproc/nicetext/pkg/DESCR|markc@ctgi.net|textproc|gmake-3.78.1||http://www.ctgi.net/nicetext/index.html
Text-CSV_XS-0.20|/usr/ports/textproc/p5-Text-CSV_XS|/usr/local|Composition and decomposition of comma-separated values.|/usr/ports/textproc/p5-Text-CSV_XS/pkg/DESCR|ache@FreeBSD.org|textproc perl5|||
p5-Text-Template-1.20|/usr/ports/textproc/p5-Text-Template|/usr/local|Expand template text with embedded Perl|/usr/ports/textproc/p5-Text-Template/pkg/DESCR|ports@FreeBSD.org|textproc perl5|||http://www.plover.com/~mjd/perl/Template/
p5-XML-DOM-1.25|/usr/ports/textproc/p5-XML-DOM|/usr/local|Perl module for building DOM Level 1 compliant document structures|/usr/ports/textproc/p5-XML-DOM/pkg/DESCR|kuriyama@FreeBSD.org|textproc perl5||p5-XML-Parser-2.27|
p5-XML-Parser-2.27|/usr/ports/textproc/p5-XML-Parser|/usr/local|Perl extension interface to James Clark's XML parser, expat|/usr/ports/textproc/p5-XML-Parser/pkg/DESCR|kuriyama@FreeBSD.org|textproc perl5|||http://www.netheaven.com/~coopercc/xmlparser/intro.html
par-1.50|/usr/ports/textproc/par|/usr/local|Paragraph reformatter for email|/usr/ports/textproc/par/pkg/DESCR|mark@grondar.za|textproc|||http://www.cs.berkeley.edu/~amc/Par/
perl2html-0.6.3|/usr/ports/textproc/perl2html|/usr/local|Perl sources to HTML converter|/usr/ports/textproc/perl2html/pkg/DESCR|mkamm@gmx.net|textproc www|autoconf-2.13 m4-1.4||
prag-1.0.12|/usr/ports/textproc/prag|/usr/local|A subset of the grap(1) *roff preprocessor|/usr/ports/textproc/prag/pkg/DESCR|dom@myrddin.demon.co.uk|textproc|||
py-mxTextTools-1.1.1|/usr/ports/textproc/py-mxTextTools|/usr/local|Tools for fast text processing in python|/usr/ports/textproc/py-mxTextTools/pkg/DESCR|tg@FreeBSD.org|textproc python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2 unzip-5.40|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.skyport.net/~lemburg/mxTextTools.html
py-xml-0.5.1|/usr/ports/textproc/py-xml|/usr/local|The Python XML package, including parser, SAX, DOM, and Expat|/usr/ports/textproc/py-xml/pkg/DESCR|nectar@FreeBSD.org|textproc python||XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://www.python.org/sigs/xml-sig/
rand-1.5|/usr/ports/textproc/rand|/usr/local|Utility to display files or streams in random order|/usr/ports/textproc/rand/pkg/DESCR|domi@saargate.de|textproc|||http://math.smsu.edu/~br0ke/rand.html
rman-3.0.8|/usr/ports/textproc/rman|/usr/local|Reverse compile man pages from formatted form|/usr/ports/textproc/rman/pkg/DESCR|tg@FreeBSD.org|textproc|||
sarep-1.1|/usr/ports/textproc/sarep|/usr/local|A command-line search & replace tool written in Perl, understand regex|/usr/ports/textproc/sarep/pkg/DESCR|ache@freebsd.org|textproc||Text-CSV_XS-0.20|
sgmlformat-1.7|/usr/ports/textproc/sgmlformat|/usr/local|Generates groff and HTML from linuxdoc and docbook SGML documents|/usr/ports/textproc/sgmlformat/pkg/DESCR|jfieber@FreeBSD.org|textproc print||docbook-1.0 docbook-241 docbook-3.0 docbook-3.1 iso8879-1986 jade-1.2.1 linuxdoc-1.1|
sgrep-0.99|/usr/ports/textproc/sgrep|/usr/local|A `grep' for structured text like SGML and HTML|/usr/ports/textproc/sgrep/pkg/DESCR|jkoshy@freebsd.org|textproc|||
sp-1.3|/usr/ports/textproc/sp|/usr/local|An object-oriented toolkit for SGML parsing and entity management|/usr/ports/textproc/sp/pkg/DESCR|chuckr@FreeBSD.org|textproc|||http://www.jclark.com/sp/
texi2html-1.52|/usr/ports/textproc/texi2html|/usr/local|Texinfo to HTML converter|/usr/ports/textproc/texi2html/pkg/DESCR|i.vaudrey@bigfoot.com|textproc|||
textutils-2.0|/usr/ports/textproc/textutils|/usr/local|GNU text utilities|/usr/ports/textproc/textutils/pkg/DESCR|aw1@stade.co.uk|textproc|gmake-3.78.1||
tkdiff-3.04|/usr/ports/textproc/tkdiff|/usr/local|A Tk frontend for diff(1)|/usr/ports/textproc/tkdiff/pkg/DESCR|kevlo@FreeBSD.org|textproc tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.ede.com/free/tkdiff/
tth-2.22|/usr/ports/textproc/tth|/usr/local|A TeX to HTML translator|/usr/ports/textproc/tth/pkg/DESCR|ports@FreeBSD.org|textproc||XFree86-3.3.5 ghostscript-5.10 gsfonts-5.10 jpeg-6b libwww-5.2.6 netpbm-8.0 png-1.0.5 teTeX-1.0.6 tiff-3.5.3|http://hutchinson.belmont.ma.us/tth/tth.html
txt2html-1.25|/usr/ports/textproc/txt2html|/usr/local|Convert raw text to something with a little HTML formatting|/usr/ports/textproc/txt2html/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|textproc|||http://www.thehouse.org/txt2html/
unroff-1.0.2|/usr/ports/textproc/unroff|/usr/local|A programmable troff translator with backend for HTML|/usr/ports/textproc/unroff/pkg/DESCR|wosch@freebsd.org|textproc|XFree86-3.3.5 elk-3.0.3|XFree86-3.3.5 elk-3.0.3|
urlview-0.7|/usr/ports/textproc/urlview|/usr/local|URL extractor/launcher|/usr/ports/textproc/urlview/pkg/DESCR|obrien@FreeBSD.org|textproc www|||
wdiff-0.5|/usr/ports/textproc/wdiff|/usr/local|Display word differences between text files|/usr/ports/textproc/wdiff/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|textproc|||
word2x-0.003|/usr/ports/textproc/word2x|/usr/local|Converter from MS Word to text, HTML or LaTeX|/usr/ports/textproc/word2x/pkg/DESCR|billf@FreeBSD.org|textproc|gmake-3.78.1||
xml4j-2.0.15|/usr/ports/textproc/xml4j|/usr/local|XML for Java parser|/usr/ports/textproc/xml4j/pkg/DESCR|kuriyama@FreeBSD.org|textproc||jdk-1.1.8 jfc-1.1.1|http://www.alphaworks.ibm.com/tech/xml4j/
xp-0.5|/usr/ports/textproc/xp|/usr/local|An XML parser written in Java|/usr/ports/textproc/xp/pkg/DESCR|mike@vee.net|textproc java|unzip-5.40|jdk-1.1.8|http://www.jclark.com/xml/xp/index.html
xt-19991105|/usr/ports/textproc/xt|/usr/local|XSL Transformations (XSLT) implementation in Java|/usr/ports/textproc/xt/pkg/DESCR|kuriyama@FreeBSD.org|textproc|unzip-5.40|jdk-1.1.8|http://www.jclark.com/xt/
yodl-1.22|/usr/ports/textproc/yodl|/usr/local|An easy to use but powerful document formatting/preparation language|/usr/ports/textproc/yodl/pkg/DESCR|dburr@FreeBSD.org|textproc|bash-1.14.7 dvips-5.76 gmake-3.78.1 latex2e-99.06 tex-3.14159|bash-1.14.7 dvips-5.76 latex2e-99.06 tex-3.14159|
vi-vn7to8-1.1.1|/usr/ports/vietnamese/vn7to8|/usr/local|Converts between 7-bit Vietnamese VIQR and 8-bit VISCII formats|/usr/ports/vietnamese/vn7to8/pkg/DESCR|obrien@FreeBSD.org|vietnamese|||
vi-vnelvis-1.4|/usr/ports/vietnamese/vnelvis|/usr/local|A vi clone that speaks Vietnamese|/usr/ports/vietnamese/vnelvis/pkg/DESCR|obrien@FreeBSD.org|vietnamese editors|||
vi-vnless-1.0|/usr/ports/vietnamese/vnless|/usr/local|A pager utility that speaks Vietnamese|/usr/ports/vietnamese/vnless/pkg/DESCR|obrien@FreeBSD.org|vietnamese|||
vi-vnlpr-2.0|/usr/ports/vietnamese/vnlpr|/usr/local|Shell script and set of fonts to print Vietnamese text on PostScript printer|/usr/ports/vietnamese/vnlpr/pkg/DESCR|obrien@FreeBSD.org|vietnamese print||vi-vn7to8-1.1.1 vi-vnpstext-1.1|
vi-vnpstext-1.1|/usr/ports/vietnamese/vnpstext|/usr/local|Converts 8-bit VISCII Vietnamese text into PostScript|/usr/ports/vietnamese/vnpstext/pkg/DESCR|obrien@FreeBSD.org|vietnamese print|||
vi-vnroff-2.0|/usr/ports/vietnamese/vnroff|/usr/local|Converts Vietnamese VIQR text into troff format|/usr/ports/vietnamese/vnroff/pkg/DESCR|obrien@FreeBSD.org|vietnamese print|||
vi-vnterm-3.3|/usr/ports/vietnamese/vnterm|/usr/X11R6|An xterm that speaks Vietnamese|/usr/ports/vietnamese/vnterm/pkg/DESCR|obrien@FreeBSD.org|vietnamese x11|XFree86-3.3.5|XFree86-3.3.5|
mosaic-2.7b5|/usr/ports/www/Mosaic|/usr/X11R6|A World Wide Web browser|/usr/ports/www/Mosaic/pkg/DESCR|ports@FreeBSD.org|www|Motif-2.1.10 XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|
WebMagick-1.46|/usr/ports/www/WebMagick|/usr/local|Image Web Generator - recursively build HTML pages, imagemaps, thumbnails|/usr/ports/www/WebMagick/pkg/DESCR|ache@freebsd.org|www graphics|ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 jbigkit-1.0 jpeg-6b png-1.0.5 tiff-3.5.3|ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 jbigkit-1.0 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.cyberramp.net/~bfriesen/webmagick/
adzapper-0.1.30|/usr/ports/www/adzapper|/usr/local|A filtering proxy that can block ads from being displayed|/usr/ports/www/adzapper/pkg/DESCR|dr@domix.de|www|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
amaya-2.2|/usr/ports/www/amaya|/usr/local|The W3C's testbed web editor/browser|/usr/ports/www/amaya/pkg/DESCR|croyle@gelemna.ft-wayne.in.us|www|Motif-2.1.10 XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.w3.org/Amaya/
analog-4.0|/usr/ports/www/analog|/usr/local|An extremely fast program for analysing WWW logfiles|/usr/ports/www/analog/pkg/DESCR|ache@freebsd.org|www|||http://www.statslab.cam.ac.uk/~sret1/analog/
apache-jserv-1.0|/usr/ports/www/apache-jserv|/usr/local|Loadable servlet module for apache|/usr/ports/www/apache-jserv/pkg/DESCR|greg@greg.rim.or.jp|www java|apache-1.3.9 jdk-1.1.8 jsdk-2.0 libtool-1.3.3|apache-1.3.9 jdk-1.1.8 jsdk-2.0|http://java.apache.org/jserv/
apache-1.3.9|/usr/ports/www/apache13|/usr/local|The extremely popular Apache http server. Very fast, very clean|/usr/ports/www/apache13/pkg/DESCR|ache@freebsd.org|www|||
apache_fp-1.3.9|/usr/ports/www/apache13-fp|/usr/local|The extremely popular Apache http server w/MS FrontPage Extentions|/usr/ports/www/apache13-fp/pkg/DESCR|hetzels@westbend.net|www|||
apache+mod_ssl-1.3.9+2.4.9|/usr/ports/www/apache13-modssl|/usr/local|The Apache 1.3 webserver with SSL/TLS functionality|/usr/ports/www/apache13-modssl/pkg/DESCR|rse@engelschall.com|www security|mm-1.0.12 openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
apache+php-1.3.9+3.0.12|/usr/ports/www/apache13-php3|/usr/local|Apache http server with database support via compiled in PHP module|/usr/ports/www/apache13-php3/pkg/DESCR|dirk@FreeBSD.org|www|||
apache+php-1.3.9+4.0b2|/usr/ports/www/apache13-php4|/usr/local|Apache http server with database support via compiled in PHP module|/usr/ports/www/apache13-php4/pkg/DESCR|dirk@FreeBSD.org|www|||
apache+ssl-1.3.9+1.37|/usr/ports/www/apache13-ssl|/usr/local|Apache-SSL: Apache secure webserver integrating OpenSSL|/usr/ports/www/apache13-ssl/pkg/DESCR|adam@algroup.co.uk|www security|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|
arena-i18n-beta3b|/usr/ports/www/arena|/usr/local|Experimental HTML 3 browser, supports math and style sheets|/usr/ports/www/arena/pkg/DESCR|ache@FreeBSD.org|www|XFree86-3.3.5 jpeg-6b png-1.0.5|XFree86-3.3.5 jpeg-6b png-1.0.5|
ashe-1.1.2|/usr/ports/www/ashe|/usr/X11R6|A simple HTML editor|/usr/ports/www/ashe/pkg/DESCR|ports@FreeBSD.org|www|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
asWedit-4.0.1|/usr/ports/www/aswedit|/usr/local|An easy to use HTML and text editor|/usr/ports/www/aswedit/pkg/DESCR|brett@peloton.runet.edu|editors www||linux_base-5.2 rpm-2.5.6|http://sunsite.doc.ic.ac.uk/packages/www/asWedit/
bacon-1.071999|/usr/ports/www/bacon|/usr/local|Quick, easy-to-read, web statistics program|/usr/ports/www/bacon/pkg/DESCR|jmrobins@samurai.ruin.org|www|||http://bacon.ruin.org/
bluefish-0.3.4|/usr/ports/www/bluefish|/usr/X11R6|HTML editor designed for the experienced web designer|/usr/ports/www/bluefish/pkg/DESCR|jim@FreeBSD.org|www editors|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3 weblint-1.020|http://bluefish.linuxbox.com/
boa-0.92|/usr/ports/www/boa|/usr/local|High performance single-tasking web server|/usr/ports/www/boa/pkg/DESCR|andy@icc.surw.chel.su|www|||http://www.boa.org
calamaris-2.27|/usr/ports/www/calamaris|/usr/local|A perl script to product statistics out of Squid log files|/usr/ports/www/calamaris/pkg/DESCR|dima@Chg.RU|www textproc|||http://Calamaris.Cord.de/
cgi-lib-2.18|/usr/ports/www/cgi-lib|/usr/local|A library for CGI scripting in Perl|/usr/ports/www/cgi-lib/pkg/DESCR|sada@FreeBSD.ORG|www|||http://cgi-lib.stanford.edu/cgi-lib/
cgihtml-1.69|/usr/ports/www/cgihtml|/usr/local|Library that simplifies the task of writing CGI programs in C|/usr/ports/www/cgihtml/pkg/DESCR|i.vaudrey@bigfoot.com|devel www|||
cgiparse-0.8e|/usr/ports/www/cgiparse|/usr/local|C library to parse CGI Forms|/usr/ports/www/cgiparse/pkg/DESCR|jmg@FreeBSD.org|devel|||
cgiwrap-3.6.3|/usr/ports/www/cgiwrap|/usr/local|Make certain that CGI scripts run with the user's permissions|/usr/ports/www/cgiwrap/pkg/DESCR|bjn@visi.com|www|||http://wwwcgi.umr.edu/~cgiwrap
checkbot-1.54|/usr/ports/www/checkbot|/usr/local|A WWW link verifier, similar like momspider|/usr/ports/www/checkbot/pkg/DESCR|wosch@FreeBSD.org|www perl5|p5-Mail-Tools-1.12 p5-Net-1.0606 p5-libwww-5.44||http://www.xs4all.nl/~graaff/checkbot/
chimera-1.70p0|/usr/ports/www/chimera|/usr/X11R6|X/Athena World-Wide Web client|/usr/ports/www/chimera/pkg/DESCR|jseger@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
chimera-2.0a15|/usr/ports/www/chimera2|/usr/X11R6|X/Athena World-Wide Web client - Wilbur (HTML3.2) compliant|/usr/ports/www/chimera2/pkg/DESCR|bgingery@gtcs.com|www|XFree86-3.3.5 jpeg-6b png-1.0.5|XFree86-3.3.5 jpeg-6b png-1.0.5|http://www.unlv.edu/chimera/two/
comline-4.0D|/usr/ports/www/comline|/usr/local|W3C Command Line WWW Tool|/usr/ports/www/comline/pkg/DESCR|ache@freebsd.org|www|||http://www.w3.org/ComLine/
css-mode-elisp-0.10|/usr/ports/www/css-mode.el|/usr/local|A CSS(Cascade Style Sheet) editing mode for Emacsen|/usr/ports/www/css-mode.el/pkg/DESCR|shige@FreeBSD.org|www elisp|||http://www.stud.ifi.uio.no/~lmariusg/download/css-mode.html
demoroniser-1.0|/usr/ports/www/demoroniser|/usr/local|Correct moronic and gratuitously incompatible HTML from MS applications|/usr/ports/www/demoroniser/pkg/DESCR|jedgar@fxp.org|www|unzip-5.40||
erwn-0.3.1|/usr/ports/www/erwn|/usr/X11R6|Simple (at the moment) html editor based on GTK+|/usr/ports/www/erwn/pkg/DESCR|jim@FreeBSD.org|www editors|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www-stud.fht-esslingen.de/erwin/
evg-1.0.1|/usr/ports/www/evg|/usr/local|Create index pages in HTML for photo galleries|/usr/ports/www/evg/pkg/DESCR|dima@Chg.RU|www||ImageMagick-4.2.9 XFree86-3.3.5 freetype-1.3 jbigkit-1.0 jpeg-6b png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xv-3.10a|http://eclipt.uni-klu.ac.at/projects/evg/
fcgi-devkit-2.1|/usr/ports/www/fcgi|/usr/local|FastCGI Development Kit|/usr/ports/www/fcgi/pkg/DESCR|kbyanc@posi.net|www|||http://www.fastcgi.com/
flashplugin-0.4.3|/usr/ports/www/flashplugin|/usr/local|A Macromedia Flash plugin for Netscape|/usr/ports/www/flashplugin/pkg/DESCR|knu@idaemons.org|www graphics|XFree86-3.3.5|XFree86-3.3.5|http://www.geocities.com/TimesSquare/Labyrinth/5084/flash.html
fxhtml-1.6.7|/usr/ports/www/fxhtml|/usr/local|Server side extension to HTML which eliminates the need for CGI scripts|/usr/ports/www/fxhtml/pkg/DESCR|ports@FreeBSD.org|www|||http://www.cybercities.net/fxhtml
g-gcl-1.10|/usr/ports/www/g-gcl|/usr/local|Sample counter scripts for Graphic Counter Language|/usr/ports/www/g-gcl/pkg/DESCR|adam@whizkidtech.net|www graphics||gracula-3.0|
gn-2.24|/usr/ports/www/gn|/usr/local|Gopher and http server|/usr/ports/www/gn/pkg/DESCR|adam@veda.is|www net|freeWAIS-0.5||
gnuinfo-1.3|/usr/ports/www/gnuinfo|/usr/local|CGI program to convert GNU .info files into html|/usr/ports/www/gnuinfo/pkg/DESCR|nox@jelal.kn-bremen.de|www|||http://user.cs.tu-berlin.de/~kraxel/info2html/gnuinfo.html
grail-0.6|/usr/ports/www/grail|/usr/local|An extensible Internet browser written entirely in Python|/usr/ports/www/grail/pkg/DESCR|nectar@freebsd.org|www python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://grail.cnri.reston.va.us/grail/
harvest-1.5|/usr/ports/www/harvest|/usr/local|Collect information from all over the Internet|/usr/ports/www/harvest/pkg/DESCR|andreas@FreeBSD.org|www|||http://www.tardis.ed.ac.uk/harvest/
hotjava-3.0|/usr/ports/www/hotjava|/usr/local|Sun's Hotjava web browser|/usr/ports/www/hotjava/pkg/DESCR|noway@nohow.demon.co.uk|www java||jdk-1.1.8|http://java.sun.com/products/hotjava/
htmlpp-4.2a|/usr/ports/www/htmlpp|/usr/local|A Perl script to allow easy creation of HTML from template files|/usr/ports/www/htmlpp/pkg/DESCR|dburr@FreeBSD.org|www|||http://www.imatix.com/html/htmlpp/index.htm
http-analyze-2.01|/usr/ports/www/http-analyze|/usr/local|A fast Log-Analyzer for web servers|/usr/ports/www/http-analyze/pkg/DESCR|andreas@FreeBSD.org|www|gd-1.7.3 png-1.0.5||
httperf-0.6|/usr/ports/www/httperf|/usr/local|A tool for measuring webserver performance|/usr/ports/www/httperf/pkg/DESCR|andrews@technologist.com|www|gmake-3.78.1||http://www.hpl.hp.com/personal/David_Mosberger/httperf.html
hypermail-20b3|/usr/ports/www/hypermail|/usr/local|A program to generate a cross-referenced HTML mail archive|/usr/ports/www/hypermail/pkg/DESCR|veers@disturbed.net|www|||http://www.landfield.com/hypermail/
ijb-2.0.2|/usr/ports/www/ijb|/usr/local|Junkbuster is an HTTP proxy server that eliminates ads|/usr/ports/www/ijb/pkg/DESCR|ian@broken.net|www|||
libghttp-1.0.4|/usr/ports/www/libghttp|/usr/local|GNOME http client library|/usr/ports/www/libghttp/pkg/DESCR|vanilla@FreeBSD.org|www gnome|libtool-1.3.3||
libwww-5.2.6|/usr/ports/www/libwww|/usr/local|The W3C Reference Library|/usr/ports/www/libwww/pkg/DESCR|jseger@FreeBSD.org|www devel|gmake-3.78.1||
libxpg4-ns-3.3|/usr/ports/www/libxpg4-ns|/usr/local|Libxpg4(aout) for Netscape Browser, against the browser's locale bug|/usr/ports/www/libxpg4-ns/pkg/DESCR|sada@FreeBSD.ORG|www|||http://www.yasuda.comm.waseda.ac.jp/~nagahama/freebsd.html
linbot-0.9|/usr/ports/www/linbot|/usr/local|View structure of a web site, get a list of problems like broken links|/usr/ports/www/linbot/pkg/DESCR|billf@FreeBSD.org|www python||XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|http://starship.skyport.net/crew/marduk/linbot/
linemode-4.0D|/usr/ports/www/linemode|/usr/local|WWW LineMode Browser from the W3 Consortium (W3C)|/usr/ports/www/linemode/pkg/DESCR|sa2c@and.or.jp|www|||http://info.cern.ch/hypertext/WWW/LineMode/Status.html
linux-netscape-4.08|/usr/ports/www/linux-netscape4|/usr/local|Linux version of Netscape Communicator|/usr/ports/www/linux-netscape4/pkg/DESCR|tom@eborcom.com|www||linux_base-5.2 rpm-2.5.6|
linux-netscape-communicator-4.61|/usr/ports/www/linux-netscape46-communicator|/usr/local|Linux Netscape Communicator suite, version 4.61|/usr/ports/www/linux-netscape46-communicator/pkg/DESCR|girgen@partitur.se|www|XFree86-3.3.5|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|
linux-netscape-communicator-4.7|/usr/ports/www/linux-netscape47-communicator|/usr/local|Linux Netscape Communicator suite|/usr/ports/www/linux-netscape47-communicator/pkg/DESCR|girgen@partitur.se|www|XFree86-3.3.5|XFree86-3.3.5 linux_base-5.2 rpm-2.5.6|
lynx-2.8.2rel.1|/usr/ports/www/lynx|/usr/local|A non-graphical, text-based World-Wide Web client|/usr/ports/www/lynx/pkg/DESCR|jseger@FreeBSD.org|www|bzip2-0.9.5d||http://lynx.browser.org/
lynx-2.8.3dev.15|/usr/ports/www/lynx-current|/usr/local|A non-graphical, text-based World-Wide Web client|/usr/ports/www/lynx-current/pkg/DESCR|ache@FreeBSD.org|www|bzip2-0.9.5d||http://sol.slcc.edu/lynx/current/
lynx-ssl-2.8.2.1|/usr/ports/www/lynx-ssl|/usr/local|A non-graphical, text-based ssl-enabled World-Wide Web client|/usr/ports/www/lynx-ssl/pkg/DESCR|sec@42.org|www|openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://lynx.browser.org/
mapedit-2.3|/usr/ports/www/mapedit|/usr/local|A WWW authoring tool to create clickable maps|/usr/ports/www/mapedit/pkg/DESCR|andreas@FreeBSD.org|www||jdk-1.1.8|
marc-search-4.3|/usr/ports/www/marc-search|/usr/local|Web interface for searching MHonArc mail archives|/usr/ports/www/marc-search/pkg/DESCR|sheldonh@FreeBSD.org|www||mhonarc-2.3.3 p5-CGI_Lite-1.8|
mathopd-1.3|/usr/ports/www/mathopd|/usr/local|A very small, yet very fast HTTP server|/usr/ports/www/mathopd/pkg/DESCR|tobez@plab.ku.dk|www|||http://mathop.diva.nl/
mhonarc-2.3.3|/usr/ports/www/mhonarc|/usr/local|WWW front end for mail archives|/usr/ports/www/mhonarc/pkg/DESCR|jkoshy@freebsd.org|www mail|||http://www.oac.uci.edu/indiv/ehood/mhonarc.doc.html
mod_dav-0.9.12|/usr/ports/www/mod_dav|/usr/local|An Apache module that provides DAV capabilities|/usr/ports/www/mod_dav/pkg/DESCR|patrick@mindstep.com|www|apache-1.3.9|apache-1.3.9|http://www.webdav.org/mod_dav/
mod_perl-1.21|/usr/ports/www/mod_perl|/usr/local|Embeds a Perl interpreter in the Apache server|/usr/ports/www/mod_perl/pkg/DESCR|sheldonh@FreeBSD.org|www perl5|apache-1.3.9||http://perl.apache.org/
momspider-1.00|/usr/ports/www/momspider|/usr/local|WWW Spider for multi-owner maintenance|/usr/ports/www/momspider/pkg/DESCR|wosch@FreeBSD.org|www|||
mozilla-M10|/usr/ports/www/mozilla|/usr/X11R6|The mozilla ver 0.0 communicator web-surfboard|/usr/ports/www/mozilla/pkg/DESCR|reg@shale.csir.co.za|www|ORBit-0.5.0 XFree86-3.3.5 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|ORBit-0.5.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
netscape-remote-1.0|/usr/ports/www/netscape-remote|/usr/local|Utility to pass commands to running netscape process|/usr/ports/www/netscape-remote/pkg/DESCR|kbyanc@posi.net|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-3.04|/usr/ports/www/netscape3|/usr/local|Netscape ver 3 web-surfboard|/usr/ports/www/netscape3/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-gold-3.04|/usr/ports/www/netscape3-gold|/usr/local|Netscape ver 3 web-surfboard (gold)|/usr/ports/www/netscape3-gold/../netscape3/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-communicator-4.08|/usr/ports/www/netscape4-communicator|/usr/local|Netscape ver 4 communicator web-surfboard|/usr/ports/www/netscape4-communicator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|http://www.fortify.net
netscape-communicator-4.07.us|/usr/ports/www/netscape4-communicator.us|/usr/local|Netscape ver 4 communicator w/US strong encryption|/usr/ports/www/netscape4-communicator.us/pkg/DESCR|obrien@FreeBSD.org|www||linux_base-5.2 rpm-2.5.6|
netscape-navigator-4.08|/usr/ports/www/netscape4-navigator|/usr/local|Netscape ver 4 navigator web-surfboard|/usr/ports/www/netscape4-navigator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-communicator-4.61|/usr/ports/www/netscape46-communicator|/usr/local|Netscape ver 4 communicator web-surfboard|/usr/ports/www/netscape46-communicator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-navigator-4.61|/usr/ports/www/netscape46-navigator|/usr/local|Netscape ver 4.6 navigator web-surfboard|/usr/ports/www/netscape46-navigator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-communicator-4.7|/usr/ports/www/netscape47-communicator|/usr/local|Netscape ver 4 communicator web-surfboard|/usr/ports/www/netscape47-communicator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-communicator-4.7.us|/usr/ports/www/netscape47-communicator.us|/usr/local|Netscape Communicator w/US strong 128-bit encryption|/usr/ports/www/netscape47-communicator.us/pkg/DESCR|obrien@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-navigator-4.7|/usr/ports/www/netscape47-navigator|/usr/local|Netscape ver 4.7 navigator web-surfboard|/usr/ports/www/netscape47-navigator/pkg/DESCR|sada@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
netscape-navigator-4.7.us|/usr/ports/www/netscape47-navigator.us|/usr/local|Netscape Communicator w/US strong 128-bit encryption|/usr/ports/www/netscape47-navigator.us/pkg/DESCR|obrien@FreeBSD.org|www|XFree86-3.3.5|XFree86-3.3.5|
npc-0.83|/usr/ports/www/npc|/usr/local|An animated web counter|/usr/ports/www/npc/pkg/DESCR|yasuf@big.or.jp|www|||http://www2.biglobe.ne.jp/%7Enir/npc/
p5-Apache-1.19|/usr/ports/www/p5-Apache|/usr/local|Embeds a Perl interpreter in the Apache server|/usr/ports/www/p5-Apache/pkg/DESCR|jfitz@FreeBSD.org|www perl5|apache-1.3.9||
p5-Apache-Radius-0.3|/usr/ports/www/p5-Apache-Radius|/usr/local|A perl5 module for providing RADIUS authentication in Apache+mod_perl|/usr/ports/www/p5-Apache-Radius/pkg/DESCR|sheldonh@FreeBSD.org|www security perl5|mod_perl-1.21 p5-Authen-Radius-0.05||
p5-CGI-2.76|/usr/ports/www/p5-CGI|/usr/local|Modules for perl5, for use in writing CGI scripts|/usr/ports/www/p5-CGI/pkg/DESCR|jfitz@FreeBSD.org|www perl5|p5-libwww-5.44||http://www-genome.wi.mit.edu/ftp/pub/software/WWW/CGIperl/
p5-CGI_Lite-1.8|/usr/ports/www/p5-CGI_Lite|/usr/local|Perl5 module to process and decode WWW form information|/usr/ports/www/p5-CGI_Lite/pkg/DESCR|jfitz@FreeBSD.org|www perl5|||
p5-FastCGI-0.48|/usr/ports/www/p5-FastCGI|/usr/local|Modules for perl5, for enabling FastCGI support in CGI scripts|/usr/ports/www/p5-FastCGI/pkg/DESCR|kbyanc@posi.net|www perl5|fcgi-devkit-2.1||http://www.fastcgi.com/
p5-HTML-0.6|/usr/ports/www/p5-HTML|/usr/local|Perl5 module for writing HTML documents|/usr/ports/www/p5-HTML/pkg/DESCR|jfitz@FreeBSD.org|www perl5|||
p5-HTML-Parser-2.23|/usr/ports/www/p5-HTML-Parser|/usr/local|Perl5 module for parse HTML tag|/usr/ports/www/p5-HTML-Parser/pkg/DESCR|ports@FreeBSD.org|www perl5|||
p5-HTML-QuickCheck-1.0b1|/usr/ports/www/p5-HTML-QuickCheck|/usr/local|A simple and fast HTML syntax checking package for perl 4 and perl 5|/usr/ports/www/p5-HTML-QuickCheck/pkg/DESCR|jfitz@FreeBSD.org|www perl5|||
p5-HTML-Stream-1.44|/usr/ports/www/p5-HTML-Stream|/usr/local|Perl5 HTML output stream class, and some markup utilities|/usr/ports/www/p5-HTML-Stream/pkg/DESCR|jfitz@FreeBSD.org|www perl5|||
p5-HTTPD-Tools-0.55|/usr/ports/www/p5-HTTPD-Tools|/usr/local|Perl5 module for a HTTP server authentication class|/usr/ports/www/p5-HTTPD-Tools/pkg/DESCR|jfitz@FreeBSD.org|www perl5|||
p5-ParallelUA-2.43|/usr/ports/www/p5-ParallelUA|/usr/local|Perl5 Parallel LWP User Agent for WWW access|/usr/ports/www/p5-ParallelUA/pkg/DESCR|ache@FreeBSD.org|www perl5 devel|p5-HTML-Parser-2.23 p5-URI-1.03 p5-libwww-5.44||
p5-WWW-Search-1.021|/usr/ports/www/p5-WWW-Search|/usr/local|A perl5 module for WWW searches|/usr/ports/www/p5-WWW-Search/pkg/DESCR|jfitz@FreeBSD.org|www perl5|p5-libwww-5.44||
p5-libwww-5.44|/usr/ports/www/p5-libwww|/usr/local|Perl5 library for WWW access|/usr/ports/www/p5-libwww/pkg/DESCR|jfitz@FreeBSD.org|www perl5 devel|p5-Digest-MD5-2.09 p5-HTML-Parser-2.23 p5-MIME-Base64-2.11 p5-Net-1.0606 p5-URI-1.03||http://www.linpro.no/lwp/
plugger-3.0|/usr/ports/www/plugger|/usr/local|A multimedia front-end plugin for Netscape|/usr/ports/www/plugger/pkg/DESCR|sachs@cs.williams.edu|www||XFree86-3.3.5 netscape-navigator-4.61|http://www.hubbe.net/~hubbe/plugger.html
py-HTMLgen-2.1|/usr/ports/www/py-HTMLgen|/usr/local|A Python library for the generation of HTML documents|/usr/ports/www/py-HTMLgen/pkg/DESCR|nectar@FreeBSD.org|www python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
roxen-1.3.111|/usr/ports/www/roxen|/usr/local|An extensible http and ftp server with a lot of features|/usr/ports/www/roxen/pkg/DESCR|k@123.org|www|||http://www.roxen.com/
ruboard-1.2.1|/usr/ports/www/ruboard|/usr/local|A web based discussion board|/usr/ports/www/ruboard/pkg/DESCR|am@amsoft.ru|www russian|||http://www.amsoft.ru/ruboard/
sitecopy-0.8.1|/usr/ports/www/sitecopy|/usr/local|Maintains remote websites, uses FTP or WebDAV to sync up with local copy|/usr/ports/www/sitecopy/pkg/DESCR|nik@FreeBSD.org|www|gmake-3.78.1||
snarf-2.0.5|/usr/ports/www/snarf|/usr/local|Another small command-line URL (http/ftp/gopher/finger) fetcher|/usr/ports/www/snarf/pkg/DESCR|kris@FreeBSD.org|www|||http://www.xach.com/snarf/
squid-1.1.22|/usr/ports/www/squid11|/usr/local|Post-Harvest_cached WWW proxy cache and accelerator|/usr/ports/www/squid11/pkg/DESCR|peter@freebsd.org|www|||http://squid.nlanr.net/Squid/
squid-novm-1.1.22|/usr/ports/www/squid11-novm|/usr/local|Low-VM Post-Harvest_cached WWW proxy cache and accelerator|/usr/ports/www/squid11-novm/pkg/DESCR|peter@freebsd.org|www|||http://squid.nlanr.net/Squid/
squid-2.0|/usr/ports/www/squid20|/usr/local|The successful WWW proxy cache and accelerator|/usr/ports/www/squid20/pkg/DESCR|peter@freebsd.org|www|||http://squid.nlanr.net/Squid/
squid-2.1|/usr/ports/www/squid21|/usr/local|The successful WWW proxy cache and accelerator|/usr/ports/www/squid21/pkg/DESCR|peter@freebsd.org|www|||http://squid.nlanr.net/Squid/
squid-2.2|/usr/ports/www/squid22|/usr/local|The successful WWW proxy cache and accelerator|/usr/ports/www/squid22/pkg/DESCR|peter@freebsd.org|www|||http://squid.nlanr.net/Squid/
squidclients-1.6|/usr/ports/www/squidclients|/usr/local|Generate a summary of client usage from a Squid log|/usr/ports/www/squidclients/pkg/DESCR|dima@chg.ru|www|||http://www.cineca.it/~nico/squidclients.html
squidtimes-1.12|/usr/ports/www/squidtimes|/usr/local|Generates a report of average transfer times of Squid cache|/usr/ports/www/squidtimes/pkg/DESCR|dima@chg.ru|www|||http://www.cineca.it/~nico/squidtimes.html
squirm-1.0b|/usr/ports/www/squirm|/usr/local|A fast & configurable redirector for the Squid|/usr/ports/www/squirm/pkg/DESCR|sobomax@altavista.net|www||squid-2.2|http://www.senet.com.au/squirm/
swish-e-1.3.2|/usr/ports/www/swish-e|/usr/local|Simple web indexing for humans - enhanced|/usr/ports/www/swish-e/pkg/DESCR|doconnor@gsoft.com.au|www textproc|gmake-3.78.1||
thttpd-2.07|/usr/ports/www/thttpd|/usr/local|Tiny/turbo/throttling HTTP server|/usr/ports/www/thttpd/pkg/DESCR|anders@fix.no|www|||http://www.acme.com/software/thttpd/
tidy-0.10.99.1|/usr/ports/www/tidy|/usr/local|Fixes and tidies up HTML files|/usr/ports/www/tidy/pkg/DESCR|saken@hotel.rmta.org|www|||http://www.w3c.org/People/Raggett/tidy/
tinyproxy-1.2.8|/usr/ports/www/tinyproxy|/usr/local|A small, efficient HTTP proxy server|/usr/ports/www/tinyproxy/pkg/DESCR|mitsuru@riken.go.jp|www|||http://tinyproxy.attacca.com/
transproxy-0.3|/usr/ports/www/transproxy|/usr/local|Transparent www proxy driver for IPFILTER (NOT ipfw!!)|/usr/ports/www/transproxy/pkg/DESCR|peter@FreeBSD.org|www net|||
udmsearch-2.1.7|/usr/ports/www/udmsearch|/usr/local|Full featured SQL-based hypertext search engine|/usr/ports/www/udmsearch/pkg/DESCR|kbyanc@posi.net|www databases|gmake-3.78.1 mysql-client-3.22.27|mysql-client-3.22.27|http://mysearch.udm.net/
vrweb-1.5|/usr/ports/www/vrweb|/usr/X11R6|A browser for a VRML 1.0 format file|/usr/ports/www/vrweb/pkg/DESCR|ports@FreeBSD.org|www|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1|Mesa-3.0 XFree86-3.3.5|http://www.iicm.edu/vrweb/
w3-2.2.26|/usr/ports/www/w3|/usr/local|WWW browser based on emacs/mule|/usr/ports/www/w3/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|www elisp|XFree86-3.3.5 emacs-19.34b|XFree86-3.3.5 emacs-19.34b|
w3c-httpd-3.0A|/usr/ports/www/w3c-httpd|/usr/local|WWW server from the W3 Consortium (W3C)|/usr/ports/www/w3c-httpd/pkg/DESCR|ports@FreeBSD.org|www|freeWAIS-0.5||http://www.w3.org/Daemon/Status.html
w3m-991203|/usr/ports/www/w3m|/usr/local|A pager/text-based WWW browser|/usr/ports/www/w3m/pkg/DESCR|nobutaka@nobutaka.com|www|boehm-gc-5.0a3||http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/eng/index.html
w3m-ssl-991203|/usr/ports/www/w3m-ssl|/usr/local|A pager/text-based WWW browser with SSL support|/usr/ports/www/w3m-ssl/pkg/DESCR|nobutaka@nobutaka.com|www|boehm-gc-5.0a3 openssl-0.9.4 rsaref-2.0|openssl-0.9.4 rsaref-2.0|http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/eng/index.html
w3mir-1.0.8|/usr/ports/www/w3mir|/usr/local|All-purpose HTTP copying and mirroring tool|/usr/ports/www/w3mir/pkg/DESCR|ache@freebsd.org|www perl5|p5-libwww-5.44||http://www.math.uio.no/~janl/w3mir/
wcolEpre-1999.01.10|/usr/ports/www/wcol|/usr/local|A prefetching proxy server for WWW|/usr/ports/www/wcol/pkg/DESCR|shige@FreeBSD.org|www|||http://shika.aist-nara.ac.jp/products/wcol/wcol.html
web500gw-2.1b3|/usr/ports/www/web500gw|/usr/local|HTTP gateway to LDAP-based directories|/usr/ports/www/web500gw/pkg/DESCR|Karl.Dietz@frankfurt.netsurf.de|www net|openldap-1.2.7||http://www.tu-chemnitz.de/web500gw/
webalizer-1.30.4|/usr/ports/www/webalizer|/usr/local|A web server log file analysis program|/usr/ports/www/webalizer/pkg/DESCR|dirk.meyer@dinoex.sub.org|www|gd-1.7.3 png-1.0.5||http://www.mrunix.net/webalizer/
webcopy-0.98b7|/usr/ports/www/webcopy|/usr/local|A Web Mirroring Program|/usr/ports/www/webcopy/pkg/DESCR|ache@FreeBSD.org|www|||
webcrawl-1.10|/usr/ports/www/webcrawl|/usr/local|Download web sites without user interaction by following links|/usr/ports/www/webcrawl/pkg/DESCR|dima@chg.ru|www|||
webfs-0.7|/usr/ports/www/webfs|/usr/local|A simple http server for static content|/usr/ports/www/webfs/pkg/DESCR|jedgar@fxp.org|www|||http://www.IN-Berlin.DE/User/kraxel/webfs.html
webglimpse-1.6|/usr/ports/www/webglimpse|/usr/local|WWW interface to Glimpse search engine|/usr/ports/www/webglimpse/pkg/DESCR|ache@freebsd.org|www textproc||apache-1.3.9 glimpse-4.1|
weblint-1.020|/usr/ports/www/weblint|/usr/local|HTML validator and sanity checker|/usr/ports/www/weblint/pkg/DESCR|pst@FreeBSD.org|www|||
webstone-2.0.1|/usr/ports/www/webstone|/usr/local|World wide web server benchmarking|/usr/ports/www/webstone/pkg/DESCR|sauber@netcom.com|www benchmarks|||http://www.sgi.com/Products/WebFORCE/WebStone/
wml-1.6.8|/usr/ports/www/wml|/usr/local|Website META Language, webdesign toolkit for HTML generation|/usr/ports/www/wml/pkg/DESCR|rse@engelschall.com|www lang|||http://www.engelschall.com/sw/wml/
wmnetselect-0.4|/usr/ports/www/wmnetselect|/usr/X11R6|WindowMaker Netscape launcher to display urls from X selection|/usr/ports/www/wmnetselect/pkg/DESCR|nugget@slacker.com|www windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://home.att.net/~apathos/wmnetsel.html
wn-1.18.6|/usr/ports/www/wn|/usr/local|A great http server|/usr/ports/www/wn/pkg/DESCR|adam@veda.is|www|||
wwwcount-2.5|/usr/ports/www/wwwcount|/usr/local|Access counter, clock and date for WWW pages|/usr/ports/www/wwwcount/pkg/DESCR|dervish@ikhala.tcimet.net|www|gmake-3.78.1||http://www.fccc.edu/users/muquit/Count.html
wwwoffle-2.4|/usr/ports/www/wwwoffle|/usr/local|A WWW proxy server for offline browsing|/usr/ports/www/wwwoffle/pkg/DESCR|aw1@stade.co.uk|www|gmake-3.78.1||http://www.gedanken.demon.co.uk/wwwoffle/index.html
wwwstat-2.01|/usr/ports/www/wwwstat|/usr/local|Webserver logfile analysis package|/usr/ports/www/wwwstat/pkg/DESCR|andreas@FreeBSD.org|www||apache-1.3.9|
xitami-2.3d|/usr/ports/www/xitami|/usr/local|A fast, portable multithreaded web server|/usr/ports/www/xitami/pkg/DESCR|i.vaudrey@cableinet.co.uk|www|||
zope-2.0.0b5|/usr/ports/www/zope|/usr/local|An object-based web application platform with database access|/usr/ports/www/zope/pkg/DESCR|ports@FreeBSD.ORG|www python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|apache+mod_ssl-1.3.9+2.4.9 openssl-0.9.4 rsaref-2.0|http://www.zope.org/
9term-1.6.3|/usr/ports/x11/9term|/usr/local|An X11 program which emulates a plan9 window|/usr/ports/x11/9term/pkg/DESCR|erich@FreeBSD.org|x11 plan9|XFree86-3.3.5 sam-4.3|XFree86-3.3.5|
XFree86-3.3.5|/usr/ports/x11/XFree86|/usr/X11R6|X11R6.3/XFree86 core distribution|/usr/ports/x11/XFree86/pkg/DESCR|jmz@FreeBSD.org|x11|||http://www.xfree86.org/
XFree86-contrib-3.3.3|/usr/ports/x11/XFree86-contrib|/usr/X11R6|XFree86 contrib programs|/usr/ports/x11/XFree86-contrib/pkg/DESCR|jmz@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
aterm-0.3.6|/usr/ports/x11/aterm|/usr/X11R6|A color vt102 terminal emulator with transparency support|/usr/ports/x11/aterm/pkg/DESCR|jim@FreeBSD.org|x11|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|http://members.xoom.com/sashav/aterm/
bgrot-1.20|/usr/ports/x11/bgrot|/usr/local|A program to handle your X background to prevent boredom|/usr/ports/x11/bgrot/pkg/DESCR|fullermd@futuresouth.com|x11||XFree86-3.3.5 jpeg-6b png-1.0.5 tiff-3.5.3 xv-3.10a|http://www.futuresouth.com/~fullermd/bgrot/
blast-1.0|/usr/ports/x11/blast|/usr/X11R6|Blast blows holes through windows|/usr/ports/x11/blast/pkg/DESCR|jseger@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
bricons-3.0|/usr/ports/x11/bricons|/usr/X11R6|Quick start up utility for applications on an X display|/usr/ports/x11/bricons/pkg/DESCR|shanee@augusta.de|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
dgs-0.5.8|/usr/ports/x11/dgs|/usr/X11R6|A display ghostscript system|/usr/ports/x11/dgs/pkg/DESCR|nakai@FreeBSD.org|x11|XFree86-3.3.5 ghostscript-5.50 glib-1.2.6 gmake-3.78.1 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 glib-1.2.6 jpeg-6b png-1.0.5 tiff-3.5.3|
dxpc-3.8.0|/usr/ports/x11/dxpc|/usr/X11R6|Compressing X protocol proxy designed to support X11 over slow links|/usr/ports/x11/dxpc/pkg/DESCR|bmah@ca.sandia.gov|x11|XFree86-3.3.5 lzo-1.06|XFree86-3.3.5 lzo-1.06|http://www.vigor.nu/dxpc/
emu-1.3.1|/usr/ports/x11/emu|/usr/X11R6|A terminal emulator for the X Window System|/usr/ports/x11/emu/pkg/DESCR|me@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
eterm-0.8.9|/usr/ports/x11/eterm|/usr/X11R6|X-Windows terminal emulator based on rxvt/xterm|/usr/ports/x11/eterm/pkg/DESCR|murray@cdrom.com|x11|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libtool-1.3.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.eterm.org/
fbsd-icons-1.0|/usr/ports/x11/fbsd-icons|/usr/X11R6|A collection of icons related to the FreeBSD project (daemon gifs and such)|/usr/ports/x11/fbsd-icons/pkg/DESCR|andreas@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
gmessage-0.2|/usr/ports/x11/gmessage|/usr/X11R6|Gtk+ clone of xmessage. displays a given text in a X11 window|/usr/ports/x11/gmessage/pkg/DESCR|domi@saargate.de|x11|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.math.uni-goettingen.de/dadler/gmessage/
gnome-1.0.53|/usr/ports/x11/gnome|/usr/local|The "meta-port" for the GNOME integrated X11 desktop|/usr/ports/x11/gnome/pkg/DESCR|nakai@FreeBSD.org|x11 gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gnomeobjc-1.0.40 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libglade-0.9 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 electriceyes-0.3.11 esound-0.2.16 gettext-0.10.35 ggv-0.70 giflib-4.1.0 glib-1.2.6 gnomeadmin-1.0.3 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomegames-1.0.51 gnomelibs-1.0.54 gnomemc-4.5.41 gnomemedia-1.0.51 gnomenetwork-1.0.2 gnomeobjc-1.0.40 gnomepim-1.0.55 gnomeprint-0.10 gnomeutils-1.0.50 gnumeric-0.44 gtk-1.2.6 gtop-1.0.5 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libglade-0.9 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xpm-3.4k|
gnomecore-1.0.54|/usr/ports/x11/gnomecore|/usr/X11R6|Core component for the Gnome Desktop Environment|/usr/ports/x11/gnomecore/pkg/DESCR|nakai@FreeBSD.org|x11 gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gnomelibs-1.0.54|/usr/ports/x11/gnomelibs|/usr/X11R6|Libaries for GNOME, a GNU desktop environment|/usr/ports/x11/gnomelibs/pkg/DESCR|nakai@FreeBSD.org|x11 gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
gyroscope-1.0|/usr/ports/x11/gyroscope|/usr/X11R6|HTML color picker written using GTK|/usr/ports/x11/gyroscope/pkg/DESCR|jim@FreeBSD.org|x11|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.millar.u-net.com/gyroscope.html
kb2mb2-1.0|/usr/ports/x11/kb2mb2|/usr/X11R6|Redirect any key to second mouse button (yet another Emulate3Button util.)|/usr/ports/x11/kb2mb2/pkg/DESCR|sada@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
kde-1.1.2|/usr/ports/x11/kde11|/usr/local|The "meta-port" for the KDE integrated X11 desktop|/usr/ports/x11/kde11/pkg/DESCR|se@freebsd.org|x11 kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kdebase-1.1.2 kdegames-1.1.2 kdegraphics-1.1.2 kdelibs-1.1.2 kdemultimedia-1.1.2 kdenetwork-1.1.2 kdesupport-1.1.2 kdeutils-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 uulib-0.5.13 xpm-3.4k|
kde-i18n-1.1.2|/usr/ports/x11/kde11-i18n|/usr/local|The "meta-port" for the KDE integrated X11 desktop|/usr/ports/x11/kde11-i18n/pkg/DESCR|imura@kde.gr.jp|x11 kde|XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 qt-i18n-1.44a|Mesa-3.0 XFree86-3.3.5 gdbm-1.8.0 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdegames-i18n-1.1.2 kdegraphics-i18n-1.1.2 kdelibs-i18n-1.1.2 kdemultimedia-i18n-1.1.2 kdenetwork-i18n-1.1.2 kdesupport-i18n-1.1.2 kdetoys-i18n-1.1.2 kdeutils-i18n-1.1.2 korganizer-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 uulib-0.5.13 xpm-3.4k|
kdebase-1.1.2|/usr/ports/x11/kdebase11|/usr/local|Base modules for the KDE integrated X11 desktop|/usr/ports/x11/kdebase11/pkg/DESCR|se@freebsd.org|x11 kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3 xpm-3.4k|
kdebase-i18n-1.1.2|/usr/ports/x11/kdebase11-i18n|/usr/local|Base modules for the KDE integrated X11 desktop|/usr/ports/x11/kdebase11-i18n/pkg/DESCR|imura@kde.gr.jp|x11 kde|ImageMagick-4.2.9 Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d freetype-1.3 gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jbigkit-1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
kdelibs-1.1.2|/usr/ports/x11/kdelibs11|/usr/local|Support libraries for the KDE integrated X11 desktop|/usr/ports/x11/kdelibs11/pkg/DESCR|se@freebsd.org|x11 kde|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 gmake-3.78.1 jpeg-6b png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b png-1.0.5 qt-1.42 tiff-3.5.3|
kdelibs-i18n-1.1.2|/usr/ports/x11/kdelibs11-i18n|/usr/local|Support libraries for the KDE integrated X11 desktop|/usr/ports/x11/kdelibs11-i18n/pkg/DESCR|imura@kde.gr.jp|x11 kde|XFree86-3.3.5 bzip2-0.9.5d gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdesupport-i18n-1.1.2 libtool-1.3.3 qt-i18n-1.44a|XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdesupport-i18n-1.1.2 qt-i18n-1.44a|
kvidtune-0.4.1|/usr/ports/x11/kvidtune|/usr/local|KDE X-server video setup utility|/usr/ports/x11/kvidtune/pkg/DESCR|ports@FreeBSD.org|x11 kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 gmake-3.78.1 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
kworldwatch-0.6|/usr/ports/x11/kworldwatch|/usr/local|Simple tool showing a revolving world map|/usr/ports/x11/kworldwatch/pkg/DESCR|scrappy@freebsd.org|x11 kde|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdelibs-1.1.2 png-1.0.5 qt-1.42 tiff-3.5.3|
libdnd-1.1|/usr/ports/x11/libdnd|/usr/local|Drag and drop library|/usr/ports/x11/libdnd/pkg/DESCR|lukin@okbmei.msk.su|x11|XFree86-3.3.5|XFree86-3.3.5|
libhelp-1.8.1|/usr/ports/x11/libhelp|/usr/X11R6|A html based help system for osf/motif applications|/usr/ports/x11/libhelp/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.de|x11|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
libsx-1.1|/usr/ports/x11/libsx|/usr/X11R6|Simple X Windows library|/usr/ports/x11/libsx/pkg/DESCR|giffunip@asme.org|x11|XFree86-3.3.5 Xaw3d-1.5|XFree86-3.3.5 Xaw3d-1.5|
lupe-0.08|/usr/ports/x11/lupe|/usr/X11R6|Real-time magnifying glass for X11|/usr/ports/x11/lupe/pkg/DESCR|kazu@jp.freebsd.org|x11|XFree86-3.3.5|XFree86-3.3.5|
offix-clipboard-2.4|/usr/ports/x11/offix-clipboard|/usr/X11R6|X clipboard with support of DND protocol|/usr/ports/x11/offix-clipboard/pkg/DESCR|ruslan@shevchenko.kiev.ua|x11 offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1|XFree86-3.3.5 libdnd-1.1|http://leb.net/OffiX/
offix-execute-2.4|/usr/ports/x11/offix-execute|/usr/X11R6|Files executor from OffiX|/usr/ports/x11/offix-execute/pkg/DESCR|ruslan@shevchenko.kiev.ua|x11 offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1 xpm-3.4k|XFree86-3.3.5 libdnd-1.1 xpm-3.4k|http://leb.net/OffiX/
props-1.0|/usr/ports/x11/props|/usr/X11R6|The OpenLook props application|/usr/ports/x11/props/pkg/DESCR|jraynard@@freebsd.org|x11|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
rxvt-2.7.1|/usr/ports/x11/rxvt|/usr/X11R6|A low memory usage xterm replacement that supports color|/usr/ports/x11/rxvt/pkg/DESCR|andrews@technologist.com|x11|XFree86-3.3.5 bzip2-0.9.5d xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://babayaga.math.fu-berlin.de/rxvt/
sxpc-1.4|/usr/ports/x11/sxpc|/usr/X11R6|The Simple X Protocol Compressor|/usr/ports/x11/sxpc/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
tkgoodstuff-8.0|/usr/ports/x11/tkgoodstuff|/usr/local|TkGoodstuff module for fvwm2 window manager - requires XPM and fvwm2|/usr/ports/x11/tkgoodstuff/pkg/DESCR|pst@FreeBSD.org|x11 tk80|XFree86-3.3.5 tcl-8.0.5 tk-8.0.5|XFree86-3.3.5 fvwm-2.2.2 tcl-8.0.5 tk-8.0.5 xpm-3.4k|
tycoon-1.07o|/usr/ports/x11/tycoon|/usr/X11R6|A nifty set of desktop apps, including floating buttons|/usr/ports/x11/tycoon/pkg/DESCR|steve@farrell.org|x11|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|XFree86-3.3.5 xforms-0.88.1 xpm-3.4k|
wdm-1.19|/usr/ports/x11/wdm|/usr/X11R6|WINGs Display Manager; an xdm replacement|/usr/ports/x11/wdm/pkg/DESCR|ports@FreeBSD.org|x11 windowmaker|XFree86-3.3.5 autoconf-2.13 automake-1.4 giflib-4.1.0 jpeg-6b libproplist-0.9.1 m4-1.4 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://www.tuffguy.net/~wdm/
wmbutton-0.4|/usr/ports/x11/wmbutton|/usr/X11R6|A dockapp that displays 9 buttons to run apps of your choice|/usr/ports/x11/wmbutton/pkg/DESCR|jim@FreeBSD.org|x11 windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www-personal.ksu.edu/~ehflora/wmbutton/index.html
wmmatrix-0.2|/usr/ports/x11/wmmatrix|/usr/X11R6|A DockApp that runs a version of the xmatrix screenhack|/usr/ports/x11/wmmatrix/pkg/DESCR|ports@FreeBSD.org|x11 windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wterm-6.2.6|/usr/ports/x11/wterm|/usr/X11R6|A color vt102 terminal emulator with transparency support|/usr/ports/x11/wterm/pkg/DESCR|cpiazza@FreeBSD.org|x11|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://wm.current.nu/files.html#wterm
x3270-3.1.1.6|/usr/ports/x11/x3270|/usr/X11R6|3270 Terminal emulator|/usr/ports/x11/x3270/pkg/DESCR|volf@oasis.IAEhv.nl|x11|XFree86-3.3.5|XFree86-3.3.5|
xaniroc-1.02|/usr/ports/x11/xaniroc|/usr/X11R6|Animate your root-cursor|/usr/ports/x11/xaniroc/pkg/DESCR|sec@42.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xantfarm-1.16|/usr/ports/x11/xantfarm|/usr/X11R6|Ant hill simulation on X11 root window|/usr/ports/x11/xantfarm/pkg/DESCR|nacai@iname.com|x11|XFree86-3.3.5|XFree86-3.3.5|
xautolock-1.15|/usr/ports/x11/xautolock|/usr/X11R6|Used to activate xlock after a user defined time of inactivity|/usr/ports/x11/xautolock/pkg/DESCR|eblood@cs.unr.edu|x11|XFree86-3.3.5|XFree86-3.3.5|
xballoon-1.0|/usr/ports/x11/xballoon|/usr/X11R6|Balloons move on root window|/usr/ports/x11/xballoon/pkg/DESCR|sakai@miya.ee.kagu.sut.ac.jp|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xbanner-1.31|/usr/ports/x11/xbanner|/usr/X11R6|Make your XDM login screen look beautiful|/usr/ports/x11/xbanner/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xcb-2.3|/usr/ports/x11/xcb|/usr/X11R6|A tool for managing x11 cut-buffers|/usr/ports/x11/xcb/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xco-1.3|/usr/ports/x11/xco|/usr/X11R6|Display X11 color names and colors|/usr/ports/x11/xco/pkg/DESCR|taoka@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xcoloredit-1.2|/usr/ports/x11/xcoloredit|/usr/X11R6|Find colour values by graphical colour mixing|/usr/ports/x11/xcoloredit/pkg/DESCR|taoka@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xcolors-1.3|/usr/ports/x11/xcolors|/usr/X11R6|Display all (ok, most of) the colors in the universe|/usr/ports/x11/xcolors/pkg/DESCR|ade@lovett.com|x11|XFree86-3.3.5|XFree86-3.3.5|
xcolorsel-1.1a|/usr/ports/x11/xcolorsel|/usr/X11R6|X utility to translate rgb values into X color names|/usr/ports/x11/xcolorsel/pkg/DESCR|wayne@crb-web.com|x11|XFree86-3.3.5|XFree86-3.3.5|
xcut-0.2|/usr/ports/x11/xcut|/usr/X11R6|Manipulate X cut buffers from the commandline|/usr/ports/x11/xcut/pkg/DESCR|Cy.Schubert@uumail.gov.bc.ca|x11|XFree86-3.3.5|XFree86-3.3.5|http://acsys.anu.edu.au/~tpot/xcut/
xdtm-2.5.8|/usr/ports/x11/xdtm|/usr/X11R6|Desktop Manager is a graphical shell for the X Window System|/usr/ports/x11/xdtm/pkg/DESCR|gpalmer@FreeBSD.org|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xfedor-1.0|/usr/ports/x11/xfedor|/usr/X11R6|A .bdf fonts/.xbm bitmaps/.xpm colored pixmaps/mouse cursor editor|/usr/ports/x11/xfedor/pkg/DESCR|ache@FreeBSD.org|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xfishtank-2.2|/usr/ports/x11/xfishtank|/usr/X11R6|Make fish swim in the background of your screen|/usr/ports/x11/xfishtank/pkg/DESCR|jacs@gnome.co.uk|x11|XFree86-3.3.5|XFree86-3.3.5|
xgrab-2.41|/usr/ports/x11/xgrab|/usr/X11R6|An X-Windows image grabber|/usr/ports/x11/xgrab/pkg/DESCR|jmz@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xkeycaps-2.45|/usr/ports/x11/xkeycaps|/usr/X11R6|Graphically display and edit the keyboard mapping|/usr/ports/x11/xkeycaps/pkg/DESCR|jmz@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xloadimage-4.1|/usr/ports/x11/xloadimage|/usr/X11R6|X11 Image Loading Utility|/usr/ports/x11/xloadimage/pkg/DESCR|jmz@FreeBSD.org|x11|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
xlockmore-4.15|/usr/ports/x11/xlockmore|/usr/X11R6|Like XLock session locker/screen saver, but just more|/usr/ports/x11/xlockmore/pkg/DESCR|tg@FreeBSD.org|x11|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|
xlogout-1.1|/usr/ports/x11/xlogout|/usr/X11R6|Simple logout button|/usr/ports/x11/xlogout/pkg/DESCR|naddy@mips.rhein-neckar.de|x11|XFree86-3.3.5|XFree86-3.3.5|
xlupe-1.0|/usr/ports/x11/xlupe|/usr/X11R6|Magnifying glass for X. like xmag but with continously updates|/usr/ports/x11/xlupe/pkg/DESCR|runge@rostock.zgdv.de|x11|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.rostock.zgdv.de/~runge/xlupe
xmangekyou-2.0|/usr/ports/x11/xmangekyou|/usr/X11R6|A kaleidoscope for X|/usr/ports/x11/xmangekyou/pkg/DESCR|sakai@miya.ee.kagu.sut.ac.jp|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xmascot-2.5p2|/usr/ports/x11/xmascot|/usr/X11R6|Moving mascot on your X-Window screen|/usr/ports/x11/xmascot/pkg/DESCR|nacai@iname.com|x11|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://cclub.tutcc.tut.ac.jp:1080/xmascot/
xmold-1.0|/usr/ports/x11/xmold|/usr/X11R6|Mold spreading over your X-Window screen|/usr/ports/x11/xmold/pkg/DESCR|nacai@iname.com|x11|XFree86-3.3.5|XFree86-3.3.5|
xmove-2.0b2|/usr/ports/x11/xmove|/usr/X11R6|Pseudoserver to support mobile X11 clients|/usr/ports/x11/xmove/pkg/DESCR|sec@42.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xmsg-1.0|/usr/ports/x11/xmsg|/usr/X11R6|The X11R4 version of xmessage updated for X11R5 and renamed|/usr/ports/x11/xmsg/pkg/DESCR|jsellens@generalconcepts.com|x11|XFree86-3.3.5|XFree86-3.3.5|
xmx-1.1|/usr/ports/x11/xmx|/usr/X11R6|An X protocol multiplexor|/usr/ports/x11/xmx/pkg/DESCR|ob@seicom.NET|x11|XFree86-3.3.5|XFree86-3.3.5|
xprompt-1.4|/usr/ports/x11/xprompt|/usr/X11R6|Displays a dialog box and prompts user for text|/usr/ports/x11/xprompt/pkg/DESCR|mph@freebsd.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xscreensaver-3.21|/usr/ports/x11/xscreensaver|/usr/X11R6|Save your screen while you entertain your cat|/usr/ports/x11/xscreensaver/pkg/DESCR|jseger@FreeBSD.org|x11|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|Mesa-3.0 XFree86-3.3.5 xpm-3.4k|http://www.jwz.org/xscreensaver/
xskyroot-920428|/usr/ports/x11/xskyroot|/usr/X11R6|Realtime sky drawer for X root window|/usr/ports/x11/xskyroot/pkg/DESCR|nkazushi@highway.or.jp|x11|XFree86-3.3.5|XFree86-3.3.5|
xsnow-1.40|/usr/ports/x11/xsnow|/usr/X11R6|Create a snowy and Santa-y desktop|/usr/ports/x11/xsnow/pkg/DESCR|jmz@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xstarroll-1.04|/usr/ports/x11/xstarroll|/usr/X11R6|Letters fly to far, far, far away|/usr/ports/x11/xstarroll/pkg/DESCR|sakai@miya.ee.kagu.sut.ac.jp|x11|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xtacy-1.14|/usr/ports/x11/xtacy|/usr/X11R6|An X11 trippy color-cycling toy|/usr/ports/x11/xtacy/pkg/DESCR|matt@bdd.net|x11|XFree86-3.3.5|XFree86-3.3.5|http://www.gweep.net/~jer/xtacy.html
xtattr-1.0|/usr/ports/x11/xtattr|/usr/X11R6|A tool for changing xterm attributes|/usr/ports/x11/xtattr/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xtermset-0.4|/usr/ports/x11/xtermset|/usr/X11R6|Dynamically change some settings of an xterm|/usr/ports/x11/xtermset/pkg/DESCR|dr@domix.de|x11|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
xtestpicture-1.2|/usr/ports/x11/xtestpicture|/usr/X11R6|Create a full-screen image to adjust your monitor|/usr/ports/x11/xtestpicture/pkg/DESCR|joerg@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xtoolwait-1.3|/usr/ports/x11/xtoolwait|/usr/X11R6|Tool startup utility for X11|/usr/ports/x11/xtoolwait/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|http://www.hacom.nl/~richard/software/xtoolwait.html
xwit-1.0|/usr/ports/x11/xwit|/usr/X11R6|X interface tool|/usr/ports/x11/xwit/pkg/DESCR|tg@FreeBSD.org|x11|XFree86-3.3.5|XFree86-3.3.5|
xzoom-0.3|/usr/ports/x11/xzoom|/usr/X11R6|Magnify, rotate, mirror the image on the X screen|/usr/ports/x11/xzoom/pkg/DESCR|nacai@iname.com|x11|XFree86-3.3.5|XFree86-3.3.5|
asclock-1.0|/usr/ports/x11-clocks/asclock|/usr/X11R6|Afterstep clock with some language extentions|/usr/ports/x11-clocks/asclock/pkg/DESCR|nacai@iname.com|x11-clocks afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
asclock-gtk-beta-2.1.10|/usr/ports/x11-clocks/asclock-gtk|/usr/X11R6|New flavor of asclock (GTK version)|/usr/ports/x11-clocks/asclock-gtk/pkg/DESCR|kuriyama@FreeBSD.org|x11-clocks afterstep windowmaker|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.asclock.org
asclock-xlib-2.0.11|/usr/ports/x11-clocks/asclock-xlib|/usr/X11R6|New flavor of asclock|/usr/ports/x11-clocks/asclock-xlib/pkg/DESCR|kuriyama@FreeBSD.org|x11-clocks afterstep windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.asclock.org
astime-2.1|/usr/ports/x11-clocks/astime|/usr/X11R6|Time/Date applet for WindowMaker|/usr/ports/x11-clocks/astime/pkg/DESCR|kris@FreeBSD.org|x11-clocks afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
bbdate-0.2.1|/usr/ports/x11-clocks/bbdate|/usr/local|A tool made for Blackbox that displays the date in a decorated window|/usr/ports/x11-clocks/bbdate/pkg/DESCR|cpiazza@FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|http://bbtools.windsofstorm.net/
bclock-1.0|/usr/ports/x11-clocks/bclock|/usr/X11R6|A round, analog X11 clock with bezier curve hands|/usr/ports/x11-clocks/bclock/pkg/DESCR|ports@FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
dclock-pl4|/usr/ports/x11-clocks/dclock|/usr/local|A 7-segment digital clock with optional military time and alarm|/usr/ports/x11-clocks/dclock/pkg/DESCR|ports@FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
emiclock-2.0.2|/usr/ports/x11-clocks/emiclock|/usr/X11R6|Hyper-animated face analog clock for X11|/usr/ports/x11-clocks/emiclock/pkg/DESCR|koba@noge.com|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
eyeclock-1.03|/usr/ports/x11-clocks/eyeclock|/usr/X11R6|A clock application for X. The eyes follow the mouse|/usr/ports/x11-clocks/eyeclock/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|x11-clocks|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
glclock-5.0|/usr/ports/x11-clocks/glclock|/usr/X11R6|OpenGL Spinning pocketwatch demo and benchmark utility|/usr/ports/x11-clocks/glclock/pkg/DESCR|aa8vb@ipass.net|x11-clocks|Mesa-3.0 XFree86-3.3.5|Mesa-3.0 XFree86-3.3.5|
kdetoys-i18n-1.1.2|/usr/ports/x11-clocks/kdetoys11-i18n|/usr/local|Small applications for the KDE integrated X11 desktop|/usr/ports/x11-clocks/kdetoys11-i18n/pkg/DESCR|imura@kde.gr.jp|x11-clocks kde|ImageMagick-4.2.9 XFree86-3.3.5 bzip2-0.9.5d freetype-1.3 gcc-2.95.2 giflib-4.1.0 gmake-3.78.1 jbigkit-1.0 jpeg-6b kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 libtool-1.3.3 png-1.0.5 qt-i18n-1.44a tiff-3.5.3|Mesa-3.0 XFree86-3.3.5 giflib-4.1.0 jpeg-6b kdebase-i18n-1.1.2 kdelibs-i18n-1.1.2 kdesupport-i18n-1.1.2 png-1.0.5 qt-i18n-1.44a tiff-3.5.3 xpm-3.4k|
mlclock-1.1|/usr/ports/x11-clocks/mlclock|/usr/X11R6|Clock for mlvwm window manager|/usr/ports/x11-clocks/mlclock/pkg/DESCR|nakai@FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
mouseclock-1.0|/usr/ports/x11-clocks/mouseclock|/usr/X11R6|Display the current time using the X root cursor|/usr/ports/x11-clocks/mouseclock/pkg/DESCR|kazu@jp.freebsd.org|x11-clocks|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|
pclock-0.13|/usr/ports/x11-clocks/pclock|/usr/X11R6|Simple analog clock program for the Window Maker dock|/usr/ports/x11-clocks/pclock/pkg/DESCR|jim@FreeBSD.org|x11-clocks windowmaker afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://kraanerg.apex-it.com/~awk/pclock/
rclock-2.7.1|/usr/ports/x11-clocks/rclock|/usr/X11R6|Analog clock for X w/appointment reminder and mail notification|/usr/ports/x11-clocks/rclock/pkg/DESCR|obrien@FreeBSD.org|x11-clocks|XFree86-3.3.5 bzip2-0.9.5d|XFree86-3.3.5|
swisswatch-0.06|/usr/ports/x11-clocks/swisswatch|/usr/X11R6|A Swiss railway clock emulation, and a fancy default appearance|/usr/ports/x11-clocks/swisswatch/pkg/DESCR|sanpei@jp.FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
t3d-1.1|/usr/ports/x11-clocks/t3d|/usr/X11R6|Clock using flying balls to display the time|/usr/ports/x11-clocks/t3d/pkg/DESCR|ports@freebsd.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
tclock-1.0.1|/usr/ports/x11-clocks/tclock|/usr/X11R6|Transparent analog clock for x11|/usr/ports/x11-clocks/tclock/pkg/DESCR|Lars.Koeller@Uni-Bielefeled.DE|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
wmCalClock-1.25|/usr/ports/x11-clocks/wmcalclock|/usr/X11R6|Another WindowMaker calendar/clock dockapp|/usr/ports/x11-clocks/wmcalclock/pkg/DESCR|kris@FreeBSD.org|x11-clocks windowmaker|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmdate-0.7|/usr/ports/x11-clocks/wmdate|/usr/X11R6|Date app for the WindowMaker dock|/usr/ports/x11-clocks/wmdate/pkg/DESCR|jim@FreeBSD.org|x11-clocks windowmaker afterstep|XFree86-3.3.5 libdockapp-0.2 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmitime-0.3|/usr/ports/x11-clocks/wmitime|/usr/X11R6|A clock dockapp that shows the date, time, and internet time|/usr/ports/x11-clocks/wmitime/pkg/DESCR|jim@FreeBSD.org|x11-clocks windowmaker afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.neotokyo.org/illusion/
wmtime-1.0b2|/usr/ports/x11-clocks/wmtime|/usr/X11R6|Time/Date applet for WindowMaker|/usr/ports/x11-clocks/wmtime/pkg/DESCR|rneswold@mcs.net|x11-clocks windowmaker|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
wmtz-0.4|/usr/ports/x11-clocks/wmtz|/usr/X11R6|Dockapp that displays the time in different time zones|/usr/ports/x11-clocks/wmtz/pkg/DESCR|jim@FreeBSD.org|x11-clocks windowmaker afterstep|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.algonet.se/~jlin/wmtz.html
xalarm-3.06|/usr/ports/x11-clocks/xalarm|/usr/X11R6|An X based alarm clock|/usr/ports/x11-clocks/xalarm/pkg/DESCR|desmo@bandwidth.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
xdaliclock-2.14|/usr/ports/x11-clocks/xdaliclock|/usr/X11R6|A rather neat animated clock|/usr/ports/x11-clocks/xdaliclock/pkg/DESCR|gpalmer@FreeBSD.org|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
xtimer-0.8087|/usr/ports/x11-clocks/xtimer|/usr/X11R6|A super simple digital timer for X11|/usr/ports/x11-clocks/xtimer/pkg/DESCR|candy@kgc.co.jp|x11-clocks|XFree86-3.3.5|XFree86-3.3.5|
xtu-1.0|/usr/ports/x11-clocks/xtu|/usr/X11R6|Transparent analog clock for X11|/usr/ports/x11-clocks/xtu/pkg/DESCR|runge@rostock.zgdv.de|x11-clocks|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.rostock.zgdv.de/~runge/xtu
asfiles-1.0|/usr/ports/x11-fm/asfiles|/usr/X11R6|X11 file manager. Dockable in WindowMaker|/usr/ports/x11-fm/asfiles/pkg/DESCR|lukin@okbmei.msk.su|x11-fm windowmaker|XFree86-3.3.5 libdnd-1.1 xpm-3.4k|XFree86-3.3.5 libdnd-1.1 xpm-3.4k|
binder-1.3|/usr/ports/x11-fm/binder|/usr/X11R6|A file manager on X window with TkStep|/usr/ports/x11-fm/binder/pkg/DESCR|kiri@pis.toba-cmt.ac.jp|x11-fm windowmaker tkstep80|XFree86-3.3.5|XFree86-3.3.5 jpeg-6b libimg-1.2.2 png-1.0.5 tcl-8.0.5 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 tkstep-8.0.4 xpm-3.4k|
dfm-0.99.1|/usr/ports/x11-fm/dfm|/usr/X11R6|OS/2 - like Desktop-File-Manager for X Window System|/usr/ports/x11-fm/dfm/pkg/DESCR|andy@icc.surw.chel.su|x11-fm|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 xpm-3.4k|http://www-c.informatik.uni-hannover.de/~kaiser/dfm/dfm.html
endeavour-1.07|/usr/ports/x11-fm/endeavour|/usr/X11R6|A graphical file manager and image viewer aimed towards new users|/usr/ports/x11-fm/endeavour/pkg/DESCR|cpiazza@FreeBSD.org|x11-fm|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|http://fox.mit.edu/xsw/edv.htm
explorer-0.72|/usr/ports/x11-fm/explorer|/usr/X11R6|File manager which has the same look and feel of the Windows95(tm)|/usr/ports/x11-fm/explorer/pkg/DESCR|nacai@iname.com|x11-fm|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
ezfm-0.4|/usr/ports/x11-fm/ezfm|/usr/X11R6|EZWGL-based file manager for X Window System|/usr/ports/x11-fm/ezfm/pkg/DESCR|andy@icc.surw.chel.su|x11-fm|EZWGL-1.40c XFree86-3.3.5 gmake-3.78.1 jpeg-6b|EZWGL-1.40c XFree86-3.3.5 jpeg-6b|http://www.ma.utexas.edu/~mzou/EZFM/
filerunner-2.5|/usr/ports/x11-fm/filerunner|/usr/local|Filemanager with FTP capabilities. Uses Tcl/Tk|/usr/ports/x11-fm/filerunner/pkg/DESCR|vanilla@FreeBSD.org|x11-fm tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
gnomemc-4.5.41|/usr/ports/x11-fm/gnomemc|/usr/X11R6|A windows explorer work-a-like for the GNOME Desktop Environment|/usr/ports/x11-fm/gnomemc/pkg/DESCR|reg@shale.csir.co.za|x11-fm gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
jafm-0.5|/usr/ports/x11-fm/jafm|/usr/local|Yet another file manager!|/usr/ports/x11-fm/jafm/pkg/DESCR|brett@peloton.runet.edu|x11-fm|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|http://www-personal.usyd.edu.au/~rlittlew/jafm/
offix-files-2.4|/usr/ports/x11-fm/offix-files|/usr/X11R6|File bar from OffiX|/usr/ports/x11-fm/offix-files/pkg/DESCR|ruslan@shevchenko.kiev.ua|x11-fm offix|XFree86-3.3.5 gmake-3.78.1 libdnd-1.1 xpm-3.4k|XFree86-3.3.5 libdnd-1.1 offix-editor-2.4 offix-execute-2.4 xpm-3.4k|http://leb.net/OffiX/
q3dmenu-1.0|/usr/ports/x11-fm/q3dmenu|/usr/X11R6|Simple 3D file manager for X Window System|/usr/ports/x11-fm/q3dmenu/pkg/DESCR|andy@icc.surw.chel.su|x11-fm|Mesa-3.0 XFree86-3.3.5 qt-1.42|Mesa-3.0 XFree86-3.3.5 qt-1.42|
tkdesk-1.1|/usr/ports/x11-fm/tkdesk|/usr/local|A graphical, highly configurable and powerful file manager|/usr/ports/x11-fm/tkdesk/pkg/DESCR|dmlb@ragnet.demon.co.uk|x11-fm tk42|XFree86-3.3.5 gmake-3.78.1 tcl-7.6 tk-4.2|XFree86-3.3.5 tcl-7.6 tk-4.2|
workplace-1.0a3|/usr/ports/x11-fm/workplace|/usr/X11R6|File manager and launcher|/usr/ports/x11-fm/workplace/pkg/DESCR|andy@icc.surw.chel.su|x11-fm|XFree86-3.3.5 gtk-1.0.6|XFree86-3.3.5 gtk-1.0.6|
x-files-2.00b1|/usr/ports/x11-fm/x-files|/usr/X11R6|A nice Tk-based filemanager|/usr/ports/x11-fm/x-files/pkg/DESCR|dmaddox@conterra.com|x11-fm tk82|XFree86-3.3.5 tcl-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://java.inf.tu-dresden.de/X-Files/
xfm-1.3.2|/usr/ports/x11-fm/xfm|/usr/X11R6|The X File Manager|/usr/ports/x11-fm/xfm/pkg/DESCR|ports@FreeBSD.org|x11-fm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xnc-4.0.8|/usr/ports/x11-fm/xnc|/usr/X11R6|File manager for X Window|/usr/ports/x11-fm/xnc/pkg/DESCR|dima@chg.ru|x11-fm|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5 bzip2-0.9.5d lha-1.14f rar-2.02 rpm-2.5.6 unarj-2.43 unzip-5.40 zip-2.2|http://www.xnc.dubna.su
libXgFonts-1.0|/usr/ports/x11-fonts/Xg|/usr/X11R6|These are the UNICODE fonts for use with 9term and sam|/usr/ports/x11-fonts/Xg/pkg/DESCR|erich@FreeBSD.org|x11-fonts plan9|XFree86-3.3.5|XFree86-3.3.5|
bitmap-font-8.0|/usr/ports/x11-fonts/bitmap-font|/usr/X11R6|Bitmap font, 8 dots x 16 dots bitmap font|/usr/ports/x11-fonts/bitmap-font/pkg/DESCR|shige@FreeBSD.org|x11-fonts elisp|XFree86-3.3.5|XFree86-3.3.5|
etlfonts-noncjk-1.0|/usr/ports/x11-fonts/etlfonts|/usr/X11R6|X11 supplemental fonts|/usr/ports/x11-fonts/etlfonts/pkg/DESCR|mita@jp.FreeBSD.org|x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
freefonts-0.10|/usr/ports/x11-fonts/freefonts|/usr/X11R6|A collection of ATM fonts from the CICA archives|/usr/ports/x11-fonts/freefonts/pkg/DESCR|erich@FreeBSD.org|x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
getbdf-1.0|/usr/ports/x11-fonts/getbdf|/usr/X11R6|Convert any X server font to .bdf format|/usr/ports/x11-fonts/getbdf/pkg/DESCR|ache@FreeBSD.org|x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
nexfontsel-2.0|/usr/ports/x11-fonts/nexfontsel|/usr/X11R6|A neXtaw based replacement for xfontsel|/usr/ports/x11-fonts/nexfontsel/pkg/DESCR|taoka@FreeBSD.org|x11-fonts|XFree86-3.3.5 neXtaw-0.5.1|XFree86-3.3.5 neXtaw-0.5.1|http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/nexfontsel/
p5-type1inst-0.6.1|/usr/ports/x11-fonts/p5-type1inst|/usr/local|A script that helps install Postscript fonts in Xwindows|/usr/ports/x11-fonts/p5-type1inst/pkg/DESCR|giffunip@asme.org|x11-fonts perl5||XFree86-3.3.5|
sharefonts-0.10|/usr/ports/x11-fonts/sharefonts|/usr/X11R6|A collection of shareware ATM fonts from the CICA archives|/usr/ports/x11-fonts/sharefonts/pkg/DESCR|dburr@FreeBSD.org|x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
tkfont-1.1|/usr/ports/x11-fonts/tkfont|/usr/local|A Tk based replacement for xfontsel|/usr/ports/x11-fonts/tkfont/pkg/DESCR|brett@peloton.runet.edu|x11-fonts tk82||XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
ttmkfdir-0.0|/usr/ports/x11-fonts/ttmkfdir|/usr/X11R6|Create fonts.scale file for use with TrueType font server|/usr/ports/x11-fonts/ttmkfdir/pkg/DESCR|ports@FreeBSD.org|x11|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3|
xfed-1.0|/usr/ports/x11-fonts/xfed|/usr/X11R6|A program that will let you edit X fonts (.bdf files)|/usr/ports/x11-fonts/xfed/pkg/DESCR|ports@FreeBSD.org|x11-fonts|XFree86-3.3.5|XFree86-3.3.5|
xmbdfed-4.2|/usr/ports/x11-fonts/xmbdfed|/usr/X11R6|A Motif tool for editing X11 bitmap fonts|/usr/ports/x11-fonts/xmbdfed/pkg/DESCR|ports@freebsd.org|x11-fonts|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
Xfstt-0.9.10|/usr/ports/x11-servers/Xfstt|/usr/X11R6|A TrueType font server for X11|/usr/ports/x11-servers/Xfstt/pkg/DESCR|jabley@clear.co.nz|x11-servers|XFree86-3.3.5|XFree86-3.3.5|
xtt-3DLabs-1.3.0|/usr/ports/x11-servers/XttXF86srv-3DLabs|/usr/X11R6|A X True Type Server for SVGA Graphics Cards|/usr/ports/x11-servers/XttXF86srv-3DLabs/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-8514-1.3.0|/usr/ports/x11-servers/XttXF86srv-8514|/usr/X11R6|A X True Type Server for 8514 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-8514/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|http://hawk.ise.chuo-u.ac.jp/student/person/tshiozak/study/freebsd-at-random/x-tt/index-en.html
xtt-AGX-1.3.0|/usr/ports/x11-servers/XttXF86srv-AGX|/usr/X11R6|A X True Type Server for AGX Graphics Cards|/usr/ports/x11-servers/XttXF86srv-AGX/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-I128-1.3.0|/usr/ports/x11-servers/XttXF86srv-I128|/usr/X11R6|A X True Type Server for I128 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-I128/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-Mach32-1.3.0|/usr/ports/x11-servers/XttXF86srv-Mach32|/usr/X11R6|A X True Type Server for Mach32 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-Mach32/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-Mach64-1.3.0|/usr/ports/x11-servers/XttXF86srv-Mach64|/usr/X11R6|A X True Type Server for Mach64 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-Mach64/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-Mach8-1.3.0|/usr/ports/x11-servers/XttXF86srv-Mach8|/usr/X11R6|A X True Type Server for Mach8 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-Mach8/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-Mono-1.3.0|/usr/ports/x11-servers/XttXF86srv-Mono|/usr/X11R6|A X True Type Server for Mono Graphics Cards|/usr/ports/x11-servers/XttXF86srv-Mono/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-P9000-1.3.0|/usr/ports/x11-servers/XttXF86srv-P9000|/usr/X11R6|A X True Type Server for P9000 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-P9000/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-S3-1.3.0|/usr/ports/x11-servers/XttXF86srv-S3|/usr/X11R6|A X True Type Server for S3 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-S3/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-S3V-1.3.0|/usr/ports/x11-servers/XttXF86srv-S3V|/usr/X11R6|A X True Type Server for S3V Graphics Cards|/usr/ports/x11-servers/XttXF86srv-S3V/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-SVGA-1.3.0|/usr/ports/x11-servers/XttXF86srv-SVGA|/usr/X11R6|A X True Type Server for SVGA Graphics Cards|/usr/ports/x11-servers/XttXF86srv-SVGA/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-VGA16-1.3.0|/usr/ports/x11-servers/XttXF86srv-VGA16|/usr/X11R6|A X True Type Server for VGA16 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-VGA16/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-W32-1.3.0|/usr/ports/x11-servers/XttXF86srv-W32|/usr/X11R6|A X True Type Server for W32 Graphics Cards|/usr/ports/x11-servers/XttXF86srv-W32/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-common-1.3.0|/usr/ports/x11-servers/XttXF86srv-common|/usr/X11R6|Common files for X True Type Servers|/usr/ports/x11-servers/XttXF86srv-common/../XttXF86srv-common/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2|
xtt-xfs-1.3.0|/usr/ports/x11-servers/XttXF86srv-xfs|/usr/X11R6|A X True Type Font Server|/usr/ports/x11-servers/XttXF86srv-xfs/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98EGC-1.3.0|/usr/ports/x11-servers/XttXF98srv-EGC|/usr/X11R6|A X True Type Server for X98 EGC Graphics Cards|/usr/ports/x11-servers/XttXF98srv-EGC/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98GA968-1.3.0|/usr/ports/x11-servers/XttXF98srv-GA968|/usr/X11R6|A X True Type Server for X98 GA968 Graphics Cards|/usr/ports/x11-servers/XttXF98srv-GA968/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98GANBWAP-1.3.0|/usr/ports/x11-servers/XttXF98srv-GANBWAP|/usr/X11R6|A X True Type Server for X98 GANBWAP Graphics Cards|/usr/ports/x11-servers/XttXF98srv-GANBWAP/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98MGA-1.3.0|/usr/ports/x11-servers/XttXF98srv-MGA|/usr/X11R6|A X True Type Server for X98 MGA Graphics Cards|/usr/ports/x11-servers/XttXF98srv-MGA/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98NEC480-1.3.0|/usr/ports/x11-servers/XttXF98srv-NEC480|/usr/X11R6|A X True Type Server for X98 NEC480 Graphics Cards|/usr/ports/x11-servers/XttXF98srv-NEC480/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98NECS3-1.3.0|/usr/ports/x11-servers/XttXF98srv-NECS3|/usr/X11R6|A X True Type Server for X98 NECS3 Graphics Cards|/usr/ports/x11-servers/XttXF98srv-NECS3/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98NKVNEC-1.3.0|/usr/ports/x11-servers/XttXF98srv-NKVNEC|/usr/X11R6|A X True Type Server for X98 NKVNEC Graphics Cards|/usr/ports/x11-servers/XttXF98srv-NKVNEC/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98PWLB-1.3.0|/usr/ports/x11-servers/XttXF98srv-PWLB|/usr/X11R6|A X True Type Server for X98 PWLB Graphics Cards|/usr/ports/x11-servers/XttXF98srv-PWLB/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98PWSKB-1.3.0|/usr/ports/x11-servers/XttXF98srv-PWSKB|/usr/X11R6|A X True Type Server for X98 PWSKB Graphics Cards|/usr/ports/x11-servers/XttXF98srv-PWSKB/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98SVGA-1.3.0|/usr/ports/x11-servers/XttXF98srv-SVGA|/usr/X11R6|A X True Type Server for X98 SVGA Graphics Cards|/usr/ports/x11-servers/XttXF98srv-SVGA/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98TGUI-1.3.0|/usr/ports/x11-servers/XttXF98srv-TGUI|/usr/X11R6|A X True Type Server for X98 TGUI Graphics Cards|/usr/ports/x11-servers/XttXF98srv-TGUI/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98WABEP-1.3.0|/usr/ports/x11-servers/XttXF98srv-WABEP|/usr/X11R6|A X True Type Server for X98 WABEP Graphics Cards|/usr/ports/x11-servers/XttXF98srv-WABEP/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98WABS-1.3.0|/usr/ports/x11-servers/XttXF98srv-WABS|/usr/X11R6|A X True Type Server for X98 WABS Graphics Cards|/usr/ports/x11-servers/XttXF98srv-WABS/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
xtt-98WSNA-1.3.0|/usr/ports/x11-servers/XttXF98srv-WSNA|/usr/X11R6|A X True Type Server for X98 WSNA Graphics Cards|/usr/ports/x11-servers/XttXF98srv-WSNA/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-servers|XFree86-3.3.5 freetype-1.3|XFree86-3.3.5 freetype-1.3 ja-p5-jcode.pl-2.10 perlftlib-1.2 xtt-common-1.3.0|
fwf-4.0|/usr/ports/x11-toolkits/FWF|/usr/X11R6|The Free Widget Foundation widget release|/usr/ports/x11-toolkits/FWF/pkg/DESCR|jseger@FreeBSD.org|x11-toolkits|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
Motif-2.1.10|/usr/ports/x11-toolkits/Motif-dummy|/usr/X11R6|Motif|/usr/ports/x11-toolkits/Motif-dummy/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
Xaw3d-1.5|/usr/ports/x11-toolkits/Xaw3d|/usr/X11R6|A 3-D Athena Widget set that looks like Motif|/usr/ports/x11-toolkits/Xaw3d/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
blt-2.4m|/usr/ports/x11-toolkits/blt|/usr/local|A Tk extension (with shared libs)|/usr/ports/x11-toolkits/blt/pkg/DESCR|kjc@csl.sony.co.jp|x11-toolkits tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
fltk-1.0.3|/usr/ports/x11-toolkits/fltk|/usr/X11R6|C++ graphical user interface for X|/usr/ports/x11-toolkits/fltk/pkg/DESCR|dima@chg.ru|x11-toolkits|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d|Mesa-3.0 XFree86-3.3.5|http://fltk.easysw.com
gtk---1.0.3|/usr/ports/x11-toolkits/gtk--|/usr/X11R6|C++ wrapper for gtk, a x11 graphics library|/usr/ports/x11-toolkits/gtk--/pkg/DESCR|nakai@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 libtool-1.3.3 m4-1.4|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtk-engines-0.8|/usr/ports/x11-toolkits/gtk-engines|/usr/X11R6|Theme engine for gtk+ toolkits|/usr/ports/x11-toolkits/gtk-engines/pkg/DESCR|vanilla@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libtool-1.3.3 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|http://www.labs.redhat.com/themes.shtml
gtk-1.0.6|/usr/ports/x11-toolkits/gtk10|/usr/X11R6|General Toolkit for X11 GUI|/usr/ports/x11-toolkits/gtk10/pkg/DESCR|vanilla@FreeBSD.org|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
gtk-1.2.6|/usr/ports/x11-toolkits/gtk12|/usr/X11R6|General Toolkit for X11 GUI|/usr/ports/x11-toolkits/gtk12/pkg/DESCR|vanilla@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 libtool-1.3.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6|
gtkgl-0.8.9|/usr/ports/x11-toolkits/gtkgl|/usr/local|An OpenGL widget for GTK|/usr/ports/x11-toolkits/gtkgl/pkg/DESCR|billf@FreeBSD.org|x11-toolkits|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libtool-1.3.3|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://www.sakuranet.or.jp/~aozasa/shige/doc/comp/gtk/gtkGL/00gtkGL-en.html
gtkglarea-1.2.1|/usr/ports/x11-toolkits/gtkglarea|/usr/local|An OpenGL widget for the GTK+ GUI toolkit|/usr/ports/x11-toolkits/gtkglarea/pkg/DESCR|jaeger16@yahoo.com|x11-toolkits|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libtool-1.3.3|Mesa-3.0 XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
gtkstep-1.10|/usr/ports/x11-toolkits/gtkstep|/usr/X11R6|A theme module to make GTK+ look like the NeXTSTEP(tm) interface|/usr/ports/x11-toolkits/gtkstep/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 glib-1.2.6 gtk-1.2.6 libtool-1.3.3|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|http://ulli.linuxbox.com/gtkstep/
itk-3.0.1|/usr/ports/x11-toolkits/itk|/usr/local|[incr Tk] (A.K.A. ``itk'')|/usr/ports/x11-toolkits/itk/pkg/DESCR|dmlb@ragnet.demon.co.uk|x11-toolkits tk82|XFree86-3.3.5 itcl-3.0.1 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 itcl-3.0.1 tcl-8.2.2 tk-8.2.2|
iv-3.1|/usr/ports/x11-toolkits/iv|/usr/local|InterViews: A toolkit from Stanford University and Silicon Graphics|/usr/ports/x11-toolkits/iv/pkg/DESCR|tanimura@naklab.dnj.ynu.ac.jp|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
iwidgets-3.0.0|/usr/ports/x11-toolkits/iwidgets|/usr/local|[incr Widgets] (A.K.A. ``iwidgets'')|/usr/ports/x11-toolkits/iwidgets/pkg/DESCR|dmlb@ragnet.demon.co.uk|x11-toolkits tk82|XFree86-3.3.5 itcl-3.0.1 itk-3.0.1 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 itcl-3.0.1 itk-3.0.1 tcl-8.2.2 tk-8.2.2|
lesstif-0.89.4|/usr/ports/x11-toolkits/lesstif|/usr/X11R6|API compatible clone of the Motif toolkit|/usr/ports/x11-toolkits/lesstif/pkg/DESCR|kargl@troutmask.apl.washington.edu|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|http://www.lesstif.org
neXtaw-0.5.1|/usr/ports/x11-toolkits/neXtaw|/usr/X11R6|Athena Widgets with N*XTSTEP appearance|/usr/ports/x11-toolkits/neXtaw/pkg/DESCR|tg@FreeBSD.org|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
p5-Gtk-0.5121|/usr/ports/x11-toolkits/p5-Gtk|/usr/local|A perl5 interface to Gtk Graphics Library|/usr/ports/x11-toolkits/p5-Gtk/pkg/DESCR|vanilla@FreeBSD.org|x11-toolkits lang perl5|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3|
p5-Tcl-Tk-b2|/usr/ports/x11-toolkits/p5-Tcl-Tk|/usr/local|Perl5 module to access to Tk via the Tcl extension|/usr/ports/x11-toolkits/p5-Tcl-Tk/pkg/DESCR|jfitz@FreeBSD.org|x11-toolkits lang perl5 tk82|XFree86-3.3.5 p5-Tcl-b2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|
p5-Tk-800.008|/usr/ports/x11-toolkits/p5-Tk|/usr/local|A re-port of a perl5 interface to Tk8.0p2|/usr/ports/x11-toolkits/p5-Tk/pkg/DESCR|jfitz@FreeBSD.org|x11-toolkits tk80 perl5|XFree86-3.3.5|XFree86-3.3.5|
pike-gtk-1.1.3|/usr/ports/x11-toolkits/pike-gtk|/usr/local|A pike interface to Gtk Graphics Library|/usr/ports/x11-toolkits/pike-gtk/pkg/DESCR|ijliao@csie.nctu.edu.tw|x11-toolkits lang|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 pike-0.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
plib-1.0.12a|/usr/ports/x11-toolkits/plib|/usr/X11R6|A portable library for joystick/sound/OpenGL GUI/3D math|/usr/ports/x11-toolkits/plib/pkg/DESCR|brian@CSUA.Berkeley.EDU|x11-toolkits|Mesa-3.0 XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1|Mesa-3.0 XFree86-3.3.5|http://www.woodsoup.org/projs/plib/
py-pmw-0.8.3|/usr/ports/x11-toolkits/pmw|/usr/local|High-level compound graphics widgets for Python|/usr/ports/x11-toolkits/pmw/pkg/DESCR|tg@FreeBSD.org|x11-toolkits python|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 python-1.5.2 tcl-8.2.2 tk-8.2.2|
py-gnome-1.0.50|/usr/ports/x11-toolkits/py-gnome|/usr/local|A set of Python bindings for GNOME|/usr/ports/x11-toolkits/py-gnome/pkg/DESCR|nectar@FreeBSD.org|x11-toolkits python gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 py-gtk-0.6.3 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 py-gtk-0.6.3 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2 xpm-3.4k|
py-gtk-0.6.3|/usr/ports/x11-toolkits/py-gtk|/usr/local|A set of Python bindings for GTK|/usr/ports/x11-toolkits/py-gtk/pkg/DESCR|nectar@FreeBSD.org|x11-toolkits python|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 python-1.5.2 tcl-8.2.2 tiff-3.5.3 tk-8.2.2|
py-wxPython-2.1b3|/usr/ports/x11-toolkits/py-wxPython|/usr/local|Python bindings for the wxWindows/GTK GUI toolkit.|/usr/ports/x11-toolkits/py-wxPython/pkg/DESCR|nectar@FreeBSD.ORG|x11-toolkits python|XFree86-3.3.5 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 python-1.5.2 tcl-8.2.2 tk-8.2.2 wxgtk-2.1.0b9|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6 python-1.5.2 tcl-8.2.2 tk-8.2.2 wxgtk-2.1.0b9|
qt-i18n-1.44a|/usr/ports/x11-toolkits/qt-i18n|/usr/X11R6|A C++ X GUI toolkit|/usr/ports/x11-toolkits/qt-i18n/pkg/DESCR|imura@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1|XFree86-3.3.5|
qt-1.42|/usr/ports/x11-toolkits/qt142|/usr/X11R6|A C++ X GUI toolkit|/usr/ports/x11-toolkits/qt142/pkg/DESCR|andreas@FreeBSD.org|x11-toolkits|Mesa-3.0 XFree86-3.3.5 gmake-3.78.1|Mesa-3.0 XFree86-3.3.5|http://www.troll.no/qt/
qt-2.0.2|/usr/ports/x11-toolkits/qt20|/usr/X11R6|A C++ X GUI toolkit|/usr/ports/x11-toolkits/qt20/pkg/DESCR|imura@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1 png-1.0.5|XFree86-3.3.5 png-1.0.5|http://www.troll.no/qt/
rep-gtk-0.6|/usr/ports/x11-toolkits/rep-gtk|/usr/local|GTK+ binding for rep Lisp interpreter|/usr/ports/x11-toolkits/rep-gtk/pkg/DESCR|nakai@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 guile-1.3.4 librep-0.8|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
ruby-gtk-0.22|/usr/ports/x11-toolkits/ruby-gtk|/usr/local|Ruby interface to Gtk+ toolkits|/usr/ports/x11-toolkits/ruby-gtk/pkg/DESCR|yasuf@big.or.jp|x11-toolkits|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 ruby-1.4.2 tiff-3.5.3|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 ruby-1.4.2 tiff-3.5.3|http://www.ueda.info.waseda.ac.jp/~igarashi/ruby/gtk.html
rubytk-1.4.2|/usr/ports/x11-toolkits/rubytk|/usr/local|A Ruby interface to Tcl/Tk libraries|/usr/ports/x11-toolkits/rubytk/pkg/DESCR|yasuf@big.or.jp|x11-toolkits|XFree86-3.3.5 ruby-1.4.2 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 ruby-1.4.2 tcl-8.2.2 tk-8.2.2|
slingshot-2.1|/usr/ports/x11-toolkits/slingshot|/usr/X11R6|Supplemental Libraries to extend Xview|/usr/ports/x11-toolkits/slingshot/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5 gmake-3.78.1 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
tix-4.1.0.007|/usr/ports/x11-toolkits/tix|/usr/local|An extension to the Tk toolkit|/usr/ports/x11-toolkits/tix/pkg/DESCR|ports@FreeBSD.org|x11-toolkits tk82|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|XFree86-3.3.5 tcl-8.2.2 tk-8.2.2|http://www.xpi.com/tix/
tk-4.2|/usr/ports/x11-toolkits/tk42|/usr/local|Graphical toolkit for TCL|/usr/ports/x11-toolkits/tk42/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11-toolkits tk42|XFree86-3.3.5 tcl-7.6|XFree86-3.3.5 tcl-7.6|
tk-8.0.5|/usr/ports/x11-toolkits/tk80|/usr/local|Graphical toolkit for TCL|/usr/ports/x11-toolkits/tk80/pkg/DESCR|cwt@Freebsd.ORG|x11-toolkits tk80|XFree86-3.3.5 tcl-8.0.5|XFree86-3.3.5 tcl-8.0.5|
tk-8.2.2|/usr/ports/x11-toolkits/tk82|/usr/local|Graphical toolkit for TCL|/usr/ports/x11-toolkits/tk82/pkg/DESCR|jseger@FreeBSD.org|x11-toolkits tk82|XFree86-3.3.5 tcl-8.2.2|XFree86-3.3.5 tcl-8.2.2|
tkstep-8.0.4|/usr/ports/x11-toolkits/tkstep80|/usr/local|The Tk toolkit with a NeXTSTEP look and more|/usr/ports/x11-toolkits/tkstep80/pkg/DESCR|tg@FreeBSD.org|x11-toolkits tk80|XFree86-3.3.5 jpeg-6b tcl-8.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 jpeg-6b tcl-8.0.5 tiff-3.5.3 xpm-3.4k|http://touchwood.ee.uts.edu.au/TkSTEP/TkSTEP.html
v-1.19|/usr/ports/x11-toolkits/v|/usr/X11R6|A C++ GUI development framework for X11 and Microsoft Windows|/usr/ports/x11-toolkits/v/pkg/DESCR|dburr@FreeBSD.org|x11-toolkits devel graphics|XFree86-3.3.5 gmake-3.78.1|XFree86-3.3.5|http://objectcentral.com/
wxgtk-2.1.0b9|/usr/ports/x11-toolkits/wxgtk|/usr/X11R6|The wxWindows GUI toolkit with GTK+ bindings.|/usr/ports/x11-toolkits/wxgtk/pkg/DESCR|nectar@FreeBSD.ORG|x11-toolkits|XFree86-3.3.5 gcc-2.95.2 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gtk-1.2.6|
xbae-4.7|/usr/ports/x11-toolkits/xbae|/usr/X11R6|A Motif-based widget which displays a grid of cells as a spreadsheet|/usr/ports/x11-toolkits/xbae/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.de|x11-toolkits math|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xforms-0.88.1|/usr/ports/x11-toolkits/xforms|/usr/X11R6|A graphical user interface toolkit for X Window System|/usr/ports/x11-toolkits/xforms/pkg/DESCR|gena@NetVision.net.il|graphics x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|http://bragg.phys.uwm.edu/xforms/
xg-1.0|/usr/ports/x11-toolkits/xg|/usr/X11R6|Windows(tm) controls - like widget set for Motif(tm)|/usr/ports/x11-toolkits/xg/pkg/DESCR|andy@icc.surw.chel.su|x11-toolkits|Motif-2.1.10 XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.messners.com/xgwidgets/xgwidgets.html
XmHTML-1.1.0|/usr/ports/x11-toolkits/xmhtml|/usr/X11R6|A Motif widget set for displaying HTML 3.2 documents|/usr/ports/x11-toolkits/xmhtml/pkg/DESCR|thepish@freebsd.org|x11-toolkits www|Motif-2.1.10 XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|http://www.xs4all.nl/~ripley/XmHTML/
xview-3.2.1|/usr/ports/x11-toolkits/xview|/usr/X11R6|X Window-System-based Visual/Integrated Environment for Workstations|/usr/ports/x11-toolkits/xview/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5|XFree86-3.3.5|
xview-clients-3.2.1|/usr/ports/x11-toolkits/xview-clients|/usr/X11R6|OpenLook applications and man pages|/usr/ports/x11-toolkits/xview-clients/pkg/DESCR|ports@FreeBSD.org|x11-toolkits|XFree86-3.3.5 xview-3.2.1|XFree86-3.3.5 xview-3.2.1|
9menu-1.5|/usr/ports/x11-wm/9menu|/usr/local|A simple menu patterened after plan9|/usr/ports/x11-wm/9menu/pkg/DESCR|erich@FreeBSD.org|x11-wm plan9|XFree86-3.3.5|XFree86-3.3.5|
9wm-1.1|/usr/ports/x11-wm/9wm|/usr/X11R6|An 8 1/2-like Window Manager for X|/usr/ports/x11-wm/9wm/pkg/DESCR|erich@FreeBSD.org|x11-wm plan9|XFree86-3.3.5|XFree86-3.3.5|
afterstep-1.0|/usr/ports/x11-wm/afterstep|/usr/X11R6|Window manager originally based on the Bowman NeXTSTEP clone|/usr/ports/x11-wm/afterstep/pkg/DESCR|jfitz@FreeBSD.org|x11-wm afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
afterstep-1.7.157|/usr/ports/x11-wm/afterstep-devel|/usr/X11R6|A development version of the AfterStep window manager|/usr/ports/x11-wm/afterstep-devel/pkg/DESCR|jack@germanium.xtalwind.net|x11-wm afterstep|XFree86-3.3.5 bzip2-0.9.5d jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|http://www.afterstep.org/
afterstep-i18n-1.0|/usr/ports/x11-wm/afterstep-i18n|/usr/X11R6|The NeXTSTEP clone window manager with Fontset support|/usr/ports/x11-wm/afterstep-i18n/pkg/DESCR|issei@jp.FreeBSD.org|x11-wm afterstep|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
afterstep-1.6.10|/usr/ports/x11-wm/afterstep-stable|/usr/X11R6|A development version of the AfterStep window manager|/usr/ports/x11-wm/afterstep-stable/pkg/DESCR|dima@Chg.ru|x11-wm afterstep|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|XFree86-3.3.5 jpeg-6b png-1.0.5 xpm-3.4k|
amiwm-0.20p48|/usr/ports/x11-wm/amiwm|/usr/X11R6|A window manager that makes your desktop look like an Amiga(TM)|/usr/ports/x11-wm/amiwm/pkg/DESCR|ports@FreeBSD.org|x11-wm|XFree86-3.3.5|XFree86-3.3.5|http://www.lysator.liu.se/~marcus/amiwm.html
blackbox-0.51.3.1|/usr/ports/x11-wm/blackbox|/usr/X11R6|A small and fast window manager for X11R6|/usr/ports/x11-wm/blackbox/pkg/DESCR|cpiazza@FreeBSD.org|x11-wm|XFree86-3.3.5 bzip2-0.9.5d|XFree86-3.3.5|http://blackbox.alug.org/
ctwm-3.5.2|/usr/ports/x11-wm/ctwm|/usr/X11R6|An extension to twm, with support for multiple virtual screens, etc|/usr/ports/x11-wm/ctwm/pkg/DESCR|torstenb@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
enlightenment-0.16.3|/usr/ports/x11-wm/enlightenment|/usr/X11R6|A very artistic X window manager|/usr/ports/x11-wm/enlightenment/pkg/DESCR|vanilla@FreeBSD.org|x11-wm gnome|XFree86-3.3.5 esound-0.2.16 fnlib-0.4 freetype-1.3 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 png-1.0.5 tiff-3.5.3|XFree86-3.3.5 esound-0.2.16 fnlib-0.4 freetype-1.3 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 png-1.0.5 tiff-3.5.3|http://www.enlightenment.org/
enlightenment-conf-0.15|/usr/ports/x11-wm/enlightenment-conf|/usr/X11R6|Enlightenment's configuration tool|/usr/ports/x11-wm/enlightenment-conf/pkg/DESCR|vanilla@FreeBSD.org|x11-wm gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libtool-1.3.3 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 enlightenment-0.16.3 esound-0.2.16 fnlib-0.4 freetype-1.3 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
epplets-0.3|/usr/ports/x11-wm/epplets|/usr/X11R6|enlightenment dock application toolkit|/usr/ports/x11-wm/epplets/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 enlightenment-0.16.3 esound-0.2.16 fnlib-0.4 freetype-1.3 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 png-1.0.5 tiff-3.5.3|XFree86-3.3.5|
flwm-0.24|/usr/ports/x11-wm/flwm|/usr/X11R6|The Fast Light Window Manager|/usr/ports/x11-wm/flwm/pkg/DESCR|dima@chg.ru|x11-wm|Mesa-3.0 XFree86-3.3.5 fltk-1.0.3|Mesa-3.0 XFree86-3.3.5 fltk-1.0.3|http://www.cinenet.net/users/spitzak/flwm/
fvwm-1.24r|/usr/ports/x11-wm/fvwm|/usr/X11R6|The fvwm window manager|/usr/ports/x11-wm/fvwm/pkg/DESCR|me@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
fvwm-2.2.2|/usr/ports/x11-wm/fvwm2|/usr/X11R6|Popular virtual window manager for X|/usr/ports/x11-wm/fvwm2/pkg/DESCR|jcwells@u.washington.edu|x11-wm|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.fvwm.org/
fvwm-i18n-2.2|/usr/ports/x11-wm/fvwm2-i18n|/usr/X11R6|Internationalized fvwm version 2, a window manager for X|/usr/ports/x11-wm/fvwm2-i18n/pkg/DESCR|matusita@jp.freebsd.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.fvwm.org/
fvwm95-2.0.43a|/usr/ports/x11-wm/fvwm95|/usr/X11R6|Win95 lookalike version of the fvwm2 window manager|/usr/ports/x11-wm/fvwm95/pkg/DESCR|andreas@FreeBSD.org|x11-wm|XFree86-3.3.5 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|XFree86-3.3.5 fbsd-icons-1.0 xpm-3.4k|http://www.terraware.net/ftp/pub/Mirrors/FVWM95/fvwm95.html
fvwm95-i18n-2.0.43a|/usr/ports/x11-wm/fvwm95-i18n|/usr/X11R6|Win95 lookalike fvwm2 window manager with an I18N patch|/usr/ports/x11-wm/fvwm95-i18n/pkg/DESCR|ryo2@on.rim.or.jp|x11-wm|XFree86-3.3.5 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.terraware.net/ftp/pub/Mirrors/FVWM95/fvwm95.html
gwm-1.8c|/usr/ports/x11-wm/gwm|/usr/X11R6|Generic Window Manager|/usr/ports/x11-wm/gwm/pkg/DESCR|markm@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
icewm-0.9.52|/usr/ports/x11-wm/icewm|/usr/X11R6|Window Manager designed for speed, usability and consistency|/usr/ports/x11-wm/icewm/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 gmake-3.78.1 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.kiss.uni-lj.si/~k4fr0235/icewm/
iconmaker-1.5|/usr/ports/x11-wm/iconmaker|/usr/X11R6|A utility to create app-icons for WindowMaker|/usr/ports/x11-wm/iconmaker/pkg/DESCR|ports@FreeBSD.org|x11-wm windowmaker|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://www.ozemail.com.au/~crn/wm/wings.html
libdockapp-0.2|/usr/ports/x11-wm/libdockapp|/usr/X11R6|Standard library for Window Maker dock apps|/usr/ports/x11-wm/libdockapp/pkg/DESCR|jim@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://wit401310.student.utwente.nl/apps/wmdate.html
libwmfun-0.0.2|/usr/ports/x11-wm/libwmfun|/usr/X11R6|Library that provides function textures for WindowMaker|/usr/ports/x11-wm/libwmfun/pkg/DESCR|sobomax@altavista.net|x11-wm windowmaker|XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 jpeg-6b libproplist-0.9.1 libtool-1.3.3 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://www.windowmaker.org/
lwm-0.06|/usr/ports/x11-wm/lwm|/usr/X11R6|A lightweight window manager|/usr/ports/x11-wm/lwm/pkg/DESCR|hjh@photino.com|x11-wm|XFree86-3.3.5|XFree86-3.3.5|http://users.ch.genedata.com/~enh/lwm.html
mlvwm-0.9.0|/usr/ports/x11-wm/mlvwm|/usr/X11R6|Macintosh like window manager for X11|/usr/ports/x11-wm/mlvwm/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www2u.biglobe.ne.jp/~y-miyata/mlvwm.html
olvwm-4.2|/usr/ports/x11-wm/olvwm|/usr/X11R6|OpenLook Virtual Window manager|/usr/ports/x11-wm/olvwm/pkg/DESCR|green@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k xview-3.2.1|XFree86-3.3.5 xpm-3.4k xview-3.2.1|
piewm-1.02|/usr/ports/x11-wm/piewm|/usr/X11R6|A tvtwm with pie (circular) menus|/usr/ports/x11-wm/piewm/pkg/DESCR|ports@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.crynwr.com/piewm/
qvwm-1.1.4|/usr/ports/x11-wm/qvwm|/usr/X11R6|Windows 95/98/NT like window manager for X11|/usr/ports/x11-wm/qvwm/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.qvwm.org/
sawmill-0.17|/usr/ports/x11-wm/sawmill|/usr/X11R6|Lisp configurable window manager|/usr/ports/x11-wm/sawmill/pkg/DESCR|nakai@FreeBSD.org|x11-wm|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 librep-0.8 libxml-1.7.3 png-1.0.5 rep-gtk-0.6 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomeaudio-1.0.0 gnomecontrolcenter-1.0.51 gnomecore-1.0.54 gnomelibs-1.0.54 gnomeprint-0.10 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libghttp-1.0.4 libgtop-1.0.6 libxml-1.7.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|
scwm-0.99.5.1|/usr/ports/x11-wm/scwm|/usr/X11R6|Scheme configurable window manager|/usr/ports/x11-wm/scwm/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 guile-1.3.4 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 scwm-icons-0.99.2 tiff-3.5.3 xpm-3.4k|
toolbox-0.4.6|/usr/ports/x11-wm/toolbox|/usr/X11R6|A blackbox style configuration utility|/usr/ports/x11-wm/toolbox/pkg/DESCR|cpiazza@FreeBSD.org|x11-wm|XFree86-3.3.5 gcc-2.95.2 png-1.0.5 qt-2.0.2|XFree86-3.3.5 png-1.0.5 qt-2.0.2|
tvtwm-pl11|/usr/ports/x11-wm/tvtwm|/usr/X11R6|Twm with a virtual desktop|/usr/ports/x11-wm/tvtwm/pkg/DESCR|gpalmer@FreeBSD.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
vtwm-5.4.5a|/usr/ports/x11-wm/vtwm|/usr/X11R6|Twm with a virtual desktop and optional Motif-like features|/usr/ports/x11-wm/vtwm/pkg/DESCR|bmah@ca.sandia.gov|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|http://www.visi.com/~hawkeyd/vtwm.html
windowmaker-0.61.1|/usr/ports/x11-wm/windowmaker|/usr/X11R6|GNUStep-compliant NeXTStep window manager clone|/usr/ports/x11-wm/windowmaker/pkg/DESCR|handy@physics.montana.edu|x11-wm windowmaker|XFree86-3.3.5 bzip2-0.9.5d giflib-4.1.0 jpeg-6b libproplist-0.9.1 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.windowmaker.org/
windowmaker-i18n-0.61.1|/usr/ports/x11-wm/windowmaker-i18n|/usr/X11R6|A GNUStep-compliant NeXTStep clone window manager with i18n extention|/usr/ports/x11-wm/windowmaker-i18n/pkg/DESCR|mac@jp.freebsd.org|x11-wm windowmaker|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 ja-nkf-1.62 jpeg-6b libproplist-0.9.1 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 wmicons-1.0 xpm-3.4k|http://www.clave.gr.jp/~mac/FreeBSD/wmaker/
wm2-4.0|/usr/ports/x11-wm/wm2|/usr/X11R6|A very simple window manager for X|/usr/ports/x11-wm/wm2/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5|XFree86-3.3.5|http://www.all-day-breakfast.com/wm2/
wmakerconf-2.3|/usr/ports/x11-wm/wmakerconf|/usr/X11R6|A configuration tool for Window Maker|/usr/ports/x11-wm/wmakerconf/pkg/DESCR|dr@domix.de|x11-wm|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gtk-1.2.6 imlib-1.9.8 jpeg-6b libproplist-0.9.1 libwmfun-0.0.2 png-1.0.5 tiff-3.5.3 wget-1.5.3 windowmaker-0.61.1 xpm-3.4k|XFree86-3.3.5 bzip2-0.9.5d gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b libproplist-0.9.1 libwmfun-0.0.2 png-1.0.5 rpm-2.5.6 tiff-3.5.3 wget-1.5.3 windowmaker-0.61.1 xpm-3.4k|http://members.linuxstart.com/~ulli/wmakerconf/index.html
wmanager-0.2|/usr/ports/x11-wm/wmanager|/usr/X11R6|X11 window manager selector|/usr/ports/x11-wm/wmanager/pkg/DESCR|andrews@technologist.com|x11-wm|Mesa-3.0 XFree86-3.3.5 bzip2-0.9.5d fltk-1.0.3 gcc-2.95.2 gmake-3.78.1 qt-1.42|Mesa-3.0 XFree86-3.3.5 fltk-1.0.3 qt-1.42|http://heuss.techfak.uni-bielefeld.de/www/mtessmer/wmanager/
wmg-0.15.0|/usr/ports/x11-wm/wmg|/usr/X11R6|Small GTK-based GNOME-compliant window manager|/usr/ports/x11-wm/wmg/pkg/DESCR|nakai@FreeBSD.org|x11-wm gnome|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gmake-3.78.1 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 libtool-1.3.3 png-1.0.5 tiff-3.5.3 xpm-3.4k|ORBit-0.5.0 XFree86-3.3.5 esound-0.2.16 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gnomelibs-1.0.54 gtk-1.2.6 imlib-1.9.8 jpeg-6b libaudiofile-0.1.9 png-1.0.5 tiff-3.5.3 xpm-3.4k|
wmthemeinstall-0.62|/usr/ports/x11-wm/wmthemeinstall|/usr/X11R6|A neat theme manager for WindowMaker|/usr/ports/x11-wm/wmthemeinstall/pkg/DESCR|andrews@technologist.com|x11-wm|XFree86-3.3.5 gettext-0.10.35 glib-1.2.6 gmake-3.78.1 gtk-1.2.6|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 jpeg-6b libproplist-0.9.1 png-1.0.5 tiff-3.5.3 windowmaker-0.61.1 xpm-3.4k|http://hellblazer.dhis.org/projects/wmthemeinstall/
wmx-5.6|/usr/ports/x11-wm/wmx|/usr/X11R6|Extended version of wm2 - A simple window manager for X|/usr/ports/x11-wm/wmx/pkg/DESCR|sec@42.org|x11-wm|XFree86-3.3.5 xpm-3.4k|XFree86-3.3.5 xpm-3.4k|
xfce-3.2.0|/usr/ports/x11-wm/xfce|/usr/X11R6|CDE like desktop with GTK|/usr/ports/x11-wm/xfce/pkg/DESCR|nakai@FreeBSD.org|x11-wm|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|XFree86-3.3.5 gettext-0.10.35 giflib-4.1.0 glib-1.2.6 gtk-1.2.6 imlib-1.9.8 jpeg-6b png-1.0.5 tiff-3.5.3 xpm-3.4k|http://www.xfce.org/
xwmm-0.7|/usr/ports/x11-wm/xwmm|/usr/X11R6|A simple utility managing multiple Window Managers with Qt|/usr/ports/x11-wm/xwmm/pkg/DESCR|imura@FreeBSD.org|x11-wm|XFree86-3.3.5 gcc-2.95.2 gmake-3.78.1 png-1.0.5 qt-2.0.2|XFree86-3.3.5 png-1.0.5 qt-2.0.2|http://www.softarc.com/~msharkey/wmm/