aboutsummaryrefslogtreecommitdiff
path: root/INDEX
blob: 38590f36aa18f190a25422a8867069215e3123a1 (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
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||
bzip2-0.1p2|/usr/ports/archivers/bzip2|/usr/local|A block-sorting file compressor|/usr/ports/archivers/bzip2/pkg/DESCR|ports@FreeBSD.org|archivers||
freeze-2.5|/usr/ports/archivers/freeze|/usr/local|FREEZE / MELT 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.76.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.14c|/usr/ports/archivers/lha|/usr/local|Archive files using LZW compression (.lzh files).|/usr/ports/archivers/lha/pkg/DESCR|ache@FreeBSD.ORG|archivers||
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|perl-5.00404|perl-5.00404
rar-2.01|/usr/ports/archivers/rar|/usr/local|File archiver (binary port)|/usr/ports/archivers/rar/pkg/DESCR|ache@FreeBSD.ORG|archivers||
unarj-2.41|/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.01|/usr/ports/archivers/unrar|/usr/local|Extract, view & test RAR archives.|/usr/ports/archivers/unrar/pkg/DESCR|ache@FreeBSD.ORG|archivers||
unzip-5.3.2|/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||
unzip+crypt-5.3.2|/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||
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||
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.3.2|
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||
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 her phase.|/usr/ports/astro/luna/pkg/DESCR|rewsirow@ff.iij4u.or.jp|astro games|lha-1.14c|
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||
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||
stars-1.0|/usr/ports/astro/stars|/usr/X11R6|Star field demo.|/usr/ports/astro/stars/pkg/DESCR|jseger@FreeBSD.org|astro x11||
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||
xearth-1.0|/usr/ports/astro/xearth|/usr/X11R6|Set the root window to the image of earth.|/usr/ports/astro/xearth/pkg/DESCR|ports@FreeBSD.ORG|astro x11||
xephem-3.1|/usr/ports/astro/xephem|/usr/X11R6|an interactive astronomical ephemeris program|/usr/ports/astro/xephem/pkg/DESCR|erich@FreeBSD.org|astro|xpm-3.4k|xpm-3.4k
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|ports@FreeBSD.ORG|astro x11||
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||
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.76.1|
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||
cddbd-1.3.1p1|/usr/ports/audio/cddbd|/usr/local|Internet CD Database Server.|/usr/ports/audio/cddbd/pkg/DESCR|bjn@visi.com|audio net||
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||
esound-0.2.4|/usr/ports/audio/esound|/usr/X11R6|a sound library for enlightenment package|/usr/ports/audio/esound/pkg/DESCR|vanilla@FreeBSD.ORG|audio|gmake-3.76.1|
xgmod-2.0.2|/usr/ports/audio/gmod|/usr/X11R6|Gravis Ultrasound .MOD player with X Interface.|/usr/ports/audio/gmod/pkg/DESCR|ports@FreeBSD.org|audio|fwf-4.0 gmake-3.76.1 xpm-3.4k|
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||
kdemultimedia-1.0|/usr/ports/audio/kdemultimedia|/usr/local|KDE audio tools.|/usr/ports/audio/kdemultimedia/pkg/DESCR|se@freebsd.org|x11|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.33
kmpg-0.3.3|/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|hanspb@persbraten.vgs.no|audio x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
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-2.14|/usr/ports/audio/mikmod|/usr/local|Mod player which plays MTM, STM, XM, MOD, S3M, ULT and UNI mods.|/usr/ports/audio/mikmod/pkg/DESCR|doconnor@gsoft.com.au|audio||
mp3info-0.2.15|/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.59o|/usr/ports/audio/mpg123|/usr/local|Command-line player for mpeg layer 1, 2 and 3 audio|/usr/ports/audio/mpg123/pkg/DESCR|ports@freebsd.org|audio||
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|iv-3.1|
nas-1.2.5|/usr/ports/audio/nas|/usr/X11R6|Network Audio System.|/usr/ports/audio/nas/pkg/DESCR|ports@FreeBSD.ORG|audio||
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||
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||
rosegarden-2.0.1|/usr/ports/audio/rosegarden|/usr/local|The Rosegarden Editor and Sequencer suite.|/usr/ports/audio/rosegarden/pkg/DESCR|shanee@augusta.de|audio|Xaw3d-1.3|Xaw3d-1.3 playmidi-2.3
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.76.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|gdbm-1.7.3 nas-1.2.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||
sox-12.12|/usr/ports/audio/sox|/usr/local|SOund eXchange - universal sound sample translator.|/usr/ports/audio/sox/pkg/DESCR|torstenb@FreeBSD.ORG|audio||
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|junker@jazz.snu.ac.kr|audio||
splaytk-2.0|/usr/ports/audio/splaytk|/usr/local|A tk based interface for splay.|/usr/ports/audio/splaytk/pkg/DESCR|brett@peloton.physics.montana.edu|audio||splay-0.8.2 tcl-8.0.2 tk-8.0.2
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|unzip-5.3.2|
tosha-0.05|/usr/ports/audio/tosha|/usr/local|Read CD digital audio data through 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.76.1|
wmmixer-0.8|/usr/ports/audio/wmmixer|/usr/X11R6|An audio mixer for the WindowMaker dock.|/usr/ports/audio/wmmixer/pkg/DESCR|rneswold@mcs.net|audio|xpm-3.4k|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|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
x11amp-0.7|/usr/ports/audio/x11amp|/usr/X11R6|X11-based MP3 player with nice graphical interface|/usr/ports/audio/x11amp/pkg/DESCR|dburr@FreeBSD.ORG|audio||
xcd-1.6|/usr/ports/audio/xcd|/usr/local|A Tcl/Tk CD player.|/usr/ports/audio/xcd/pkg/DESCR|jmz@FreeBSD.org|audio tk80||tcl-8.0.2 tk-8.0.2
xcdplayer-2.2|/usr/ports/audio/xcdplayer|/usr/X11R6|CD player for X.|/usr/ports/audio/xcdplayer/pkg/DESCR|swallace@FreeBSD.org|audio||
xmcd-2.3|/usr/ports/audio/xmcd|/usr/X11R6|Motif CD player.|/usr/ports/audio/xmcd/pkg/DESCR|deischen@iworks.InterWorks.org|audio||
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||
xmmix-1.2|/usr/ports/audio/xmmix|/usr/X11R6|a Motif based audio mixer|/usr/ports/audio/xmmix/pkg/DESCR|erich@FreeBSD.org|audio||
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 tk80||amp-0.7.6 tcl-8.0.2 tk-8.0.2
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|xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
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||
hint.serial-98.06.12|/usr/ports/benchmarks/hint|/usr/local|A scalable benchmark for testing CPU and memory performance.|/usr/ports/benchmarks/hint/pkg/DESCR|ghelmer@freebsd.org|benchmarks||
iozone-2.01|/usr/ports/benchmarks/iozone|/usr/local|Performance Test of Sequential File I/O.|/usr/ports/benchmarks/iozone/pkg/DESCR|jmz@FreeBSD.org|benchmarks||
lmbench-1.1|/usr/ports/benchmarks/lmbench|/usr/local|A system performance measurement tool|/usr/ports/benchmarks/lmbench/pkg/DESCR|fenner@FreeBSD.ORG|benchmarks||
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||
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|net benchmarks||
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 x11|sharutils-4.2|
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||
hmmer-2.0|/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|perl-5.00404|
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_lib-2.4|linux_lib-2.4
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||
rasmol-2.6b2.1|/usr/ports/biology/rasmol|/usr/X11R6|Fast Molecular Visualization Program.|/usr/ports/biology/rasmol/pkg/DESCR|frankch@waru.life.nthu.edu.tw|biology x11||
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 x11|xforms-0.88.1|xforms-0.88.1
acs-0.21|/usr/ports/cad/acs|/usr/local|A general purpose circuit simulator.|/usr/ports/cad/acs/pkg/DESCR|tg@freebsd.org|cad||
chipmunk-5.10|/usr/ports/cad/chipmunk|/usr/local|An electronic CAD system.|/usr/ports/cad/chipmunk/pkg/DESCR|ports@FreeBSD.ORG|cad|gmake-3.76.1|
felt-3.02|/usr/ports/cad/felt|/usr/local|A system for Finite Element Analysis|/usr/ports/cad/felt/pkg/DESCR|giffunip@asme.org|cad||
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||
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||
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|gmake-3.76.1|
mars-2.1|/usr/ports/cad/mars|/usr/local|Maryland Routing Simulator|/usr/ports/cad/mars/pkg/DESCR|obrien@FreeBSD.org|cad||
pcb-1.6.3|/usr/ports/cad/pcb|/usr/X11R6|X11 interactive printed circuit board layout system|/usr/ports/cad/pcb/pkg/DESCR|jseger@FreeBSD.org|cad|gmake-3.76.1 m4-1.4 teTeX-0.4|
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||
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||
xcircuit-1.7|/usr/ports/cad/xcircuit|/usr/X11R6|An X11 drawing program [especially for circuit schematics]|/usr/ports/cad/xcircuit/pkg/DESCR|ports@FreeBSD.ORG|cad x11||
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@infonets.hiroshima-u.ac.jp|chinese||
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||python-1.5.1 tcl-8.0.2 tk-8.0.2
zh-big5con-0.1|/usr/ports/chinese/big5con|/usr/local|Big5 Chinese console|/usr/ports/chinese/big5con/pkg/DESCR|hcchu@r350.ee.ntu.edu.tw|chinese|gmake-3.76.1|
zh-big5fonts-1.0|/usr/ports/chinese/big5fonts|/usr/X11R6|X11 Big5 font, widely used in taiwan/hong kong.|/usr/ports/chinese/big5fonts/pkg/DESCR|itojun@itojun.org|chinese x11|gmake-3.76.1|
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-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-cnsfonts-1.0|/usr/ports/chinese/cnsfonts|/usr/X11R6|X11 CNS11643-1986 traditional chinese (taiwanese standard) font collectionn.|/usr/ports/chinese/cnsfonts/pkg/DESCR|itojun@itojun.org|chinese x11|gmake-3.76.1|
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||
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-gbfonts-1.0|/usr/ports/chinese/gbfonts|/usr/X11R6|X11 GB2312-80 Chinese national standard fonts (Guo2jia1 Biao2zhun3) fonts.|/usr/ports/chinese/gbfonts/pkg/DESCR|itojun@itojun.org|chinese x11|gmake-3.76.1|
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||
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-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@infonets.hiroshima-u.ac.jp|chinese editors|gmake-3.76.1 zh-Wnn-4.2|mule-common-2.3
zh-nvi-big5-1.79.19970820|/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.19970820|/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.19970820|/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.00|/usr/ports/chinese/pine4|/usr/local|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.4.5|/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||zh-kcfonts-1.05 zh-xcin-2.3.02
zh-ted-4.2h|/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||zh-kcfonts-1.05 zh-xcin-2.3.02
zh-tin-1.4-980618|/usr/ports/chinese/tin|/usr/local|TIN newsreader (termcap based)|/usr/ports/chinese/tin/pkg/DESCR|yssu@CCCA.NCTU.edu.tw|chinese news||
zh-xcin-2.3.02|/usr/ports/chinese/xcin|/usr/X11R6|A chinese input utility in X.|/usr/ports/chinese/xcin/pkg/DESCR|yssu@CCCA.NCTU.edu.tw|chinese x11||zh-kcfonts-1.05
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||
hylafax-4.0.2|/usr/ports/comms/hylafax|/usr/local|A fax software.|/usr/ports/comms/hylafax/pkg/DESCR|itojun@itojun.org|comms|afm-1.0 bash-2.02 gmake-3.76.1 jpeg-6b tiff-3.4|bash-2.02 jpeg-6b tiff-3.4
kermit-6.0.192|/usr/ports/comms/kermit|/usr/local|File transfer and terminal emulation utilitiy for serial lines and sockets.|/usr/ports/comms/kermit/pkg/DESCR|ports@FreeBSD.org|comms||
kpilot-3.0.2|/usr/ports/comms/kpilot|/usr/local|3Com PalmPilot interface for the KDE integrated X11 desktop|/usr/ports/comms/kpilot/pkg/DESCR|dima@freebsd.org|x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
lrzsz-0.12.18|/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|gmake-3.76.1|
mgetty-1.1.16|/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||
minicom-1.78|/usr/ports/comms/minicom|/usr/local|An MS-DOS Telix serial communication program "workalike".|/usr/ports/comms/minicom/pkg/DESCR|obrien@FreeBSD.org|comms||kermit-6.0.192 lrzsz-0.12.18
pilot-link-0.8.13|/usr/ports/comms/pilot-link|/usr/local/pilot|PalmPilot communications utilities (backup/restore/install/debug/...)|/usr/ports/comms/pilot-link/pkg/DESCR|dima@freebsd.org|comms pilot tk80|perl-5.00404 tcl-8.0.2 tk-8.0.2|perl-5.00404 tcl-8.0.2 tk-8.0.2
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.48|/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.3.2|
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 x11||
snooper-970212|/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 tk42||Xaw3d-1.3 bash-2.02 ghostscript-4.03 gv-3.5.8 hylafax-4.0.2 jpeg-6b tcl-7.6 tiff-3.4 tk-4.2
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||
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||
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||
ish-1.11|/usr/ports/converters/ish|/usr/local|ish binary-to-text file converter|/usr/ports/converters/ish/pkg/DESCR|hosokawa@jp.FreeBSD.org|converters||
kdesupport-1.0|/usr/ports/converters/kdesupport|/usr/local|Mime and UUENCODE/DECODE libraries for the KDE integrated X11 desktop|/usr/ports/converters/kdesupport/pkg/DESCR|se@freebsd.org|x11 kde|gmake-3.76.1 qt-1.33|qt-1.33
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||
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.20|/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|perl-5.00404|perl-5.00404
p5-MIME-Base64-2.05|/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|perl-5.00404|perl-5.00404
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||
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||
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
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.14c|
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||
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 tk80|tcl-8.0.2 tk-8.0.2 uulib-0.5.13|tcl-8.0.2 tk-8.0.2 uulib-0.5.13
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||
db-2.3.16|/usr/ports/databases/db|/usr/local|the Berkeley DB package, revision 2|/usr/ports/databases/db/pkg/DESCR|josh@ican.net|databases||
gdbm-1.7.3|/usr/ports/databases/gdbm|/usr/local|The GNU database manager.|/usr/ports/databases/gdbm/pkg/DESCR|bjn@visi.com|databases||
gnats-3.104b|/usr/ports/databases/gnats|/usr/local|Cygnus GNATS bug tracking system.|/usr/ports/databases/gnats/pkg/DESCR|pst@FreeBSD.org|databases|gmake-3.76.1 m4-1.4|
msql-2.0.3|/usr/ports/databases/msql|/usr/local|the Mini SQL server, version 2|/usr/ports/databases/msql/pkg/DESCR|jfitz@FreeBSD.ORG|databases||
mysql-3.21.29g|/usr/ports/databases/mysql|/usr/local|a multithreaded SQL database.|/usr/ports/databases/mysql/pkg/DESCR|josh@ican.net|databases|gmake-3.76.1 perl-5.00404|perl-5.00404
p5-DBD-Pg-0.72|/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|gmake-3.76.1 p5-DBI-0.93 perl-5.00404 postgresql-6.3.2|perl-5.00404
p5-DBI-0.93|/usr/ports/databases/p5-DBI|/usr/local|the perl5 Database Interface.  Required for DBD::* modules.|/usr/ports/databases/p5-DBI/pkg/DESCR|jfitz@FreeBSD.ORG|databases perl5|perl-5.00404|perl-5.00404
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-Data-Dumper-2.081 p5-FreezeThaw-0.3 p5-Storable-0.6.2 perl-5.00404|perl-5.00404
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.3 p5-DBI-0.93 p5-Data-ShowTable-3.3 perl-5.00404|perl-5.00404
p5-Mysql-modules-1.1831|/usr/ports/databases/p5-Mysql|/usr/local|perl5 modules for accessing MiniSQL (mSQL) databases.|/usr/ports/databases/p5-Mysql/pkg/DESCR|jfitz@FreeBSD.ORG|databases perl5|gmake-3.76.1 mysql-3.21.29g p5-DBI-0.93 p5-Data-ShowTable-3.3 perl-5.00404|perl-5.00404
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|gmake-3.76.1 perl-5.00404 postgresql-6.3.2|perl-5.00404
pgaccess-0.88|/usr/ports/databases/pgaccess|/usr/local|a Tcl/Tk interface to PostgreSQL|/usr/ports/databases/pgaccess/pkg/DESCR|andreas@FreeBSD.ORG|databases||postgresql-6.3.2
postgresql-6.3.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.76.1|
py-PyGreSQL-2.1|/usr/ports/databases/py-PyGreSQL|/usr/local|A Python interface for PostgreSQL database.|/usr/ports/databases/py-PyGreSQL/pkg/DESCR|n@nectar.com|databases|gmake-3.76.1 postgresql-6.3.2 python-1.5.1 tcl-8.0.2 tk-8.0.2|postgresql-6.3.2 python-1.5.1 tcl-8.0.2 tk-8.0.2
tkgnats-3.0.3|/usr/ports/databases/tkgnats|/usr/local|graphical frontend for the free bug-tracking system|/usr/ports/databases/tkgnats/pkg/DESCR|andreas@FreeBSD.ORG|databases tk80|gmake-3.76.1 gnats-3.104b m4-1.4 tcl-8.1.a2 tk-8.1.a2|tcl-8.1.a2 tk-8.1.a2
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.3.2|/usr/ports/databases/xmbase-grok|/usr/X11R6|Graphical Resource Organizer Kit|/usr/ports/databases/xmbase-grok/pkg/DESCR|andreas@FreeBSD.ORG|databases x11|xpm-3.4k|xpm-3.4k
xmysql-1.8|/usr/ports/databases/xmysql|/usr/X11R6|X11 front end to the MySQL database engine|/usr/ports/databases/xmysql/pkg/DESCR|andreas@FreeBSD.ORG|databases|gmake-3.76.1 mysql-3.21.29g perl-5.00404 xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
xmysqladmin-0.4.4|/usr/ports/databases/xmysqladmin|/usr/X11R6|X11 front end to the msqladmin command of the MySQL database engine|/usr/ports/databases/xmysqladmin/pkg/DESCR|andreas@FreeBSD.ORG|databases|gmake-3.76.1 mysql-3.21.29g perl-5.00404 xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
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.0|/usr/ports/devel/ORBacus|/usr/local|A CORBA 2 implementation|/usr/ports/devel/ORBacus/pkg/DESCR|ejc@bazzle.com|devel|gcc-2.8.1 glibstdc++-2.8.1.1 gmake-3.76.1|
swig-1.1p4|/usr/ports/devel/SWIG|/usr/local|Simplified Wrapper and Interface Generator.|/usr/ports/devel/SWIG/pkg/DESCR|erich@FreeBSD.ORG|devel python tcl81|perl-5.00404 python-1.5.1 tcl-8.0.2 tcl-8.1.a2 tk-8.0.2|perl-5.00404
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 tk80||tcl-8.0.2 tk-8.0.2
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.76.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||
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||
autoconf-2.12|/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
automake-1.3|/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-4.12|/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||
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.76.1 pccts-1.33|
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.76.1|bash-2.02
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.76.1|
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|zip-2.2|crossgo32-1.3
crossgo32-djgpp2-pdcurses-2.2|/usr/ports/devel/crossgo32-djgpp2-pdcurses|/usr/local|Public domain curses for crossgo32 crosscompiler with djgpp v2 libraries|/usr/ports/devel/crossgo32-djgpp2-pdcurses/pkg/DESCR|sutton@aardvark.apana.org.au|devel|zip-2.2|crossgo32-1.3 crossgo32-djgpp2-2.01
crossm68k-1.4|/usr/ports/devel/crossm68k|/usr/local|Motorola 68K Cross Development Environment|/usr/ports/devel/crossm68k/pkg/DESCR|jhicks@atlanta.glenayre.com|devel|gmake-3.76.1|
crosssco-1.4|/usr/ports/devel/crosssco|/usr/local|SCO (R) Cross Development Environment|/usr/ports/devel/crosssco/pkg/DESCR|giffunip@asme.org|devel|gmake-3.76.1|
cs-0.3|/usr/ports/devel/cs|/usr/local|Interactively examine C source code|/usr/ports/devel/cs/pkg/DESCR|andy@icc.surw.chel.su|devel||
cutils-1.4|/usr/ports/devel/cutils|/usr/local|Miscellaneous C programmer's utilities|/usr/ports/devel/cutils/pkg/DESCR|ssigala@globalnet.it|devel||
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.4b|/usr/ports/devel/cxref|/usr/local|C program cross-referencing & documentation tool.|/usr/ports/devel/cxref/pkg/DESCR|ports@FreeBSD.ORG|devel|gmake-3.76.1|
ddd-3.0|/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@NUXI.com|devel|gmake-3.76.1|
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.76.1|
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||
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.76.1|
ftnchek-2.9.5|/usr/ports/devel/ftnchek|/usr/local|Fortran 77 semantic checking utility.|/usr/ports/devel/ftnchek/pkg/DESCR|kargl@apl.washington.edu|devel||
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||
gdb-4.16|/usr/ports/devel/gdb|/usr/local|The developer's version of GNU debugger.|/usr/ports/devel/gdb/pkg/DESCR|pst@FreeBSD.org|devel|gmake-3.76.1|
gdbtk-4.16|/usr/ports/devel/gdbtk|/usr/local|Tk interface to gdb.|/usr/ports/devel/gdbtk/pkg/DESCR|msmith@FreeBSD.org|devel tk42|gmake-3.76.1 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
indent-1.9.1|/usr/ports/devel/gindent|/usr/local|GNU indent.|/usr/ports/devel/gindent/pkg/DESCR|kchowksey@hss.hns.com|devel||
glade-0.3|/usr/ports/devel/glade|/usr/X11R6|A user interface builder for GTK+.|/usr/ports/devel/glade/pkg/DESCR|dom@myrddin.demon.co.uk|devel|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
gmake-3.76.1|/usr/ports/devel/gmake|/usr/local|GNU version of 'make' utility|/usr/ports/devel/gmake/pkg/DESCR|jseger@freebsd.org|devel||
guileobjc-0.3.8|/usr/ports/devel/guileobjc|/usr/local|library to send message from GNU GUILE to Objective C objects|/usr/ports/devel/guileobjc/pkg/DESCR|Nakai@technologist.com|devel|guile-1.2 libobjects-0.1.19|guile-1.2
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|emacs-20.2 gmake-3.76.1|
ilu-2.0a12|/usr/ports/devel/ilu|/usr/local|Xerox PARC ILU - CORBA-compatible distributed objects for multiple languages|/usr/ports/devel/ilu/pkg/DESCR|cracauer@cons.org|devel||
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||
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.76.1|
dlmalloc-2.6.4|/usr/ports/devel/libdlmalloc|/usr/local|Small, fast malloc library by Doug Lea.|/usr/ports/devel/libdlmalloc/pkg/DESCR|roberto@FreeBSD.ORG|devel||
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||
libobjects-0.1.19|/usr/ports/devel/libobjects|/usr/local|GNU Objective-C Class Library|/usr/ports/devel/libobjects/pkg/DESCR|Nakai@technologist.com|devel||
libproplist-0.7.1|/usr/ports/devel/libproplist|/usr/X11R6|Property list Library used in GNUstep/OPENSTEP applications.|/usr/ports/devel/libproplist/pkg/DESCR|handy@physics.montana.edu|devel|gmake-3.76.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||
libtool-1.2|/usr/ports/devel/libtool|/usr/local|Generic shared library support script.|/usr/ports/devel/libtool/pkg/DESCR|m-kasahr@sra.co.jp|devel||
linux_devel-0.2|/usr/ports/devel/linux_devel|/compat/linux|Linux cross development package|/usr/ports/devel/linux_devel/pkg/DESCR|erich@FreeBSD.org|devel||linux_lib-2.4
linux_kdump-1.0|/usr/ports/devel/linux_kdump|/usr/local|Linux-compatability ktrace.out processor.|/usr/ports/devel/linux_kdump/pkg/DESCR|msmith@FreeBSD.org|devel|linux_devel-0.2|
m4-1.4|/usr/ports/devel/m4|/usr/local|GNU's m4.|/usr/ports/devel/m4/pkg/DESCR|ports@FreeBSD.ORG|devel||
m68kgdb-4.17|/usr/ports/devel/m68kgdb|/usr/local|A Motorola 68k debugger for cross-development purposes.|/usr/ports/devel/m68kgdb/pkg/DESCR|jhicks@mail.glenatl.glenayre.com|devel|gmake-3.76.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.0.6|/usr/ports/devel/mico|/usr/local|a CORBA 2.0 implementation which goal is freely available|/usr/ports/devel/mico/pkg/DESCR|Nakai@technologist.com|devel|gmake-3.76.1 gtk-1.0.4 qt-1.31|gtk-1.0.4
mico-2.1.0|/usr/ports/devel/mico-latest|/usr/local|a CORBA 2.0 implementation which goal is freely available|/usr/ports/devel/mico-latest/pkg/DESCR|scrappy@freebsd.org|devel|gcc-2.8.1 glibstdc++-2.8.1.1 gmake-3.76.1 gtk-1.0.4 qt-1.31 qt-1.33|gtk-1.0.4 qt-1.33
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||
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-1.09|/usr/ports/devel/nana|/usr/local|Improved support for assertion checking and logging using GNU C and GDB.|/usr/ports/devel/nana/pkg/DESCR|pjm@cs.ntu.edu.au|devel|gmake-3.76.1|gdb-4.16
nasm-0.97|/usr/ports/devel/nasm|/usr/local|General-purpose multi-platform x86 assembler|/usr/ports/devel/nasm/pkg/DESCR|murray@cdrom.com|devel lang||
ncurses-4.2|/usr/ports/devel/ncurses|/usr/local|SVr4 and XSI-Curses compatible curses library|/usr/ports/devel/ncurses/pkg/DESCR|andy@icc.surw.chel.su|devel||
noweb-2.8a|/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.1|icon-9.3.1
omniORB-2.2.0|/usr/ports/devel/omniORB|/usr/local|A CORBA 2 implementation|/usr/ports/devel/omniORB/pkg/DESCR|ejc@bazzle.com|devel||
p5-B-a3|/usr/ports/devel/p5-B|/usr/local|a perl compiler kit, alpha release. Write a c source code from a perl script.|/usr/ports/devel/p5-B/pkg/DESCR|lioux@gns.com.br|devel lang perl5|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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 perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Data-Dumper-2.081|/usr/ports/devel/p5-Data-Dumper|/usr/local|perl5 module for stringified perl data structures.|/usr/ports/devel/p5-Data-Dumper/pkg/DESCR|jfitz@FreeBSD.ORG|devel perl5|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Date-Manip-5.31|/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|perl-5.00404|perl-5.00404
p5-Devel-DProf-19970614|/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|perl-5.00404|perl-5.00404
p5-Devel-Peek-0.9|/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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-File-Slurp-96.042202|/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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Ioctl-0.7|/usr/ports/devel/p5-Ioctl|/usr/local|perl5 module for getting the value of the C Ioctl constants.|/usr/ports/devel/p5-Ioctl/pkg/DESCR|jfitz@FreeBSD.ORG|devel perl5|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|p5-Curses-1.02 perl-5.00404
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|perl-5.00404|perl-5.00404 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 perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Storable-0.6.2|/usr/ports/devel/p5-Storable|/usr/local|persistency for perl data structures|/usr/ports/devel/p5-Storable/pkg/DESCR|jfitz@FreeBSD.ORG|devel perl5|perl-5.00404|perl-5.00404
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|perl-5.00404|p5-Array-PrintCols-2.1 perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Time-970921|/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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|/usr/ports/devel/pccts|/usr/local|The Purdue Compiler Construction Tool Set|/usr/ports/devel/pccts/pkg/DESCR|andy@icc.surw.chel.su|devel||
pcre-1.09|/usr/ports/devel/pcre|/usr/local|Perl Compatible Regular Expressions library.|/usr/ports/devel/pcre/pkg/DESCR|dom@myrddin.demon.co.uk|devel||
portlint-1.61|/usr/ports/devel/portlint|/usr/local|a verifier for FreeBSD port directory.|/usr/ports/devel/portlint/pkg/DESCR|itojun@itojun.org|devel||
prc-tools-0.5.0|/usr/ports/devel/prc-tools|/usr/local/pilot|Development environment for PalmPilot(tm) handheld computer.|/usr/ports/devel/prc-tools/pkg/DESCR|ports@freebsd.org|devel pilot|perl-5.00404|perl-5.00404
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|gmake-3.76.1|
qtez-0.62a|/usr/ports/devel/qtez|/usr/X11R6|Qt Development Environment for X Window System.|/usr/ports/devel/qtez/pkg/DESCR|andy@icc.surw.chel.su|devel x11|gmake-3.76.1 qt-1.31|qt-1.31
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||
sawt-0.4.2|/usr/ports/devel/sawt|/usr/local|A cleanroom AWT implementation for Kaffe|/usr/ports/devel/sawt/pkg/DESCR|xaa@stack.nl|devel|kaffe-0.9.2|kaffe-0.9.2
scogdb-4.16|/usr/ports/devel/scogdb|/usr/local|An SCO debugger for cross-development purposes.|/usr/ports/devel/scogdb/pkg/DESCR|giffunip@asme.org|devel|crosssco-1.4 gmake-3.76.1|
sfio-97|/usr/ports/devel/sfio|/usr/local|The Safe/Fast I/O Library|/usr/ports/devel/sfio/pkg/DESCR|jraynard@freebsd.org|devel||
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||
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 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.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 x11 tk80||tcl-8.0.2 tk-8.0.2
tvision-0.5|/usr/ports/devel/tvision|/usr/local|The Turbo Vision C++ CUI library for UNIX|/usr/ports/devel/tvision/pkg/DESCR|ssigala@globalnet.it|devel||
ups-3.32|/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||
vtcl-1.11|/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 x11 tk80||tcl-8.0.2 tk-8.0.2
xmake-1.01|/usr/ports/devel/xmake|/usr/local|A powerful make utility|/usr/ports/devel/xmake/pkg/DESCR|dlowe@saturn5.com|devel||
xwpe-1.5.9a|/usr/ports/devel/xwpe|/usr/local|A Borland-like IDE programming environment.|/usr/ports/devel/xwpe/pkg/DESCR|obrien@FreeBSD.org|devel|gmake-3.76.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||
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||
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||
beav-1.40.7|/usr/ports/editors/beav|/usr/local|Binary Editor And Viewer, a full featured binary file editor.|/usr/ports/editors/beav/pkg/DESCR|tg@FreeBSD.org|editors||
bpatch-1.0|/usr/ports/editors/bpatch|/usr/local|A hex editor that doesn't load the file at once.|/usr/ports/editors/bpatch/pkg/DESCR|joerg@FreeBSD.org|editors||
cooledit-3.6.2|/usr/ports/editors/cooledit|/usr/local|Cooledit is a suite of utilities, including a GUI editor.|/usr/ports/editors/cooledit/pkg/DESCR|brett@peloton.physics.montana.edu|editors|gmake-3.76.1 xpm-3.4k|xpm-3.4k
e93-1.2.6|/usr/ports/editors/e93|/usr/X11R6|A nifty editor based on Tcl/Tk|/usr/ports/editors/e93/pkg/DESCR|ports@FreeBSD.ORG|editors tcl80|tcl-8.0.2|tcl-8.0.2
emacs-19.34b|/usr/ports/editors/emacs|/usr/local|GNU editing macros.|/usr/ports/editors/emacs/pkg/DESCR|ports@FreeBSD.ORG|editors|gmake-3.76.1|
emacs-20.2|/usr/ports/editors/emacs20|/usr/local|GNU editing macros.|/usr/ports/editors/emacs20/pkg/DESCR|jseger@FreeBSD.org|editors|gmake-3.76.1|
gxedit-1.07|/usr/ports/editors/gxedit|/usr/X11R6|A simple GTK+ editor.|/usr/ports/editors/gxedit/pkg/DESCR|dom@myrddin.demon.co.uk|editors|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
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|libslang-1.2.2|libslang-1.2.2
joe-2.8|/usr/ports/editors/joe|/usr/local|Joe's own editor.|/usr/ports/editors/joe/pkg/DESCR|ports@FreeBSD.ORG|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.4.2|/usr/ports/editors/le|/usr/local|LE text editor|/usr/ports/editors/le/pkg/DESCR|andy@icc.surw.chel.su|editors||
mule-2.3|/usr/ports/editors/mule|/usr/local|A multilingual emacs (Only the executables)|/usr/ports/editors/mule/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|editors|gmake-3.76.1|mule-common-2.3
mule-common-2.3|/usr/ports/editors/mule-common|/usr/local|For a multilingual emacs (mule-2.3), emacs lisp files, info pages, etc (except executables)|/usr/ports/editors/mule-common/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|editors chinese japanese korean|gmake-3.76.1|
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 x11|xpm-3.4k|xpm-3.4k
nvi-m17n-1.79.19970820|/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|perl-5.00404|perl-5.00404
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 x11 offix|gmake-3.76.1 libdnd-1.1 xpm-3.4k|libdnd-1.1 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_lib-2.4
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||
textedit-1.0|/usr/ports/editors/textedit|/usr/X11R6|The OpenLook textedit application.|/usr/ports/editors/textedit/pkg/DESCR|jraynard@@freebsd.org|editors|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
thoteditor-2.1b|/usr/ports/editors/thoteditor|/usr/local|An structured document editor, offering a graphical WYSIWYG interface|/usr/ports/editors/thoteditor/pkg/DESCR|ports@FreeBSD.org|editors www|gmake-3.76.1|
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.3.2|
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.0|/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-4.6|/usr/ports/editors/vim4|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim4/pkg/DESCR|obrien@FreeBSD.org|editors|gmake-3.76.1|
vim-5.1|/usr/ports/editors/vim5|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim5/pkg/DESCR|obrien@FreeBSD.org|editors||
vim-5.2g|/usr/ports/editors/vim5beta|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim5beta/pkg/DESCR|obrien@FreeBSD.org|editors|perl-5.00404 python-1.5.1 tcl-8.0.2 tk-8.0.2|perl-5.00404 python-1.5.1 tcl-8.0.2 tk-8.0.2
xcoral-3.1|/usr/ports/editors/xcoral|/usr/X11R6|A multiwindow mouse-based text editor for X.|/usr/ports/editors/xcoral/pkg/DESCR|erich@FreeBSD.ORG|editors||
xed-1.3|/usr/ports/editors/xed|/usr/X11R6|A text editor for X.|/usr/ports/editors/xed/pkg/DESCR|shanee@augusta.de|editors x11|xpm-3.4k|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|gmake-3.76.1 jpeg-6b png-1.0.2 xpm-3.4k|jpeg-6b png-1.0.2 xpm-3.4k
xemacs-mule-20.4|/usr/ports/editors/xemacs-mule|/usr/local|XEmacs text editor (Only the executables)|/usr/ports/editors/xemacs-mule/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|editors|autoconf-2.12 faces-1.6.1 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
xemacs-mule-common-20.4|/usr/ports/editors/xemacs-mule-common|/usr/local|For XEmacs, lisp files, info pages, etc (except executables)|/usr/ports/editors/xemacs-mule-common/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|editors japanese|gmake-3.76.1|
xemacs-20.4|/usr/ports/editors/xemacs20|/usr/local|XEmacs text editor version 20|/usr/ports/editors/xemacs20/pkg/DESCR|me@FreeBSD.org|editors|gmake-3.76.1 jpeg-6b png-1.0.2 xpm-3.4k|jpeg-6b png-1.0.2 xpm-3.4k
xvile-8.0|/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||
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|sutton@aardvark.apana.org.au|emulators||
atari800-0.8.1|/usr/ports/emulators/atari800|/usr/local|Atari 8-bit computer emulator|/usr/ports/emulators/atari800/pkg/DESCR|sutton@aardvark.apana.org.au|emulators|unzip-5.3.2 xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
bochs-980513a|/usr/ports/emulators/bochs|/usr/local|Intel 80386 CPU emulator.|/usr/ports/emulators/bochs/pkg/DESCR|alex@FreeBSD.ORG|emulators||
bsvc-2.0|/usr/ports/emulators/bsvc|/usr/local|An extensible hardware simulation framework with MC68K support|/usr/ports/emulators/bsvc/pkg/DESCR|tenser@spitfire.ecsel.psu.edu|emulators tk41||tcl-7.5.1 tk-4.1.1
cpmemu-0.2|/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||
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||
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 tk80||tcl-8.0.2 tk-8.0.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.76.1|
hfsutils-3.2|/usr/ports/emulators/hfsutils|/usr/local|Yet Another HFS Utility|/usr/ports/emulators/hfsutils/pkg/DESCR|vanilla@FreeBSD.ORG|emulators tk81|tcl-8.1.a2 tk-8.1.a2|tcl-8.1.a2 tk-8.1.a2
ines-0.7|/usr/ports/emulators/ines|/usr/X11R6|Nintendo Entertainment System emlator for X|/usr/ports/emulators/ines/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|emulators||
linux_lib-2.4|/usr/ports/emulators/linux_lib|/compat/linux|These are the libraries necessary for linux compatibility.|/usr/ports/emulators/linux_lib/pkg/DESCR|erich@FreeBSD.org|emulators||
macutils-2.0b3|/usr/ports/emulators/macutils|/usr/local|Utilities for Apple Macintosh files.|/usr/ports/emulators/macutils/pkg/DESCR|sutton@aardvark.apana.org.au|emulators||
mastergear-1.0|/usr/ports/emulators/mastergear|/usr/X11R6|SEGA Master System and Game Gear emulator for X|/usr/ports/emulators/mastergear/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|emulators||
mtools-3.9.1|/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.76.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||
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||
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-0.23|/usr/ports/emulators/snes9x|/usr/X11R6|Super Nintendo Entertainment System(SNES) Emulator|/usr/ports/emulators/snes9x/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|emulators|linux_lib-2.4|linux_lib-2.4
spim-5.9|/usr/ports/emulators/spim|/usr/local|MIPS R2000 Simulator|/usr/ports/emulators/spim/pkg/DESCR|obrien@FreeBSD.org|emulators||
stella-0.6|/usr/ports/emulators/stella|/usr/local|Atari 2600 VCS emulator|/usr/ports/emulators/stella/pkg/DESCR|sutton@aardvark.apana.org.au|emulators||
stonx-0.6.7e|/usr/ports/emulators/stonx|/usr/local|AtariST emulator|/usr/ports/emulators/stonx/pkg/DESCR|tr@freebsd.mayn.de|emulators||
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 x11 tk41||hfs-0.37 tcl-7.5.1 tk-4.1.1
vgb-0.7|/usr/ports/emulators/vgb|/usr/X11R6|Nintendo GameBoy(tm) emulator|/usr/ports/emulators/vgb/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|emulators||
vice-0.14.1|/usr/ports/emulators/vice|/usr/local|Emulator that emulates Commodore 64/PET/VIC-20.|/usr/ports/emulators/vice/pkg/DESCR|dchapes@ddm.on.ca|emulators|Xaw3d-1.3|Xaw3d-1.3
vmsbackup-3.0|/usr/ports/emulators/vmsbackup|/usr/local|Reads VMS BACKUP tapes.|/usr/ports/emulators/vmsbackup/pkg/DESCR|jmb@FreeBSD.org|emulators sysutils||
wine-98.05.17|/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 x11|xpm-3.4k|xpm-3.4k
x48-0.4.0|/usr/ports/emulators/x48|/usr/X11R6|an HP48sx emulator|/usr/ports/emulators/x48/pkg/DESCR|erich@FreeBSD.org|emulators||
xcopilot-0.4.8|/usr/ports/emulators/xcopilot|/usr/X11R6|Emulator for US Robotics Pilot PDA|/usr/ports/emulators/xcopilot/pkg/DESCR|nsayer@quack.kfu.com|emulators pilot|xpm-3.4k|xpm-3.4k
xgs-0.50|/usr/ports/emulators/xgs|/usr/local|Apple IIGS emulator stable release 0.50|/usr/ports/emulators/xgs/pkg/DESCR|sutton@aardvark.apana.org.au|emulators|gmake-3.76.1|
xmame-0.33b6.1|/usr/ports/emulators/xmame|/usr/local|Emulator that emulates many classic arcade game machines|/usr/ports/emulators/xmame/pkg/DESCR|dburr@FreeBSD.ORG|emulators|gmake-3.76.1 xpm-3.4k|xpm-3.4k
xzx-2.4.4|/usr/ports/emulators/xzx|/usr/X11R6|ZX Spectrum (48K/128K/+3) Emulator for X11 Windows|/usr/ports/emulators/xzx/pkg/DESCR|axl@iafrica.com|emulators x11||
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 x11|Xaw3d-1.3 xpm-3.4k|Xaw3d-1.3 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 x11||
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 x11|Mesa-2.6|Mesa-2.6
acm-4.7|/usr/ports/games/acm|/usr/local|A flight simulator for X11|/usr/ports/games/acm/pkg/DESCR|joerg@FreeBSD.org|games||
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 x11||
agm-1.3.1|/usr/ports/games/agm|/usr/local|AnaGraM search utility.|/usr/ports/games/agm/pkg/DESCR|andy@icc.surw.chel.su|games||
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||
awele-1.0|/usr/ports/games/awele|/usr/X11R6|An african board game.|/usr/ports/games/awele/pkg/DESCR|tg@FreeBSD.ORG|games tk80||
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 x11|Mesa-2.6|Mesa-2.6
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 x11|gmake-3.76.1 qt-1.31|qt-1.31
block-0.5|/usr/ports/games/block|/usr/local|Small text based maze game|/usr/ports/games/block/pkg/DESCR|andy@icc.surw.chel.su|games||
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||
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||tcl-8.0.2 tk-8.0.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||
cgoban-1.9.2|/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||
connect4-3.2|/usr/ports/games/connect4|/usr/local|A curses version of the classic game.|/usr/ports/games/connect4/pkg/DESCR|sutton@aardvark.apana.org.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|Nakai@Mlab.t.u-tokyo.ac.jp|games||
crafty-15.15|/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-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-15.15 unzip-5.3.2|crafty-15.15
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-15.15 unzip-5.3.2|crafty-15.15
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-15.15 unzip-5.3.2|crafty-15.15
crossfire-0.94.1|/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|gmake-3.76.1 gsm-1.0.10 perl-5.00404 rplay-3.2.0b6 xpm-3.4k|perl-5.00404 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 tk41||tcl-7.5.1 tk-4.1.1
doom-1.8|/usr/ports/games/doom|/usr/local|Id Software's Doom for linux|/usr/ports/games/doom/pkg/DESCR|erich@FreeBSD.org|games|linux_lib-2.4|linux_lib-2.4
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||
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||
freeciv-1.6.3|/usr/ports/games/freeciv|/usr/X11R6|A multiplayer Civilization clone for X.|/usr/ports/games/freeciv/pkg/DESCR|ada@bsd.org|games|xpm-3.4k|xpm-3.4k
frotz-2.32|/usr/ports/games/frotz|/usr/local|Infocom games interpreter.|/usr/ports/games/frotz/pkg/DESCR|andy@icc.surw.chel.su|games||
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||
gemdropx-1.0b3|/usr/ports/games/gemdropx|/usr/X11R6|Gem Drop X is an interesting one-player puzzle game for X.|/usr/ports/games/gemdropx/pkg/DESCR|andy@icc.surw.chel.su|games x11||
gnuchess-4.0.77|/usr/ports/games/gnuchess|/usr/local|"Classic" Gnu Chess|/usr/ports/games/gnuchess/pkg/DESCR|markm@FreeBSD.ORG|games||
gnugo-1.2|/usr/ports/games/gnugo|/usr/local|The game of Go.|/usr/ports/games/gnugo/pkg/DESCR|jseger@freebsd.org|games||
gnushogi-1.2.3|/usr/ports/games/gnushogi|/usr/local|GNU version of Shogi|/usr/ports/games/gnushogi/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|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||
icbm3d-0.3|/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 x11||
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|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
inform-6.15|/usr/ports/games/inform|/usr/local|Compiler for producing text adventure games.|/usr/ports/games/inform/pkg/DESCR|mph@freebsd.org|games|unzip-5.3.2|
ishido-1.1|/usr/ports/games/ishido|/usr/local|Tile placement game|/usr/ports/games/ishido/pkg/DESCR|samorodi@NUXI.com|games||
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||
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.3.2|
kdegames-1.0|/usr/ports/games/kdegames|/usr/local|Games for the KDE integrated X11 desktop|/usr/ports/games/kdegames/pkg/DESCR|se@freebsd.org|games kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 kdesupport-1.0 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 kdesupport-1.0 qt-1.33
klondike-1.8|/usr/ports/games/klondike|/usr/local|A solitaire game for X11.|/usr/ports/games/klondike/pkg/DESCR|johnh@isi.edu|games tk41||tcl-7.5.1 tk-4.1.1
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|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
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.3|/usr/ports/games/libshhcards|/usr/X11R6|library for displaying game cards on X11.|/usr/ports/games/libshhcards/pkg/DESCR|andy@icc.surw.chel.su|devel|gmake-3.76.1|
lincity-1.09|/usr/ports/games/lincity|/usr/local|rich city simulation game for X|/usr/ports/games/lincity/pkg/DESCR|proff@iq.org|games|gmake-3.76.1|
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 x11|xpm-3.4k|xpm-3.4k
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|gmake-3.76.1 xpm-3.4k|xpm-3.4k
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 x11|Mesa-2.6 gmake-3.76.1 jpeg-6b nas-1.2.5 netpbm-94.3.1 qt-1.40 tiff-3.4 xpm-3.4k|Mesa-2.6 nas-1.2.5 qt-1.40 xpm-3.4k
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||
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@fct.kgc.co.jp|games||
oonsoo-1.1|/usr/ports/games/oonsoo|/usr/local|A solitaire card game for X.|/usr/ports/games/oonsoo/pkg/DESCR|sutton@aardvark.apana.org.au|games||
pente-2.2.1|/usr/ports/games/pente|/usr/X11R6|Game of five in a row.|/usr/ports/games/pente/pkg/DESCR|andy@icc.surw.chel.su|games x11||
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||
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.14c unzip-5.3.2|
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||
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||
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||
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||
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-2.6 gmake-3.76.1|Mesa-2.6
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 tk80||tcl-8.0.2 tk-8.0.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 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
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 x11||
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||
xbat-1.11|/usr/ports/games/xbat|/usr/X11R6|XEVIOUS like shooting game|/usr/ports/games/xbat/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games||
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||
xbill-2.0|/usr/ports/games/xbill|/usr/X11R6|Save your computers from the evil clutches of Bill|/usr/ports/games/xbill/pkg/DESCR|ports@FreeBSD.ORG|games|xpm-3.4k|xpm-3.4k
xbl-1.0h|/usr/ports/games/xbl|/usr/X11R6|A 3D block-dropping game|/usr/ports/games/xbl/pkg/DESCR|giffunip@asme.org|games||
xblackjack-2.2|/usr/ports/games/xblackjack|/usr/X11R6|an X11/Motif blackjack game|/usr/ports/games/xblackjack/pkg/DESCR|erich@FreeBSD.org|games||
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||
xbloody-1.00|/usr/ports/games/xbloody|/usr/X11R6|Knife on X|/usr/ports/games/xbloody/pkg/DESCR|kazu@jp.freebsd.org|games x11||
xboard-4.0.0|/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||
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|xpm-3.4k|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||
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 x11||tcl-8.0.2 tk-8.0.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||
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 x11|xpm-3.4k|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|xpm-3.4k|xpm-3.4k
xcubes-5.4.3|/usr/ports/games/xcubes|/usr/X11R6|cube puzzle for X-Window|/usr/ports/games/xcubes/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games||
xdeblock-1.0|/usr/ports/games/xdeblock|/usr/X11R6|block action game|/usr/ports/games/xdeblock/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games|xpm-3.4k|xpm-3.4k
xdemineur-2.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||
xdigger-1.0.6|/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||
xdino-5.4.3|/usr/ports/games/xdino|/usr/X11R6|dino puzzle game for X-Window|/usr/ports/games/xdino/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games||
xemeraldia-0.3|/usr/ports/games/xemeraldia|/usr/X11R6|A game of breaking blocks|/usr/ports/games/xemeraldia/pkg/DESCR|ports@FreeBSD.ORG|games||
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||
xeyes+-2.01|/usr/ports/games/xeyesplus|/usr/X11R6|Horrible eyes looking at your mouse cursor|/usr/ports/games/xeyesplus/pkg/DESCR|nakai@mlab.t.u-tokyo.ac.jp|games|xpm-3.4k|xpm-3.4k
xfrisk-0.99c09|/usr/ports/games/xfrisk|/usr/X11R6|A multi-player networked Risk game for X11.|/usr/ports/games/xfrisk/pkg/DESCR|mph@freebsd.org|games||
xgalaga-2.0|/usr/ports/games/xgalaga|/usr/X11R6|Galaga resurrected on X|/usr/ports/games/xgalaga/pkg/DESCR|ports@FreeBSD.ORG|games|xpm-3.4k|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|gdbm-1.7.3 gmake-3.76.1 rpm-2.5.1|
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|Nakai@Mlab.t.u-tokyo.ac.jp|games||
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||
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||
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 x11||
xjewel-1.6|/usr/ports/games/xjewel|/usr/X11R6|X windows dropping jewels game.|/usr/ports/games/xjewel/pkg/DESCR|jmz@FreeBSD.org|games||
xjig-2.4|/usr/ports/games/xjig|/usr/local|jigsaw puzzle game for X11|/usr/ports/games/xjig/pkg/DESCR|vanilla@FreeBSD.ORG|games||
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 x11|xforms-0.88.1|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|ports@FreeBSD.ORG|games||
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 x11||
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 x11||
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||
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 x11|gmake-3.76.1 qt-1.31|qt-1.31
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||
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 x11|xforms-0.88.1|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||
xmemory-3.7|/usr/ports/games/xmemory|/usr/X11R6|XMemory is a multi player memory game.|/usr/ports/games/xmemory/pkg/DESCR|dchapes@ddm.on.ca|games||
xmille-2.0|/usr/ports/games/xmille|/usr/X11R6|X window mille bourne game|/usr/ports/games/xmille/pkg/DESCR|swallace@FreeBSD.org|games||
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|Xaw3d-1.3|Xaw3d-1.3
xminehunter-0.4|/usr/ports/games/xminehunter|/usr/X11R6|A Motif minesweeper game.|/usr/ports/games/xminehunter/pkg/DESCR|tg@FreeBSD.ORG|games|xpm-3.4k|xpm-3.4k
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||
xmj-1.0|/usr/ports/games/xmj|/usr/X11R6|Mahjongg|/usr/ports/games/xmj/pkg/DESCR|swallace@FreeBSD.org|games||
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||
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|gmake-3.76.1|
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|x11 games||
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 x11|gmake-3.76.1 xpm-3.4k|xpm-3.4k
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 x11|xpm-3.4k|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 x11||
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|xpm-3.4k|xpm-3.4k
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 x11|xforms-0.88.1|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|unzip-5.3.2|
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 x11||
xpat2-1.04|/usr/ports/games/xpat2|/usr/X11R6|An X11 solitaire game with 14 variations.|/usr/ports/games/xpat2/pkg/DESCR|mph@freebsd.org|games||
xpilot-3.6.1|/usr/ports/games/xpilot|/usr/X11R6|xpilot(client) and xpilots(server)|/usr/ports/games/xpilot/pkg/DESCR|jmacd@FreeBSD.org|games||
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||
xpuyo-0.0|/usr/ports/games/xpuyo|/usr/X11R6|puyo-puyo, tetris like puzzle game for X-Window.|/usr/ports/games/xpuyo/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games||
xpuzzletama-1.5|/usr/ports/games/xpuzzletama|/usr/X11R6|Puzzle tama, a tetris like game|/usr/ports/games/xpuzzletama/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games|xpm-3.4k|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 x11||
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 x11|xpm-3.4k|xpm-3.4k
xripple-1.0|/usr/ports/games/xripple|/usr/X11R6|Nifty X program to make the screen bottom ripple like a pool of water.|/usr/ports/games/xripple/pkg/DESCR|oly@world.std.com|games||
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||
xroach-4.4|/usr/ports/games/xroach|/usr/X11R6|Cockroaches hide under your windows.|/usr/ports/games/xroach/pkg/DESCR|markm@FreeBSD.ORG|x11 games||
xroads-0.1.5|/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||
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||
xrubik-5.4.3|/usr/ports/games/xrubik|/usr/X11R6|X-based rubik's cube(tm)|/usr/ports/games/xrubik/pkg/DESCR|nakai@mlab.t.u-tokyo.ac.jp|games||
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||
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|xpm-3.4k|xpm-3.4k
xshisen-1.36|/usr/ports/games/xshisen|/usr/X11R6|Shisen-sho puzzle game for X11|/usr/ports/games/xshisen/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games|xpm-3.4k|xpm-3.4k
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|Nakai@Mlab.t.u-tokyo.ac.jp|games||gnushogi-1.2.3
xskat-1.6|/usr/ports/games/xskat|/usr/X11R6|Play the card game Skat.|/usr/ports/games/xskat/pkg/DESCR|tg@FreeBSD.org|games||
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 x11||
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|xpm-3.4k|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|Nakai@technologist.com|games|xpm-3.4k|xpm-3.4k
xsol-2.1.1|/usr/ports/games/xsol|/usr/X11R6|Solitaire.|/usr/ports/games/xsol/pkg/DESCR|swallace@FreeBSD.org|games||
xsoldier-0.96|/usr/ports/games/xsoldier|/usr/X11R6|shooting game for x11|/usr/ports/games/xsoldier/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games x11|xpm-3.4k|xpm-3.4k
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 x11||
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||
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|xpm-3.4k|xpm-3.4k
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||
xtriangles-5.4.3|/usr/ports/games/xtriangles|/usr/X11R6|Triangles puzzle|/usr/ports/games/xtriangles/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games||
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||
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 x11||
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||
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 x11|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
xvmines-1.0|/usr/ports/games/xvmines|/usr/X11R6|XVmines is a simple minesweeper game for X Window System.|/usr/ports/games/xvmines/pkg/DESCR|andy@icc.surw.chel.su|games|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-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||
xzip-1.8.0|/usr/ports/games/xzip|/usr/local|An Infocom game interpreter that runs under X11.|/usr/ports/games/xzip/pkg/DESCR|mph@freebsd.org|games||
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|sutton@aardvark.apana.org.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||
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||
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
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||
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|gmake-3.76.1 mocka-95.02 xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
de-webalizer-1.12|/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.3|
EZWGL-1.38|/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 x11|jpeg-6b|jpeg-6b
ImageMagick-4.0.7|/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|freetype-1.1 ghostscript-5.10 gmake-3.76.1 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 netpbm-94.3.1 png-1.0.2 tiff-3.4 transfig-3.2 unzip-5.3.2 xpm-3.4k|freetype-1.1 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 png-1.0.2 tiff-3.4
Mesa-2.6|/usr/ports/graphics/Mesa2|/usr/X11R6|A graphics library similar to SGI's OpenGL.|/usr/ports/graphics/Mesa2/pkg/DESCR|jseger@FreeBSD.ORG|graphics||
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||
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|fwf-4.0 xpm-3.4k|png-1.0.2 povray-3.0 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 x11|aalib-1.2|ImageMagick-4.0.7 aalib-1.2 freetype-1.1 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 netpbm-94.3.1 png-1.0.2 tiff-3.4
camediaplay-980118|/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 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
dc3play-970716|/usr/ports/graphics/dc3play|/usr/local|digital camera downloading tool for Ricoh DC-3|/usr/ports/graphics/dc3play/pkg/DESCR|itojun@itojun.org|graphics||
pdore-6.0|/usr/ports/graphics/dore|/usr/X11R6|The Dynamic Object Rendering Environment.|/usr/ports/graphics/dore/pkg/DESCR|ports@FreeBSD.ORG|graphics|gmake-3.76.1|
fbm-1.2|/usr/ports/graphics/fbm|/usr/local|Fuzzy Pixmap Manipulation utilities.|/usr/ports/graphics/fbm/pkg/DESCR|ports@FreeBSD.ORG|graphics||
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 misc||
fnlib-0.3|/usr/ports/graphics/fnlib|/usr/X11R6|Fonts and font libraries necessary for Enlightenment.|/usr/ports/graphics/fnlib/pkg/DESCR|vanilla@FreeBSD.ORG|graphics|giflib-3.0 gmake-3.76.1 gtk-1.0.4 imlib-1.7 jpeg-6b png-1.0.2 tiff-3.4|giflib-3.0 gtk-1.0.4 imlib-1.7 jpeg-6b png-1.0.2 tiff-3.4
fxtv-0.47|/usr/ports/graphics/fxtv|/usr/X11R6|X-based TV Display and Capture (for use with bt848 driver)|/usr/ports/graphics/fxtv/pkg/DESCR|rhh@ct.picker.com|graphics x11|Xaw3d-1.3 gmake-3.76.1 jpeg-6b tiff-3.4 xpm-3.4k|Xaw3d-1.3 jpeg-6b tiff-3.4 xpm-3.4k
gd-1.3|/usr/ports/graphics/gd|/usr/local|A graphics library for fast GIF creation|/usr/ports/graphics/gd/pkg/DESCR|jeff@cetlink.net|graphics||
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 tk42|Mesa-2.6 tcl-7.6 tk-4.2 xforms-0.88.1|Mesa-2.6 tcl-7.6 tk-4.2 xforms-0.88.1
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|perl-5.00404|perl-5.00404 teTeX-0.4
giflib-3.0|/usr/ports/graphics/giflib|/usr/local|Tools and library routines for working with GIF images.|/usr/ports/graphics/giflib/pkg/DESCR|tg@FreeBSD.ORG|graphics||
gifmerge-1.33|/usr/ports/graphics/gifmerge|/usr/local|A tool for making a GIF Animation.|/usr/ports/graphics/gifmerge/pkg/DESCR|nakai@mlab.t.u-tokyo.ac.jp|graphics||
giftool-1.0|/usr/ports/graphics/giftool|/usr/local|a tool for GIF89a transparent option and interlace mode|/usr/ports/graphics/giftool/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|graphics||
giftrans-1.12|/usr/ports/graphics/giftrans|/usr/local|a tool for GIF89a transparent option and inerlace mode.|/usr/ports/graphics/giftrans/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|graphics||
GimpUserManual-HTML-1.0.0|/usr/ports/graphics/gimp-manual|/usr/X11R6|The user manual for the GNU Image Manipulation Program (GIMP).|/usr/ports/graphics/gimp-manual/pkg/DESCR|brett@peloton.physics.montana.edu|graphics|bzip2-0.1p2|
gimp-1.0.0|/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|aalib-1.2 gmake-3.76.1 gtk-1.0.4 jpeg-6b mpeg_lib-1.2.1 png-1.0.2 tiff-3.4 xpm-3.4k|aalib-1.2 gtk-1.0.4 jpeg-6b mpeg_lib-1.2.1 png-1.0.2 tiff-3.4 xpm-3.4k
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||
graphviz-1.21|/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 tk42|tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
gtkdps-0.2.11|/usr/ports/graphics/gtkdps|/usr/X11R6|gtk bindings for the Display GhostScript System|/usr/ports/graphics/gtkdps/pkg/DESCR|Nakai@technologist.com|graphics|dgs-0.5.0 gmake-3.76.1 gtk-1.0.4 jpeg-6b png-1.0.2 tiff-3.4|gtk-1.0.4
gyvefigs-0.1.12|/usr/ports/graphics/gyvefigs|/usr/X11R6|figs library for the GYVE graphic editor|/usr/ports/graphics/gyvefigs/pkg/DESCR|Nakai@technologist.com|graphics|guile-1.2 guileobjc-0.3.8 libobjects-0.1.19|
gyvegui-0.0.10|/usr/ports/graphics/gyvegui|/usr/X11R6|GUI library for the GYVE graphic editor|/usr/ports/graphics/gyvegui/pkg/DESCR|Nakai@technologist.com|graphics|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
gyvekernel-0.1.7|/usr/ports/graphics/gyvekernel|/usr/X11R6|a vector base graphics editor|/usr/ports/graphics/gyvekernel/pkg/DESCR|Nakai@technologist.com|graphics|aalib-1.2 dgs-0.5.0 gimp-1.0.0 gmake-3.76.1 gtk-1.0.4 gtkdps-0.2.11 guile-1.2 guileobjc-0.3.8 gyvefigs-0.1.12 gyvegui-0.0.10 gyvescm-0.0.10 jpeg-6b libobjects-0.1.19 mpeg_lib-1.2.1 png-1.0.2 scriptkit-0.1.6 tiff-3.4 xpm-3.4k|gtk-1.0.4 gtkdps-0.2.11
hdf-4.1r2|/usr/ports/graphics/hdf|/usr/local|Hierarchical Data Format library (from NCSA)|/usr/ports/graphics/hdf/pkg/DESCR|mi@aldan.ziplink.net|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||
hpscan-1.0|/usr/ports/graphics/hpscan|/usr/X11R6|HP scanner driver.|/usr/ports/graphics/hpscan/pkg/DESCR|nate@FreeBSD.org|graphics|jpeg-6b|jpeg-6b
imlib-1.7|/usr/ports/graphics/imlib|/usr/X11R6|a graphic library for enlightenment package|/usr/ports/graphics/imlib/pkg/DESCR|vanilla@FreeBSD.ORG|graphics|giflib-3.0 gmake-3.76.1 gtk-1.0.4 jpeg-6b png-1.0.2 tiff-3.4|giflib-3.0 gtk-1.0.4 jpeg-6b png-1.0.2 tiff-3.4
jbigkit-1.0|/usr/ports/graphics/jbigkit|/usr/local|A lossless image compression library|/usr/ports/graphics/jbigkit/pkg/DESCR|mi@aldan.ziplink.net|graphics||
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.0|/usr/ports/graphics/kdegraphics|/usr/local|Graphics programs (PS, DVI, FAX, ...) for the KDE integrated X11 desktop|/usr/ports/graphics/kdegraphics/pkg/DESCR|se@freebsd.org|graphics kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.33
killustrator-0.2.1|/usr/ports/graphics/killustrator|/usr/local|the vector drawing tool for K Desktop Environment|/usr/ports/graphics/killustrator/pkg/DESCR|Nakai@technologist.com|graphics kde|giflib-3.0 gmake-3.76.1 jpeg-6b kde-1.0 kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kde-1.0 kdebase-1.0 kdegames-1.0 kdegraphics-1.0 kdelibs-1.0 kdemultimedia-1.0 kdenetwork-1.0 kdesupport-1.0 kdeutils-1.0 qt-1.33 uulib-0.5.13
mpeg_lib-1.2.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||
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||
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||
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||
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||
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/X11R6|a program to edit encoded mpeg streams.|/usr/ports/graphics/mpegedit/pkg/DESCR|erich@FreeBSD.org|graphics|jpeg-6b netpbm-94.3.1 tiff-3.4|
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-94.3.1|/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|jpeg-6b tiff-3.4|jpeg-6b tiff-3.4
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 x11||linux_lib-2.4
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|perl-5.00404|perl-5.00404
p5-Image-Size-2.6|/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|perl-5.00404|perl-5.00404
p5-PerlMagick-1.38|/usr/ports/graphics/p5-PerlMagick|/usr/local|object-oriented Perl Interface to ImageMagick|/usr/ports/graphics/p5-PerlMagick/pkg/DESCR|andreas@FreeBSD.ORG|graphics perl5|ImageMagick-4.0.7 freetype-1.1 ghostscript-5.10 gmake-3.76.1 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 netpbm-94.3.1 perl-5.00404 png-1.0.2 tiff-3.4 transfig-3.2 unzip-5.3.2 xpm-3.4k|perl-5.00404
p5-chart-0.94|/usr/ports/graphics/p5-chart|/usr/local|a perl5 interface to build chart graphic.|/usr/ports/graphics/p5-chart/pkg/DESCR|ports@FreeBSD.ORG|graphics perl5|p5-GD-1.18 perl-5.00404|perl-5.00404
pgperl-2.08|/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|perl-5.00404 pgplot-5.2|perl-5.00404 pgplot-5.2
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||
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|xpm-3.4k|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||
plotutils-2.1.1|/usr/ports/graphics/plotutils|/usr/local|A plotting library and toolkit.|/usr/ports/graphics/plotutils/pkg/DESCR|chuckr@FreeBSD.ORG|graphics||
png-1.0.2|/usr/ports/graphics/png|/usr/local|Library for manipulating PNG images.|/usr/ports/graphics/png/pkg/DESCR|ache@FreeBSD.org|graphics||
pnmtopng-2.36|/usr/ports/graphics/pnmtopng|/usr/X11R6|Converter between PNG and portable anymap images.|/usr/ports/graphics/pnmtopng/pkg/DESCR|volf@oasis.IAEhv.nl|graphics|jpeg-6b netpbm-94.3.1 png-1.0.2 tiff-3.4|png-1.0.2
povray-3.0|/usr/ports/graphics/povray|/usr/local|Persistence of Vision Ray Tracer Version 3.0|/usr/ports/graphics/povray/pkg/DESCR|ports@freebsd.org|graphics|png-1.0.2|png-1.0.2
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-2.60p1|/usr/ports/graphics/pstoedit|/usr/local|Convert PostScript to other vector graphic formats.|/usr/ports/graphics/pstoedit/pkg/DESCR|ports@FreeBSD.ORG|graphics print|unzip-5.3.2|ghostscript-5.10
qgl-1.0b2|/usr/ports/graphics/qgl|/usr/X11R6|Qt OpenGL Extension|/usr/ports/graphics/qgl/pkg/DESCR|andy@icc.surw.chel.su|graphics x11|Mesa-2.6 gmake-3.76.1 qt-1.31|Mesa-2.6 qt-1.31
qvplay|/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|jpeg-6b netpbm-94.3.1 tiff-3.4 urt-3.1b1|
sane-0.73|/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|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
sced-0.94|/usr/ports/graphics/sced|/usr/local|SCene EDitor for povray/renderman/genray/etc|/usr/ports/graphics/sced/pkg/DESCR|ports@FreeBSD.ORG|graphics||
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||
tgif-3.0p17|/usr/ports/graphics/tgif|/usr/X11R6|An Xlib-based two-dimensional drawing facility.|/usr/ports/graphics/tgif/pkg/DESCR|bmc@WillsCreek.COM|graphics||jpeg-6b netpbm-94.3.1 tiff-3.4
tiff-3.4|/usr/ports/graphics/tiff34|/usr/local|libtiff provides support for the Tag Image File Format (TIFF)|/usr/ports/graphics/tiff34/pkg/DESCR|itojun@itojun.org|graphics|jpeg-6b|jpeg-6b
txtmerge-1.01|/usr/ports/graphics/txtmerge|/usr/local|txtmerge, a tool for making GIF Animations.|/usr/ports/graphics/txtmerge/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|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|jpeg-6b netpbm-94.3.1 tiff-3.4|jpeg-6b tiff-3.4
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||
whirlgif-2.01|/usr/ports/graphics/whirlgif|/usr/local|a tool for making GIF animations.|/usr/ports/graphics/whirlgif/pkg/DESCR|nakai@mlab.t.u-tokyo.ac.jp|graphics||
xanim-2.70.7.0|/usr/ports/graphics/xanim|/usr/X11R6|play most popular animation formats and show pictures|/usr/ports/graphics/xanim/pkg/DESCR|ports@FreeBSD.ORG|graphics x11||
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|png-1.0.2|png-1.0.2
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|gmake-3.76.1 xpm-3.4k|xpm-3.4k
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 x11||
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 x11|Xaw3d-1.3 jpeg-6b xpm-3.4k|Xaw3d-1.3 jpeg-6b netpbm-94.3.1 tiff-3.4 transfig-3.2 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|gmake-3.76.1 xforms-0.88.1|png-1.0.2 povray-3.0 xforms-0.88.1
xfractint-3.04|/usr/ports/graphics/xfractint|/usr/local|The Unix port of fractint.|/usr/ports/graphics/xfractint/pkg/DESCR|ports@FreeBSD.ORG|graphics||
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 x11||
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|ports@FreeBSD.ORG|graphics x11||
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||
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||
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||
xmountains-2.4|/usr/ports/graphics/xmountains|/usr/X11R6|X11 based fractal landscape generator. |/usr/ports/graphics/xmountains/pkg/DESCR|proff@iq.org|graphics||
xpaint-2.5.4|/usr/ports/graphics/xpaint|/usr/X11R6|A simple paint program.|/usr/ports/graphics/xpaint/pkg/DESCR|jseger@FreeBSD.org|graphics x11|jpeg-6b png-1.0.2 tiff-3.4 xpm-3.4k|jpeg-6b png-1.0.2 tiff-3.4 xpm-3.4k
xpdf-0.7a|/usr/ports/graphics/xpdf|/usr/X11R6|Display tool for PDF files|/usr/ports/graphics/xpdf/pkg/DESCR|chuckr@glue.umd.edu|graphics print|xpm-3.4k|xpm-3.4k
xpm-3.4k|/usr/ports/graphics/xpm|/usr/X11R6|The X Pixmap library.|/usr/ports/graphics/xpm/pkg/DESCR|jseger@FreeBSD.org|graphics x11||
xv-3.10a|/usr/ports/graphics/xv|/usr/X11R6|An X11 program that displays images of various formats.|/usr/ports/graphics/xv/pkg/DESCR|ports@FreeBSD.ORG|graphics x11|jpeg-6b png-1.0.2 tiff-3.4|jpeg-6b png-1.0.2 tiff-3.4
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||
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||
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@infonets.hiroshima-u.ac.jp|japanese||
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@infonets.hiroshima-u.ac.jp|japanese||
ja-Wnn6-lib-97.6.6|/usr/ports/japanese/Wnn6-lib|/usr/local|include files and a library of Wnn6|/usr/ports/japanese/Wnn6-lib/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese||
ja-a2ps-1.41|/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-bookview-1.1.6|/usr/ports/japanese/bookview|/usr/local|NDTP client using Japanized Tcl/Tk.|/usr/ports/japanese/bookview/pkg/DESCR|m-kasahr@sra.co.jp|japanese||ja-tk-4.2
ja-camltk41-1.0|/usr/ports/japanese/camltk41|/usr/local|A library for interfacing Objective Caml with Tcl/Tk|/usr/ports/japanese/camltk41/../../x11/camltk41/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|x11 japanese tk42|gmake-3.76.1 ja-tcl-7.6 ja-tk-4.2 ocaml-1.07|ja-tcl-7.6 ja-tk-4.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-chimera-1.65|/usr/ports/japanese/chimera|/usr/X11R6|X/Athena World-Wide Web client + kanji patch|/usr/ports/japanese/chimera/pkg/DESCR|ports@FreeBSD.ORG|japanese www||
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.76.1 ja-Wnn-4.2 ja-mule-wnn4-2.3|etlfonts-noncjk-1.0 ja-less-332
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|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-nkf-1.62 ja-vflib-2.23.1|freetype-1.1 ja-vflib-2.23.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.76.1|ja-ptex-common-2.1.8 ja-vftool-1.2
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|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-ptex-common-2.1.8 ja-vflib-2.23.1 ja-vftool-1.2
jp-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-19980409|/usr/ports/japanese/edict|/usr/local|Japanse-English dictionaries with access and maintenance utilities.|/usr/ports/japanese/edict/pkg/DESCR|jhanna@rogers.wave.ca|japanese|unzip-5.3.2|
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-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-ewipe-1.0.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||ja-tk-4.2
ja-expect-5.26|/usr/ports/japanese/expect|/usr/local|A sophisticated scripter based on Japanized tcl/tk.|/usr/ports/japanese/expect/pkg/DESCR|ports@freebsd.org|lang tcl80 tk80|autoconf-2.12 ja-tcl-8.0.2 ja-tk-8.0.2|ja-tcl-8.0.2 ja-tk-8.0.2
ja-gawk-2.15.6|/usr/ports/japanese/gawk|/usr/local|GNU awk + multi-byte extension.|/usr/ports/japanese/gawk/pkg/DESCR|ports@FreeBSD.ORG|japanese textproc||
ja-ghostscript300-2.6.1.4|/usr/ports/japanese/ghostscript|/usr/local|GNU Postscript interpreter + Japanese patch.|/usr/ports/japanese/ghostscript/pkg/DESCR|ports@FreeBSD.ORG|japanese print||ja-pkfonts300-1.0
ja-gn-gnspool-1.36|/usr/ports/japanese/gn-gnspool|/usr/local|Simple Japanese Newsreader with Local Spool Support|/usr/ports/japanese/gn-gnspool/pkg/DESCR|kiroh@kh.rim.or.jp|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|kiroh@kh.rim.or.jp|japanese news||ja-gn-gnspool-1.36 ja-mnews-1.21
ja-gp-2.5|/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|japanese print tk42|ja-tcl-7.6|ImageMagick-4.0.7 Xaw3d-1.3 freetype-1.1 gv-3.5.8 ja-a2ps-1.41 ja-dvi2ps-2.0 ja-tcl-7.6 ja-tk-4.2 ja-vflib-2.23.1 ja-vfxdvi300-17 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 pkfonts300-1.0 png-1.0.2 psutils-a4-1.17 tiff-3.4
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.76.1|
ja-gxditview-0.98|/usr/ports/japanese/gxditview|/usr/X11R6|Japanized GNU's modified xditview|/usr/ports/japanese/gxditview/pkg/DESCR|ports@FreeBSD.ORG|japanese print||
ja-handbook-2.2.6|/usr/ports/japanese/handbook|/usr|The Japanese version of FreeBSD handbook.|/usr/ports/japanese/handbook/pkg/DESCR|ports@FreeBSD.ORG|japanese|sgmlformat-1.6|
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||
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 net||
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@yy.cs.keio.ac.jp|japanese||
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.6|/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-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.76.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.76.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.76.1|
ja-jvim-2.0r|/usr/ports/japanese/jvim|/usr/local|Japanized Vim|/usr/ports/japanese/jvim/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|japanese editors|ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn4-2.2.10|ja-Canna-3.2.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@infonets.hiroshima-u.ac.jp|japanese editors|ja-Canna-3.2.2 ja-Wnn-4.2 ja-onew-canna+wnn6-2.2.10|ja-Canna-3.2.2
ja-jvim-wnn4-2.0r|/usr/ports/japanese/jvim-wnn4|/usr/local|Japanized Vim (with Wnn4)|/usr/ports/japanese/jvim-wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|ja-Wnn-4.2 ja-onew-wnn4-2.2.10|
ja-jvim-wnn6-2.0r|/usr/ports/japanese/jvim-wnn6|/usr/local|Japanized Vim (with Wnn6)|/usr/ports/japanese/jvim-wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|ja-Wnn-4.2 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||
ja-k12font-1.0|/usr/ports/japanese/k12|/usr/X11R6|X11 12-dot kanji font|/usr/ports/japanese/k12/pkg/DESCR|mita@jp.FreeBSD.org|japanese x11||
ja-elisa8-1.0|/usr/ports/japanese/k8|/usr/X11R6|X11 8-dot kanji font 'elisa font'|/usr/ports/japanese/k8/pkg/DESCR|ishijima@tri.pref.osaka.jp|japanese x11||
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.2|/usr/ports/japanese/kappa20|/usr/X11R6|X11 20-dot kanji font 'kappa font'|/usr/ports/japanese/kappa20/pkg/DESCR|ginga@amalthea.phys.s.u-tokyo.ac.jp|japanese x11||
ja-kcc-1.0|/usr/ports/japanese/kcc|/usr/local|Kanji code conversion Filter|/usr/ports/japanese/kcc/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese||
ja-kinput2-canna-2.0.4|/usr/ports/japanese/kinput2-canna|/usr/X11R6|Input server of Japanese text (Canna)|/usr/ports/japanese/kinput2-canna/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2|ja-Canna-3.2.2
ja-kinput2-canna+sj3-2.0.4|/usr/ports/japanese/kinput2-canna+sj3|/usr/X11R6|Input server of Japanese text (Canna+SJ3)|/usr/ports/japanese/kinput2-canna+sj3/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2 ja-sj3-2.0.1.13|ja-Canna-3.2.2
ja-kinput2-canna+sj3+wnn4-2.0.4|/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@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2 ja-Wnn-4.2 ja-sj3-2.0.1.13|ja-Canna-3.2.2
ja-kinput2-canna+sj3+wnn6-2.0.4|/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@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2 ja-Wnn-4.2 ja-sj3-2.0.1.13|ja-Canna-3.2.2
ja-kinput2-canna+wnn4-2.0.4|/usr/ports/japanese/kinput2-canna+wnn4|/usr/X11R6|Input server of Japanese text (Canna+Wnn4)|/usr/ports/japanese/kinput2-canna+wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2 ja-Wnn-4.2|ja-Canna-3.2.2
ja-kinput2-canna+wnn6-2.0.4|/usr/ports/japanese/kinput2-canna+wnn6|/usr/X11R6|Input server of Japanese text (Canna+Wnn6)|/usr/ports/japanese/kinput2-canna+wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Canna-3.2.2 ja-Wnn-4.2|ja-Canna-3.2.2
ja-kinput2-sj3-2.0.4|/usr/ports/japanese/kinput2-sj3|/usr/X11R6|Input server of Japanese text (SJ3)|/usr/ports/japanese/kinput2-sj3/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-sj3-2.0.1.13|
ja-kinput2-sj3+wnn4-2.0.4|/usr/ports/japanese/kinput2-sj3+wnn4|/usr/X11R6|Input server of Japanese text (SJ3+Wnn4)|/usr/ports/japanese/kinput2-sj3+wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Wnn-4.2 ja-sj3-2.0.1.13|
ja-kinput2-sj3+wnn6-2.0.4|/usr/ports/japanese/kinput2-sj3+wnn6|/usr/X11R6|Input server of Japanese text (SJ3+Wnn6)|/usr/ports/japanese/kinput2-sj3+wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Wnn-4.2 ja-sj3-2.0.1.13|
ja-kinput2-wnn4-2.0.4|/usr/ports/japanese/kinput2-wnn4|/usr/X11R6|Input server of Japanese text (Wnn4)|/usr/ports/japanese/kinput2-wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Wnn-4.2|
ja-kinput2-wnn6-2.0.4|/usr/ports/japanese/kinput2-wnn6|/usr/X11R6|Input server of Japanese text (Wnn6)|/usr/ports/japanese/kinput2-wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese x11|ja-Wnn-4.2|
ja-kon2-0.3|/usr/ports/japanese/kon|/usr/local|Kanji On Console -- Display kanji characters on your own console.|/usr/ports/japanese/kon/pkg/DESCR|hideyuki@sat.t.u-tokyo.ac.jp|japanese||
ja-kterm-6.2.0|/usr/ports/japanese/kterm|/usr/X11R6|An xterm that speaks Japanese|/usr/ports/japanese/kterm/pkg/DESCR|ports@FreeBSD.ORG|japanese x11||
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-libslang-1.2.2|/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-magicpoint-1.03a|/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|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-vflib-2.23.1
ja-man-1.1g|/usr/ports/japanese/man|/usr/local|A manual display command for Japanese (EUC).|/usr/ports/japanese/man/pkg/DESCR|kuriyama@opt.phys.waseda.ac.jp|japanese||ja-groff-0.99 ja-less-332
ja-man-doc-2.2|/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.4b|/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.76.1|
ja-mendexk-sjis-2.4b|/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.76.1 ja-nkf-1.62|
ja-mew-mule-1.92.4|/usr/ports/japanese/mew-mule|/usr/local|Message interface to Emacs Window(for japanese mule)|/usr/ports/japanese/mew-mule/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese mail|gmake-3.76.1 mule-2.3|im-76 mew-common-1.92.4 perl-5.00404
ja-mew-xemacs-1.92.4|/usr/ports/japanese/mew-xemacs|/usr/local|Message interface to Emacs Window(for xemacs-mule)|/usr/ports/japanese/mew-xemacs/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese mail|autoconf-2.12 faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-20.4 xpm-3.4k|im-76 mew-common-1.92.4 perl-5.00404
ja-mh-6.8.4|/usr/ports/japanese/mh|/usr/local|Rand MH mail handling system + Japanese patches|/usr/ports/japanese/mh/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|japanese|ja-less-332|ja-less-332
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-mmm-0.40|/usr/ports/japanese/mmm|/usr/local|WWW browser using Objective Caml, Tcl/Tk.|/usr/ports/japanese/mmm/../../www/mmm/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|www japanese tk42|gmake-3.76.1 ja-camltk41-1.0 ja-tcl-7.6 ja-tk-4.2 ocaml-1.07|ja-tcl-7.6 ja-tk-4.2
ja-mnews-1.21|/usr/ports/japanese/mnews|/usr/local|Simple news and E-mail reader|/usr/ports/japanese/mnews/pkg/DESCR|kiroh@kh.rim.or.jp|japanese news||
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.76.1|
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@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2|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@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2 ja-sj3-2.0.1.13|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|A multilingual emacs, with Canna, sj3 and Wnn4 support built in (Only the executables)|/usr/ports/japanese/mule-canna+sj3+wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2 ja-Wnn-4.2 ja-sj3-2.0.1.13|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|A multilingual emacs, with Canna, sj3, Wnn4 and Wnn6 support built in (Only the executables)|/usr/ports/japanese/mule-canna+sj3+wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2 ja-Wnn6-lib-97.6.6 ja-sj3-2.0.1.13|ja-Canna-3.2.2 mule-common-2.3
ja-mule-canna+wnn4-2.3|/usr/ports/japanese/mule-canna+wnn4|/usr/local|A multilingual emacs, with Canna and Wnn4 support built in (Only the executables)|/usr/ports/japanese/mule-canna+wnn4/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2 ja-Wnn-4.2|ja-Canna-3.2.2 mule-common-2.3
ja-mule-canna+wnn6-2.3|/usr/ports/japanese/mule-canna+wnn6|/usr/local|A multilingual emacs, with Canna, Wnn4 and Wnn6 support built in (Only the executables)|/usr/ports/japanese/mule-canna+wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Canna-3.2.2 ja-Wnn6-lib-97.6.6|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@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-sj3-2.0.1.13|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@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Wnn-4.2 ja-sj3-2.0.1.13|mule-common-2.3
ja-mule-sj3+wnn6-2.3|/usr/ports/japanese/mule-sj3+wnn6|/usr/local|A multilingual emacs, with sj3, Wnn4 and Wnn6 support built in (Only the executables)|/usr/ports/japanese/mule-sj3+wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Wnn6-lib-97.6.6 ja-sj3-2.0.1.13|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@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Wnn-4.2|mule-common-2.3
ja-mule-wnn6-2.3|/usr/ports/japanese/mule-wnn6|/usr/local|A multilingual emacs, with Wnn4 and Wnn6 support built in (Only the executables)|/usr/ports/japanese/mule-wnn6/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|japanese editors|gmake-3.76.1 ja-Wnn6-lib-97.6.6|mule-common-2.3
ja-ndtpd-1.0.6|/usr/ports/japanese/ndtpd|/usr/local|server for accessing CD-ROM books with NDTP.|/usr/ports/japanese/ndtpd/pkg/DESCR|m-kasahr@sra.co.jp|japanese||
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|gmake-3.76.1 xpm-3.4k|xpm-3.4k
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@e-mail.ne.jp|japanese www||ja-elisa8-1.0 ja-k12font-1.0 netscape-3.04
ja-communicator-4.04|/usr/ports/japanese/netscape4|/usr/local|netscape ver 4 web-surfboard with Japanese resources|/usr/ports/japanese/netscape4/pkg/DESCR|sada@E-mail.NE.JP|japanese www||ja-k12font-1.0 ja-naga10-1.0
ja-newosaka-1.0|/usr/ports/japanese/newosaka|/usr/local|translator of Japanese EUC documents into Osaka language|/usr/ports/japanese/newosaka/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|japanese||
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.19970820|/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.19970820|/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.19970820|/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|ports@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||
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@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|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@infonets.hiroshima-u.ac.jp|japanese|ja-Wnn-4.2|
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-perl-5.004.04|/usr/ports/japanese/perl5|/usr/local|Pattern Extraction and Recognition Language + Japanese patches.|/usr/ports/japanese/perl5/pkg/DESCR|shige@kuis.kyoto-u.ac.jp|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.3.2|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-pkfonts300-1.0|/usr/ports/japanese/pkfonts|/usr/local|Japanese PK fonts, for ghostscripts, xdvi and so on.|/usr/ports/japanese/pkfonts/pkg/DESCR|ports@FreeBSD.ORG|japanese print|lha-1.14c|
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.7.1|/usr/ports/japanese/plan|/usr/local|An X/Motif schedule planner with calendar|/usr/ports/japanese/plan/../../misc/plan/pkg/DESCR|obrien@FreeBSD.org|misc||
ja-platex2e-common-1998.02.17.0|/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|gmake-3.76.1 ja-ptex-common-2.1.8|ja-ptex-common-2.1.8
ja-platex2e-euc-1998.02.17.0|/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|gmake-3.76.1 ja-platex2e-common-1998.02.17.0 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8|ja-platex2e-common-1998.02.17.0 ja-ptex-common-2.1.8 ja-ptex-euc-2.1.8
ja-platex2e-jis-1998.02.17.0|/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|gmake-3.76.1 ja-nkf-1.62 ja-platex2e-common-1998.02.17.0 ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8|ja-platex2e-common-1998.02.17.0 ja-ptex-common-2.1.8 ja-ptex-jis-2.1.8
ja-platex2e-sjis-1998.02.17.0|/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|gmake-3.76.1 ja-nkf-1.62 ja-platex2e-common-1998.02.17.0 ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8|ja-platex2e-common-1998.02.17.0 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|gmake-3.76.1 ja-nkf-1.62 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|gmake-3.76.1 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|gmake-3.76.1 ja-nkf-1.62 ja-ptex-sjis-2.1.8|ja-ptex-common-2.1.8 ja-ptex-sjis-2.1.8
play-1.0|/usr/ports/japanese/play|/usr/local|a simple audio file player|/usr/ports/japanese/play/pkg/DESCR|seiken@nbs.co.jp|audio||
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@infonets.hiroshima-u.ac.jp|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.76.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.76.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.76.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.76.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.3.2|
ja-recjis-1.0|/usr/ports/japanese/recjis|/usr/local|tool for recovery of broken japanese text|/usr/ports/japanese/recjis/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|japanese||
ja-rxvt-2.4.5|/usr/ports/japanese/rxvt|/usr/X11R6|A low memory usage xterm replacement that supports color|/usr/ports/japanese/rxvt/../../x11/rxvt/pkg/DESCR|honda@kashio.info.mie-u.ac.jp|japanese x11||
ja-sed-1.18|/usr/ports/japanese/sed|/usr/local|GNU sed + multi-byte extension.|/usr/ports/japanese/sed/pkg/DESCR|ports@FreeBSD.ORG|japanese textproc||
ja-sj3-2.0.1.13|/usr/ports/japanese/sj3|/usr/local|A Japanese input method.|/usr/ports/japanese/sj3/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese||
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||ja-sj3-2.0.1.13
ja-skk-9.6|/usr/ports/japanese/skk|/usr/local|Simple Kana Kanji Converter: a Japanese-input software running on Nemacs or Mule.|/usr/ports/japanese/skk/pkg/DESCR|matusita@jp.freebsd.org|japanese|gmake-3.76.1 mule-2.3|
ja-skkinput-2.00|/usr/ports/japanese/skkinput|/usr/X11R6|A SKK-like Japanese input method for X11.|/usr/ports/japanese/skkinput/pkg/DESCR|mrt@mickey.ai.kyutech.ac.jp|japanese x11||ja-groff-0.99 ja-less-332 ja-man-1.1g ja-skk-9.6
ja-slrn-0.9.5.2|/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.2.2|ja-libslang-1.2.2
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||
ja-tcl-8.0.2|/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.12|
ja-tcsh-6.07.06b4|/usr/ports/japanese/tcsh|/usr/local|An extended C-shell with many useful features with Japanese and color support.|/usr/ports/japanese/tcsh/pkg/DESCR|issei@t-cnet.or.jp|japanese shells|ja-nkf-1.62|
ja-tgif-3.0.13|/usr/ports/japanese/tgif|/usr/X11R6|2-D drawing facility (Japanese version).|/usr/ports/japanese/tgif/pkg/DESCR|mita@jp.FreeBSD.org|japanese||jpeg-6b netpbm-94.3.1 tiff-3.4
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|ja-tcl-7.6|
ja-tk-8.0.2|/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 tk80|autoconf-2.12 ja-tcl-8.0.2|ja-tcl-8.0.2
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.14c|
ja-typist-2.0|/usr/ports/japanese/typist|/usr/local|Typing lessons (Japanese version)|/usr/ports/japanese/typist/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|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|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-vflib-2.23.1
ja-vfghostscript-5.10|/usr/ports/japanese/vfghostscript5|/usr/local|Aladdin Postscript and PDF interpreter with Japanese vector font library.|/usr/ports/japanese/vfghostscript5/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-vflib-2.23.1
ja-vflib-2.23.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|autoconf-2.12 freetype-1.1 gmake-3.76.1|freetype-1.1
ja-vftool-1.2|/usr/ports/japanese/vftool|/usr/local|Virtual font kit for using in dvi2ps, dvipsk or dvi2dvi.|/usr/ports/japanese/vftool/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|print japanese|gmake-3.76.1 ja-japaneseAFM-1.0 ja-jlatex209-n152 ja-pkfonts300-1.0 ja-ptex-euc-2.1.8 lha-1.14c|
ja-vfxdvi300-17|/usr/ports/japanese/vfxdvi|/usr/X11R6|DVI Previewer for X. + Japanese patch + vector font support|/usr/ports/japanese/vfxdvi/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-vflib-2.23.1 pkfonts300-1.0
ja-vfxdvik-20c|/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|autoconf-2.12 freetype-1.1 gmake-3.76.1 ja-vflib-2.23.1|freetype-1.1 ja-ptex-common-2.1.8 ja-vflib-2.23.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|www japanese|gmake-3.76.1 mule-2.3|
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|a00821@cc.hc.keio.ac.jp|japanese www||
ja-wine-97.11.30|/usr/ports/japanese/wine|/usr/local|MS-Windows 3.1/95/NT emulator for Unix (Alpha release).|/usr/ports/japanese/wine/pkg/DESCR|Takashi Uozu <j1594016@ed.kagu.sut.ac.jp>|japanese emulators|xpm-3.4k|xpm-3.4k
ja-x0212fonts-1.0|/usr/ports/japanese/x0212fonts|/usr/X11R6|X11 X0212-1990 font.  14, 16, 24 and 40 dots availble.|/usr/ports/japanese/x0212fonts/pkg/DESCR|itojun@itojun.org|japanese x11|gmake-3.76.1|
ja-xdvi300-17|/usr/ports/japanese/xdvi|/usr/X11R6|A DVI Previewer for the X Window System with Japanese patch.|/usr/ports/japanese/xdvi/pkg/DESCR|ports@FreeBSD.ORG|japanese print||ja-pkfonts300-1.0 pkfonts300-1.0
ja-xemacs-20.4|/usr/ports/japanese/xemacs|/usr/local|XEmacs text editor, with SJ3 and SKK support.|/usr/ports/japanese/xemacs/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xemacs-canna-20.4|/usr/ports/japanese/xemacs-canna|/usr/local|XEmacs text editor, with Canna, SJ3 and SKK support.|/usr/ports/japanese/xemacs-canna/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xemacs-canna+wnn4-20.4|/usr/ports/japanese/xemacs-canna+wnn4|/usr/local|XEmacs text editor, with Canna, Wnn4, SJ3 and SKK support.|/usr/ports/japanese/xemacs-canna+wnn4/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 ja-Canna-3.2.2 ja-Wnn-4.2 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xemacs-canna+wnn6-20.4|/usr/ports/japanese/xemacs-canna+wnn6|/usr/local|XEmacs text editor, with Canna, Wnn6, SJ3 and SKK.|/usr/ports/japanese/xemacs-canna+wnn6/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 ja-Canna-3.2.2 ja-Wnn6-lib-97.6.6 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 ja-Canna-3.2.2 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xemacs-wnn4-20.4|/usr/ports/japanese/xemacs-wnn4|/usr/local|XEmacs text editor, with Wnn4, SJ3 and SKK.|/usr/ports/japanese/xemacs-wnn4/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 ja-Wnn-4.2 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xemacs-wnn6-20.4|/usr/ports/japanese/xemacs-wnn6|/usr/local|XEmacs text editor, with Wnn6, SJ3 and SKK.|/usr/ports/japanese/xemacs-wnn6/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese editors|autoconf-2.12 faces-1.6.1 ja-Wnn6-lib-97.6.6 jpeg-6b png-1.0.2 xpm-3.4k|faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-common-20.4 xpm-3.4k
ja-xfig-3.2|/usr/ports/japanese/xfig|/usr/X11R6|A drawing program for X11|/usr/ports/japanese/xfig/pkg/DESCR|mita@jp.FreeBSD.ORG|graphics x11|Xaw3d-1.3 jpeg-6b xpm-3.4k|Xaw3d-1.3 jpeg-6b netpbm-94.3.1 tiff-3.4 transfig-3.2 xpm-3.4k
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|x11 japanese||
ja-xnetmaj-2.0.7|/usr/ports/japanese/xnetmaj|/usr/X11R6|a mahhjong game for X|/usr/ports/japanese/xnetmaj/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|japanese games||
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|Nakai@Mlab.t.u-tokyo.ac.jp|japanese x11||
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.14c|
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@infonets.hiroshima-u.ac.jp|korean||
ko-afterstep-1.0pr3h1|/usr/ports/korean/afterstep|/usr/X11R6|This Bowman-NeXTSTEP clone window manager with Korean character support.|/usr/ports/korean/afterstep/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11|xpm-3.4k|xpm-3.4k
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-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|gmake-3.76.1 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|xpm-3.4k
ko-h2ps-a4-1.0|/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.76.1|
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.76.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.04b7|/usr/ports/korean/hanterm|/usr/X11R6|An xterm hacked for managing Korean languages.|/usr/ports/korean/hanterm/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11||ko-johabfonts-3.04
ko-hanterm-xf-3.3.1.13|/usr/ports/korean/hanterm-xf86|/usr/X11R6|An X11R6-based xterm hacked for managing Korean languages.|/usr/ports/korean/hanterm-xf86/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11||ko-johabfonts-3.04
ko-hanyangfonts-1.0|/usr/ports/korean/hanyangfonts|/usr/X11R6|Hangul fonts for X11(hanyang) used in many hangul-related programs.|/usr/ports/korean/hanyangfonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11||
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-hfvwm-2.0.43|/usr/ports/korean/hfvwm2|/usr/X11R6|The fvwm2 window manager, with Korean support|/usr/ports/korean/hfvwm2/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11|xpm-3.4k|xpm-3.4k
ko-hlatexpsfonts-0.95|/usr/ports/korean/hlatexpsfonts|/usr/local|Hangul Type 1 fonts for HLaTeX-0.95 and other applications|/usr/ports/korean/hlatexpsfonts/pkg/DESCR|junker@jazz.snu.ac.kr|korean||
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||
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|gmake-3.76.1|
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||perl-5.00404
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|junker@jazz.snu.ac.kr|korean x11|gdbm-1.7.3 gmake-3.76.1 rpm-2.5.1|
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@infonets.hiroshima-u.ac.jp|korean editors|gmake-3.76.1 ko-Wnn-4.2|mule-common-2.3
ko-netscape-3.01intl|/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||ko-hanyangfonts-1.0
ko-nh2ps-a4-1.0p1|/usr/ports/korean/nh2ps|/usr/local|Formats an ascii file for printing on a postscript printer with Korean char.|/usr/ports/korean/nh2ps/pkg/DESCR|junker@jazz.snu.ac.kr|korean print||ko-hlatexpsfonts-0.95
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-1.2|/usr/ports/korean/nhppf|/usr/local|Hangul Printing Filter for Netscape with HLaTeX-0.95 PS font|/usr/ports/korean/nhppf/pkg/DESCR|junker@jazz.snu.ac.kr|korean||ko-hlatexpsfonts-0.95 perl-5.00404
ko-nvi-euckr-1.79.19970820|/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.19970820|/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-pine-3.96k.2|/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.0|/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||
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||
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_lib-2.4
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||
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 mature, portable, optimizing C/C++ compiler|/usr/ports/lang/TenDRA/pkg/DESCR|rnordier@FreeBSD.ORG|lang||
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||
bwbasic-2.20|/usr/ports/lang/bwbasic|/usr/local|The Bywater Basic interpreter.|/usr/ports/lang/bwbasic/pkg/DESCR|msmith@gsoft.com.au|lang||
cim-2.10|/usr/ports/lang/cim|/usr/local|Compiler for the SIMULA programming language|/usr/ports/lang/cim/pkg/DESCR|ports@FreeBSD.ORG|lang||
cmucl-18a|/usr/ports/lang/cmucl|/usr/local|The CMU implementation of Common Lisp|/usr/ports/lang/cmucl/pkg/DESCR|cracauer@cons.org|lang||
dylan-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.76.1|
egcs-19980715|/usr/ports/lang/egcs|/usr/local|EGCS enhanced version of the GNU compiler suite|/usr/ports/lang/egcs/pkg/DESCR|obrien@FreeBSD.org|lang|gmake-3.76.1|
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-19-2.4.2|/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.2|/usr/ports/lang/elk|/usr/local|An embeddable Scheme interpreter.|/usr/ports/lang/elk/pkg/DESCR|tg@freebsd.org|lang||
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.13|/usr/ports/lang/eperl|/usr/local|Embedded Perl 5 Language|/usr/ports/lang/eperl/pkg/DESCR|rse@engelschall.com|lang www perl5|perl-5.00404|perl-5.00404
expect-5.26|/usr/ports/lang/expect|/usr/local|A sophisticated scripter based on tcl/tk.|/usr/ports/lang/expect/pkg/DESCR|ports@freebsd.org|lang tcl80 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
pfe-0.9.9|/usr/ports/lang/forth|/usr/local|Implementation of ANSI Forth.|/usr/ports/lang/forth/pkg/DESCR|ports@FreeBSD.org|lang||
g77-0.5.19.1|/usr/ports/lang/g77|/usr/local|The GNU Fortran 77 compiler.|/usr/ports/lang/g77/pkg/DESCR|ports@FreeBSD.ORG|lang math||
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.76.1|
gcl-2.2.2|/usr/ports/lang/gcl|/usr/local|GNU Common Lisp|/usr/ports/lang/gcl/pkg/DESCR|jseger@freebsd.org|lang||
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.76.1|gcc-2.8.1
gnat-3.10p|/usr/ports/lang/gnat|/usr/local|The GNU Ada Translator.|/usr/ports/lang/gnat/pkg/DESCR|maurice@serc.rmit.edu.au|lang||
guavac-1.2|/usr/ports/lang/guavac|/usr/local|Guavac, a java compiler and decompiler developed under GPL.|/usr/ports/lang/guavac/pkg/DESCR|Nakai@technologist.com|lang|gcc-2.8.1 glibstdc++-2.8.1.1 gmake-3.76.1|gcc-2.8.1 glibstdc++-2.8.1.1
guile-1.2|/usr/ports/lang/guile|/usr/local|GNU's Ubiquitous Intelligent Language for Extension|/usr/ports/lang/guile/pkg/DESCR|jseger@FreeBSD.org|lang||
hugs-1.4|/usr/ports/lang/hugs|/usr/local|Nottingham's and Yale's Haskell interpreter and programming environment.|/usr/ports/lang/hugs/pkg/DESCR|Torsten.Grust@uni-konstanz.de|lang||
icon-9.3.1|/usr/ports/lang/icon|/usr/local|The Icon programming language.|/usr/ports/lang/icon/pkg/DESCR|ports@FreeBSD.ORG|lang||
intercal-0.17|/usr/ports/lang/intercal|/usr/local|The C-INTERCAL compiler, ick, and supporting libraries.|/usr/ports/lang/intercal/pkg/DESCR|mph@freebsd.org|lang||
itcl-2.1|/usr/ports/lang/itcl|/usr/local|[incr Tcl] (A.K.A. ``itcl'').|/usr/ports/lang/itcl/pkg/DESCR|chuckr@freebsd.org|lang||
javac_netscape-1.0.1|/usr/ports/lang/javac_netscape|/usr/local|Java compiler using Netscape 3.0+.|/usr/ports/lang/javac_netscape/pkg/DESCR|smpatel@umiacs.umd.edu|lang||jdk-1.1.5 netscape-3.04
jdk-1.1.5|/usr/ports/lang/jdk|/usr/local|Sun's Java Developers Kit|/usr/ports/lang/jdk/pkg/DESCR|cracauer@freebsd.org|lang devel||
kaffe-0.9.2|/usr/ports/lang/kaffe|/usr/local|A virtual machine capable of running Java(tm) code (including an awt-package)|/usr/ports/lang/kaffe/pkg/DESCR|xaa@stack.nl|lang||
kawk-98.02.11|/usr/ports/lang/kawk|/usr/local|Brian Kernighan's pattern scanning and processing language|/usr/ports/lang/kawk/pkg/DESCR|josh@quick.net|lang||
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||
ucblogo-3.3|/usr/ports/lang/logo|/usr/local|Brian Harvey's logo language interpreter.|/usr/ports/lang/logo/pkg/DESCR|jmacd@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||
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.76.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|modula-3-lib-3.6|modula-3-lib-3.6
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||
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||
o2c-1.16|/usr/ports/lang/o2c|/usr/local|Oberon-2 compiler |/usr/ports/lang/o2c/pkg/DESCR|ob@seicom.NET|lang||
objc-1.8.18|/usr/ports/lang/objc|/usr/local|Portable Object Compiler|/usr/ports/lang/objc/pkg/DESCR|chuckr@freebsd.org|lang|boehm-gc-4.12|
ocaml-1.07|/usr/ports/lang/ocaml|/usr/local|A ML language based on complete class-based objective system|/usr/ports/lang/ocaml/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|lang|gmake-3.76.1|
p2c-1.21a|/usr/ports/lang/p2c|/usr/local|Pascal to C translator.|/usr/ports/lang/p2c/pkg/DESCR|jmz@FreeBSD.org|lang||
p5-Tcl-b1|/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|perl-5.00404|perl-5.00404
p5-ePerl-2.2.13|/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|perl-5.00404|perl-5.00404
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.00404|/usr/ports/lang/perl5|/usr/local|Pattern Extraction and Recognition Language.|/usr/ports/lang/perl5/pkg/DESCR|markm@FreeBSD.ORG|lang devel perl5||
ptoc-2.01|/usr/ports/lang/ptoc|/usr/local|ANSI/Turbo Pascal to C/C++ converter|/usr/ports/lang/ptoc/pkg/DESCR|andy@icc.surw.chel.su|devel converters x11||
python-1.5.1|/usr/ports/lang/python|/usr/local|An interpreted object-oriented programming language.|/usr/ports/lang/python/pkg/DESCR|tg@FreeBSD.org|lang python tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
rexx-imc-1.6d|/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.0|/usr/ports/lang/ruby|/usr/local|An object-oriented interpreted scripting language|/usr/ports/lang/ruby/pkg/DESCR|usagi@clave.gr.jp|lang||
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||
scm-4e1|/usr/ports/lang/scm|/usr/local|A scheme interpreter.|/usr/ports/lang/scm/pkg/DESCR|ports@FreeBSD.ORG|lang|gmake-3.76.1|
smalltalk-1.1.5|/usr/ports/lang/smalltalk|/usr/local|GNU Smalltalk.|/usr/ports/lang/smalltalk/pkg/DESCR|jraynard@FreeBSD.ORG|lang|gdbm-1.7.3|
smlnj-110|/usr/ports/lang/sml-nj|/usr/local|Standard ML of New Jersey.|/usr/ports/lang/sml-nj/pkg/DESCR|jkoshy@freebsd.org|lang|gmake-3.76.1|
squeak-1.18|/usr/ports/lang/squeak|/usr/local|A Smalltalk system with graphical user interface.|/usr/ports/lang/squeak/pkg/DESCR|jesse@cs.uni-magdeburg.de|lang||
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-2.8.6|/usr/ports/lang/swi-pl|/usr/local|Edinburgh-style Prolog compiler.|/usr/ports/lang/swi-pl/pkg/DESCR|max@FreeBSD.ORG|lang||
tcl-7.5.1|/usr/ports/lang/tcl75|/usr/local|Tool Command Language.|/usr/ports/lang/tcl75/pkg/DESCR|taguchi@tohoku.iij.ad.jp|lang tcl75||
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||
tcl-8.0.2|/usr/ports/lang/tcl80|/usr/local|Tool Command Language.|/usr/ports/lang/tcl80/pkg/DESCR|jkh@freebsd.org|lang tcl80||
tcl-8.1.a2|/usr/ports/lang/tcl81|/usr/local|Tool Command Language.|/usr/ports/lang/tcl81/pkg/DESCR|jseger@FreeBSD.ORG|lang tcl81||
tclX-7.5.2|/usr/ports/lang/tclX75|/usr/local|Extended TCL|/usr/ports/lang/tclX75/pkg/DESCR|ports@FreeBSD.ORG|lang tk41|tcl-7.5.1 tk-4.1.1|tcl-7.5.1 tk-4.1.1
tclX-8.0.2|/usr/ports/lang/tclX80|/usr/local|Extended TCL|/usr/ports/lang/tclX80/pkg/DESCR|jseger@FreeBSD.ORG|lang tcl80 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
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|netscape-communicator-4.05|netscape-communicator-4.05
xpl486-4.1|/usr/ports/lang/xpl|/usr/local|The XPL compiler generator system|/usr/ports/lang/xpl/pkg/DESCR|ports@FreeBSD.ORG|lang|gmake-3.76.1|
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||
adcomplain-3.33|/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.50|/usr/ports/mail/asmail|/usr/X11R6|This is a biff type program, designed to match AfterStep.|/usr/ports/mail/asmail/pkg/DESCR|brett@peloton.physics.montana.edu|mail x11|xpm-3.4k|xpm-3.4k
bulk_mailer-1.5|/usr/ports/mail/bulk_mailer|/usr/local|Speeds delivery to large mailing lists by sorting & batching addresses.|/usr/ports/mail/bulk_mailer/pkg/DESCR|dlowe@saturn5.com|mail||
coolmail-1.3|/usr/ports/mail/coolmail|/usr/local|A Xbiff like mail tool with animated 3D graphics.|/usr/ports/mail/coolmail/pkg/DESCR|Udo.Schweigert@mchp.siemens.de|mail||
cucipop-1.21|/usr/ports/mail/cucipop|/usr/local|Cubic Circle's POP3 daemon (fully RFC1939 compliant).|/usr/ports/mail/cucipop/pkg/DESCR|igor@zynaps.ru|mail||
cyrus-1.5.2|/usr/ports/mail/cyrus|/usr/local|the cyrus mail server, supporting POP3, KPOP, and IMAP4 protocols.|/usr/ports/mail/cyrus/pkg/DESCR|jfitz@FreeBSD.ORG|mail tcl81|makedepend-95.07.05 tcl-8.1.a2|tcl-8.1.a2
elm-2.4ME+40|/usr/ports/mail/elm|/usr/local|ELM 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|josh@quick.net|mail||
exim-1.92|/usr/ports/mail/exim|/usr/local|High performance MTA for Unix systems on the Internet.|/usr/ports/mail/exim/pkg/DESCR|markm@FreeBSD.ORG|mail|perl-5.00404|perl-5.00404
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 tk80||mh-6.8.4 mm-2.7 tcl-8.0.2 tk-8.0.2
exmh-2.0.2|/usr/ports/mail/exmh2|/usr/local|X11/TK based mail reader front end to MH.|/usr/ports/mail/exmh2/pkg/DESCR|peter@FreeBSD.org|mail tk80|tcl-8.0.2|mh-6.8.4 mm-2.7 tcl-8.0.2 tk-8.0.2
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||
fetchmail-4.5.2|/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||
glbiff-0.2|/usr/ports/mail/glbiff|/usr/X11R6|Xbiff-like program with 3D nice output for X Window System.|/usr/ports/mail/glbiff/pkg/DESCR|andy@icc.surw.chel.su|mail x11|Mesa-2.6|Mesa-2.6
im-76|/usr/ports/mail/im|/usr/local|A set of user interfaces of Email and NetNews.|/usr/ports/mail/im/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|perl-5.00404|perl-5.00404
imap-uw-4.1|/usr/ports/mail/imap-uw|/usr/local|University of Washington IMAPv4.1/POP2/POP3 mail servers|/usr/ports/mail/imap-uw/pkg/DESCR|imap-uw@freebsd.ady.ro|mail||
kbiff-0.7.3|/usr/ports/mail/kbiff|/usr/local|mail notification utility for KDE with nice features|/usr/ports/mail/kbiff/pkg/DESCR|andreas@FreeBSD.ORG|mail kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
mailagent-3.0.61|/usr/ports/mail/mailagent|/usr/local|A sophisticated automatic mail-processing tool.|/usr/ports/mail/mailagent/pkg/DESCR|max@FreeBSD.ORG|mail|perl-5.00404|perl-5.00404
mailcrypt-3.4|/usr/ports/mail/mailcrypt|/usr/local|An Emacs/PGP interface|/usr/ports/mail/mailcrypt/pkg/DESCR|murray@cdrom.com|mail||
majorcool-1.2.0|/usr/ports/mail/majorcool|/usr/local|A Web Interface To Majordomo|/usr/ports/mail/majorcool/pkg/DESCR|andreas@FreeBSD.ORG|mail|perl-5.00404|perl-5.00404
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||
mm-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||
mew-1.92.4|/usr/ports/mail/mew|/usr/local|Message interface to Emacs Window(for emacs)|/usr/ports/mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|emacs-19.34b gmake-3.76.1|im-76 mew-common-1.92.4 perl-5.00404
mew-common-1.92.4|/usr/ports/mail/mew-common|/usr/local|Message interface to Emacs Window(common parts)|/usr/ports/mail/mew-common/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail||im-76 perl-5.00404
mew-mule-1.92.4|/usr/ports/mail/mew-mule|/usr/local|Message interface to Emacs Window(for mule)|/usr/ports/mail/mew-mule/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|gmake-3.76.1 mule-2.3|im-76 mew-common-1.92.4 perl-5.00404
mew-xemacs-1.92.4|/usr/ports/mail/mew-xemacs|/usr/local|Message interface to Emacs Window(for xemacs)|/usr/ports/mail/mew-xemacs/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|autoconf-2.12 faces-1.6.1 jpeg-6b png-1.0.2 xemacs-mule-20.4 xpm-3.4k|im-76 mew-common-1.92.4 perl-5.00404
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||
mmr-1.5.1|/usr/ports/mail/mmr|/usr/local|A curses based MIME aware mailer|/usr/ports/mail/mmr/pkg/DESCR|andy@icc.surw.chel.su|mail||
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-0.93.1|/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|ispell-3.1.20 libslang-1.2.2|ispell-3.1.20 libslang-1.2.2
nmh-0.26|/usr/ports/mail/nmh|/usr/local|A cleaned up MH mailer suite.|/usr/ports/mail/nmh/pkg/DESCR|Scott.Blachowicz@seaslug.org|mail||
p5-MIME-Tools-4.121|/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|perl-5.00404|p5-IO-stringy-1.203 p5-MIME-Base64-2.05 p5-Mail-Tools-1.11 perl-5.00404
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-Data-Dumper-2.081 p5-File-Sync-0.06 p5-Mail-Tools-1.11 p5-Net-1.0605 p5-TimeDate-1.08 perl-5.00404|p5-File-Sync-0.06 p5-Mail-Tools-1.11 p5-TimeDate-1.08 perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Mail-Tools-1.11|/usr/ports/mail/p5-Mail-Tools|/usr/local|a set of perl5 modules related to mail applications.|/usr/ports/mail/p5-Mail-Tools/pkg/DESCR|jfitz@FreeBSD.ORG|mail perl5|p5-Data-Dumper-2.081 p5-Net-1.0605 perl-5.00404|perl-5.00404
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|gmake-3.76.1 pgp-2.6.2 rsaref-2.0 unzip-5.3.2|
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||
pine-4.01|/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||
popclient-3.0b6|/usr/ports/mail/popclient|/usr/local|client for pop2, pop3, apop, rpop|/usr/ports/mail/popclient/pkg/DESCR|wosch@FreeBSD.org|mail||
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||
premail-0.45|/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|gmake-3.76.1 perl-5.00404 pgp-2.6.2 rsaref-2.0 unzip-5.3.2|perl-5.00404
procmail-3.11p7|/usr/ports/mail/procmail|/usr/local|A local mail delivery agent.|/usr/ports/mail/procmail/pkg/DESCR|ache@FreeBSD.ORG|mail||
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||
rblcheck-1.2|/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||
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||
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.101|/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.21 tcp_wrappers-7.6|
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||
smtpfeed-0.66|/usr/ports/mail/smtpfeed|/usr/local|SMTP Fast Exploding External Deliverer for Sendmail|/usr/ports/mail/smtpfeed/pkg/DESCR|itojun@itojun.org|mail||
tkrat-1.1|/usr/ports/mail/tkrat|/usr/local|A mail user agent for X with a Tcl/Tk user interface.|/usr/ports/mail/tkrat/pkg/DESCR|bgingery@gtcs.com|mail tk80|imap-uw-4.1 tcl-8.0.2 tk-8.0.2|imap-uw-4.1 tcl-8.0.2 tk-8.0.2
wmmail-0.59|/usr/ports/mail/wmmail|/usr/X11R6|A little mail notifier for the WindowMaker dock.|/usr/ports/mail/wmmail/pkg/DESCR|rom_glsa@ein-hashofet.co.il|mail x11|xpm-3.4k|xpm-3.4k
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|faces-1.6.1 nas-1.2.5 xpm-3.4k|faces-1.6.1 xpm-3.4k
xfmail-1.3|/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|xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
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 x11||
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||
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|xpm-3.4k|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|xpm-3.4k|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|xpm-3.4k|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|xpm-3.4k|xpm-3.4k
Scilab-2.3.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||xless-1.7
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|xforms-0.88.1|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||
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
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.14c|
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|Xaw3d-1.3 libsx-1.1|
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||
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||
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.76.1|
gnuplot-340|/usr/ports/math/gnuplot|/usr/local|A command-driven interactive function plotting program.|/usr/ports/math/gnuplot/pkg/DESCR|chuckr@FreeBSD.org|math graphics|gd-1.3 png-1.0.2|png-1.0.2
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||
lapack-2.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
metis-3.0|/usr/ports/math/metis|/usr/local|A package for unstructured graph partitioning.|/usr/ports/math/metis/pkg/DESCR|giffunip@asme.org|math||
py-numeric-1.3|/usr/ports/math/numpy|/usr/local|The Numeric Extension to Python|/usr/ports/math/numpy/pkg/DESCR|tg@FreeBSD.ORG|math python|python-1.5.1 tcl-8.0.2 tk-8.0.2|python-1.5.1 tcl-8.0.2 tk-8.0.2
octave-2.0.12|/usr/ports/math/octave|/usr/local|High-level interactive language for numerical computations.|/usr/ports/math/octave/pkg/DESCR|chuckr@FreeBSD.ORG|math|gmake-3.76.1|gnuplot-340 png-1.0.2
oleo-1.6|/usr/ports/math/oleo|/usr/local|A Spreadsheet Program.|/usr/ports/math/oleo/pkg/DESCR|ports@FreeBSD.ORG|math||
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|perl-5.00404|perl-5.00404
pari-1.39.03|/usr/ports/math/pari|/usr/local|Mathmatics library and advanced calculator package|/usr/ports/math/pari/pkg/DESCR|yoshiaki@kt.rim.or.jp|math||
plplot-4.99j|/usr/ports/math/plplot|/usr/local|A scientific plotting package.|/usr/ports/math/plplot/pkg/DESCR|tg@FreeBSD.ORG|math||
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|py-numeric-1.3 py-rng-1.0 python-1.5.1 tcl-8.0.2 tk-8.0.2 yorick-1.4.1|py-numeric-1.3 py-rng-1.0 python-1.5.1 tcl-8.0.2 tk-8.0.2
R-a4-0.62.2|/usr/ports/math/r|/usr/local|R a language for statistics similar to AT&T's S|/usr/ports/math/r/pkg/DESCR|maurice@serc.rmit.edu.au|math|perl-5.00404|perl-5.00404
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|py-numeric-1.3 python-1.5.1 tcl-8.0.2 tk-8.0.2|py-numeric-1.3 python-1.5.1 tcl-8.0.2 tk-8.0.2
siag-2.80|/usr/ports/math/siag|/usr/X11R6|Scheme-based spreadsheet for X11 and curses.|/usr/ports/math/siag/pkg/DESCR|itojun@itojun.org|math||
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||
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||
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|
Wingz-142|/usr/ports/math/wingz|/usr/X11R6|A Commercial Spreadsheet|/usr/ports/math/wingz/pkg/DESCR|ports@FreeBSD.ORG|math||linux_lib-2.4
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|gmake-3.76.1 qt-1.31|gnuplot-340 png-1.0.2 qt-1.31
xgraph-11.3.2|/usr/ports/math/xgraph|/usr/X11R6|A program that helps you plot graphs|/usr/ports/math/xgraph/pkg/DESCR|ports@FreeBSD.ORG|math print||
xldlas-0.85|/usr/ports/math/xldlas|/usr/X11R6|An XForms-based statistics package.|/usr/ports/math/xldlas/pkg/DESCR|giffunip@asme.org|math|xforms-0.88.1|xforms-0.88.1
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|hdf-4.1r2 jpeg-6b libhelp-1.8.1 xbae-4.6.2|xbae-4.6.2
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||
xspread-2.1|/usr/ports/math/xspread|/usr/X11R6|A spreadsheet program under X.|/usr/ports/math/xspread/pkg/DESCR|ports@FreeBSD.ORG|math|gmake-3.76.1|
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 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.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|autoconf-2.12 gmake-3.76.1 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
nte-1.5a23|/usr/ports/mbone/nte|/usr/X11R6|Multicast Network Text Editor|/usr/ports/mbone/nte/pkg/DESCR|fenner@FreeBSD.org|mbone tk42|gmake-3.76.1 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
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 tk42|autoconf-2.12 tcl-7.6 tk-4.2|tcl-7.6 tk-4.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.4a7|/usr/ports/mbone/sdr|/usr/X11R6|MBone Session Directory|/usr/ports/mbone/sdr/pkg/DESCR|fenner@FreeBSD.org|mbone tk80|gmake-3.76.1 tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
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 tk80|autoconf-2.12 gsm-1.0.10 tcl-8.0.2 tk-8.0.2|gsm-1.0.10 tcl-8.0.2 tk-8.0.2
vic-2.8|/usr/ports/mbone/vic|/usr/X11R6|MBONE video tool.|/usr/ports/mbone/vic/pkg/DESCR|fenner@FreeBSD.ORG|mbone tk80|autoconf-2.12 tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.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||ghostscript-5.10
acron-1.0|/usr/ports/misc/acron|/usr/local|Database of acronyms and abbreviations|/usr/ports/misc/acron/pkg/DESCR|ports@FreeBSD.ORG|misc||
amanda-2.3.0|/usr/ports/misc/amanda|/usr/local|The Advanced Maryland Automatic Network Disk Archiver|/usr/ports/misc/amanda/pkg/DESCR|gpalmer@FreeBSD.ORG|misc||
amanda-2.4.0p1|/usr/ports/misc/amanda24|/usr/local|The Advanced Maryland Automatic Network Disk Archiver|/usr/ports/misc/amanda24/pkg/DESCR|cwt@FreeBSD.ORG|misc|gd-1.3 gnuplot-340 png-1.0.2|gnuplot-340 png-1.0.2
astrolog-5.30|/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||
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
cal-3.5|/usr/ports/misc/cal|/usr/local|Enhanced color version of standard calendar utility|/usr/ports/misc/cal/pkg/DESCR|andy@icc.surw.chel.su|misc||
cbb-0.73|/usr/ports/misc/cbb|/usr/local|Checkbook balancing tool|/usr/ports/misc/cbb/pkg/DESCR|kline@thought.org|misc tk42|perl-5.00404 tcl-7.6 tk-4.2|ical-2.2 perl-5.00404 tcl-7.6 tcl-8.0.2 tk-4.2 tk-8.0.2
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||
colorls-2.2.5|/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||
ctk-4.1|/usr/ports/misc/ctk|/usr/local|A curses port of John Ousterhout's Tk toolkit for X11.|/usr/ports/misc/ctk/pkg/DESCR|ports@freebsd.org|misc tcl75|tcl-7.5.1|tcl-7.5.1
deco-3.8|/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||expect-5.26 tcl-8.0.2 tk-8.0.2
display-1.0|/usr/ports/misc/display|/usr/local|runs a specified command over and over.|/usr/ports/misc/display/pkg/DESCR|ports@FreeBSD.ORG|misc|sharutils-4.2|
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 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
estic-1.40|/usr/ports/misc/estic|/usr/local|Controller for ISDN TK-Anlage (PBX, Private Branch Exchange) made by Istec|/usr/ports/misc/estic/pkg/DESCR|jhs@FreeBSD.org|misc|unzip-5.3.2|
ewipe-1.0.0|/usr/ports/misc/ewipe|/usr/local|tcl/tk-based presentation tool.|/usr/ports/misc/ewipe/pkg/DESCR|itojun@itojun.org|misc tk42||
fd-1.03g|/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 fancy large ASCII art characters|/usr/ports/misc/figlet/pkg/DESCR|obrien@FreeBSD.org|misc||
git-4.3.17|/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||
gnuls-3.16|/usr/ports/misc/gnuls|/usr/local|FreeBSD port of colorized GNU `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||
gyvescm-0.0.10|/usr/ports/misc/gyvescm|/usr/local|scheme library for the GYVE graphic editor|/usr/ports/misc/gyvescm/pkg/DESCR|Nakai@technologist.com|misc|guile-1.2 guileobjc-0.3.8 libobjects-0.1.19|
ical-2.2|/usr/ports/misc/ical|/usr/local|A calendar application.|/usr/ports/misc/ical/pkg/DESCR|erich@FreeBSD.ORG|misc tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
iselect-1.0.4|/usr/ports/misc/iselect|/usr/local|Interactive Selection Tool|/usr/ports/misc/iselect/pkg/DESCR|rse@engelschall.com|misc||
jargon-4.0.0|/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.0|/usr/ports/misc/kdeutils|/usr/local|Utilities for the KDE integrated X11 desktop|/usr/ports/misc/kdeutils/pkg/DESCR|se@freebsd.org|misc kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.33
korganizer-0.9|/usr/ports/misc/korganizer|/usr/local|A Calendar / Scheduling tool (PIM) for KDE|/usr/ports/misc/korganizer/pkg/DESCR|hanspb@persbraten.vgs.no|misc kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
kp-0.96|/usr/ports/misc/kp|/usr/X11R6|The Keyboard Practicer, touch-type training program|/usr/ports/misc/kp/pkg/DESCR|asami@FreeBSD.org|misc tk41||tcl-7.5.1 tk-4.1.1
kproject-0.1|/usr/ports/misc/kproject|/usr/local|Project planner for KDE (preview version).|/usr/ports/misc/kproject/pkg/DESCR|hanspb@persbraten.vgs.no|misc kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 libtool-1.2 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
kwatch-0.3|/usr/ports/misc/kwatch|/usr/local|KDE/Qt log file viewer|/usr/ports/misc/kwatch/pkg/DESCR|hanspb@persbraten.vgs.no|misc x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
less-332|/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||
magicpoint-1.03a|/usr/ports/misc/magicpoint|/usr/X11R6|an X11-based presentation tool.|/usr/ports/misc/magicpoint/pkg/DESCR|itojun@itojun.org|misc||
mc-4.1.35|/usr/ports/misc/mc|/usr/local|Midnight Commander, a free Norton Commander Clone|/usr/ports/misc/mc/pkg/DESCR|ports@FreeBSD.ORG|misc||
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.8.1|/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
mshell-1.0|/usr/ports/misc/mshell|/usr/local|A Unix menuing shell.|/usr/ports/misc/mshell/pkg/DESCR|jmz@FreeBSD.org|misc||
nwrite-1.9|/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||
offix-trash-2.4|/usr/ports/misc/offix-trash|/usr/X11R6|Trash from OffiX|/usr/ports/misc/offix-trash/pkg/DESCR|ruslan@shevchenko.kiev.ua|x11 offix|gmake-3.76.1 libdnd-1.1|libdnd-1.1
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-Search-0.2|/usr/ports/misc/p5-Search|/usr/local|perl5 module to provide framework for multiple searches.|/usr/ports/misc/p5-Search/pkg/DESCR|jfitz@FreeBSD.ORG|misc perl5|perl-5.00404|perl-5.00404
plan-1.7.1|/usr/ports/misc/plan|/usr/local|An X/Motif schedule planner with calendar|/usr/ports/misc/plan/pkg/DESCR|deischen@iworks.InterWorks.org|misc||
rpm-2.5.1|/usr/ports/misc/rpm|/usr/local|The Red Hat Package Manager|/usr/ports/misc/rpm/pkg/DESCR|tg@FreeBSD.ORG|misc|gdbm-1.7.3 gmake-3.76.1|
screen-3.7.4|/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|Nakai@technologist.com|misc|guile-1.2 guileobjc-0.3.8 libobjects-0.1.19|
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|perl-5.00404|perl-5.00404 samba-1.9.18.8
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||
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||
teapot-1.01|/usr/ports/misc/teapot|/usr/local|Full-screen curses based spread sheet program|/usr/ports/misc/teapot/pkg/DESCR|andy@icc.surw.chel.su|misc||
tkcron-2.12|/usr/ports/misc/tkcron|/usr/local|A frontend to crontab.|/usr/ports/misc/tkcron/pkg/DESCR|sander@haldjas.folklore.ee|misc tk80||tcl-8.0.2 tk-8.0.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 tk80||tcl-8.0.2 tk-8.0.2
tkman-2.0.6|/usr/ports/misc/tkman|/usr/local|A Tcl/Tk based manual browser|/usr/ports/misc/tkman/pkg/DESCR|tg@freebsd.org|misc tk80|tcl-8.0.2 tk-8.0.2|glimpse-4.0 rman-3.0.5 tcl-8.0.2 tk-8.0.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||
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||
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||
x-files-1.43|/usr/ports/misc/x-files|/usr/X11R6|a nice Tk-based filemanager|/usr/ports/misc/x-files/pkg/DESCR|dmaddox@scsn.net|misc tk80|tcl-8.0.2 tk-8.0.2|
xcalendar-4.0|/usr/ports/misc/xcalendar|/usr/X11R6|A calendar with a notebook for X11 (internationarized version)|/usr/ports/misc/xcalendar/pkg/DESCR|mita@jp.FreeBSD.org|misc||
xd-2.3|/usr/ports/misc/xd|/usr/local|Xd is yet another dump utility.|/usr/ports/misc/xd/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|misc||
xdelta-0.18|/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.7.3|
xgas-1.0|/usr/ports/misc/xgas|/usr/X11R6|The animated simulation of an ideal gas|/usr/ports/misc/xgas/pkg/DESCR|nakai@mlab.t.u-tokyo.ac.jp|misc||
xinvest-2.5.1|/usr/ports/misc/xinvest|/usr/X11R6|A personal finance tracking and performance tool|/usr/ports/misc/xinvest/pkg/DESCR|ports@FreeBSD.org|misc|xpm-3.4k|xpm-3.4k
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@neosoft.com|misc||
xmaddressbook-1.5.3|/usr/ports/misc/xmaddressbook|/usr/X11R6|XmAddressbook is a X11/Motif based addressbook program.|/usr/ports/misc/xmaddressbook/pkg/DESCR|shanee@augusta.de|misc||
xmdiary-3.0.1|/usr/ports/misc/xmdiary|/usr/X11R6|Personal and group calendar utility.|/usr/ports/misc/xmdiary/pkg/DESCR|mi@aldan.ziplink.net|misc||
xopps-1.13|/usr/ports/misc/xopps|/usr/X11R6|A tool which lets you draw gantt charts.|/usr/ports/misc/xopps/pkg/DESCR|ports@FreeBSD.org|misc||
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||
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||
xtimer-0.8087|/usr/ports/misc/xtimer|/usr/X11R6|A super simple digital timer for X11|/usr/ports/misc/xtimer/pkg/DESCR|candy@fct.kgc.co.jp|misc||
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|xpm-3.4k|xpm-3.4k
ytree-1.63|/usr/ports/misc/ytree|/usr/local|DOS-XTREE(tm) similar file manager|/usr/ports/misc/ytree/pkg/DESCR|andy@icc.surw.chel.su|misc||
zorro-1.1.8|/usr/ports/misc/zorro|/usr/local|A simple to-do list manager.|/usr/ports/misc/zorro/pkg/DESCR|shanee@augusta.de|misc tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
SSLtelnet-0.11|/usr/ports/net/SSLtelnet|/usr/local|SSL enhanced telnet/telnetd|/usr/ports/net/SSLtelnet/pkg/DESCR|issei@t-cnet.or.jp|net security|SSLeay-0.8.1b rsaref-2.0|SSLeay-0.8.1b rsaref-2.0
am-utils-6.0a16|/usr/ports/net/am-utils|/usr/local|The Amd automounter suite of utilities|/usr/ports/net/am-utils/pkg/DESCR|jseger@FreeBSD.org|net||
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||
arpwatch-2.0.2|/usr/ports/net/arpwatch|/usr/local|Monitor arp & rarp requests|/usr/ports/net/arpwatch/pkg/DESCR|brian@awfulhak.org|net||
ascend-radius-970424|/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.06c|/usr/ports/net/bb|/usr/local|big brother Unix Network Monitor|/usr/ports/net/bb/pkg/DESCR|andreas@FreeBSD.ORG|net||
bind-8.1.2|/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|Bing is a point-to-point bandwith measurement tool.|/usr/ports/net/bing/pkg/DESCR|jseger@freebsd.org|net||
bitchx-75p1|/usr/ports/net/bitchx|/usr/local|An alternative ircII color client.|/usr/ports/net/bitchx/pkg/DESCR|griffin@blackhole.iceworld.org|net||
bnc-2.4.3|/usr/ports/net/bnc|/usr/local|a simple IRC relay proxy with support for virtual hosting|/usr/ports/net/bnc/pkg/DESCR|billf@chc-chimes.com|net||
cap-6.0.198|/usr/ports/net/cap|/usr/local|Columbia AppleTalk Package for UNIX, communication between Macintosh & UNIX|/usr/ports/net/cap/pkg/DESCR|ports@FreeBSD.ORG|net||
cftp-0.9.1|/usr/ports/net/cftp|/usr/local|Comfortable FTP, a full screen ftp client|/usr/ports/net/cftp/pkg/DESCR|andy@icc.surw.chel.su|net||
choparp-971007|/usr/ports/net/choparp|/usr/local|simple proxy arp daemon.|/usr/ports/net/choparp/pkg/DESCR|itojun@itojun.org|net||
clog-1.6|/usr/ports/net/clog|/usr/local|tcp connection logger daemon|/usr/ports/net/clog/pkg/DESCR|obrien@FreeBSD.org|net security||
cnet-1.4p3|/usr/ports/net/cnet|/usr/local|A networking simulator|/usr/ports/net/cnet/pkg/DESCR|ports@FreeBSD.ORG|net|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
cvsup-15.4.2|/usr/ports/net/cvsup|/usr/local|A network file distribution and update system for CVS repositories.|/usr/ports/net/cvsup/pkg/DESCR|jdp@FreeBSD.org|devel net|modula-3-3.6 modula-3-lib-3.6|modula-3-lib-3.6
cvsup-bin-15.4.2|/usr/ports/net/cvsup-bin|/usr/local|A network file distribution and update system for CVS repositories.|/usr/ports/net/cvsup-bin/pkg/DESCR|axl@iafrica.com|devel net||
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||cvsup-15.4.2 modula-3-lib-3.6
delegate-5.5.7|/usr/ports/net/delegate|/usr/local|General purpose TCP/IP proxy system|/usr/ports/net/delegate/pkg/DESCR|max@FreeBSD.ORG|net www japanese||
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||
dict-1.4.8|/usr/ports/net/dict|/usr/local|Dictionary Server Protocol (RFC2229) client|/usr/ports/net/dict/pkg/DESCR|josh@quick.net|net|gmake-3.76.1|
bsddip-1.02|/usr/ports/net/dip|/usr/local|Dialup IP program|/usr/ports/net/dip/pkg/DESCR|joerg@FreeBSD.ORG|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|perl-5.00404|p5-Net-DNS-0.12 perl-5.00404
echoping-2.1b|/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||
fping-1.20|/usr/ports/net/fping|/usr/local|quickly ping N hosts to determine their reachability w/o flooding the network|/usr/ports/net/fping/pkg/DESCR|obrien@NUXI.com|net|sharutils-4.2|
freewais-sf-2.1.2|/usr/ports/net/freewais-sf|/usr/local|An enhanced Wide Area Information Server|/usr/ports/net/freewais-sf/pkg/DESCR|giffunip@asme.org|net databases||
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||
ftpfind-0.99|/usr/ports/net/ftpfind|/usr/local|find directory&file on a ftp server|/usr/ports/net/ftpfind/pkg/DESCR|wub@green.an.egg.or.jp|net||
ftpsearch-1.0|/usr/ports/net/ftpsearch|/usr/local|A system for indexing contents on ftp servers.|/usr/ports/net/ftpsearch/pkg/DESCR|Tor.Egge@idi.ntnu.no|net||
ftptool-4.6|/usr/ports/net/ftptool|/usr/X11R6|Graphic ftp shell based on xview|/usr/ports/net/ftptool/pkg/DESCR|janek@gaja.ipan.lublin.pl|net|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
gated-3.5.9|/usr/ports/net/gated|/usr/local|Routing protocol daemon.|/usr/ports/net/gated/pkg/DESCR|peter@FreeBSD.ORG|net||
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||
hesiod-3.0.2|/usr/ports/net/hesiod|/usr/local|A directory service built on DNS and BIND.|/usr/ports/net/hesiod/pkg/DESCR|n@nectar.com|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||
irc-2.9.4|/usr/ports/net/irc|/usr/local|The 'Internet Relay Chat' Server.|/usr/ports/net/irc/pkg/DESCR|torstenb@FreeBSD.ORG|net||
ircii-4.4|/usr/ports/net/ircII|/usr/local|The 'Internet Relay Chat' Client.|/usr/ports/net/ircII/pkg/DESCR|torstenb@FreeBSD.ORG|net||
ircii-2.8.2-epic3.004|/usr/ports/net/ircii-epic|/usr/local|An enhanced version of ircII, the Internet Relay Chat client.|/usr/ports/net/ircii-epic/pkg/DESCR|mph@freebsd.org|net||
ircd-hybrid-5.3|/usr/ports/net/ircd-hybrid-5|/usr/local|An IRC Server.|/usr/ports/net/ircd-hybrid-5/pkg/DESCR|desmo@bandwidth.org|net||
isc-dhcp-1.0.2|/usr/ports/net/isc-dhcp|/usr/local|ISC Dynamic Host Configuration Protocol client and server code|/usr/ports/net/isc-dhcp/pkg/DESCR|jseger@FreeBSD.org|net||
isc-dhcp2.b1.6|/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||
kdenetwork-1.0|/usr/ports/net/kdenetwork|/usr/local|Network modules for the KDE integrated X11 desktop|/usr/ports/net/kdenetwork/pkg/DESCR|se@freebsd.org|net news kde|gdbm-1.7.3 giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 kdesupport-1.0 qt-1.33 uulib-0.5.13|giflib-3.0 jpeg-6b kdelibs-1.0 kdesupport-1.0 qt-1.33 uulib-0.5.13
kirc-0.9.3|/usr/ports/net/kirc|/usr/local|KDE project's IRC client|/usr/ports/net/kirc/pkg/DESCR|andreas@FreeBSD.ORG|net kde|bzip2-0.1p2 giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
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|x11 kde net|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
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||
lftp-1.0.1|/usr/ports/net/lftp|/usr/local|Shell-like command line ftp client.|/usr/ports/net/lftp/pkg/DESCR|andy@icc.surw.chel.su|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||
licq-0.32-a|/usr/ports/net/licq|/usr/local|X11 and QT-based ICQ-compatible program.|/usr/ports/net/licq/pkg/DESCR|brianfeldman@hotmail.com|net|gmake-3.76.1 qt-1.33|qt-1.33
llnlxdir-2.1|/usr/ports/net/llnlxdir|/usr/X11R6|Motif FTP client with drag-and-drop file transfer.|/usr/ports/net/llnlxdir/pkg/DESCR|dima@FreeBSD.ORG|net||
llnlxftp-2.1|/usr/ports/net/llnlxftp|/usr/X11R6|Motif FTP client|/usr/ports/net/llnlxftp/pkg/DESCR|dima@FreeBSD.ORG|net||
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
micq-19980626|/usr/ports/net/micq|/usr/local|Text-based ICQ implementation.|/usr/ports/net/micq/pkg/DESCR|mph@freebsd.org|net||
mirror-2.9|/usr/ports/net/mirror|/usr/local|Mirror packages on remote sites.|/usr/ports/net/mirror/pkg/DESCR|torstenb@FreeBSD.ORG|net||perl-5.00404
moxftp-2.2|/usr/ports/net/moxftp|/usr/X11R6|ftp shell under X Window System.|/usr/ports/net/moxftp/pkg/DESCR|ports@FreeBSD.ORG|net||
mpd-1.0b4|/usr/ports/net/mpd|/usr/local|Multilink PPP daemon|/usr/ports/net/mpd/pkg/DESCR|andy@icc.surw.chel.su|net||
mpich-1.1.0|/usr/ports/net/mpich|/usr/local|Message Passing Interface (MPI) Library|/usr/ports/net/mpich/pkg/DESCR|dbader@eece.unm.edu|net||
mrt-1.4.8a|/usr/ports/net/mrt|/usr/local|Multi-threaded Routing Toolkit|/usr/ports/net/mrt/pkg/DESCR|itojun@itojun.org|net||
mrtg-2.5.1|/usr/ports/net/mrtg|/usr/local|the multi-router traffic grapher|/usr/ports/net/mrtg/pkg/DESCR|jfitz@FreeBSD.ORG|net|gd-1.3 perl-5.00404|p5-Curses-1.02 p5-PV-1.0 perl-5.00404
ncftp-1.9.5|/usr/ports/net/ncftp|/usr/local|FTP replacement with advanced user interface.|/usr/ports/net/ncftp/pkg/DESCR|obrien@FreeBSD.org|net||
ncftp-2.4.3|/usr/ports/net/ncftp2|/usr/local|FTP replacement with advanced user interface.|/usr/ports/net/ncftp2/pkg/DESCR|ache@FreeBSD.ORG|net||
ncftp-3.0b14|/usr/ports/net/ncftp3|/usr/local|FTP replacement with advanced user interface.|/usr/ports/net/ncftp3/pkg/DESCR|obrien@FreeBSD.ORG|net||
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||
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.0|/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||
nslint-2.0a5|/usr/ports/net/nslint|/usr/local|perform consistency checks on DNS files|/usr/ports/net/nslint/pkg/DESCR|dglo@SSEC.WISC.EDU|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
ntp-4.0.73e|/usr/ports/net/ntp|/usr/local|The Network Time Protocol Distribution|/usr/ports/net/ntp/pkg/DESCR|andreas@FreeBSD.ORG|net||
omi-alpha-8|/usr/ports/net/omi|/usr/local|"mirror" subtrees of FTP servers|/usr/ports/net/omi/pkg/DESCR|ache@FreeBSD.org|net||
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|perl-5.00404|perl-5.00404
p5-Net-1.0605|/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-Data-Dumper-2.081 perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|p5-Locale-Codes-1.00 perl-5.00404
p5-SNMP-1.6|/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|perl-5.00404 ucd-snmp-3.5|perl-5.00404
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||
pmf-1.13.1|/usr/ports/net/pmf|/usr/local|Padrone's Mud Frontend.|/usr/ports/net/pmf/pkg/DESCR|ports@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|x11 net sysutils|gmake-3.76.1 qt-1.31|qt-1.31
proftpd-1.0.3|/usr/ports/net/proftpd|/usr/local|Highly configurable ftp daemon.|/usr/ports/net/proftpd/pkg/DESCR|stephane@lituus.fr|net|gmake-3.76.1|
radius-2.4.23|/usr/ports/net/radius|/usr/local|A remote authentication server.|/usr/ports/net/radius/pkg/DESCR|torstenb@FreeBSD.ORG|net||
radiusd-cistron-1.5.4.2|/usr/ports/net/radiusd-cistron|/usr/local|A remote authentication server (radius daemon).|/usr/ports/net/radiusd-cistron/pkg/DESCR|john@nlc.net.au|net||
ratoolset-3.5.2|/usr/ports/net/ratoolset|/usr/local|A suite of policy analysis tools.|/usr/ports/net/ratoolset/pkg/DESCR|jfitz@FreeBSD.ORG|net tk41|tcl-7.5.1 tk-4.1.1|tcl-7.5.1 tk-4.1.1
rdist-6.1.4|/usr/ports/net/rdist6|/usr/local|A network file distribution/synchronisation utility.|/usr/ports/net/rdist6/pkg/DESCR|peter@FreeBSD.org|net||
ripetools-2.2|/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||
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.0.18|/usr/ports/net/rsync|/usr/local|A network file distribution/synchronisation utility.|/usr/ports/net/rsync/pkg/DESCR|obrien@FreeBSD.org|net||
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|tcp_wrappers-7.6|tcp_wrappers-7.6
samba-1.9.18.8|/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.8|/usr/ports/net/scotty|/usr/local|network management extensions to tcl|/usr/ports/net/scotty/pkg/DESCR|phk@freebsd.org|net tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
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.0|/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||
sic-0.10a|/usr/ports/net/sic|/usr/local|Another 'Internet Relay Chat' Client.|/usr/ports/net/sic/pkg/DESCR|sec@42.org|net||
sirc-2.211|/usr/ports/net/sirc|/usr/local|Small (150k), fast, perl-based IRC client|/usr/ports/net/sirc/pkg/DESCR|Studded@dal.net|net|perl-5.00404|perl-5.00404
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.2.1|/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||
smurflog-1.0|/usr/ports/net/smurflog|/usr/local|A program to assist logging of smurf attacks.|/usr/ports/net/smurflog/pkg/DESCR|nectar@FreeBSD.ORG|net||
sniffit-0.3.5|/usr/ports/net/sniffit|/usr/local|A packet sniffer program.  For educational use.|/usr/ports/net/sniffit/pkg/DESCR|obrien@FreeBSD.ORG|net security||
socks5-1.0.6|/usr/ports/net/socks5|/usr/local|SOCKS v5 application layer gateway and clients|/usr/ports/net/socks5/pkg/DESCR|imp@freebsd.org|net security||
spegla-0.93p2|/usr/ports/net/spegla|/usr/local|A mirror program for FTP sites (written in C)|/usr/ports/net/spegla/pkg/DESCR|jkh@FreeBSD.org|net||
strobe-1.04|/usr/ports/net/strobe|/usr/local|Fast scatter/gather TCP port scanner|/usr/ports/net/strobe/pkg/DESCR|jseger@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|gibbs@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|igor@zynaps.ru|net||
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-4.1.3|/usr/ports/net/tcptrace|/usr/local|a TCP dump file analysis tool|/usr/ports/net/tcptrace/pkg/DESCR|fenner@FreeBSD.ORG|net||
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-6.0.192 rzsz-3.48
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.0a7|/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||
tkirc-1.202|/usr/ports/net/tkirc|/usr/local|A GUI for the ircII Internet Relay Chat client.|/usr/ports/net/tkirc/pkg/DESCR|brianfeldman@hotmail.com|net tk80||ircii-4.4 tcl-8.0.2 tk-8.0.2
traceroute-961230|/usr/ports/net/traceroute|/usr/local|A version of 'traceroute' that shows the AS network number of each hop.|/usr/ports/net/traceroute/pkg/DESCR|chris@vader.org|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||
ttt-1.2|/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 tk80|blt-2.4c tcl-8.0.2 tk-8.0.2|blt-2.4c tcl-8.0.2 tk-8.0.2
ucd-snmp-3.5|/usr/ports/net/ucd-snmp|/usr/local|An extendable SNMP implimentation |/usr/ports/net/ucd-snmp/pkg/DESCR|gpalmer@FreeBSD.ORG|net||
vnc-3.3.2|/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 x11|perl-5.00404|perl-5.00404
vncjava-3.1.1|/usr/ports/net/vncjava|/usr/X11R6|Java classes to allow Java-capable browsers to use the VNC server.|/usr/ports/net/vncjava/pkg/DESCR|msmith@FreeBSD.org|net|jdk-1.1.5|perl-5.00404 vnc-3.3.2
freeWAIS-0.5|/usr/ports/net/wais|/usr/local|freeWAIS from CNIDR|/usr/ports/net/wais/pkg/DESCR|ports@FreeBSD.org|net||
wget-1.5.2|/usr/ports/net/wget|/usr/local|Retrieve files from the 'net via HTTP and FTP.|/usr/ports/net/wget/pkg/DESCR|ports@FreeBSD.ORG|net||
wide-dhcp-1.4.0p1|/usr/ports/net/wide-dhcp|/usr/local|Dynamic Host Configuration Protocol, WIDE-Implimentation.|/usr/ports/net/wide-dhcp/pkg/DESCR|hideyuki@sat.t.u-tokyo.ac.jp|net||
wu-ftpd-2.4.2b17|/usr/ports/net/wu-ftpd|/usr/local|A replacement ftp server for Un*x systems.|/usr/ports/net/wu-ftpd/pkg/DESCR|ache@FreeBSD.org|net||
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||
xicq-062398|/usr/ports/net/xicq|/usr/local|Xtropy's ICQ Client|/usr/ports/net/xicq/pkg/DESCR|scrappy@freebsd.org|net|gmake-3.76.1|
xipmsg-0.8087|/usr/ports/net/xipmsg|/usr/X11R6|A popup style message communication tool for X11|/usr/ports/net/xipmsg/pkg/DESCR|candy@fct.kgc.co.jp|net||
yagirc-0.64|/usr/ports/net/yagirc|/usr/local|A graphical IRC client scriptable in Perl.|/usr/ports/net/yagirc/pkg/DESCR|mph@freebsd.org|net|gmake-3.76.1 gtk-1.0.4 perl-5.00404|gtk-1.0.4 perl-5.00404
yale-tftpd-3.0|/usr/ports/net/yale-tftpd|/usr/local|Enhanced tftpd(8) from Yale University and cisco Systems|/usr/ports/net/yale-tftpd/pkg/DESCR|ports@FreeBSD.org|net||
ytalk-3.0.2|/usr/ports/net/ytalk|/usr/local|A new "talk" that can talk to multiple parties at once|/usr/ports/net/ytalk/pkg/DESCR|ports@FreeBSD.ORG|net||
zebra-980604|/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||
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||
zircon-1.18.155|/usr/ports/net/zircon|/usr/local|An X11 interface to Internet Relay Chat.|/usr/ports/net/zircon/pkg/DESCR|jseger@FreeBSD.org|net tk81|tcl-8.1.a2 tk-8.1.a2|tcl-8.1.a2 tk-8.1.a2
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.76.1|unzip-5.3.2 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||
cnews-cr.g|/usr/ports/news/cnews|/usr/local|An nntp server.|/usr/ports/news/cnews/pkg/DESCR|ports@FreeBSD.ORG|news||
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.01|
dnews-4.6n|/usr/ports/news/dnews|/usr/local|commercial nntp server with feature and speed enhancements over inn and cnews|/usr/ports/news/dnews/pkg/DESCR|andreas@FreeBSD.ORG|news||
inn-1.7.2|/usr/ports/news/inn|/usr/local|InterNetNews -- the Internet meets Netnews.|/usr/ports/news/inn/pkg/DESCR|torstenb@FreeBSD.ORG|news|perl-5.00404|perl-5.00404
knews-1.0b.0|/usr/ports/news/knews|/usr/X11R6|A threaded nntp newsreader for X.|/usr/ports/news/knews/pkg/DESCR|andreas@FreeBSD.ORG|x11 news|jpeg-6b png-1.0.2 xpm-3.4k|jpeg-6b mp-letter-3.0.1 png-1.0.2 xpm-3.4k
ifmail-2.14|/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||
leafnode-1.4|/usr/ports/news/leafnode|/usr/local|Leafnode is a USENET software package designed for small sites.|/usr/ports/news/leafnode/pkg/DESCR|brian@awfulhak.org|news||
newsfetch-1.2|/usr/ports/news/newsfetch|/usr/local|download news articles from NNTP server.|/usr/ports/news/newsfetch/pkg/DESCR|itojun@itojun.org|news||
nn-6.5.3|/usr/ports/news/nn|/usr/local|NN newsreader.|/usr/ports/news/nn/pkg/DESCR|ports@FreeBSD.ORG|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.76.1 pgp-2.6.2 rsaref-2.0 unzip-5.3.2|
p5-News-Article-1.14|/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|perl-5.00404|p5-Net-1.0605 p5-Net-DNS-0.12 p5-PGP-Sign-0.08 perl-5.00404 pgp-2.6.2 rsaref-2.0
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-News-Article-1.14 perl-5.00404|p5-Net-1.0605 p5-Net-DNS-0.12 p5-News-Article-1.14 p5-PGP-Sign-0.08 perl-5.00404 pgp-2.6.2 rsaref-2.0
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
rkive3.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.2|/usr/ports/news/slrn|/usr/local|SLang-based newsreader|/usr/ports/news/slrn/pkg/DESCR|xaa@xaa.iae.nl|news|libslang-1.2.2|libslang-1.2.2
slurp-1.10|/usr/ports/news/slurp|/usr/local|A passive NNTP client that retrieves Usenet news articles from a remote server.|/usr/ports/news/slurp/pkg/DESCR|jraynard@FreeBSD.ORG|news||
suck-3.9.3|/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.76.1|
tinpre-1.4-980618|/usr/ports/news/tin|/usr/local|TIN newsreader (termcap based)|/usr/ports/news/tin/pkg/DESCR|ache@FreeBSD.org|news||
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.0b66|/usr/ports/news/trn4|/usr/local|Version 4.0 of the threaded readnews newsreader.|/usr/ports/news/trn4/pkg/DESCR|mph@freebsd.org|news||
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|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
9menu-1.5|/usr/ports/plan9/9menu|/usr/local|A simple menu patterened after plan9|/usr/ports/plan9/9menu/pkg/DESCR|erich@FreeBSD.org|plan9||
9term-1.6.3|/usr/ports/plan9/9term|/usr/local|An X11 program which emulates a plan9 window.|/usr/ports/plan9/9term/pkg/DESCR|erich@FreeBSD.org|plan9|sam-4.3|
9wm-1.1|/usr/ports/plan9/9wm|/usr/X11R6|An 8 1/2-like Window Manager for X|/usr/ports/plan9/9wm/pkg/DESCR|erich@FreeBSD.org|plan9||
libXgFonts-1.0|/usr/ports/plan9/Xg|/usr/X11R6|These are the UNICODE fonts for use with 9term and sam.|/usr/ports/plan9/Xg/pkg/DESCR|erich@FreeBSD.org|plan9||
rc-1.5b1|/usr/ports/plan9/rc|/usr/local|A unix incarnation of the plan9 shell.|/usr/ports/plan9/rc/pkg/DESCR|erich@FreeBSD.org|plan9||
sam-4.3|/usr/ports/plan9/sam|/usr/local|A unix version of Rob Pike's editor for plan9|/usr/ports/plan9/sam/pkg/DESCR|erich@FreeBSD.org|plan9||
wily-0.13.36|/usr/ports/plan9/wily|/usr/X11R6|A clone of the Plan9 editor `acme'.|/usr/ports/plan9/wily/pkg/DESCR|jkoshy@freebsd.org|plan9 editors||
a2ps-letter-4.3|/usr/ports/print/a2ps43|/usr/local|Formats an ascii file for printing on a postscript printer.|/usr/ports/print/a2ps43/pkg/DESCR|obrien@FreeBSD.org|print||
a2ps-Letter-4.10.3|/usr/ports/print/a2ps|/usr/local|Formats an ascii file for printing on a postscript printer.|/usr/ports/print/a2ps/pkg/DESCR|chuckr@FreeBSD.org|print||
acroread-3.01|/usr/ports/print/acroread|/usr/local|View, distribute and print PDF documents.|/usr/ports/print/acroread/pkg/DESCR|tg@FreeBSD.ORG|print||linux_lib-2.4
afm-1.0|/usr/ports/print/afm|/usr/local|Adobe Font Metrics.|/usr/ports/print/afm/pkg/DESCR|ports@FreeBSD.ORG|print||
apsfilter-4.9.9|/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.1p2 ghostscript-5.10 html2ps-1.0 jpeg-6b netpbm-94.3.1 perl-5.00404 tiff-3.4 transfig-3.2 xpm-3.4k
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.physics.montana.edu|print||
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|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-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||
c2ps-a4-4.0|/usr/ports/print/c2ps|/usr/local|A PostScript pretty-printer for C source.|/usr/ports/print/c2ps/pkg/DESCR|mph@freebsd.org|print||
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|sutton@aardvark.apana.org.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.74|/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.0|/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||
enscript-A4-1.5.0|/usr/ports/print/enscript|/usr/local|ASCII-to-PostScript filter.|/usr/ports/print/enscript/pkg/DESCR|kline@thought.org|print|gmake-3.76.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||enscript-A4-1.5.0
freetype-1.1|/usr/ports/print/freetype|/usr/local|A free and portable TrueType font rendering engine|/usr/ports/print/freetype/pkg/DESCR|jseger@FreeBSD.org|print|gmake-3.76.1|
ghostscript-2.6.2|/usr/ports/print/ghostscript|/usr/local|GNU Postscript interpreter.|/usr/ports/print/ghostscript/pkg/DESCR|ports@FreeBSD.org|print||
ghostscript-3.53|/usr/ports/print/ghostscript3|/usr/local|Aladdin Postscript interpreter.|/usr/ports/print/ghostscript3/pkg/DESCR|ports@FreeBSD.org|print||
ghostscript-4.03|/usr/ports/print/ghostscript4|/usr/local|Aladdin Postscript interpreter.|/usr/ports/print/ghostscript4/pkg/DESCR|andreas@FreeBSD.ORG|print||
ghostscript-5.10|/usr/ports/print/ghostscript5|/usr/local|Aladdin Postscript interpreter.|/usr/ports/print/ghostscript5/pkg/DESCR|andreas@FreeBSD.ORG|print|jpeg-6b png-1.0.2 unzip-5.3.2|
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||
gp-2.5|/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.0.7 Xaw3d-1.3 a2ps-Letter-4.10.3 dvips-5.74 freetype-1.1 gv-3.5.8 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 png-1.0.2 psutils-a4-1.17 tcl-7.6 tiff-3.4 tk-4.2 xdvi-pl20
gv-3.5.8|/usr/ports/print/gv|/usr/X11R6|A PostScript and PDF previewer.|/usr/ports/print/gv/pkg/DESCR|ports@freebsd.org|print|Xaw3d-1.3|Xaw3d-1.3
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-1.0|/usr/ports/print/html2ps|/usr/local|HTML to PostScript converter|/usr/ports/print/html2ps/pkg/DESCR|andreas@FreeBSD.ORG|lang www perl5|ImageMagick-4.0.7 freetype-1.1 ghostscript-5.10 gmake-3.76.1 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 netpbm-94.3.1 p5-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 p5-PerlMagick-1.38 p5-libwww-5.33 perl-5.00404 png-1.0.2 teTeX-0.4 tiff-3.4 transfig-3.2 unzip-5.3.2 weblint-1.020 xpm-3.4k|perl-5.00404
klyx-0.9.3|/usr/ports/print/klyx|/usr/local|The KDE/Qt document processor.|/usr/ports/print/klyx/pkg/DESCR|hanspb@persbraten.vgs.no|print kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
latex2e-98.01|/usr/ports/print/latex|/usr/local|LaTeX2e - a TeX macro package|/usr/ports/print/latex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.76.1 tex-3.14159|tex-3.14159
lout-3.11|/usr/ports/print/lout|/usr/local|A document creation system like LaTeX, but smaller|/usr/ports/print/lout/pkg/DESCR|oly@world.std.com|print|gmake-3.76.1|
lprps-2.5|/usr/ports/print/lprps|/usr/local|PostScript printer filter package supporting a bidirectional serial channel|/usr/ports/print/lprps/pkg/DESCR|obrien@FreeBSD.org|print||
lyx-0.12.1pre6|/usr/ports/print/lyx|/usr/local|A graphical frontend for LaTeX (nearly WYSIWYG)|/usr/ports/print/lyx/pkg/DESCR|andreas@FreeBSD.ORG|print|gmake-3.76.1 teTeX-0.4 xforms-0.88.1 xpm-3.4k|ispell-3.1.20 teTeX-0.4 xforms-0.88.1 xpm-3.4k
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-2.4.3|/usr/ports/print/mgv|/usr/X11R6|A PostScript and PDF previewer.|/usr/ports/print/mgv/pkg/DESCR|ports@freebsd.org|print|gmake-3.76.1 xpm-3.4k|xpm-3.4k
mp-letter-3.0.1|/usr/ports/print/mp|/usr/local|A PostScript printing util for ASCII files, email, USENET news articles, etc.|/usr/ports/print/mp/pkg/DESCR|obrien@FreeBSD.org|print|gmake-3.76.1|
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-T89|/usr/ports/print/musixtex|/usr/local|A set of TeX macros to typeset music.|/usr/ports/print/musixtex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.76.1 tex-3.14159|tex-3.14159
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 x11 offix|gmake-3.76.1 libdnd-1.1 xpm-3.4k|libdnd-1.1 xpm-3.4k
pkfonts300-1.0|/usr/ports/print/pkfonts|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts/pkg/DESCR|ports@FreeBSD.ORG|print||
psutils-a4-1.17|/usr/ports/print/psutils|/usr/local|Utilities for manipulating PostScript documents.|/usr/ports/print/psutils/pkg/DESCR|jmz@FreeBSD.org|print||
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|tg@FreeBSD.org|print||
teTeX-0.4|/usr/ports/print/teTeX|/usr/local|TeX distribution for UNIX compatible systems|/usr/ports/print/teTeX/pkg/DESCR|br@schiele-ct.de|print|gmake-3.76.1|
tex-3.14159|/usr/ports/print/tex|/usr/local|TeX and METAFONT.|/usr/ports/print/tex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.76.1|
texinfo-2.124|/usr/ports/print/texinfo|/usr/local|Typeset Texinfo files for printing. Uses TeX.|/usr/ports/print/texinfo/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.76.1 tex-3.14159|tex-3.14159
tr2latex-2.2|/usr/ports/print/tr2latex|/usr/local|Convert a document from troff to LaTeX.|/usr/ports/print/tr2latex/pkg/DESCR|tg@FreeBSD.org|print||
transfig-3.2|/usr/ports/print/transfig|/usr/X11R6|Tools to convert Xfig's .fig files.|/usr/ports/print/transfig/pkg/DESCR|chuckr@freebsd.org|print|jpeg-6b xpm-3.4k|jpeg-6b netpbm-94.3.1 tiff-3.4 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|modula-3-3.6 modula-3-lib-3.6|modula-3-lib-3.6
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|gmake-3.76.1|
xdvik-20a|/usr/ports/print/xdvik|/usr/local|DVI Previewer(kpathsearch) for X.|/usr/ports/print/xdvik/pkg/DESCR|JBD01226@niftyserve.ne.jp|print|gmake-3.76.1|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||
xtem-6.18|/usr/ports/print/xtem|/usr/local|A Tcl/Tk-based development menu (environment?) for TeX. Requires tclX-7.5.2.|/usr/ports/print/xtem/pkg/DESCR|ports@FreeBSD.ORG|print||tcl-8.0.2 tclX-8.0.2 tk-8.0.2
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.2
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||
ru-d1489-1.3|/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+40
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.2 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.3.2|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.20|
SSLeay-0.8.1b|/usr/ports/security/SSLeay|/usr/local|SSL and crypto library|/usr/ports/security/SSLeay/pkg/DESCR|markm@FreeBSD.ORG|devel security|rsaref-2.0|rsaref-2.0
bjorb-0.5.3.1|/usr/ports/security/bjorb|/usr/local|Secure TCP relay software with SSL.|/usr/ports/security/bjorb/pkg/DESCR|issei@t-cnet.or.jp|net security|SSLeay-0.8.1b rsaref-2.0|SSLeay-0.8.1b rsaref-2.0
bro-0.3a|/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.76.1|
cfs-1.3.3|/usr/ports/security/cfs|/usr/local|A cryptographic file system implemented as a user-space NFS server.|/usr/ports/security/cfs/pkg/DESCR|jdp@polstra.com|security||
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||
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||
john-1.4.2|/usr/ports/security/john|/usr/local|featureful Unix password cracker|/usr/ports/security/john/pkg/DESCR|obrien@NUXI.com|security|unzip-5.3.2|
krb5-1.0.5|/usr/ports/security/krb5|/usr/local|An authentication system developed at MIT, successor to Kerberos IV.|/usr/ports/security/krb5/pkg/DESCR|n@nectar.com|security|gmake-3.76.1 m4-1.4|
libident-0.21|/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||
nbaudit-1.0|/usr/ports/security/nbaudit|/usr/local|NetBIOS Auditing Tool / Security Kit|/usr/ports/security/nbaudit/pkg/DESCR|obrien@NUXI.com|security net||
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 perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|gmake-3.76.1 perl-5.00404 pgp-2.6.2 rsaref-2.0 unzip-5.3.2|perl-5.00404
p5-PGP-Sign-0.08|/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|perl-5.00404|perl-5.00404 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.76.1 rsaref-2.0 unzip-5.3.2|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||
pidentd-2.8.2|/usr/ports/security/pidentd|/usr/local|An RFC1413 identification server.|/usr/ports/security/pidentd/pkg/DESCR|torstenb@FreeBSD.ORG|security net||
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||
ssh-1.2.26|/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|perl-5.00404 tcp_wrappers-7.6|tcp_wrappers-7.6
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|gmake-3.76.1 xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
sudo-1.5.4|/usr/ports/security/sudo|/usr/local|Allow others to run commands as root.|/usr/ports/security/sudo/pkg/DESCR|erich@rrnet.com|security||
super-3.9.7|/usr/ports/security/super|/usr/local|Allow others to run commands as root.|/usr/ports/security/super/pkg/DESCR|obrien@NUXI.com|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|This is the 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-1.0.2|/usr/ports/security/vscan|/usr/local|scan MS-DOS files for viruses|/usr/ports/security/vscan/pkg/DESCR|obrien@FreeBSD.org|security||
xinetd-2.2.1|/usr/ports/security/xinetd|/usr/local|Replacement for inetd with control and logging|/usr/ports/security/xinetd/pkg/DESCR|markm@FreeBSD.ORG|security||
bash-1.14.7|/usr/ports/shells/bash1|/usr/local|The GNU Borne Again Shell.|/usr/ports/shells/bash1/pkg/DESCR|obrien@NUXI.com|shells||
bash-2.02|/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||
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||
pdksh-5.2.13|/usr/ports/shells/pdksh|/usr/local|The Public Domain Korn Shell.|/usr/ports/shells/pdksh/pkg/DESCR|tg@FreeBSD.ORG|shells||
tcsh-6.07.02|/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.5|/usr/ports/shells/zsh|/usr/local|The Z shell.|/usr/ports/shells/zsh/pkg/DESCR|torstenb@FreeBSD.ORG|shells||
LPRng-3.5.1|/usr/ports/sysutils/LPRng|/usr/local|An Enhanced Printer Spooler|/usr/ports/sysutils/LPRng/pkg/DESCR|desmo@bandwidth.org|sysutils print||
afio-2.4.2|/usr/ports/sysutils/afio|/usr/local|Archiver & backup program w/ builtin compression|/usr/ports/sysutils/afio/pkg/DESCR|nox@jelal.hb.north.de|sysutils||
asrpages-0.1|/usr/ports/sysutils/asrpages|/usr/local|alt.sysadmin.recovery manpage collection|/usr/ports/sysutils/asrpages/pkg/DESCR|axl@iafrica.com|sysutils||
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|/usr/ports/sysutils/cd-write|/usr/local|A X11 based CD-burner|/usr/ports/sysutils/cd-write/pkg/DESCR|jmz@FreeBSD.org|sysutils|tcl-8.0.2 tix-4.1.0.006 tk-8.0.2|tcl-8.0.2 tix-4.1.0.006 tk-8.0.2
cdrecord-1.6|/usr/ports/sysutils/cdrecord|/usr/local|This program allows you to create CD's on a CD-Recorder.|/usr/ports/sysutils/cdrecord/pkg/DESCR|jmz@FreeBSD.org|sysutils|gmake-3.76.1|mkisofs-1.11.1
cfengine-1.4.10|/usr/ports/sysutils/cfengine|/usr/local|GNU cfengine - a systems administration tool for networks.|/usr/ports/sysutils/cfengine/pkg/DESCR|jseger@FreeBSD.ORG|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|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
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||
tar-1.12|/usr/ports/sysutils/gtar|/usr/local|The GNU tape archiver|/usr/ports/sysutils/gtar/pkg/DESCR|andreas@FreeBSD.ORG|sysutils||
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||
lsof-4.33|/usr/ports/sysutils/lsof|/usr/local|Lists information about open files.|/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.1|/usr/ports/sysutils/mkhybrid11|/usr/local|create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem.|/usr/ports/sysutils/mkhybrid11/pkg/DESCR|murray@cdrom.com|sysutils||
mkhybrid-1.12a4.1|/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.11.1|/usr/ports/sysutils/mkisofs|/usr/local|create ISO9660 filesystems with [optional] Rockridge extensions|/usr/ports/sysutils/mkisofs/pkg/DESCR|ports@FreeBSD.ORG|sysutils||
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||
pib-1.1|/usr/ports/sysutils/pib|/usr/local|GUI Ports Collection management tool.|/usr/ports/sysutils/pib/pkg/DESCR|msmith@freebsd.org|sysutils tk80||tcl-8.0.2 tk-8.0.2
rdate-1.0|/usr/ports/sysutils/rdate|/usr/local|rdate sets the clock of the local host to the time another host.|/usr/ports/sysutils/rdate/pkg/DESCR|cracauer@cons.org|sysutils||
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||
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.5|/usr/ports/sysutils/skill|/usr/local|SuperKILL, kill or renice processes by pid, name, tty or uid|/usr/ports/sysutils/skill/pkg/DESCR|jonny@coppe.ufrj.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.1|/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.76.1|
stat-1.3|/usr/ports/sysutils/stat|/usr/local|Print inode contents.|/usr/ports/sysutils/stat/pkg/DESCR|wosch@FreeBSD.org|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||
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.33
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.80|/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||
upsd-2.0|/usr/ports/sysutils/upsd|/usr/local|APC Smart UPS Monitoring Daemon|/usr/ports/sysutils/upsd/pkg/DESCR|alexis@ww.net|sysutils||
xbatt-1.2|/usr/ports/sysutils/xbatt|/usr/X11R6|Laptop battery status display for X11|/usr/ports/sysutils/xbatt/pkg/DESCR|nobu@psrc.isac.co.jp|sysutils x11||
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||
xdu-3.0|/usr/ports/sysutils/xdu|/usr/X11R6|Graphically display output of du|/usr/ports/sysutils/xdu/pkg/DESCR|ports@FreeBSD.ORG|sysutils x11||
xfsm-1.97|/usr/ports/sysutils/xfsm|/usr/X11R6|X File System Monitor|/usr/ports/sysutils/xfsm/pkg/DESCR|vanilla@FreeBSD.ORG|sysutils x11||
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|ja-nkf-1.62|
xlogmaster-1.2.2|/usr/ports/sysutils/xlogmaster|/usr/X11R6|quick & easy monitoring of logfiles and devices|/usr/ports/sysutils/xlogmaster/pkg/DESCR|aw1@stade.co.uk|sysutils|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
xosview-1.6.1.a|/usr/ports/sysutils/xosview|/usr/X11R6|A graphical performance meter|/usr/ports/sysutils/xosview/pkg/DESCR|handy@physics.montana.edu|sysutils x11||
xperfmon++-1.40|/usr/ports/sysutils/xperfmon|/usr/X11R6|A graphical X11 system performance monitor.|/usr/ports/sysutils/xperfmon/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.DE|sysutils x11||
xsysinfo-1.4|/usr/ports/sysutils/xsysinfo|/usr/X11R6|A system information display tool.|/usr/ports/sysutils/xsysinfo/pkg/DESCR|jdli@csie.nctu.edu.tw|sysutils||
xsysstats-1.34|/usr/ports/sysutils/xsysstats|/usr/X11R6|A system information display tool|/usr/ports/sysutils/xsysstats/pkg/DESCR|obrien@FreeBSD.ORG|sysutils x11||
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|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
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||
c2html-0.1|/usr/ports/textproc/c2html|/usr/local|C-language sources to HTML converter|/usr/ports/textproc/c2html/pkg/DESCR|andy@icc.surw.chel.su|textproc www||
catdoc-0.35|/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||
docbook-3.0|/usr/ports/textproc/docbook|/usr/local|An SGML DTD designed for computer documentation|/usr/ports/textproc/docbook/pkg/DESCR|jfieber@FreeBSD.ORG|textproc||iso8879-1986
docproj-1.0|/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-3.0 dsssl-docbook-modular-1.08 iso8879-1986 jade-1.1.1 linuxdoc-1.1 perl-5.00404 sgmlformat-1.6
dsssl-docbook-modular-1.08|/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 unzip-5.3.2|docbook-3.0 iso8879-1986
glimpse-4.0|/usr/ports/textproc/glimpse|/usr/local|Text search engine|/usr/ports/textproc/glimpse/pkg/DESCR|chuckr@freebsd.org|textproc databases||
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||
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||
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.3.2|
ispell-3.1.20|/usr/ports/textproc/ispell|/usr/local|An interactive spelling checker.|/usr/ports/textproc/ispell/pkg/DESCR|jmz@FreeBSD.org|textproc||
jade-1.1.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|unzip-5.3.2|
latex2html-98.1p1|/usr/ports/textproc/latex2html|/usr/local|This program can be used to convert LaTeX documents to HTML.|/usr/ports/textproc/latex2html/pkg/DESCR|brett@peloton.physics.montana.edu|textproc||dvips-5.74 ghostscript-5.10 jpeg-6b latex2e-98.01 netpbm-94.3.1 perl-5.00404 tex-3.14159 tiff-3.4
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
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||
par-1.50|/usr/ports/textproc/par|/usr/local|Pargraph reformatter for email|/usr/ports/textproc/par/pkg/DESCR|mark@grondar.za|textproc||
pilot_makedoc-0.7|/usr/ports/textproc/pilot_makedoc|/usr/local|converts text into the Doc format used by PalmPilots.|/usr/ports/textproc/pilot_makedoc/pkg/DESCR|jfitz@FreeBSD.ORG|textproc pilot||
rman-3.0.5|/usr/ports/textproc/rman|/usr/local|Reverse compile man pages from formatted form.|/usr/ports/textproc/rman/pkg/DESCR|tg@FreeBSD.org|textproc||
sgmlformat-1.6|/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-3.0 iso8879-1986 jade-1.1.1 linuxdoc-1.1 perl-5.00404
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.2.1|/usr/ports/textproc/sp|/usr/local|A free, object-oriented toolkit for SGML parsing and entity management |/usr/ports/textproc/sp/pkg/DESCR|jfieber@FreeBSD.ORG|textproc||
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-1.22|/usr/ports/textproc/textutils|/usr/local|GNU text utilities|/usr/ports/textproc/textutils/pkg/DESCR|aw1@stade.co.uk|textproc|gmake-3.76.1|
tth-1.54|/usr/ports/textproc/tth|/usr/local|A TeX to HTML translator|/usr/ports/textproc/tth/pkg/DESCR|ports@FreeBSD.ORG|textproc||ghostscript-5.10 jpeg-6b netpbm-94.3.1 teTeX-0.4 tiff-3.4
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||
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|elk-3.0.2|elk-3.0.2
urlview-0.7|/usr/ports/textproc/urlview|/usr/local|URL extractor/launcher|/usr/ports/textproc/urlview/pkg/DESCR|josh@quick.net|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.001|/usr/ports/textproc/word2x|/usr/local|Converter from MS Word to text, HTML or LaTeX.|/usr/ports/textproc/word2x/pkg/DESCR|ports@FreeBSD.ORG|textproc|gmake-3.76.1|
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.74 gmake-3.76.1 latex2e-98.01 tex-3.14159|bash-1.14.7 dvips-5.74 latex2e-98.01 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||
mosaic-2.7b5|/usr/ports/www/Mosaic|/usr/X11R6|A World Wide Web browser.|/usr/ports/www/Mosaic/pkg/DESCR|ports@FreeBSD.ORG|www|jpeg-6b png-1.0.2 xpm-3.4k|jpeg-6b png-1.0.2 xpm-3.4k
WebMagick-1.44|/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|perl-5.00404|p5-PerlMagick-1.38 perl-5.00404
analog-2.90b4|/usr/ports/www/analog|/usr/local|An extremely fast program for analysing WWW logfiles.|/usr/ports/www/analog/pkg/DESCR|ache@freebsd.org|www||
apache-1.2.6|/usr/ports/www/apache12|/usr/local|The extremely popular Apache http server.  Very fast, very clean.|/usr/ports/www/apache12/pkg/DESCR|jseger@freebsd.org|www||
apache-1.2.6-php3.0.1|/usr/ports/www/apache12-php3|/usr/local|Apache http server with database support via compiled in PHP3 module.|/usr/ports/www/apache12-php3/pkg/DESCR|andreas@FreeBSD.ORG|www|gd-1.3 gmake-3.76.1|
apache-1.3.0|/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.2.6|/usr/ports/www/apache-fp|/usr/local|The extremely popular Apache http server w/MS FrontPage Extentions.|/usr/ports/www/apache-fp/pkg/DESCR|hetzels@westbend.net|www||
apacheSSL-1.2.6|/usr/ports/www/apache-ssl|/usr/local|Apache secure https server using SSL|/usr/ports/www/apache-ssl/pkg/DESCR|markm@freebsd.org|www security|SSLeay-0.8.1b rsaref-2.0|SSLeay-0.8.1b 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|jpeg-6b png-1.0.2|jpeg-6b png-1.0.2
ashe-1.1.2|/usr/ports/www/ashe|/usr/X11R6|A simple HTML editor.|/usr/ports/www/ashe/pkg/DESCR|ports@FreeBSD.ORG|www||
asWedit-3.0|/usr/ports/www/aswedit|/usr/local|An easy to use HTML and text editor|/usr/ports/www/aswedit/pkg/DESCR|brett@peloton.physics.montana.edu|editors www||linux_lib-2.4
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||
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||
checkbot-1.51|/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-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Mail-Tools-1.11 p5-Net-1.0605 p5-libwww-5.33 perl-5.00404|perl-5.00404
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||
chimera-2.0a11|/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 x11|jpeg-6b png-1.0.2|jpeg-6b png-1.0.2
comline-4.0D|/usr/ports/www/comline|/usr/local|W3C Command Line WWW Tool|/usr/ports/www/comline/pkg/DESCR|ache@freebsd.org|www||
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|fxhtml@flevel.co.uk|www||
gn-2.24|/usr/ports/www/gn|/usr/local|GN gopher and http server|/usr/ports/www/gn/pkg/DESCR|adam@veda.is|www net|freeWAIS-0.5|
grail-0.4|/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-1.5.1 tcl-8.0.2 tk-8.0.2|python-1.5.1 tcl-8.0.2 tk-8.0.2
gwstat-1.13.1.3|/usr/ports/www/gwstat|/usr/local|generate GIF graphs that illustrate the httpd server traffic|/usr/ports/www/gwstat/pkg/DESCR|ports@FreeBSD.ORG|www||ImageMagick-4.0.7 apache-1.3.0 freetype-1.1 ghostscript-4.03 jbigkit-1.0 jpeg-6b mpeg_lib-1.2.1 perl-5.00404 png-1.0.2 tiff-3.4 wwwstat-2.01 xbae-4.6.2 xmgr-4.1.1
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||
htmlpp-3.9d|/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|perl-5.00404 unzip-5.3.2|perl-5.00404
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.3|
hypermail-1.02|/usr/ports/www/hypermail|/usr/local|program that reads mailbox and generates a set of cross-referenced HTML docs.|/usr/ports/www/hypermail/pkg/DESCR|mjhsieh@life.nthu.edu.tw|www||
ijb-2.0|/usr/ports/www/ijb|/usr/local|An HTTP proxy server that eliminates ads.|/usr/ports/www/ijb/pkg/DESCR|ian@broken.net|www||
libpics-1.0|/usr/ports/www/libpics|/usr/local|The W3C sample PICS library|/usr/ports/www/libpics/pkg/DESCR|max@FreeBSD.ORG|www devel|gmake-3.76.1|
libwww-5.1m1|/usr/ports/www/libwww|/usr/local|The W3C Reference Library.|/usr/ports/www/libwww/pkg/DESCR|jseger@FreeBSD.org|www devel|gmake-3.76.1|
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||
linux-netscape-4.05|/usr/ports/www/linux-netscape4|/usr/local|netscape web-surfboard|/usr/ports/www/linux-netscape4/pkg/DESCR|ports@FreeBSD.ORG|www|linux_lib-2.4|linux_lib-2.4
lynx-2.8|/usr/ports/www/lynx|/usr/local|An alphanumeric display oriented World-Wide Web Client.|/usr/ports/www/lynx/pkg/DESCR|jseger@FreeBSD.ORG|www|unzip-5.3.2|
lynx-2.8.1dev.14|/usr/ports/www/lynx-current|/usr/local|An alphanumeric display oriented World-Wide Web Client.|/usr/ports/www/lynx-current/pkg/DESCR|ache@FreeBSD.ORG|www||
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.5
mhonarc-2.2.0|/usr/ports/www/mhonarc|/usr/local|WWW front end for mail archives.  |/usr/ports/www/mhonarc/pkg/DESCR|jkoshy@freebsd.org|www mail|perl-5.00404|perl-5.00404
mmm-0.40|/usr/ports/www/mmm|/usr/local|WWW browser using Objective Caml, Tcl/Tk.|/usr/ports/www/mmm/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|www tk42|camltk41-1.0 gmake-3.76.1 ocaml-1.07 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
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-1998-04-29|/usr/ports/www/mozilla|/usr/local|The mozilla ver 0.0 communicator web-surfboard.|/usr/ports/www/mozilla/pkg/DESCR|jseger@FreeBSD.org|www|gmake-3.76.1|
netscape-3.04|/usr/ports/www/netscape3|/usr/local|netscape ver 3 web-surfboard (regular or gold)|/usr/ports/www/netscape3/pkg/DESCR|ports@FreeBSD.ORG|www||
netscape-communicator-4.05|/usr/ports/www/netscape4-communicator|/usr/local|netscape ver 4 communicator web-surfboard|/usr/ports/www/netscape4-communicator/pkg/DESCR|ache@FreeBSD.ORG|www||
netscape-communicator-4.05.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||
netscape-navigator-4.05|/usr/ports/www/netscape4-navigator|/usr/local|netscape ver 4 navigator web-surfboard|/usr/ports/www/netscape4-navigator/pkg/DESCR|asami@FreeBSD.ORG|www||
p5-Apache-1.07|/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.2.6 perl-5.00404|perl-5.00404
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-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 p5-libwww-5.33 perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-HTML-Parser-2.18|/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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
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|perl-5.00404|perl-5.00404
p5-WWW-Search-1.017|/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-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 p5-libwww-5.33 perl-5.00404|perl-5.00404
p5-libwww-5.33|/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-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 perl-5.00404|perl-5.00404
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||
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||
squid-1.2b22|/usr/ports/www/squid12|/usr/local|The successful WWW proxy cache and accelerator|/usr/ports/www/squid12/pkg/DESCR|peter@freebsd.org|www||
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||
vrweb-1.5|/usr/ports/www/vrweb|/usr/X11R6|a browser for a VRML 1.0 format file|/usr/ports/www/vrweb/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|www|Mesa-2.6 gmake-3.76.1|Mesa-2.6
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|emacs-19.34b gmake-3.76.1|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|giffunip@asme.org|www||
w3mir-1.0.3|/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-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 p5-libwww-5.33 perl-5.00404|perl-5.00404
webalizer-1.12|/usr/ports/www/webalizer|/usr/local|A web server log file analysis thingie|/usr/ports/www/webalizer/pkg/DESCR|dirk.meyer@dinoex.sub.org|www|gd-1.3|
webcopy-0.98b7|/usr/ports/www/webcopy|/usr/local|A Web Mirroring Program|/usr/ports/www/webcopy/pkg/DESCR|ache@FreeBSD.ORG|www||
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||
wml-1.6.6|/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|perl-5.00404|perl-5.00404
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.4|/usr/ports/www/wwwcount|/usr/local|Access counter, clock and date for WWW pages|/usr/ports/www/wwwcount/pkg/DESCR|ports@FreeBSD.ORG|www||
wwwstat-2.01|/usr/ports/www/wwwstat|/usr/local|webserver logfile analysis package|/usr/ports/www/wwwstat/pkg/DESCR|andreas@FreeBSD.ORG|www|perl-5.00404|apache-1.3.0 perl-5.00404
fwf-4.0|/usr/ports/x11/FWF|/usr/X11R6|The Free Widget Foundation widget release|/usr/ports/x11/FWF/pkg/DESCR|jseger@FreeBSD.org|x11|xpm-3.4k|xpm-3.4k
XFree86-3.3.2|/usr/ports/x11/XFree86|/usr/X11R6|X11R6.3/XFree86 core distribution|/usr/ports/x11/XFree86/pkg/DESCR|jmz@FreeBSD.ORG|x11||
XFree86-contrib-3.3.2|/usr/ports/x11/XFree86-contrib|/usr/X11R6|XFree86 contrib programs|/usr/ports/x11/XFree86-contrib/pkg/DESCR|jmz@FreeBSD.ORG|x11||
Xaw3d-1.3|/usr/ports/x11/Xaw3d|/usr/X11R6|A 3-D Athena Widget set that looks like Motif|/usr/ports/x11/Xaw3d/pkg/DESCR|ports@FreeBSD.ORG|x11||
afterstep-1.0|/usr/ports/x11/afterstep|/usr/X11R6|This window manager is a continuation of the Bowman NeXTSTEP clone.|/usr/ports/x11/afterstep/pkg/DESCR|jfitz@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
afterstep-1.4.5.3|/usr/ports/x11/afterstep-devel|/usr/X11R6|A development version of the AfterStep window manager.|/usr/ports/x11/afterstep-devel/pkg/DESCR|brett@peloton.physics.montana.edu|x11|xpm-3.4k|xpm-3.4k
amiwm-0.20p28|/usr/ports/x11/amiwm|/usr/X11R6|A window manager that makes your desktop look like an Amiga(TM).|/usr/ports/x11/amiwm/pkg/DESCR|ports@FreeBSD.org|x11||
asclock-1.0|/usr/ports/x11/asclock|/usr/X11R6|afterstep clock with some language extentions|/usr/ports/x11/asclock/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||
asfiles-1.0|/usr/ports/x11/asfiles|/usr/local|X11 file manager. Dockable in WindowMaker.|/usr/ports/x11/asfiles/pkg/DESCR|lukin@okbmei.msk.su|x11|libdnd-1.1 xpm-3.4k|xpm-3.4k
auis-6.3.1|/usr/ports/x11/auis|/usr/local|Andrew User Interface System|/usr/ports/x11/auis/pkg/DESCR|ports@FreeBSD.ORG|x11||
bclock-1.0|/usr/ports/x11/bclock|/usr/X11R6|A round, analog X11 clock with bezier curve hands.|/usr/ports/x11/bclock/pkg/DESCR|ports@FreeBSD.ORG|x11||
blackbox-0.34.0|/usr/ports/x11/blackbox|/usr/X11R6|This window manager is a small fast X11R6 Window Manager.|/usr/ports/x11/blackbox/pkg/DESCR|ports@FreeBSD.ORG|x11||
blast-1.0|/usr/ports/x11/blast|/usr/X11R6|Blast blows holes through windows.|/usr/ports/x11/blast/pkg/DESCR|jseger@FreeBSD.org|x11||
blt-2.4c|/usr/ports/x11/blt|/usr/local|A Tk extension (with shared libs)|/usr/ports/x11/blt/pkg/DESCR|kjc@csl.sony.co.jp|x11 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
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|xpm-3.4k|xpm-3.4k
camltk41-1.0|/usr/ports/x11/camltk41|/usr/local|A library for interfacing Objective Caml with Tcl/Tk|/usr/ports/x11/camltk41/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|x11 tk42|gmake-3.76.1 ocaml-1.07 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
ctwm-3.5|/usr/ports/x11/ctwm|/usr/X11R6|An extension to twm, with support for multiple virtual screens, etc.|/usr/ports/x11/ctwm/pkg/DESCR|torstenb@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
dclock-pl4|/usr/ports/x11/dclock|/usr/local|A 7-segment digital clock with optional military time and alarm|/usr/ports/x11/dclock/pkg/DESCR|ports@FreeBSD.ORG|x11||
dfm-0.9.8|/usr/ports/x11/dfm|/usr/X11R6|OS/2 - like Desktop-File-Manager for X Window System.|/usr/ports/x11/dfm/pkg/DESCR|andy@icc.surw.chel.su|x11|xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
dgs-0.5.0|/usr/ports/x11/dgs|/usr/X11R6|a display ghostscript system|/usr/ports/x11/dgs/pkg/DESCR|Nakai@technologist.com|x11|jpeg-6b png-1.0.2 tiff-3.4|jpeg-6b png-1.0.2 tiff-3.4
dxpc-3.7.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||
emiclock-1.0.4|/usr/ports/x11/emiclock|/usr/X11R6|Hyper-animated face analog clock for X11|/usr/ports/x11/emiclock/pkg/DESCR|nobu@psrc.isac.co.jp|x11||
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||
enlightenment-0.14|/usr/ports/x11/enlightenment|/usr/X11R6|a very artistic X window manager.|/usr/ports/x11/enlightenment/pkg/DESCR|vanilla@FreeBSD.ORG|x11|esound-0.2.4 fnlib-0.3 giflib-3.0 gmake-3.76.1 gtk-1.0.4 imlib-1.7 jpeg-6b p5-Gtk-0.2.2 perl-5.00404 png-1.0.2 tiff-3.4|esound-0.2.4 fnlib-0.3 giflib-3.0 gtk-1.0.4 imlib-1.7 jpeg-6b png-1.0.2 tiff-3.4
eterm-0.7|/usr/ports/x11/eterm|/usr/X11R6|X-Windows terminal emulator based on rxvt/xterm|/usr/ports/x11/eterm/pkg/DESCR|murray@cdrom.com|x11|giflib-3.0 gmake-3.76.1 gtk-1.0.4 imlib-1.7 jpeg-6b png-1.0.2 tiff-3.4|giflib-3.0 gtk-1.0.4 imlib-1.7 jpeg-6b png-1.0.2 tiff-3.4
etlfonts-noncjk-1.0|/usr/ports/x11/etlfonts|/usr/X11R6|X11 supplemental fonts|/usr/ports/x11/etlfonts/pkg/DESCR|mita@jp.FreeBSD.org|x11||
explorer-0.72|/usr/ports/x11/explorer|/usr/X11R6|File manager which has the same look and feel of the Windows95(tm)|/usr/ports/x11/explorer/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11|gmake-3.76.1 qt-1.31|qt-1.31
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||
filerunner-2.5|/usr/ports/x11/filerunner|/usr/local|Filemanager with FTP capabilities. Uses Tcl/Tk.|/usr/ports/x11/filerunner/pkg/DESCR|vanilla@FreeBSD.ORG|x11 tk81|tcl-8.1.a2 tk-8.1.a2|tcl-8.1.a2 tk-8.1.a2
freefonts-0.10|/usr/ports/x11/freefonts|/usr/X11R6|A collection of ATM fonts from the CICA archives.|/usr/ports/x11/freefonts/pkg/DESCR|erich@FreeBSD.org|x11||
fvwm-1.24r|/usr/ports/x11/fvwm|/usr/X11R6|the fvwm window manager|/usr/ports/x11/fvwm/pkg/DESCR|me@FreeBSD.org|x11|xpm-3.4k|xpm-3.4k
fvwm-2.0.46|/usr/ports/x11/fvwm2|/usr/X11R6|Internationalized (not japanised) fvwm version 2, a window manager for X|/usr/ports/x11/fvwm2/pkg/DESCR|matusita@jp.freebsd.org|x11|xpm-3.4k|xpm-3.4k
fvwm95-2.0.43a|/usr/ports/x11/fvwm95|/usr/X11R6|Win95 lookalike version of the fvwm2 window manager.|/usr/ports/x11/fvwm95/pkg/DESCR|andreas@FreeBSD.ORG|x11|gmake-3.76.1 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4k|fbsd-icons-1.0 xpm-3.4k
getbdf-1.0|/usr/ports/x11/getbdf|/usr/X11R6|convert any X server font to .bdf format|/usr/ports/x11/getbdf/pkg/DESCR|ache@FreeBSD.org|x11||
gtk-1.0.4|/usr/ports/x11/gtk|/usr/X11R6|General Toolkit for X11 GUI.|/usr/ports/x11/gtk/pkg/DESCR|vanilla@FreeBSD.ORG|x11|gmake-3.76.1|
gwm-1.8c|/usr/ports/x11/gwm|/usr/X11R6|Generic Window Manager|/usr/ports/x11/gwm/pkg/DESCR|markm@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
icewm-0.9.8|/usr/ports/x11/icewm|/usr/X11R6|cool window manager developped in a very hot day in a winter|/usr/ports/x11/icewm/pkg/DESCR|Nakai@technologist.com|x11|xpm-3.4k|xpm-3.4k
iv-3.1|/usr/ports/x11/iv|/usr/local|InterViews: A toolkit from Stanford University and Silicon Graphics.|/usr/ports/x11/iv/pkg/DESCR|ports@FreeBSD.ORG|x11||
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@e-mail.ne.jp|x11||
kde-1.0|/usr/ports/x11/kde|/usr/local|The "meta-port" for the KDE integrated X11 desktop|/usr/ports/x11/kde/pkg/DESCR|se@freebsd.org|x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kdebase-1.0 kdegames-1.0 kdegraphics-1.0 kdelibs-1.0 kdemultimedia-1.0 kdenetwork-1.0 kdesupport-1.0 kdeutils-1.0 qt-1.33 uulib-0.5.13
kdebase-1.0|/usr/ports/x11/kdebase|/usr/local|Base modules for the KDE integrated X11 desktop|/usr/ports/x11/kdebase/pkg/DESCR|se@freebsd.org|x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.33
kdelibs-1.0|/usr/ports/x11/kdelibs|/usr/local|Support libraries for the KDE integrated X11 desktop|/usr/ports/x11/kdelibs/pkg/DESCR|se@freebsd.org|x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b qt-1.33|giflib-3.0 jpeg-6b qt-1.33
kworldwatch-0.6|/usr/ports/x11/kworldwatch|/usr/local|KWorldWatch - a simple tool showing a revolving world map|/usr/ports/x11/kworldwatch/pkg/DESCR|scrappy@freebsd.org|x11 kde|giflib-3.0 gmake-3.76.1 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33|giflib-3.0 jpeg-6b kdelibs-1.0 qt-1.31 qt-1.33
lesstif-0.85|/usr/ports/x11/lesstif|/usr/X11R6|API compatible clone of the Motif toolkit.|/usr/ports/x11/lesstif/pkg/DESCR|ports@FreeBSD.org|x11||
libdnd-1.1|/usr/ports/x11/libdnd|/usr/local|Drag and drop library.|/usr/ports/x11/libdnd/pkg/DESCR|lukin@okbmei.msk.su|x11||
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||
libsx-1.1|/usr/ports/x11/libsx|/usr/X11R6|Simple X Windows library.|/usr/ports/x11/libsx/pkg/DESCR|giffunip@asme.org|x11|Xaw3d-1.3|Xaw3d-1.3
lupe-0.07|/usr/ports/x11/lupe|/usr/X11R6|Real-time magnifying glass for X11|/usr/ports/x11/lupe/pkg/DESCR|kazu@jp.freebsd.org|x11|gmake-3.76.1|
lwm-0.06|/usr/ports/x11/lwm|/usr/X11R6|a lightweight window manager|/usr/ports/x11/lwm/pkg/DESCR|hjh@best.com|x11||
mlclock-1.0|/usr/ports/x11/mlclock|/usr/X11R6|Clock for mlvwm window manager|/usr/ports/x11/mlclock/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||
mlvwm-0.8.6|/usr/ports/x11/mlvwm|/usr/X11R6|Macintosh like window manager for X11|/usr/ports/x11/mlvwm/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11|xpm-3.4k|xpm-3.4k
mouseclock-1.0|/usr/ports/x11/mouseclock|/usr/X11R6|display the current time using the X root cursor|/usr/ports/x11/mouseclock/pkg/DESCR|kazu@jp.freebsd.org|x11|gmake-3.76.1|
neXtaw-0.5.1|/usr/ports/x11/neXtaw|/usr/X11R6|Athena Widgets with N*XTSTEP appearance|/usr/ports/x11/neXtaw/pkg/DESCR|tg@FreeBSD.ORG|x11||
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|gmake-3.76.1 libdnd-1.1|libdnd-1.1
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|gmake-3.76.1 libdnd-1.1 xpm-3.4k|libdnd-1.1 xpm-3.4k
offix-files-2.4|/usr/ports/x11/offix-files|/usr/X11R6|File bar from OffiX|/usr/ports/x11/offix-files/pkg/DESCR|ruslan@shevchenko.kiev.ua|x11 offix|gmake-3.76.1 libdnd-1.1 xpm-3.4k|libdnd-1.1 offix-editor-2.4 offix-execute-2.4 xpm-3.4k
olvwm-4.1|/usr/ports/x11/olvwm|/usr/X11R6|OpenLook Virtual Window manager |/usr/ports/x11/olvwm/pkg/DESCR|ports@FreeBSD.ORG|x11|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
p5-Gtk-0.2.2|/usr/ports/x11/p5-Gtk|/usr/local|a perl5 interface to Gtk Graphics Library|/usr/ports/x11/p5-Gtk/pkg/DESCR|vanilla@FreeBSD.ORG|x11 lang perl5|gmake-3.76.1 gtk-1.0.4 perl-5.00404|gtk-1.0.4 perl-5.00404
p5-Tcl-Tk-b1|/usr/ports/x11/p5-Tcl-Tk|/usr/local|perl5 module to access to Tk via the Tcl extension|/usr/ports/x11/p5-Tcl-Tk/pkg/DESCR|jfitz@FreeBSD.ORG|x11 lang perl5 tk41|p5-Tcl-b1 perl-5.00404 tcl-7.5.1 tk-4.1.1|perl-5.00404 tcl-7.5.1 tk-4.1.1
p5-Tk-402.002|/usr/ports/x11/p5-Tk|/usr/local|a re-port of a perl5 interface to Tk4.0p3.|/usr/ports/x11/p5-Tk/pkg/DESCR|jfitz@FreeBSD.ORG|x11 tk41 perl5|p5-Data-Dumper-2.081 p5-HTML-Parser-2.18 p5-MD5-1.7 p5-MIME-Base64-2.05 p5-Net-1.0605 p5-libwww-5.33 perl-5.00404 tcl-7.5.1 tk-4.1.1|perl-5.00404 tcl-7.5.1 tk-4.1.1
piewm-1.0|/usr/ports/x11/piewm|/usr/X11R6|A tvtwm with pie (circular) menus.|/usr/ports/x11/piewm/pkg/DESCR|ports@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
pmw-0.7|/usr/ports/x11/pmw|/usr/local|High-level compound graphics widgets for Python.|/usr/ports/x11/pmw/pkg/DESCR|tg@FreeBSD.ORG|x11|python-1.5.1 tcl-8.0.2 tk-8.0.2|python-1.5.1 tcl-8.0.2 tk-8.0.2
props-1.0|/usr/ports/x11/props|/usr/X11R6|The OpenLook props application.|/usr/ports/x11/props/pkg/DESCR|jraynard@@freebsd.org|x11|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
py-gtk-0.4.4|/usr/ports/x11/pygtk|/usr/local|Python wrapper for the GTK library.|/usr/ports/x11/pygtk/pkg/DESCR|tg@FreeBSD.ORG|x11 python|gmake-3.76.1 gtk-1.0.4 python-1.5.1 tcl-8.0.2 tk-8.0.2|gtk-1.0.4 python-1.5.1 tcl-8.0.2 tk-8.0.2
pythonqt-0.1.2|/usr/ports/x11/pythonqt|/usr/local|A set of Python bindings for Qt.|/usr/ports/x11/pythonqt/pkg/DESCR|tg@FreeBSD.ORG|x11|gmake-3.76.1 python-1.5.1 qt-1.31 tcl-8.0.2 tk-8.0.2|python-1.5.1 qt-1.31 tcl-8.0.2 tk-8.0.2
q3dmenu-1.0|/usr/ports/x11/q3dmenu|/usr/X11R6|Simple 3D file manager for X Window System.|/usr/ports/x11/q3dmenu/pkg/DESCR|andy@icc.surw.chel.su|x11|Mesa-2.6 gmake-3.76.1 qgl-1.0b2 qt-1.31|Mesa-2.6 qgl-1.0b2 qt-1.31
qt-1.31|/usr/ports/x11/qt|/usr/X11R6|A C++ X GUI toolkit.|/usr/ports/x11/qt/pkg/DESCR|searle@longacre.demon.co.uk|x11|gmake-3.76.1|
qt-1.33|/usr/ports/x11/qt133|/usr/X11R6|A C++ X GUI toolkit.|/usr/ports/x11/qt133/pkg/DESCR|andreas@FreeBSD.ORG|x11|gmake-3.76.1|
qt-1.40|/usr/ports/x11/qt140|/usr/X11R6|A C++ X GUI toolkit.|/usr/ports/x11/qt140/pkg/DESCR|andreas@FreeBSD.ORG|x11|Mesa-2.6 gmake-3.76.1|Mesa-2.6
qvwm-1.0b10a|/usr/ports/x11/qvwm|/usr/X11R6|The most win95-like window manager. Standalone, not fvwm patched.|/usr/ports/x11/qvwm/pkg/DESCR|Nakai@technologist.com|x11|xpm-3.4k|xpm-3.4k
rclock-2.20|/usr/ports/x11/rclock|/usr/X11R6|analog clock for X w/appointment reminder and mail notification|/usr/ports/x11/rclock/pkg/DESCR|obrien@FreeBSD.org|x11||
rxvt-2.4.5|/usr/ports/x11/rxvt|/usr/X11R6|A low memory usage xterm replacement that supports color|/usr/ports/x11/rxvt/pkg/DESCR|ports@FreeBSD.ORG|x11||
sharefonts-0.10|/usr/ports/x11/sharefonts|/usr/X11R6|A collection of shareware ATM fonts from the CICA archives.|/usr/ports/x11/sharefonts/pkg/DESCR|dburr@FreeBSD.ORG|x11||
sliderule-1.0|/usr/ports/x11/sliderule|/usr/X11R6|The part of X11R3's xcalc featuring a slide rule|/usr/ports/x11/sliderule/pkg/DESCR|joerg@FreeBSD.org|x11||
slingshot-2.1|/usr/ports/x11/slingshot|/usr/X11R6|Supplemental Libraries to extend Xview|/usr/ports/x11/slingshot/pkg/DESCR|giffunip@asme.org|x11|gmake-3.76.1 xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
swisswatch-0.06|/usr/ports/x11/swisswatch|/usr/X11R6|A Swiss railway clock emulation, and a fancy default appearance.|/usr/ports/x11/swisswatch/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|x11||
sxpc-1.4|/usr/ports/x11/sxpc|/usr/X11R6|The Simple X Protocol Compressor|/usr/ports/x11/sxpc/pkg/DESCR|ports@FreeBSD.ORG|x11||
t3d-1.1|/usr/ports/x11/t3d|/usr/X11R6|Clock using flying balls to display the time.|/usr/ports/x11/t3d/pkg/DESCR|hjh@best.com|x11||
tix-4.1.0.006|/usr/ports/x11/tix|/usr/local|An extension to the Tk toolkit.|/usr/ports/x11/tix/pkg/DESCR|ports@FreeBSD.ORG|x11 tk80|tcl-8.0.2 tk-8.0.2|tcl-8.0.2 tk-8.0.2
tk-4.1.1|/usr/ports/x11/tk41|/usr/local|Graphical toolkit for TCL.|/usr/ports/x11/tk41/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11 tk41|tcl-7.5.1|tcl-7.5.1
tk-4.2|/usr/ports/x11/tk42|/usr/local|Graphical toolkit for TCL.|/usr/ports/x11/tk42/pkg/DESCR|taguchi@tohoku.iij.ad.jp|x11 tk42|tcl-7.6|tcl-7.6
tk-8.0.2|/usr/ports/x11/tk80|/usr/local|Graphical toolkit for TCL.|/usr/ports/x11/tk80/pkg/DESCR|jkh@Freebsd.ORG|x11 tk80|tcl-8.0.2|tcl-8.0.2
tk-8.1.a2|/usr/ports/x11/tk81|/usr/local|Graphical toolkit for TCL.|/usr/ports/x11/tk81/pkg/DESCR|jseger@FreeBSD.ORG|x11 tk81|tcl-8.1.a2|tcl-8.1.a2
tkdesk-1.0|/usr/ports/x11/tkdesk|/usr/local|A graphical, highly configurable and powerful file manager.|/usr/ports/x11/tkdesk/pkg/DESCR|dmlb@ragnet.demon.co.uk|misc x11 tk42|gmake-3.76.1 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
tkfont-1.1|/usr/ports/x11/tkfont|/usr/local|A Tk based replacement for xfontsel.|/usr/ports/x11/tkfont/pkg/DESCR|brett@peloton.physics.montana.edu|x11 tk80||tcl-8.0.2 tk-8.0.2
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|tcl-8.0.2 tk-8.0.2|fvwm-2.0.46 tcl-8.0.2 tk-8.0.2 xpm-3.4k
tkstep-8.0p2|/usr/ports/x11/tkstep80|/usr/local|The Tk toolkit with a NeXTSTEP look and more.|/usr/ports/x11/tkstep80/pkg/DESCR|tg@FreeBSD.ORG|x11 tk80|jpeg-6b tcl-8.0.2 tiff-3.4 xpm-3.4k|jpeg-6b tcl-8.0.2 tiff-3.4 xpm-3.4k
tvtwm-pl11|/usr/ports/x11/tvtwm|/usr/X11R6|twm with a virtual desktop.|/usr/ports/x11/tvtwm/pkg/DESCR|gpalmer@FreeBSD.ORG|x11|xpm-3.4k|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|xforms-0.88.1|xforms-0.88.1
v-1.19|/usr/ports/x11/v|/usr/X11R6|A C++ GUI framework for X11 and Microsoft Windows|/usr/ports/x11/v/pkg/DESCR|dburr@FreeBSD.ORG|x11 devel graphics|gmake-3.76.1|
viewfax-2.3|/usr/ports/x11/viewfax|/usr/X11R6|Display files containing g3 and/or g4 coded fax pages.|/usr/ports/x11/viewfax/pkg/DESCR|jmz@FreeBSD.org|x11||
windowmaker-0.16.1|/usr/ports/x11/windowmaker|/usr/X11R6|This window manager is a GNUStep-compliant NeXTStep clone.|/usr/ports/x11/windowmaker/pkg/DESCR|handy@physics.montana.edu|x11|gmake-3.76.1 jpeg-6b libproplist-0.7.1 png-1.0.2 tiff-3.4 xpm-3.4k|jpeg-6b png-1.0.2 tiff-3.4 xpm-3.4k
workplace-1.0a3|/usr/ports/x11/workplace|/usr/X11R6|File manager and launcher.|/usr/ports/x11/workplace/pkg/DESCR|andy@icc.surw.chel.su|x11|gmake-3.76.1 gtk-1.0.4|gtk-1.0.4
wm2-3.0|/usr/ports/x11/wm2|/usr/X11R6|A very simple window manager for X|/usr/ports/x11/wm2/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||
wmtime-1.0b2|/usr/ports/x11/wmtime|/usr/X11R6|Time/Date applet for WindowMaker.|/usr/ports/x11/wmtime/pkg/DESCR|rneswold@mcs.net|x11|xpm-3.4k|xpm-3.4k
wmx-4.0|/usr/ports/x11/wmx|/usr/X11R6|Extended version of wm2 - A simple window manager for X|/usr/ports/x11/wmx/pkg/DESCR|sec@42.org|x11|xpm-3.4k|xpm-3.4k
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||
xalarm-3.06|/usr/ports/x11/xalarm|/usr/X11R6|An X based alarm clock.|/usr/ports/x11/xalarm/pkg/DESCR|desmo@bandwidth.org|x11||
xaniroc-1.02|/usr/ports/x11/xaniroc|/usr/X11R6|Animate your root-cursor.|/usr/ports/x11/xaniroc/pkg/DESCR|sec@42.org|x11||
xantfarm-1.16|/usr/ports/x11/xantfarm|/usr/X11R6|ant hill simulation on X11 root window|/usr/ports/x11/xantfarm/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||
xautolock-1.11|/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||
xbae-4.6.2|/usr/ports/x11/xbae|/usr/X11R6|A Motif-based widget which displays a grid of cells as a spreadsheet.|/usr/ports/x11/xbae/pkg/DESCR|Lars.Koeller@Uni-Bielefeld.de|x11 math||
xbuffy-3.3|/usr/ports/x11/xbuffy|/usr/X11R6|A replacement for xbiff that handles multiple mail files.|/usr/ports/x11/xbuffy/pkg/DESCR|dchapes@zeus.leitch.com|x11||
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||
xco-1.3|/usr/ports/x11/xco|/usr/X11R6|Display X11 color names and colors|/usr/ports/x11/xco/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|x11||
xcoloredit-1.2|/usr/ports/x11/xcoloredit|/usr/X11R6|Find colour values by graphical colour mixing|/usr/ports/x11/xcoloredit/pkg/DESCR|taoka@infonets.hiroshima-u.ac.jp|x11||
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|ports@FreeBSD.ORG|x11||
xdaliclock-2.11|/usr/ports/x11/xdaliclock|/usr/X11R6|A rather neat animated clock.|/usr/ports/x11/xdaliclock/pkg/DESCR|gpalmer@FreeBSD.ORG|x11||
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|xpm-3.4k|xpm-3.4k
xfce-1.2.4|/usr/ports/x11/xfce|/usr/X11R6|XForm Cool Environment|/usr/ports/x11/xfce/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11|gmake-3.76.1 xforms-0.88.1 xpm-3.4k|xforms-0.88.1 xpm-3.4k
xfed-1.0|/usr/ports/x11/xfed|/usr/X11R6|A program that will let you edit X fonts (.bdf files)|/usr/ports/x11/xfed/pkg/DESCR|ports@FreeBSD.ORG|x11||
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|xpm-3.4k|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||
xfm-1.3.2|/usr/ports/x11/xfm|/usr/X11R6|The X File Manager.|/usr/ports/x11/xfm/pkg/DESCR|ports@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
xforms-0.88.1|/usr/ports/x11/xforms|/usr/X11R6|A graphical user interface toolkit for X Window System.|/usr/ports/x11/xforms/pkg/DESCR|gena@NetVision.net.il|graphics x11||
xgrab-2.41|/usr/ports/x11/xgrab|/usr/X11R6|An X-Windows image grabber.|/usr/ports/x11/xgrab/pkg/DESCR|jmz@FreeBSD.org|x11||
xkeycaps-2.42|/usr/ports/x11/xkeycaps|/usr/X11R6|Graphically display and edit the keyboard mapping.|/usr/ports/x11/xkeycaps/pkg/DESCR|jmz@FreeBSD.org|x11||
xloadimage-4.1|/usr/ports/x11/xloadimage|/usr/X11R6|X11 Image Loading Utility.|/usr/ports/x11/xloadimage/pkg/DESCR|jmz@FreeBSD.org|x11||
xlockmore-4.11|/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|xpm-3.4k|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|Nakai@Mlab.t.u-tokyo.ac.jp|x11|gmake-3.76.1|
xmbdfed-2.7|/usr/ports/x11/xmbdfed|/usr/X11R6|A Motif tool for editing X11 bitmap fonts|/usr/ports/x11/xmbdfed/pkg/DESCR|jfieber@FreeBSD.ORG|x11||
xmold-1.0|/usr/ports/x11/xmold|/usr/X11R6|mold spreading over your X-Window screen|/usr/ports/x11/xmold/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||
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||
xpostit-3.3.1|/usr/ports/x11/xpostit|/usr/X11R6|PostIt (R) messages onto your X11 screen|/usr/ports/x11/xpostit/pkg/DESCR|joerg@FreeBSD.ORG|x11||
XPostitPlus-2.3|/usr/ports/x11/xpostitPlus|/usr/X11R6|PostIt (R) messages onto your X11 screen|/usr/ports/x11/xpostitPlus/pkg/DESCR|mi@aldan.ziplink.net|x11||
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||
xscreensaver-2.24|/usr/ports/x11/xscreensaver|/usr/X11R6|Save your screen while you entertain your cat|/usr/ports/x11/xscreensaver/pkg/DESCR|jseger@FreeBSD.ORG|x11|xpm-3.4k|xpm-3.4k
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||
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||
xtacy-1.13|/usr/ports/x11/xtacy|/usr/X11R6|an X11 trippy color-cycling toy|/usr/ports/x11/xtacy/pkg/DESCR|matt@bdd.net|x11||
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||
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||
xtoolwait-1.1|/usr/ports/x11/xtoolwait|/usr/X11R6|Tool startup utility for X11|/usr/ports/x11/xtoolwait/pkg/DESCR|ports@FreeBSD.ORG|x11||
xview-clients-3.2.1|/usr/ports/x11/xview-clients|/usr/X11R6|OpenLook applications and man pages.|/usr/ports/x11/xview-clients/pkg/DESCR|ports@FreeBSD.ORG|x11|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.1
xview-config-3.2.1|/usr/ports/x11/xview-config|/usr/X11R6|OpenLook Toolkit config files.|/usr/ports/x11/xview-config/pkg/DESCR|ports@FreeBSD.ORG|x11||
xview-lib-3.2.1|/usr/ports/x11/xview-lib|/usr/X11R6|OpenLook Toolkit libs, includes, and man pages.|/usr/ports/x11/xview-lib/pkg/DESCR|ports@FreeBSD.ORG|x11|xview-config-3.2.1|xview-config-3.2.1
xwit-1.0|/usr/ports/x11/xwit|/usr/X11R6|X interface tool|/usr/ports/x11/xwit/pkg/DESCR|tg@FreeBSD.ORG|x11||
xzoom-0.3|/usr/ports/x11/xzoom|/usr/X11R6|magnify, rotate, mirror the image on the X screen|/usr/ports/x11/xzoom/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11||