summaryrefslogtreecommitdiff
path: root/INDEX
blob: fc3f5ba18562ebf97098944df94b07509b9a060e (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
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@klemm.gtn.com|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.75|
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|swallace@freebsd.org|archivers||
p5-Compress-Zlib-0.50|/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.004|perl-5.004
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.1|/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.1|/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|unzip-5.3.1|
zip-2.1|/usr/ports/archivers/zip|/usr/local|Create/update ZIP files compatabile with pkzip.|/usr/ports/archivers/zip/pkg/DESCR|ache@FreeBSD.ORG|archivers|unzip-5.3.1|
zip+crypt-2.2m|/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-5.3.1|
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|pcs51674@asciinet.or.jp|astro games|lha-1.14c|
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|searle@longacre.demon.co.uk|astro x11||
sunclock-1.3|/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.0|/usr/ports/astro/xephem|/usr/X11R6|an interactive astronomical ephemeris program|/usr/ports/astro/xephem/pkg/DESCR|erich@FreeBSD.org|astro||
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|asami@FreeBSD.ORG|astro x11||
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||
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-3.8 gmake-3.75 xpm-3.4j|
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||
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|torstenb@FreeBSD.org|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.59k|/usr/ports/audio/mpg123|/usr/local|Command-line player for mpeg layer 1, 2 and 3 audio|/usr/ports/audio/mpg123/pkg/DESCR|mcj@acquiesce.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|/usr/ports/audio/rosegarden|/usr/local|The Rosegarden Editor and Sequencer suite.|/usr/ports/audio/rosegarden/pkg/DESCR|shanee@rabbit.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.75 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.08a|/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.3|/usr/ports/audio/splay|/usr/local|An audio player/decoder that decodes MPEG Layer I,II,III and WAV files.|/usr/ports/audio/splay/pkg/DESCR|junker@jazz.snu.ac.kr|audio||
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.1|
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.75|
workman-1.3|/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
xcd-1.6|/usr/ports/audio/xcd|/usr/local|A Tcl/Tk CD player.|/usr/ports/audio/xcd/pkg/DESCR|jmz@FreeBSD.org|audio tk41||tk-4.1
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.1|/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||
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||
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||
netperf-2.1.2|/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|furusawa@com.cs.osakafu-u.ac.jp|benchmarks x11|sharutils-4.2|
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.75|
felt-3.02|/usr/ports/cad/felt|/usr/local|A system for Finite Element Analysis|/usr/ports/cad/felt/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|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||
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.75|
mars-2.1|/usr/ports/cad/mars|/usr/local|Maryland Routing Simulator|/usr/ports/cad/mars/pkg/DESCR|obrien@cs.ucdavis.edu|cad||
pcb-1.4.0|/usr/ports/cad/pcb|/usr/X11R6|X11 interactive printed circuit board layout system|/usr/ports/cad/pcb/pkg/DESCR|janek@gaja.ipan.lublin.pl|cad||m4-1.4
spice-3f4|/usr/ports/cad/spice|/usr/local|A general-purpose circuit simulator.|/usr/ports/cad/spice/pkg/DESCR|kaveman@magna.com.au|cad||
cn-Wnn-4.2|/usr/ports/chinese/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Chinese built)|/usr/ports/chinese/Wnn/pkg/DESCR|asami@FreeBSD.ORG|chinese||
cn-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.75|
cn-c2t-1.0|/usr/ports/chinese/c2t|/usr/local|translates GB/Big5 encoding to tone pinyin|/usr/ports/chinese/c2t/pkg/DESCR|obrien@NUXI.com|chinese||
cn-celvis-1.3|/usr/ports/chinese/celvis|/usr/local|A vi/ex clone that speaks Chinese|/usr/ports/chinese/celvis/pkg/DESCR|obrien@cs.ucdavis.edu|chinese editors||
cn-cless-290|/usr/ports/chinese/cless|/usr/local|A better pager utility (and it speaks Chinese)|/usr/ports/chinese/cless/pkg/DESCR|obrien@cs.ucdavis.edu|chinese misc||
cn-cxterm-5.0.3|/usr/ports/chinese/cxterm|/usr/X11R6|An xterm that speaks Chinese|/usr/ports/chinese/cxterm/pkg/DESCR|obrien@cs.ucdavis.edu|chinese x11||
cn-gb2ps-2.02|/usr/ports/chinese/gb2ps|/usr/local|converts Chinese GB (simple) encoded text to PostScript|/usr/ports/chinese/gb2ps/pkg/DESCR|obrien@NUXI.com|chinese||
gbscript-1.11|/usr/ports/chinese/gbscript|/usr/local|converts GB simplified Chinese text to PostScript|/usr/ports/chinese/gbscript/pkg/DESCR|obrien@NUXI.com|chinese||
cn-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@NUXI.com|chinese||
cn-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@NUXI.com|chinese||
cn-nvi-big5-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|chinese editors||
cn-nvi-euccn-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|chinese editors||
cn-nvi-euctw-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|chinese editors||
bpl+-1.0|/usr/ports/comms/bpl+|/usr/local|B Plus file transfer protocol|/usr/ports/comms/bpl+/pkg/DESCR|max@FreeBSD.ORG|comms||
ecu-4.07|/usr/ports/comms/ecu|/usr/local|Extended Call Utility|/usr/ports/comms/ecu/pkg/DESCR|ache@FreeBSD.ORG|comms||
hylafax-4.0.1|/usr/ports/comms/hylafax|/usr/local|A fax software.|/usr/ports/comms/hylafax/pkg/DESCR|itojun@itojun.org|comms|afm-1.0 bash-1.14.7 gmake-3.75 jpeg-6a tiff-3.4|bash-1.14.7 jpeg-6a 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||
lrzsz-0.12.16|/usr/ports/comms/lrzsz|/usr/local|Receive/Send files via X/Y/ZMODEM protocol.  (unrestrictive)|/usr/ports/comms/lrzsz/pkg/DESCR|obrien@cs.ucdavis.edu|comms|gmake-3.75|
mgetty-1.0.0|/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.75|/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.16
rzsz-3.46|/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.1|
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||Xaw3d-1.3 bash-1.14.7 ghostscript-4.03 gv-3.5.8 hylafax-4.0.1 jpeg-6a 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@cs.ucdavis.edu|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||
mimepp-0.8.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.04|/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.004|perl-5.004
p5-MIME-Base64-2.01|/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.004|perl-5.004
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.12|/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|ac199@freenet.hamilton.on.ca|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|pcs51674@asciinet.or.jp|converters|jp-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|ac199@freenet.hamilton.on.ca|converters||
xdeview-0.5.13|/usr/ports/converters/xdeview|/usr/X11R6|An X11 program for uu/xx/Base64/BinHex de-/encoding.|/usr/ports/converters/xdeview/pkg/DESCR|ac199@freenet.hamilton.on.ca|converters|uulib-0.5.13|uulib-0.5.13
db-2.1.0|/usr/ports/databases/db|/usr/local|the Berkeley DB package, revision 2|/usr/ports/databases/db/pkg/DESCR|josh@ican.net|databases||
sm-3.1|/usr/ports/databases/exodus|/usr/local|Exodus Storage Manager - Low level storage manager|/usr/ports/databases/exodus/pkg/DESCR|nils@guru.ims.uni-stuttgart.de|databases|dmake-4.0 gmake-3.75|dmake-4.0
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.102b|/usr/ports/databases/gnats|/usr/local|Cygnus GNATS bug tracking system.|/usr/ports/databases/gnats/pkg/DESCR|pst@FreeBSD.org|databases|gmake-3.75 m4-1.4|
msql-2.0|/usr/ports/databases/msql|/usr/local|the Mini SQL server, version 2|/usr/ports/databases/msql/pkg/DESCR|ports@FreeBSD.ORG|databases||
mysql-3.20.22|/usr/ports/databases/mysql|/usr/local|a multithreaded SQL database.|/usr/ports/databases/mysql/pkg/DESCR|josh@ican.net|databases|gmake-3.75|perl-5.004
p5-DBD-mysql-1.65|/usr/ports/databases/p5-DBD-mysql|/usr/local|perl5 module for accessing MySQL databases using DBI|/usr/ports/databases/p5-DBD-mysql/pkg/DESCR|jfitz@FreeBSD.ORG|databases perl5|gmake-3.75 mysql-3.20.22 p5-DBI-0.85 perl-5.004|perl-5.004
p5-DBD-Pg-0.3|/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.75 p5-DBI-0.85 perl-5.004 postgresql-6.1|perl-5.004
p5-DBI-0.85|/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.004|perl-5.004
p5-Msql-0.91|/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 p5-DBI-0.85 perl-5.004|perl-5.004
p5-Mysql-1.17|/usr/ports/databases/p5-Mysql|/usr/local|perl5 interface to the MySQL database|/usr/ports/databases/p5-Mysql/pkg/DESCR|jfitz@FreeBSD.ORG|databases perl5|gmake-3.75 mysql-3.20.22 perl-5.004|perl-5.004
p5-Pg-1.5.4|/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.75 perl-5.004 postgresql-6.1|perl-5.004
postgresql-6.1|/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.75|
typhoon-1.10.3|/usr/ports/databases/typhoon|/usr/local|a relational database library|/usr/ports/databases/typhoon/pkg/DESCR|erich@FreeBSD.org|databases||
xfsql-1.0|/usr/ports/databases/xfsql|/usr/X11R6|An xforms based mSQL interactive query console.|/usr/ports/databases/xfsql/pkg/DESCR|jfitz@FreeBSD.ORG|databases x11|msql-2.0 xforms-0.86|xforms-0.86
swig-1.1b5|/usr/ports/devel/SWIG|/usr/local|Simplified Wrapper and Interface Generator.|/usr/ports/devel/SWIG/pkg/DESCR|erich@FreeBSD.org|devel||
asl-1.41r6|/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.0|/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.10|/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||
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.75|bash-1.14.7
crossgo32-1.3|/usr/ports/devel/crossgo32|/usr/local|Cross Development Environment for 32-bit DOS|/usr/ports/devel/crossgo32/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|devel|gmake-3.75|
crosssco-1.3|/usr/ports/devel/crosssco|/usr/local|SCO (R) Cross Development Environment|/usr/ports/devel/crosssco/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|devel|gmake-3.75|
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||
cxref-1.3|/usr/ports/devel/cxref|/usr/local|C program cross-referencing & documentation tool.|/usr/ports/devel/cxref/pkg/DESCR|tg@freebsd.org|devel|gmake-3.75|
ddd-2.1.1|/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.75|
dmake-4.0|/usr/ports/devel/dmake|/usr/local|Another hyper make utility.|/usr/ports/devel/dmake/pkg/DESCR|nils@guru.ims.uni-stuttgart.de|devel|gmake-3.75|
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.0|/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.75|
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.75|
gdbtk-4.16|/usr/ports/devel/gdbtk|/usr/local|Tk interface to gdb.|/usr/ports/devel/gdbtk/pkg/DESCR|msmith@FreeBSD.org|devel tk41|gmake-3.75 tk-4.1|tk-4.1
gmake-3.75|/usr/ports/devel/gmake|/usr/local|GNU version of 'make' utility|/usr/ports/devel/gmake/pkg/DESCR|ports@FreeBSD.ORG|devel||
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-19.34b gmake-3.75|
lclint-2.2a|/usr/ports/devel/lclint|/usr/local|A tool for statically checking C programs.|/usr/ports/devel/lclint/pkg/DESCR|moeding@bn.DeTeMobil.de|devel|gmake-3.75|
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||
libslang-0.99.38|/usr/ports/devel/libslang|/usr/local|Routines for rapid alpha-numeric terminal applications development|/usr/ports/devel/libslang/pkg/DESCR|ache@FreeBSD.org|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
linuxgdb-4.16|/usr/ports/devel/linuxgdb|/usr/local|A Linux debugger for cross-development purposes.|/usr/ports/devel/linuxgdb/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|devel||
m4-1.4|/usr/ports/devel/m4|/usr/local|GNU's m4.|/usr/ports/devel/m4/pkg/DESCR|ports@FreeBSD.ORG|devel||
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|ports@FreeBSD.ORG|devel||
noweb-2.8|/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|icon-9.3
omniBroker-1.0|/usr/ports/devel/omniBroker|/usr/local|A CORBA 2 implementation|/usr/ports/devel/omniBroker/pkg/DESCR|ejc@bazzle.com|devel||
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.004|perl-5.004
p5-BSD-Resource-1.06|/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.004|perl-5.004
p5-C-Scan-0.3|/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.04 perl-5.004|perl-5.004
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.004|perl-5.004
p5-Curses-1.01|/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.004|perl-5.004
p5-Data-Dumper-2.07|/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.004|perl-5.004
p5-Data-Flow-0.04|/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.004|perl-5.004
p5-Date-Manip-5.10|/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.004|perl-5.004
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.004|perl-5.004
p5-Devel-Peek-0.82|/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.004|perl-5.004
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.004|perl-5.004
p5-Errno-1.01|/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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
p5-Filter-1.12|/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.004|perl-5.004
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.004|perl-5.004
p5-IniConf-0.91|/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.004|perl-5.004
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.004|perl-5.004
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.004|p5-Curses-1.01 perl-5.004
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.004|perl-5.004 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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
p5-Storable-0.5|/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.004|perl-5.004
p5-Term-ReadKey-2.07|/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.004|perl-5.004
p5-Time-960117|/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.004|perl-5.004
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.004|perl-5.004
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||
portlint-1.33|/usr/ports/devel/portlint|/usr/local|a verifier for FreeBSD port directory.|/usr/ports/devel/portlint/pkg/DESCR|itojun@itojun.org|devel||
prcs-1.1.1|/usr/ports/devel/prcs|/usr/local|The Project Revision Control System|/usr/ports/devel/prcs/pkg/DESCR|jmacd@FreeBSD.ORG|devel|gmake-3.75|
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.1|kaffe-0.9.1
scogdb-4.16|/usr/ports/devel/scogdb|/usr/local|An SCO debugger for cross-development purposes.|/usr/ports/devel/scogdb/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|devel||
tkcvs-6.0|/usr/ports/devel/tkcvs|/usr/local|Tcl/Tk frontends to CVS and diff |/usr/ports/devel/tkcvs/pkg/DESCR|shanee@rabbit.augusta.de|devel tk41|tk-4.1|tk-4.1
tvision-0.4|/usr/ports/devel/tvision|/usr/local|The Turbo Vision C++ CUI library for UNIX|/usr/ports/devel/tvision/pkg/DESCR|ssigala@globalnet.it|devel||
vtcl-1.10|/usr/ports/devel/vtcl|/usr/local|An Application Development Environment For the TCL/TK language.|/usr/ports/devel/vtcl/pkg/DESCR|vanilla@MinJe.com.TW|devel x11 tk42|tcl-7.6 tk-4.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.4.2|/usr/ports/devel/xwpe|/usr/local|A Borland-like IDE programming environment.|/usr/ports/devel/xwpe/pkg/DESCR|obrien@NUXI.com|devel|gmake-3.75|
xxgdb-1.12|/usr/ports/devel/xxgdb|/usr/X11R6|An X window interface for gdb|/usr/ports/devel/xxgdb/pkg/DESCR|asami@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@rabbit.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.6|/usr/ports/editors/beav|/usr/local|Binary Editor And Viewer, a full featured binary file editor.|/usr/ports/editors/beav/pkg/DESCR|thomas@ghpc8.ihf.rwth-aachen.de|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||
e93-1.2.6|/usr/ports/editors/e93|/usr/X11R6|A nifty editor based on Tcl/Tk|/usr/ports/editors/e93/pkg/DESCR|asami@FreeBSD.ORG|editors||
emacs-19.34b|/usr/ports/editors/emacs|/usr/local|GNU editing macros.|/usr/ports/editors/emacs/pkg/DESCR|ports@FreeBSD.ORG|editors|gmake-3.75|
gvim-4.6|/usr/ports/editors/gvim|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/gvim/../vim/pkg/DESCR|obrien@cs.ucdavis.edu|editors|gmake-3.75|
jed-0.98.4|/usr/ports/editors/jed|/usr/local|The JED text editor|/usr/ports/editors/jed/pkg/DESCR|eric@cybernut.com|editors|libslang-0.99.38|libslang-0.99.38
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||
mule-2.3|/usr/ports/editors/mule|/usr/local|A multilingual emacs|/usr/ports/editors/mule/pkg/DESCR|asami@FreeBSD.ORG|editors|gmake-3.75|
nedit-4.0.3|/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.4j|xpm-3.4j
nvi-m17n-1.79-970617|/usr/ports/editors/nvi|/usr/local|A clone of vi/ex, with multilingual patch, no default settings.|/usr/ports/editors/nvi/pkg/DESCR|itojun@itojun.org|japanese editors||
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
uemacs-3.12|/usr/ports/editors/uemacs|/usr/local|A full screen editor.|/usr/ports/editors/uemacs/pkg/DESCR|ports@freebsd.org|editors|unzip-5.3.1|
uzap-1.0|/usr/ports/editors/uzap|/usr/local|Visual binary file editor|/usr/ports/editors/uzap/pkg/DESCR|joerg@FreeBSD.org|editors||
vile-7.1|/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||
vim-4.6|/usr/ports/editors/vim|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim/pkg/DESCR|obrien@FreeBSD.org|editors|gmake-3.75|
vim-5.0k|/usr/ports/editors/vim5beta|/usr/local|A vi "workalike", with many additional features.|/usr/ports/editors/vim5beta/pkg/DESCR|obrien@FreeBSD.org|editors|gmake-3.75|
xcoral-2.5|/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@rabbit.augusta.de|editors x11|xpm-3.4j|xpm-3.4j
xemacs-19.15.7|/usr/ports/editors/xemacs|/usr/local|XEmacs text editor binaries|/usr/ports/editors/xemacs/pkg/DESCR|me@FreeBSD.org|editors|gmake-3.75 jpeg-6a png-0.96 xpm-3.4j|jpeg-6a png-0.96 xpm-3.4j
xvile-7.1|/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||
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||tk-4.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||
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.75|
ines-0.6|/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.6|/usr/ports/emulators/mtools|/usr/local|A collection of tools for manipulating MSDOS files.|/usr/ports/emulators/mtools/pkg/DESCR|jmz@FreeBSD.org|emulators|gmake-3.75|
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||
sim6811-1.6|/usr/ports/emulators/sim6811|/usr/local|A Motorola 6811 simulator.|/usr/ports/emulators/sim6811/pkg/DESCR|erich@FreeBSD.ORG|emulators||
spim-5.9|/usr/ports/emulators/spim|/usr/local|MIPS R2000 Simulator|/usr/ports/emulators/spim/pkg/DESCR|obrien@cs.ucdavis.edu|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 tk-4.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||
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-97.06.29|/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||
x48-0.4.0|/usr/ports/emulators/x48|/usr/X11R6|an HP48sx emulator|/usr/ports/emulators/x48/pkg/DESCR|erich@FreeBSD.org|emulators||
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.75|
acm-4.7|/usr/ports/games/acm|/usr/local|A flight simulator for X11|/usr/ports/games/acm/pkg/DESCR|joerg@FreeBSD.org|games||
agm-1.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.1|/usr/ports/games/angband|/usr/X11R6|Rogue-like game with color, X11 support.|/usr/ports/games/angband/pkg/DESCR|mph@pobox.com|games||
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||
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.7.1|/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||
crossfire-0.93.0|/usr/ports/games/crossfire|/usr/local|multiplayer graphical arcade and adventure game made for X-Windows|/usr/ports/games/crossfire/pkg/DESCR|andreas@klemm.gtn.com|games|gmake-3.75 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4j|perl-5.004 xpm-3.4j
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||tk-4.1
doom-1.8|/usr/ports/games/doom|/usr/local|Id Software's Doom for linux|/usr/ports/games/doom/pkg/DESCR|ports@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.0j|/usr/ports/games/freeciv|/usr/X11R6|A civilisation clone for x;  multiplayer|/usr/ports/games/freeciv/pkg/DESCR|ada@bsd.org|games|xpm-3.4j|xpm-3.4j
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||
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@scds.com|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||
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
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||
klondike-1.8|/usr/ports/games/klondike|/usr/local|A solitaire game for X11.|/usr/ports/games/klondike/pkg/DESCR|johnh@isi.edu|games||tk-4.1
lincity-1.04|/usr/ports/games/lincity|/usr/local|rich city simulation game for X|/usr/ports/games/lincity/pkg/DESCR|proff@iq.org|games|gmake-3.75|
nethack-3.2.2|/usr/ports/games/nethack|/usr/local|A dungeon explorin', slashin', hackin' game.|/usr/ports/games/nethack/pkg/DESCR|asami@FreeBSD.ORG|games|gmake-3.75 xpm-3.4j|xpm-3.4j
nethack-3.2.2-qt|/usr/ports/games/nethack-qt|/usr/local|A dungeon explorin', slashin', hackin' game with graphic and sound support|/usr/ports/games/nethack-qt/pkg/DESCR|andreas@FreeBSD.ORG|games x11|gmake-3.75 nas-1.2.5 netpbm-94.3.1 qt-1.2 tiff-3.3 xpm-3.4j|nas-1.2.5 qt-1.2 xpm-3.4j
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||
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 tk41|lha-1.14c unzip-5.3.1|
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|asami@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||
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 tk41||tk-4.1
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|pgiffuni@fps.biblos.unal.edu.co|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|asami@FreeBSD.ORG|games|xpm-3.4j|xpm-3.4j
xbl-1.0h|/usr/ports/games/xbl|/usr/X11R6|XBlockout - A 3d version of Tetris|/usr/ports/games/xbl/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|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.2|/usr/ports/games/xblast|/usr/X11R6|graphical multi-player real-time strategy game for X11|/usr/ports/games/xblast/pkg/DESCR|se@FreeBSD.ORG|games||
xboard-3.6.1|/usr/ports/games/xboard|/usr/local|X frontend for GNU Chess and the Internet Chess Server|/usr/ports/games/xboard/pkg/DESCR|xaa@stack.nl|games||
xboing-2.3|/usr/ports/games/xboing|/usr/X11R6|X windows arcade game.|/usr/ports/games/xboing/pkg/DESCR|janek@gaja.ipan.lublin.pl|games|xpm-3.4j|xpm-3.4j
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||
xcubes-5.4.1|/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.4j|xpm-3.4j
xdino-5.4.1|/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|asami@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.4j|xpm-3.4j
xfrisk-0.99b4|/usr/ports/games/xfrisk|/usr/X11R6|A multi-player networked Risk game for X11.|/usr/ports/games/xfrisk/pkg/DESCR|mph@pobox.com|games||
xgalaga-1.6c|/usr/ports/games/xgalaga|/usr/X11R6|Galaga resurrected on X|/usr/ports/games/xgalaga/pkg/DESCR|asami@FreeBSD.ORG|games||
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.75 rpm-2.4.2|
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||
xjewel-1.6|/usr/ports/games/xjewel|/usr/X11R6|X windows dropping jewels game.|/usr/ports/games/xjewel/pkg/DESCR|jmz@FreeBSD.org|games||
xkobo-1.9|/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||
xlife-3.0|/usr/ports/games/xlife|/usr/X11R6|John Horton Conway's Game of Life|/usr/ports/games/xlife/pkg/DESCR|asami@FreeBSD.ORG|games||
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||
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.4j|xpm-3.4j
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||
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.75|
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||
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.4j|xpm-3.4j
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.1|
xpat2-1.04|/usr/ports/games/xpat2|/usr/X11R6|An X11 solitaire game with 14 variations.|/usr/ports/games/xpat2/pkg/DESCR|mph@pobox.com|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|swallace@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.4j|xpm-3.4j
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||
xrobots-1.0|/usr/ports/games/xrobots|/usr/X11R6|Fight off villainous robots (X version).|/usr/ports/games/xrobots/pkg/DESCR|swallace@FreeBSD.org|games||
xrubik-5.4.1|/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||
xshisen-1.35|/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.4j|xpm-3.4j
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|thomas@ghpc8.ihf.rwth-aachen.de|games||
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||
xsokoban-3.3b|/usr/ports/games/xsokoban|/usr/X11R6|a puzzle of pushing objects to the goals.|/usr/ports/games/xsokoban/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|games|xpm-3.4j|xpm-3.4j
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.4j|xpm-3.4j
xtetris-2.6|/usr/ports/games/xtetris|/usr/X11R6|X Window block dropping game.|/usr/ports/games/xtetris/pkg/DESCR|swallace@FreeBSD.org|games||
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|asami@FreeBSD.ORG|games||
xtriangles-5.4.1|/usr/ports/games/xtriangles|/usr/X11R6|Triangles puzzle|/usr/ports/games/xtriangles/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|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||
ImageMagick-3.8.6|/usr/ports/graphics/ImageMagick|/usr/X11R6|An X11 package for display and interactive manipulation of images.|/usr/ports/graphics/ImageMagick/pkg/DESCR|ports@freebsd.org|graphics|jbigkit-0.9 jpeg-6a mpeg_lib-1.1 png-0.96 tiff-3.3|jbigkit-0.9 jpeg-6a mpeg_lib-1.1 png-0.96 tiff-3.3
Mesa-2.1|/usr/ports/graphics/Mesa|/usr/X11R6|A graphics library similar to SGI's OpenGL.|/usr/ports/graphics/Mesa/pkg/DESCR|ports@freebsd.org|graphics||
aero-1.5.2|/usr/ports/graphics/aero|/usr/X11R6|An X11 based modeler for povray|/usr/ports/graphics/aero/pkg/DESCR|erich@FreeBSD.org|graphics|fwf-3.8 xpm-3.4j|png-0.96 povray-3.0 xpm-3.4j
camediaplay-970715|/usr/ports/graphics/camediaplay|/usr/local|digital camera downloading tool for Sanyo protocol (Epson/Sanyo/Olympus/Agfa)|/usr/ports/graphics/camediaplay/pkg/DESCR|itojun@itojun.org|graphics||
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.75|
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|Mesa-2.1 xforms-0.86|Mesa-2.1 xforms-0.86
gd-1.2|/usr/ports/graphics/gd|/usr/local|A graphics library for fast GIF creation|/usr/ports/graphics/gd/pkg/DESCR|jeff@cetlink.net|graphics||
giflib-2.3|/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||
gimp-0.54.1|/usr/ports/graphics/gimp|/usr/X11R6|General Image Manipulation Program|/usr/ports/graphics/gimp/pkg/DESCR|moro@race.u-tokyo.ac.jp|graphics|jpeg-6a png-0.96 tiff-3.3 xpm-3.4j|jpeg-6a png-0.96 tiff-3.3 xpm-3.4j
gimp-0.99.10|/usr/ports/graphics/gimp-devel|/usr/X11R6|developer's beta release of the General Image Manipulation Program|/usr/ports/graphics/gimp-devel/pkg/DESCR|erich@FreeBSD.org|graphics|gmake-3.75 jpeg-6a tiff-3.3 xpm-3.4j|jpeg-6a tiff-3.3 xpm-3.4j
hobbes-icons-xpm3-1.0|/usr/ports/graphics/hobbes-icons-xpm|/usr/X11R6|collection of over 3000 icons in XPM1 or XPM3 format.|/usr/ports/graphics/hobbes-icons-xpm/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|graphics||
hpscan-1.0|/usr/ports/graphics/hpscan|/usr/X11R6|HP scanner driver.|/usr/ports/graphics/hpscan/pkg/DESCR|nate@FreeBSD.org|graphics|jpeg-6a|jpeg-6a
imlib-0.1|/usr/ports/graphics/imlib|/usr/X11R6|a graphic library for enlightenment package|/usr/ports/graphics/imlib/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|graphics|gmake-3.75|ImageMagick-3.8.6 jbigkit-0.9 jpeg-6a mpeg_lib-1.1 netpbm-94.3.1 png-0.96 tiff-3.3
jbigkit-0.9|/usr/ports/graphics/jbigkit|/usr/local|A lossless image compression library|/usr/ports/graphics/jbigkit/pkg/DESCR|mi@aldan.ziplink.net|graphics||
jpeg-6a|/usr/ports/graphics/jpeg|/usr/local|IJG's jpeg compression utilities.|/usr/ports/graphics/jpeg/pkg/DESCR|ports@FreeBSD.ORG|graphics||
mpeg_lib-1.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.3|/usr/ports/graphics/mpeg_play|/usr/X11R6|A program to play mpeg movies on X displays|/usr/ports/graphics/mpeg_play/pkg/DESCR|asami@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|netpbm-94.3.1 tiff-3.3|
mplex-1.1|/usr/ports/graphics/mplex|/usr/local|multiplexes MPEG component streams into system layers|/usr/ports/graphics/mplex/pkg/DESCR|erich@FreeBSD.org|graphics||
netpbm-94.3.1|/usr/ports/graphics/netpbm|/usr/X11R6|A toolkit for conversion of images between different formats|/usr/ports/graphics/netpbm/pkg/DESCR|asami@FreeBSD.ORG|graphics|tiff-3.3|tiff-3.3
p5-Image-Size-2.2|/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.004|perl-5.004
p5-GD-1.14|/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|gd-1.2 perl-5.004|perl-5.004
pgperl-1.0|/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.004 pgplot-5.1|perl-5.004 pgplot-5.1
pgplot-5.1|/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||
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.4j|xpm-3.4j
plotmtv-1.4.1|/usr/ports/graphics/plotmtv|/usr/X11R6|A multipurpose X11 plotting program|/usr/ports/graphics/plotmtv/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|graphics||
png-0.96|/usr/ports/graphics/png|/usr/local|Library for manipulating PNG images.|/usr/ports/graphics/png/pkg/DESCR|ache@FreeBSD.org|graphics||
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-0.96|png-0.96
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||
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.6|/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.0.9|/usr/ports/graphics/tgif|/usr/X11R6|Tgif is an Xlib-based two-dimensional drawing facility.|/usr/ports/graphics/tgif/pkg/DESCR|bmc@WillsCreek.COM|graphics x11||netpbm-94.3.1 tiff-3.3
tiff-3.3|/usr/ports/graphics/tiff|/usr/local|A library for reading and writing TIFF data files.|/usr/ports/graphics/tiff/pkg/DESCR|ports@FreeBSD.ORG|graphics||
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|ports@FreeBSD.ORG|graphics|jpeg-6a|jpeg-6a
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.1b|/usr/ports/graphics/urt|/usr/local|Utah raster toolkit - a toolkit and library for raster image processing.|/usr/ports/graphics/urt/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|graphics|netpbm-94.3.1 tiff-3.3|tiff-3.3
vcg-1.30|/usr/ports/graphics/vcg|/usr/X11R6|A Visualization Tool for compiler graphs|/usr/ports/graphics/vcg/pkg/DESCR|ports@FreeBSD.ORG|graphics||
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.6.4|/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-2.2|/usr/ports/graphics/xaos|/usr/local|A real time fractal browser for X11 and ASCII terminals.|/usr/ports/graphics/xaos/pkg/DESCR|koshy@india.hp.com|graphics||
xbmbrowser-5.1|/usr/ports/graphics/xbmbrowser|/usr/X11R6|View complete directories of X bitmaps and X pixmaps.|/usr/ports/graphics/xbmbrowser/pkg/DESCR|thomas@ghpc8.ihf.rwth-aachen.de|graphics|gmake-3.75 xpm-3.4j|xpm-3.4j
xdl-2.1|/usr/ports/graphics/xdl|/usr/X11R6|Display DL animations on an X screen|/usr/ports/graphics/xdl/pkg/DESCR|asami@FreeBSD.ORG|graphics x11||
xfig-3.1.4|/usr/ports/graphics/xfig|/usr/X11R6|A drawing program for X11|/usr/ports/graphics/xfig/pkg/DESCR|asami@FreeBSD.ORG|graphics x11|jpeg-6a xpm-3.4j|jpeg-6a transfig-3.1.2 xpm-3.4j
xfractint-3.00|/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|asami@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.01.17|/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.4.8|/usr/ports/graphics/xpaint|/usr/X11R6|A simple paint program.|/usr/ports/graphics/xpaint/pkg/DESCR|ports@freebsd.org|graphics x11|jpeg-6a png-0.96 tiff-3.3 xpm-3.4j|jpeg-6a png-0.96 tiff-3.3 xpm-3.4j
xpdf-0.7|/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.4j|/usr/ports/graphics/xpm|/usr/X11R6|The X Pixmap library.|/usr/ports/graphics/xpm/pkg/DESCR|ports@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-6a tiff-3.3|jpeg-6a tiff-3.3
jp-Canna-3.2.2|/usr/ports/japanese/Canna|/usr/local|Kana-Kanji conversion system|/usr/ports/japanese/Canna/pkg/DESCR|max@FreeBSD.ORG|japanese||
jp-Wnn-4.2|/usr/ports/japanese/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Japanese built)|/usr/ports/japanese/Wnn/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-a2ps-1.39|/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||
jp-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|gmake-3.75 jp-tcl-7.6 jp-tk-4.2 ocaml-1.03|jp-tcl-7.6 jp-tk-4.2
jp-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||
jp-chimera-1.65|/usr/ports/japanese/chimera|/usr/X11R6|X/Athena World-Wide Web client + kanji patch|/usr/ports/japanese/chimera/pkg/DESCR|asami@FreeBSD.ORG|japanese www||
jp-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.75 jp-Wnn-4.2 jp-wmule-2.3|etlfonts-noncjk-1.0 jp-less-290
jp-dvi2ps-2.0g|/usr/ports/japanese/dvi2ps|/usr/local|DVI to PostScript converter Japanese version|/usr/ports/japanese/dvi2ps/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|jp-nkf-1.62 jp-vflib-2.22|jp-vflib-2.22
jp-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||jp-less-290
jp-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|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-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||
jp-expect-5.22.0|/usr/ports/japanese/expect|/usr/local|A sophisticated scripter based on Japanized tcl/tk.|/usr/ports/japanese/expect/pkg/DESCR|taguchi@tohoku.iij.ad.jp|japanese|jp-tcl-7.6 jp-tk-4.2|jp-tk-4.2
jp-gawk-2.15.6|/usr/ports/japanese/gawk|/usr/local|GNU awk + multi-byte extension.|/usr/ports/japanese/gawk/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-ghostscript300-2.6.1.4|/usr/ports/japanese/ghostscript|/usr/local|GNU Postscript interpreter + Japanese patch.|/usr/ports/japanese/ghostscript/pkg/DESCR|ohmon@tom.sfc.keio.ac.jp|japanese print||jp-pkfonts300-1.0
jp-gn-gnspool-1.35|/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||
jp-gp-2.01|/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||ghostview-1.5 jp-a2ps-1.39 jp-dvi2ps-2.0g jp-tk-4.2 jp-vflib-2.22
jp-grep-2.0|/usr/ports/japanese/grep|/usr/local|GNU grep + multi-byte extension.|/usr/ports/japanese/grep/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-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.75|
jp-gxditview-0.98|/usr/ports/japanese/gxditview|/usr/X11R6|Japanized GNU's modified xditview|/usr/ports/japanese/gxditview/pkg/DESCR|asami@FreeBSD.ORG|japanese print||
jp-handbook-2.2|/usr/ports/japanese/handbook|/usr|The Japanese version of FreeBSD handbook.|/usr/ports/japanese/handbook/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-hex-1.03|/usr/ports/japanese/hex|/usr/local|A hexadecimal dump tool which handles Japanese.|/usr/ports/japanese/hex/pkg/DESCR|tomoak-i@is.aist-nara.ac.jp|japanese||
jp-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||
jp-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||
jp-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.75|
jp-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.75|
jp-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.75|
jp-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||
jp-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||
jp-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||
jp-ckinput2-2.0.1|/usr/ports/japanese/kinput2-canna|/usr/X11R6|An input server of Japanese text (Canna version)|/usr/ports/japanese/kinput2-canna/pkg/DESCR|asami@FreeBSD.ORG|japanese x11|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-cskinput2-2.0.1|/usr/ports/japanese/kinput2-canna+sj3|/usr/X11R6|An input server of Japanese text (Canna+SJ3 version)|/usr/ports/japanese/kinput2-canna+sj3/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese x11|jp-Canna-3.2.2 jp-sj3-2.0.1.13|jp-Canna-3.2.2
jp-kinput2-2.0.1|/usr/ports/japanese/kinput2-canna+sj3+wnn|/usr/X11R6|An input server of Japanese text (Canna+SJ3+Wnn version)|/usr/ports/japanese/kinput2-canna+sj3+wnn/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese x11|jp-Canna-3.2.2 jp-Wnn-4.2 jp-sj3-2.0.1.13|jp-Canna-3.2.2
jp-cwkinput2-2.0.1|/usr/ports/japanese/kinput2-canna+wnn|/usr/X11R6|An input server of Japanese text (Canna+Wnn version)|/usr/ports/japanese/kinput2-canna+wnn/pkg/DESCR|asami@FreeBSD.ORG|japanese x11|jp-Canna-3.2.2 jp-Wnn-4.2|jp-Canna-3.2.2
jp-skinput2-2.0.1|/usr/ports/japanese/kinput2-sj3|/usr/X11R6|An input server of Japanese text (SJ3 version)|/usr/ports/japanese/kinput2-sj3/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese x11|jp-sj3-2.0.1.13|
jp-swkinput2-2.0.1|/usr/ports/japanese/kinput2-sj3+wnn|/usr/X11R6|An input server of Japanese text (SJ3+Wnn version)|/usr/ports/japanese/kinput2-sj3+wnn/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese x11|jp-Wnn-4.2 jp-sj3-2.0.1.13|
jp-wkinput2-2.0.1|/usr/ports/japanese/kinput2-wnn|/usr/X11R6|An input server of Japanese text (Wnn version)|/usr/ports/japanese/kinput2-wnn/pkg/DESCR|asami@FreeBSD.ORG|japanese x11|jp-Wnn-4.2|
jp-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||
jp-kterm-6.2.0|/usr/ports/japanese/kterm|/usr/X11R6|An xterm that speaks Japanese|/usr/ports/japanese/kterm/pkg/DESCR|asami@FreeBSD.ORG|japanese x11||
jp-less-290|/usr/ports/japanese/less|/usr/local|less + zcat + ISO-2022 - a pager similar to more and pg|/usr/ports/japanese/less/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-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||
jp-man-1.1|/usr/ports/japanese/man|/usr/local|A manual display command for Japanese (EUC).|/usr/ports/japanese/man/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese||jp-groff-0.99 jp-less-290
jp-man-doc-2.2.2c|/usr/ports/japanese/man-doc|/usr/local|Japanese man pages (/bin,/usr/bin,/usr/ucb:man1,man8)|/usr/ports/japanese/man-doc/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|japanese||jp-groff-0.99 jp-less-290 jp-man-1.1
jp-mew-1.70|/usr/ports/japanese/mew|/usr/local|Message interface to Emacs Window|/usr/ports/japanese/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail japanese|gmake-3.75 mule-2.3|jp-less-290 jp-mh-6.8.3 jp-nkf-1.62
jp-mh-6.8.3|/usr/ports/japanese/mh|/usr/local|Rand MH mail handling system + Japanese patches|/usr/ports/japanese/mh/pkg/DESCR|asami@FreeBSD.ORG|japanese mail||jp-less-290
jp-mimekit-1.6|/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||
jp-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|gmake-3.75 jp-camltk41-1.0 jp-tcl-7.6 jp-tk-4.2 ocaml-1.03|jp-tcl-7.6 jp-tk-4.2
jp-mnews-1.20|/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||
jp-cmule-2.3|/usr/ports/japanese/mule-canna|/usr/local|A multilingual emacs, with Canna support built in|/usr/ports/japanese/mule-canna/pkg/DESCR|asami@FreeBSD.ORG|japanese editors|gmake-3.75 jp-Canna-3.2.2|jp-Canna-3.2.2
jp-smule-2.3|/usr/ports/japanese/mule-sj3|/usr/local|A multilingual emacs, with SJ3 support built in|/usr/ports/japanese/mule-sj3/pkg/DESCR|hidekazu@cs.titech.ac.jp|japanese editors|gmake-3.75 jp-sj3-2.0.1.13|
jp-wmule-2.3|/usr/ports/japanese/mule-wnn|/usr/local|A multilingual emacs, with Wnn support built in|/usr/ports/japanese/mule-wnn/pkg/DESCR|asami@FreeBSD.ORG|japanese editors|gmake-3.75 jp-Wnn-4.2|
jp-nethack-1.0.5.4.1|/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.75 xpm-3.4j|xpm-3.4j
jp-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||
jp-nkf-1.62|/usr/ports/japanese/nkf|/usr/local|Network Kanji code conversion Filter|/usr/ports/japanese/nkf/pkg/DESCR|max@FreeBSD.ORG|japanese||
jp-nvi-eucjp-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|japanese editors|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-nvi-iso2022jp-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|japanese editors|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-nvi-sjis-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|japanese editors|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-okphone-1.2|/usr/ports/japanese/okphone|/usr/local|conference-calling phone with Japanese support|/usr/ports/japanese/okphone/pkg/DESCR|asami@FreeBSD.ORG|japanese net||
jp-perl-5.003|/usr/ports/japanese/perl5|/usr/local|Pattern Extraction and Recognition Language + Japanese patches.|/usr/ports/japanese/perl5/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|japanese perl5||
jp-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|jp-Canna-3.2.2|jp-Canna-3.2.2
jp-pkfonts300-1.0|/usr/ports/japanese/pkfonts|/usr/local|Japanese PK fonts, for ghostscripts, xdvi and so on.|/usr/ports/japanese/pkfonts/pkg/DESCR|ohmon@tom.sfc.keio.ac.jp|japanese print|lha-1.14c|
jp-platex2e-97.02.01|/usr/ports/japanese/platex|/usr/local|ASCII Japanese LaTeX.|/usr/ports/japanese/platex/pkg/DESCR|max@FreeBSD.ORG|japanese print|jp-ptex-2.1.4|jp-ptex-2.1.4
jp-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||jp-kcc-1.0
jp-ptex-2.1.4|/usr/ports/japanese/ptex2|/usr/local|ASCII Japanese TeX|/usr/ports/japanese/ptex2/pkg/DESCR|max@FreeBSD.ORG|japanese print||
jp-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.1|
jp-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||
jp-sed-1.18|/usr/ports/japanese/sed|/usr/local|GNU sed + multi-byte extension.|/usr/ports/japanese/sed/pkg/DESCR|asami@FreeBSD.ORG|japanese||
jp-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||
jp-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||jp-sj3-2.0.1.13
jp-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.75 mule-2.3|
jp-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||
jp-tgif-216-p12|/usr/ports/japanese/tgif|/usr/X11R6|2-D drawing facility (Japanese version).|/usr/ports/japanese/tgif/pkg/DESCR|mita@jp.FreeBSD.org|japanese||netpbm-94.3.1 tiff-3.3
jp-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|jp-tcl-7.6|
jp-today-2.10b|/usr/ports/japanese/today|/usr/local|Tells you what day today is.|/usr/ports/japanese/today/pkg/DESCR|pcs51674@asciinet.or.jp|japanese games|jp-nkf-1.62 lha-1.14c|
jp-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||
jp-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|jp-vflib-2.22|jp-vflib-2.22
jp-vfghostscript-4.03|/usr/ports/japanese/vfghostscript4|/usr/local|Aladdin Postscript interpreter with Japanese vector font library.|/usr/ports/japanese/vfghostscript4/pkg/DESCR|mita@jp.FreeBSD.org|japanese print|jp-vflib-2.22|jp-vflib-2.22
jp-vflib-2.22|/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||
jp-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|jp-vflib-2.22|jp-vflib-2.22 pkfonts300-1.0
jp-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.75 mule-2.3|
jp-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|x11||
jp-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|ohmon@tom.sfc.keio.ac.jp|japanese print||jp-pkfonts300-1.0 pkfonts300-1.0
kr-Wnn-4.2|/usr/ports/korean/Wnn|/usr/local|A Japanese/Chinese/Korean input method (only Korean built)|/usr/ports/korean/Wnn/pkg/DESCR|ports@FreeBSD.ORG|korean||
kr-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.4j|xpm-3.4j
kr-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||
kr-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.75 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4j|xpm-3.4j
kr-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||
kr-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.75|
kr-hanmutt-0.60h9|/usr/ports/korean/hanmutt|/usr/local|"The Mongrel of Mail User Agents" (part Elm, Pine, mh), with Hangul support|/usr/ports/korean/hanmutt/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail||
kr-hanterm-304b3|/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||kr-johabfonts-304
kr-hanterm-304b3af|/usr/ports/korean/hanterm-autofont|/usr/X11R6|An xterm hacks for managing Korean languages.|/usr/ports/korean/hanterm-autofont/pkg/DESCR|junker@jazz.snu.ac.kr|korean x11||kr-johabfonts-304
kr-hanterm-xf86-3.2|/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||kr-johabfonts-304
kr-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||
kr-hcode-2.1.2|/usr/ports/korean/hcode|/usr/local|Hangul code conversion utility|/usr/ports/korean/hcode/pkg/DESCR|junker@jazz.snu.ac.kr|korean||
kr-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||
kr-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.4j|xpm-3.4j
kr-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||
kr-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||
kr-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||kr-hcode-2.1.2
kr-johabfonts-304|/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||
kr-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.004
kr-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||kr-hanyangfonts-1.0
kr-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||kr-hlatexpsfonts-0.95
kr-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||
kr-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||kr-hlatexpsfonts-0.95 perl-5.004
kr-nvi-euckr-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|korean editors||
kr-nvi-iso2022kr-1.79-970617|/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/pkg/DESCR|itojun@itojun.org|korean editors||
kr-pine-3.96k|/usr/ports/korean/pine|/usr/local|Program for Internet E-mail and News, patched for Korean E-Mail transfer|/usr/ports/korean/pine/pkg/DESCR|junker@jazz.snu.ac.kr|korean mail||
kr-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||
kr-ztelnet-1.0p1|/usr/ports/korean/ztelnet|/usr/local|Telnet program with zmodem transfer.|/usr/ports/korean/ztelnet/pkg/DESCR|junker@jazz.snu.ac.kr|korean net||
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|/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||
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-1.92|/usr/ports/lang/cim|/usr/local|Compiler for the SIMULA programming language|/usr/ports/lang/cim/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|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||
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||
elk-3.0.2|/usr/ports/lang/elk|/usr/local|An embeddable Scheme interpreter.|/usr/ports/lang/elk/pkg/DESCR|tg@freebsd.org|lang||
eperl-2.1.1|/usr/ports/lang/eperl|/usr/local|Embedded Perl 5 Language|/usr/ports/lang/eperl/pkg/DESCR|rse@engelschall.com|lang www perl5|perl-5.004|apache-1.2.1 perl-5.004
expect-5.22.0|/usr/ports/lang/expect|/usr/local|A sophisticated scripter based on tcl/tk.|/usr/ports/lang/expect/pkg/DESCR|ports@FreeBSD.ORG|lang tcl76 tk42|tcl-7.6 tk-4.2|tcl-7.6 tk-4.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.15|/usr/ports/lang/g77|/usr/local|The GNU Fortran 77 compiler.|/usr/ports/lang/g77/pkg/DESCR|nils@guru.ims.uni-stuttgart.de|lang math||
gcl-2.0|/usr/ports/lang/gcl|/usr/local|GNU Common Lisp.|/usr/ports/lang/gcl/pkg/DESCR|ports@FreeBSD.org|lang||
gnat-2.03|/usr/ports/lang/gnat|/usr/local|The GNU Ada Translator.|/usr/ports/lang/gnat/pkg/DESCR|nils@guru.ims.uni-stuttgart.de|lang|gmake-3.75|
guavac-0.3.1|/usr/ports/lang/guavac|/usr/local|Guavac, a java compiler and decompiler developed under GPL.|/usr/ports/lang/guavac/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|lang|gmake-3.75|
guile-iii|/usr/ports/lang/guile-iii|/usr/local|The GNU extension language.|/usr/ports/lang/guile-iii/pkg/DESCR|ports@FreeBSD.ORG|lang|gmake-3.75|
icon-9.3|/usr/ports/lang/icon|/usr/local|The Icon programming language.|/usr/ports/lang/icon/pkg/DESCR|ports@freebsd.org|lang||
idl4|/usr/ports/lang/idl4|/usr/local|Research Systems Inc.'s Interactive Data Language|/usr/ports/lang/idl4/pkg/DESCR|msmith@FreeBSD.org|lang||linux_lib-2.4
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.0.2 netscape-3.01
jdk-1.0.2|/usr/ports/lang/jdk|/usr/local|Java Developers Kit, Class Libraries|/usr/ports/lang/jdk/pkg/DESCR|ports@freebsd.org|lang devel||
kaffe-0.9.1|/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||
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@cs.ucdavis.edu|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.75|
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||
ocaml-1.03|/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.75|
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.004|perl-5.004
p2c-1.21a|/usr/ports/lang/p2c|/usr/local|Pascal to C translator.|/usr/ports/lang/p2c/pkg/DESCR|jmz@FreeBSD.org|lang||
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.004|/usr/ports/lang/perl5|/usr/local|Pattern Extraction and Recognition Language.|/usr/ports/lang/perl5/pkg/DESCR|markm@FreeBSD.ORG|lang devel perl5||
pgcc-2.7.2.9|/usr/ports/lang/pgcc|/usr/local|gcc optimized for INTEL Pentium CPU|/usr/ports/lang/pgcc/pkg/DESCR|andreas@klemm.gtn.com|lang||
pgcc-2.7.2c|/usr/ports/lang/pgcc-current|/usr/local|gcc optimized for INTEL Pentium CPU, Developer Release|/usr/ports/lang/pgcc-current/pkg/DESCR|andreas@FreeBSD.ORG|lang||
python-1.4|/usr/ports/lang/python|/usr/local|An interpreted object-oriented programming language.|/usr/ports/lang/python/pkg/DESCR|tg@FreeBSD.org|lang tk41|tk-4.1|tk-4.1
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||
scheme48-0.36|/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.75|
smalltalk-1.1.1|/usr/ports/lang/smalltalk|/usr/local|GNU Smalltalk.|/usr/ports/lang/smalltalk/pkg/DESCR|jraynard@FreeBSD.ORG|lang||
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.3|/usr/ports/lang/tcl|/usr/local|Tool Command Language.|/usr/ports/lang/tcl/pkg/DESCR|ports@FreeBSD.ORG|lang||
tcl-7.4.2|/usr/ports/lang/tcl74|/usr/local|Tool Command Language.|/usr/ports/lang/tcl74/pkg/DESCR|ports@FreeBSD.ORG|lang||
tcl-7.6|/usr/ports/lang/tcl76|/usr/local|Tool Command Language.|/usr/ports/lang/tcl76/pkg/DESCR|taguchi@tohoku.iij.ad.jp|lang||
tclX-7.3b|/usr/ports/lang/tclX|/usr/local|Extended TCL|/usr/ports/lang/tclX/pkg/DESCR|ports@FreeBSD.ORG|lang|tcl-7.3 tk-3.6|tcl-7.3 tk-3.6
tclX-7.4a1|/usr/ports/lang/tclX74|/usr/local|Extended TCL|/usr/ports/lang/tclX74/pkg/DESCR|ports@FreeBSD.ORG|lang|gmake-3.75 tcl-7.4.2 tk-4.0.2|tcl-7.4.2 tk-4.0.2
tclX-7.5.2|/usr/ports/lang/tclX75|/usr/local|Extended TCL|/usr/ports/lang/tclX75/pkg/DESCR|ports@FreeBSD.ORG|lang tk41|tk-4.1|tk-4.1
xpl486-4.1|/usr/ports/lang/xpl|/usr/local|The XPL compiler generator system|/usr/ports/lang/xpl/pkg/DESCR|imdave@synet.net|lang|gmake-3.75|
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||
cucipop-1.14|/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||
elm-2.4ME+32|/usr/ports/mail/elm|/usr/local|ELM Mail User Agent|/usr/ports/mail/elm/pkg/DESCR|ache@FreeBSD.ORG|mail||
exim-1.60|/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||
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 tk41||mh-6.8.4 mm-2.7 tk-4.1
exmh-2.0d|/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 tk41||mh-6.8.4 mm-2.7 tk-4.1
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@odie.physik2.uni-rostock.de|mail||
fetchmail-4.0.0|/usr/ports/mail/fetchmail|/usr/local|batch mail retrieval/forwarding utility for pop2, pop3, apop, imap|/usr/ports/mail/fetchmail/pkg/DESCR|ve@sci.fi|mail||
imap-uw-4.1b|/usr/ports/mail/imap-uw|/usr/local|University of Washington IMAP v4 server (and POP2/POP3 compatible servers)|/usr/ports/mail/imap-uw/pkg/DESCR|pst@freebsd.org|mail||
mailagent-3.0.56|/usr/ports/mail/mailagent|/usr/local|A sophisticated automatic mail-processing tool.|/usr/ports/mail/mailagent/pkg/DESCR|max@FreeBSD.ORG|mail|perl-5.004|perl-5.004
majordomo-1.94.3|/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.70|/usr/ports/mail/mew|/usr/local|Message interface to Emacs Window|/usr/ports/mail/mew/pkg/DESCR|kiri@kiri.toba-cmt.ac.jp|mail|emacs-19.34b gmake-3.75|emacs-19.34b mh-6.8.4
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||
mutt-0.79|/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||
mutt-pgp-0.79|/usr/ports/mail/mutt.with_pgp|/usr/local|"The Mongrel of Mail User Agents" (part Elm, Pine, mh)|/usr/ports/mail/mutt.with_pgp/pkg/DESCR|obrien@FreeBSD.org|mail||
nmh-0.14|/usr/ports/mail/nmh|/usr/local|A cleaned up MH mailer suite.|/usr/ports/mail/nmh/pkg/DESCR|Scott.Blachowicz@seaslug.org|mail||
p5-Mail-Folder-0.06|/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|perl-5.004|perl-5.004
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.004|perl-5.004
p5-Mail-Tools-1.09|/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.07 p5-Net-1.0505 perl-5.004|perl-5.004
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.75 pgp-2.6.2 rsaref-2.0 unzip-5.3.1|
pine-3.96|/usr/ports/mail/pine|/usr/local|Program for Internet E-mail and News|/usr/ports/mail/pine/pkg/DESCR|ports@FreeBSD.org|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.3|/usr/ports/mail/popper|/usr/local|Berkeley POP 3 server (now maintained by Qualcomm).|/usr/ports/mail/popper/pkg/DESCR|pst@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.75 perl-5.004 pgp-2.6.2 rsaref-2.0 unzip-5.3.1|
procmail-3.11p7|/usr/ports/mail/procmail|/usr/local|A local mail delivery agent.|/usr/ports/mail/procmail/pkg/DESCR|ache@FreeBSD.ORG|mail||
smail-3.2|/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.20|
xfaces-3.3|/usr/ports/mail/xfaces|/usr/X11R6|mail image display for X|/usr/ports/mail/xfaces/pkg/DESCR|Lars_Koeller@odie.physik2.uni-rostock.de|mail|faces-1.6.1 nas-1.2.5|faces-1.6.1
xfmail-1.1|/usr/ports/mail/xfmail|/usr/X11R6|An X Window System application for receiving electronic mail|/usr/ports/mail/xfmail/pkg/DESCR|andreas@FreeBSD.ORG|mail|xforms-0.86 xpm-3.4j|xforms-0.86 xpm-3.4j
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@cs.ucdavis.edu|mail x11||
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.4j|xpm-3.4j
Scilab-2.3|/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.1b|/usr/ports/math/apc|/usr/X11R6|An xforms based Auto Payment Calculator|/usr/ports/math/apc/pkg/DESCR|eagriff@global2000.net|math|xforms-0.86|xforms-0.86
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
fftpack-1.0|/usr/ports/math/fftpack|/usr/local|Fast Fourier Transform libraries|/usr/ports/math/fftpack/pkg/DESCR|ports@FreeBSD.org|math||
freefem-3.4|/usr/ports/math/freefem|/usr/X11R6|A language for the Finite Element Method|/usr/ports/math/freefem/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|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.75|
gnuplot-325b|/usr/ports/math/gnuplot|/usr/local|A command-driven interactive function plotting program.|/usr/ports/math/gnuplot/pkg/DESCR|chuckr@FreeBSD.org|math graphics||
hexcalc-1.11|/usr/ports/math/hexcalc|/usr/X11R6|A multi-radix calculator for x11|/usr/ports/math/hexcalc/pkg/DESCR|asami@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
maxima-5.0|/usr/ports/math/maxima|/usr/local|A large computer algebra system for symbolic and numerical computations.|/usr/ports/math/maxima/pkg/DESCR|hsu@FreeBSD.org|math|gcl-2.0|gcl-2.0
numpy-1.0b3|/usr/ports/math/numpy|/usr/local|The Numeric Extension to Python|/usr/ports/math/numpy/pkg/DESCR|tg@FreeBSD.ORG|math|lapack-2.0 python-1.4 ranlib-1.0 tk-4.1|lapack-2.0 python-1.4 ranlib-1.0 tk-4.1
octave-2.0.8|/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.75|gnuplot-325b
oleo-1.6|/usr/ports/math/oleo|/usr/local|A Spreadsheet Program.|/usr/ports/math/oleo/pkg/DESCR|ports@FreeBSD.ORG|math||
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||
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|pgiffuni@FPS.biblos.unal.edu.co|math||
umatrix-1.1|/usr/ports/math/umatrix|/usr/local|Simple matrix package|/usr/ports/math/umatrix/pkg/DESCR|ssigala@globalnet.it|math||
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
xgraph-11.3.2|/usr/ports/math/xgraph|/usr/X11R6|A program that helps you plot graphs|/usr/ports/math/xgraph/pkg/DESCR|asami@FreeBSD.ORG|math print||
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||
xplot-0.89|/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.75|
xvgr-2.10.1|/usr/ports/math/xvgr|/usr/X11R6|ACE/gr - graphics for exploratory data analysis|/usr/ports/math/xvgr/pkg/DESCR|swallace@FreeBSD.ORG|math graphics|xview-config-3.2.1 xview-lib-3.2.1|xview-config-3.2.1 xview-lib-3.2.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 tk41|tk-4.1|tk-4.1
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 tk41|gmake-3.75 tk-4.1|tk-4.1
nte-1.5a23|/usr/ports/mbone/nte|/usr/X11R6|Multicast Network Text Editor|/usr/ports/mbone/nte/pkg/DESCR|fenner@FreeBSD.org|mbone tk41|gmake-3.75 tk-4.1|tk-4.1
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 tk41|tk-4.1|tk-4.1
sdr-2.3a1|/usr/ports/mbone/sdr|/usr/X11R6|MBone Session Directory|/usr/ports/mbone/sdr/pkg/DESCR|fenner@FreeBSD.org|mbone tk41|gmake-3.75 tk-4.1|tk-4.1
speak_freely-6.1b|/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 tk41|gsm-1.0.10 tk-4.1|gsm-1.0.10 tk-4.1
vic-2.8|/usr/ports/mbone/vic|/usr/X11R6|MBONE video tool.|/usr/ports/mbone/vic/pkg/DESCR|fenner@FreeBSD.ORG|mbone tk41|tk-4.1|tk-4.1
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-4.03
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||
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||
buffer-1.17|/usr/ports/misc/buffer|/usr/local|buffer sporadic binary I/O for faster tape use|/usr/ports/misc/buffer/pkg/DESCR|markm@FreeBSD.ORG|misc||
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||
chord-3.6|/usr/ports/misc/chord|/usr/local|Produce PS sheet-music from text input|/usr/ports/misc/chord/pkg/DESCR|asami@FreeBSD.ORG|misc||
colorls-2.2|/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|thomas@ghpc8.ihf.rwth-aachen.de|misc tk41||
dejagnu-1.3|/usr/ports/misc/dejagnu|/usr/local|Automated program/system tester|/usr/ports/misc/dejagnu/pkg/DESCR|markm@FreeBSD.ORG|misc tk41||expect-5.22.0 tcl-7.6 tk-4.2
dotfile-2.0|/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 tk41|tk-4.1|tk-4.1
ecc-1.3.2|/usr/ports/misc/ecc|/usr/local|GNU error-correcting code library and sample program.|/usr/ports/misc/ecc/pkg/DESCR|bjn@visi.com|misc||
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.1|
fd-1.01h|/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 ASCII art large characters|/usr/ports/misc/figlet/pkg/DESCR|obrien@FreeBSD.org|misc||
git-4.3.11|/usr/ports/misc/git|/usr/local|GNU Interactive Tools - a file system browser for UNIX systems|/usr/ports/misc/git/pkg/DESCR|ports@FreeBSD.ORG|misc||
ical-2.1b2|/usr/ports/misc/ical|/usr/local|A calendar application.|/usr/ports/misc/ical/pkg/DESCR|erich@FreeBSD.org|misc tk41|tk-4.1|tk-4.1
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||
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||tk-4.1
less-332|/usr/ports/misc/less|/usr/local|a better pager utility|/usr/ports/misc/less/pkg/DESCR|ache@FreeBSD.ORG|misc||
ile-1.6|/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||
linuxls-3.12.0.2|/usr/ports/misc/linuxls|/usr/local|FreeBSD port of Linux Slackware colorized GNU `ls'.|/usr/ports/misc/linuxls/pkg/DESCR|bmc@WillsCreek.COM|misc||
logsurfer-1.41|/usr/ports/misc/logsurfer|/usr/local|Processes logfiles and perform certain actions.|/usr/ports/misc/logsurfer/pkg/DESCR|shanee@rabbit.augusta.de|misc||
mc-4.0|/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.7|/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-0.99.38|libslang-0.99.38
mshell-1.0|/usr/ports/misc/mshell|/usr/local|A Unix menuing shell.|/usr/ports/misc/mshell/pkg/DESCR|jmz@FreeBSD.org|misc||
p5-Array-PrintCols-1.2|/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.004|perl-5.004
p5-Business-CreditCard-0.1|/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.004|perl-5.004
p5-Locale-Codes-0.003|/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.004|perl-5.004
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.004|perl-5.004
plan-1.6.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.4.2|/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.75|
screen-3.7.2|/usr/ports/misc/screen|/usr/local|A multi-screen window manager.|/usr/ports/misc/screen/pkg/DESCR|ache@FreeBSD.ORG|misc||
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||
tkcron-2.12|/usr/ports/misc/tkcron|/usr/local|A frontend to crontab.|/usr/ports/misc/tkcron/pkg/DESCR|sander@haldjas.folklore.ee|misc tk41||tk-4.1
tkinfo-1.5|/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 tk41||tk-4.1
tkman-1.8|/usr/ports/misc/tkman|/usr/local|A Tcl/Tk based manual browser|/usr/ports/misc/tkman/pkg/DESCR|tg@freebsd.org|misc tk41|tk-4.1|glimpse-4.0 rman-3.0.2a9 tk-4.1
unclutter-8|/usr/ports/misc/unclutter|/usr/X11R6|Remove idle cursor image from screen.|/usr/ports/misc/unclutter/pkg/DESCR|shanee@rabbit.augusta.de|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||
xcalendar-4.0|/usr/ports/misc/xcalendar|/usr/X11R6|calendar with a notebook for X11|/usr/ports/misc/xcalendar/pkg/DESCR|mita@jp.FreeBSD.org|misc||
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||
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@rabbit.augusta.de|misc||
xpns-1.0|/usr/ports/misc/xpns|/usr/X11R6|Petri-Net Simulator for Xwindows|/usr/ports/misc/xpns/pkg/DESCR|pgiffuni@fps.biblos.unal.edu.co|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@rabbit.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||
zorro-1.1.8|/usr/ports/misc/zorro|/usr/local|A simple to-do list manager.|/usr/ports/misc/zorro/pkg/DESCR|shanee@rabbit.augusta.de|misc tk41|tk-4.1|tk-4.1
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.2a1|/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.04h|/usr/ports/net/bb|/usr/local|big brother Unix Network Monitor|/usr/ports/net/bb/pkg/DESCR|andreas@klemm.gtn.com|net|apache-1.2.1|
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@scds.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||
cvsup-15.1|/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-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.1 modula-3-lib-3.6
delegate-4.1.2|/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.1p3|/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.1p3
dgd-net-1.1p3|/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||
bsddip-1.02|/usr/ports/net/dip|/usr/local|Dialup IP program|/usr/ports/net/dip/pkg/DESCR|joerg@FreeBSD.ORG|net||
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|pgiffuni@fps.biblos.unal.edu.co|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||
ftpsearch-1.0|/usr/ports/net/ftpsearch|/usr/local|A system for indexing contents on ftp servers.|/usr/ports/net/ftpsearch/pkg/DESCR|tegge@idt.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.5|/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.1.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|gmake-3.75|
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.2.3|/usr/ports/net/irc|/usr/local|The 'Internet Relay Chat' Server.|/usr/ports/net/irc/pkg/DESCR|torstenb@FreeBSD.ORG|net||
ircii-2.9|/usr/ports/net/ircII|/usr/local|The 'Internet Relay Chat' Client.|/usr/ports/net/ircII/pkg/DESCR|torstenb@FreeBSD.ORG|net||
isc-dhcp-b5.16|/usr/ports/net/isc-dhcp|/usr/local|ISC Dynamic Host Configuration Protocol client and server code|/usr/ports/net/isc-dhcp/pkg/DESCR|jseger@scds.com|net||
ivs-3.4|/usr/ports/net/ivs|/usr/local|INRIA Videoconference Software.|/usr/ports/net/ivs/pkg/DESCR|wollman@FreeBSD.org|net||
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||
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||
mirror-2.8|/usr/ports/net/mirror|/usr/local|Mirror packages on remote sites.|/usr/ports/net/mirror/pkg/DESCR|torstenb@FreeBSD.ORG|net||
mpd-1.0b3|/usr/ports/net/mpd|/usr/local|Multilink PPP daemon|/usr/ports/net/mpd/pkg/DESCR|andy@icc.surw.chel.su|net||
mrtg-2.4.1|/usr/ports/net/mrtg|/usr/local|the multi-router traffic grapher|/usr/ports/net/mrtg/pkg/DESCR|jfitz@FreeBSD.ORG|net|gd-1.2 perl-5.004|p5-Curses-1.01 p5-PV-1.0 perl-5.004
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||
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.2|/usr/ports/net/ncftp2|/usr/local|FTP replacement with advanced user interface.|/usr/ports/net/ncftp2/pkg/DESCR|ache@FreeBSD.ORG|net||
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@cs.ucdavis.edu|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.004|perl-5.004
p5-Net-1.0505|/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.07 perl-5.004|perl-5.004
p5-Net-DNS-0.11|/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.004|perl-5.004
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.004|p5-Locale-Codes-0.003 perl-5.004
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.004 ucd-snmp-3.2|perl-5.004
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||
radius-2.4.23|/usr/ports/net/radius|/usr/local|A remote authentication server.|/usr/ports/net/radius/pkg/DESCR|torstenb@FreeBSD.ORG|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|tk-4.1|tk-4.1
rdist-6.1.3|/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|misc||
rsync-1.6.2|/usr/ports/net/rsync|/usr/local|A network file distribution/synchronisation utility.|/usr/ports/net/rsync/pkg/DESCR|obrien@cs.ucdavis.edu|net||
rumba-0.4|/usr/ports/net/rumba|/usr/local|An userland smbfs --- SMB to NFS protocols converter|/usr/ports/net/rumba/pkg/DESCR|dima@tejblum.dnttm.rssi.ru|net|gmake-3.75|
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.16p11|/usr/ports/net/samba|/usr/local|A LanManager(R)-compatible server suite for Unix|/usr/ports/net/samba/pkg/DESCR|gpalmer@FreeBSD.ORG|net||
scotty-2.1.5|/usr/ports/net/scotty|/usr/local|network management extensions to tcl|/usr/ports/net/scotty/pkg/DESCR|phk@freebsd.org|net tk41|tk-4.1|tk-4.1
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||
socks5-0.17.2|/usr/ports/net/socks5|/usr/local|SOCKS v5 application layer gateway and clients|/usr/ports/net/socks5/pkg/DESCR|ambrisko@ambrisko.roble.com|net security||
strobe-1.03|/usr/ports/net/strobe|/usr/local|Fast scatter/gather TCP port scanner|/usr/ports/net/strobe/pkg/DESCR|proff@suburbia.net|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||
tcptrace-3.2.5|/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.46
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-3.5b4|/usr/ports/net/tinyfugue|/usr/local|A popular programmable MUD client, with macro support and more.|/usr/ports/net/tinyfugue/pkg/DESCR|jseger@scds.com|net games||
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|igor@zynaps.ru|net||
ucd-snmp-3.2|/usr/ports/net/ucd-snmp|/usr/local|An extendable SNMP implimentation |/usr/ports/net/ucd-snmp/pkg/DESCR|gpalmer@FreeBSD.ORG|net||
freeWAIS-0.5|/usr/ports/net/wais|/usr/local|freeWAIS from CNIDR|/usr/ports/net/wais/pkg/DESCR|ports@FreeBSD.org|net||
wide-dhcp-1.3b|/usr/ports/net/wide-dhcp|/usr/local|Dynamic Host Configuration Protocol, WIDE-Implimentation.|/usr/ports/net/wide-dhcp/pkg/DESCR|sanpei@yy.cs.keio.ac.jp|net||
wget-1.4.5|/usr/ports/net/wget|/usr/local|Retrieve files from the 'net via HTTP and FTP.|/usr/ports/net/wget/pkg/DESCR|tg@FreeBSD.ORG|net||
wu-ftpd-2.4.2b13|/usr/ports/net/wu-ftpd|/usr/local|A replacement ftp server for Un*x systems.|/usr/ports/net/wu-ftpd/pkg/DESCR|torstenb@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||
xgopher-1.3.3|/usr/ports/net/xgopher|/usr/X11R6|A brown, furry creature for burroring through Gopherspace.|/usr/ports/net/xgopher/pkg/DESCR|gpalmer@FreeBSD.ORG|net||
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||
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||
zircon-1.18.31|/usr/ports/net/zircon|/usr/local|An X11 interface to Internet Relay Chat.|/usr/ports/net/zircon/pkg/DESCR|ports@FreeBSD.org|net tk41|tk-4.1|tk-4.1
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||
cnews-cr.g|/usr/ports/news/cnews|/usr/local|C-news|/usr/ports/news/cnews/pkg/DESCR|ports@FreeBSD.ORG|news||
diablo-1.10|/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.2j|/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.5.1|/usr/ports/news/inn|/usr/local|InterNetNews -- the Internet meets Netnews.|/usr/ports/news/inn/pkg/DESCR|torstenb@FreeBSD.ORG|news|perl-5.004|perl-5.004
knews-0.9.8|/usr/ports/news/knews|/usr/X11R6|A threaded nntp newsreader for X.|/usr/ports/news/knews/pkg/DESCR|andreas@klemm.gtn.com|x11 news|xpm-3.4j|xpm-3.4j
leafnode-1.0.2|/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||
nn-6.5.0|/usr/ports/news/nn|/usr/local|NN newsreader.|/usr/ports/news/nn/pkg/DESCR|ports@FreeBSD.ORG|news||
nn-6.5.0c|/usr/ports/news/nn-current|/usr/local|NN newsreader, beta version.|/usr/ports/news/nn-current/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-1.0.6|/usr/ports/news/nntpcache|/usr/local|News caching system.|/usr/ports/news/nntpcache/pkg/DESCR|nntpcache@nntpcache.org|news||
plor-0.1|/usr/ports/news/plor|/usr/local|An alpha-release reader for reading SOUP and QWK packets.|/usr/ports/news/plor/pkg/DESCR|ac199@freenet.hamilton.on.ca|news||
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.1
slrn-0.9.4.3|/usr/ports/news/slrn|/usr/local|SLang-based newsreader|/usr/ports/news/slrn/pkg/DESCR|mcj@acquiesce.org|news|libslang-0.99.38|libslang-0.99.38
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-2.6.2|/usr/ports/news/suck|/usr/local|Receives/sends news to/from localhost via NNTP.|/usr/ports/news/suck/pkg/DESCR|graphite@taurus.bekkoame.or.jp|news|gmake-3.75|
tin-1.3.970709|/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|ports@FreeBSD.ORG|news||mpack-1.5
xvnews-2.3.2|/usr/ports/news/xvnews|/usr/X11R6|An OPEN LOOK news reader.|/usr/ports/news/xvnews/pkg/DESCR|shanee@rabbit.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.4|/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||
a2ps-a4-4.3|/usr/ports/print/a2ps|/usr/local|Formats an ascii file for printing on a postscript printer.|/usr/ports/print/a2ps/pkg/DESCR|jmz@FreeBSD.org|print||
acroread-3.0|/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.3|/usr/ports/print/apsfilter|/usr/local|lpd magic print filter with auto file type recognition|/usr/ports/print/apsfilter/pkg/DESCR|andreas@klemm.gtn.com|print||ghostscript-4.03 jpeg-6a netpbm-94.3.1 tiff-3.3 transfig-3.1.2 xpm-3.4j
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
c2ps-3.0|/usr/ports/print/c2ps|/usr/local|A PostScript pretty-printer for C source.|/usr/ports/print/c2ps/pkg/DESCR|mph@pobox.com|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.62|/usr/ports/print/dvips|/usr/local|Convert a TeX DVI file to PostScript.|/usr/ports/print/dvips/pkg/DESCR|jmz@FreeBSD.org|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||
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@klemm.gtn.com|print||
ghostscript-5.0|/usr/ports/print/ghostscript5|/usr/local|Aladdin Postscript interpreter.|/usr/ports/print/ghostscript5/pkg/DESCR|andreas@FreeBSD.org|print|jpeg-6a png-0.96|
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||
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||
latex2e-96.12|/usr/ports/print/latex|/usr/local|LaTeX2e - a TeX macro package|/usr/ports/print/latex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.75 tex-3.14159|tex-3.14159
lout-3.08|/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.75|
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@cs.ucdavis.edu|print||
lyx-0.10.7|/usr/ports/print/lyx|/usr/local|A graphical frontend for LaTeX (nearly WYSIWYG)|/usr/ports/print/lyx/pkg/DESCR|andreas@klemm.gtn.com|print|gmake-3.75 teTeX-0.4 xforms-0.86 xpm-3.4j|ispell-3.1.20 teTeX-0.4 xforms-0.86 xpm-3.4j
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||
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@cs.ucdavis.edu|print|gmake-3.75|
musixtex-T64|/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.75 tex-3.14159|tex-3.14159
pkfonts300-1.0|/usr/ports/print/pkfonts|/usr/local|English PK fonts, for ghostscripts, xdvi and so on|/usr/ports/print/pkfonts/pkg/DESCR|ohmon@tom.sfc.keio.ac.jp|print||
psutils-a4-1.16|/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|thomas@ghpc8.ihf.rwth-aachen.de|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.75|
tex-3.14159|/usr/ports/print/tex|/usr/local|TeX and METAFONT.|/usr/ports/print/tex/pkg/DESCR|jmz@FreeBSD.org|print|gmake-3.75|
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.75 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|thomas@ghpc8.ihf.rwth-aachen.de|print||
transfig-3.1.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-6a xpm-3.4j|jpeg-6a xpm-3.4j
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.75|
xmgr-3.01|/usr/ports/print/xmgr|/usr/X11R6|plotting tool for workstations|/usr/ports/print/xmgr/pkg/DESCR|andreas@FreeBSD.ORG|print||
ru-X11-3.2|/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
cyrproxy-1.4.1|/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.2|/usr/ports/russian/d1489|/usr/local|point-to-point Alt(cp866)<->koi8-r decoder 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+32
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 netscape-3.01 ru-X11-3.2
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.1|pgp-2.6.2 rsaref-2.0
ru-pine-3.95|/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
bash-1.14.7|/usr/ports/shells/bash|/usr/local|The GNU Borne Again Shell.|/usr/ports/shells/bash/pkg/DESCR|obrien@NUXI.com|shells||
bash-2.01|/usr/ports/shells/bash2|/usr/local|The GNU Borne Again Shell.|/usr/ports/shells/bash2/pkg/DESCR|ache@FreeBSD.ORG|shells||
es-0.9a1|/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.12|/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.4|/usr/ports/shells/zsh|/usr/local|The Z shell.|/usr/ports/shells/zsh/pkg/DESCR|torstenb@FreeBSD.ORG|shells||
SSLeay-0.6.6|/usr/ports/security/SSLeay|/usr/local|SSL and crypto library (Excluding DES, MD2 and MD5)|/usr/ports/security/SSLeay/pkg/DESCR|markm@FreeBSD.ORG|devel 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-1.3|/usr/ports/security/fwtk|/usr/local|A toolkit used for building firewalls based on proxy services|/usr/ports/security/fwtk/pkg/DESCR|ports@FreeBSD.ORG|security net||
libident-0.20|/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||
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.004|perl-5.004
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.004|perl-5.004
p5-MD5-1.7|/usr/ports/security/p5-MD5|/usr/local|perl5 interface to the RSA Data Security Inc. MD5 Message-Digest Algorithm|/usr/ports/security/p5-MD5/pkg/DESCR|jfitz@FreeBSD.ORG|security perl5|perl-5.004|perl-5.004
p5-PGP-0.2a|/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.75 perl-5.004 pgp-2.6.2 rsaref-2.0 unzip-5.3.1|perl-5.004
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.75 rsaref-2.0 unzip-5.3.1|rsaref-2.0
pidentd-2.7.4|/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||
safe-tcl-1.2|/usr/ports/security/safe-tcl|/usr/local|Safe scl/wish for "Enabled mail"|/usr/ports/security/safe-tcl/pkg/DESCR|markm@freebsd.org|mail lang security tk41|mh-6.8.4 tclX-7.5.2 tk-4.1|mh-6.8.4 tclX-7.5.2 tk-4.1
ssh-1.2.20|/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.004 tcp_wrappers-7.6|tcp_wrappers-7.6
sudo-1.5.3|/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@cs.ucdavis.edu|security||
xinetd.2.1.7.4|/usr/ports/security/xinetd|/usr/local|Replacement for inetd with control and logging|/usr/ports/security/xinetd/pkg/DESCR|markm@FreeBSD.ORG|security||
LPRng-3.2.3|/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||
cd-write-1.3|/usr/ports/sysutils/cd-write|/usr/local|A X11 based CD-burner|/usr/ports/sysutils/cd-write/pkg/DESCR|jmz@FreeBSD.org|sysutils|tix-4.1.0 tk-4.1|tix-4.1.0 tk-4.1
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
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.13|/usr/ports/sysutils/lsof|/usr/local|Lists information about open files.|/usr/ports/sysutils/lsof/pkg/DESCR|obrien@NUXI.com|sysutils||
manck-1.2|/usr/ports/sysutils/manck|/usr/local|Manual page consistency checker|/usr/ports/sysutils/manck/pkg/DESCR|wosch@FreeBSD.org|sysutils||
mkisofs-1.10|/usr/ports/sysutils/mkisofs|/usr/local|create ISO9660 filesystems with [optional] Rockridge extensions|/usr/ports/sysutils/mkisofs/pkg/DESCR|ports@FreeBSD.ORG|sysutils||
pib-1.0|/usr/ports/sysutils/pib|/usr/local|GUI Ports Collection management tool.|/usr/ports/sysutils/pib/pkg/DESCR|msmith@freebsd.org|sysutils tk41||tk-4.1
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||
skill-3.7.4|/usr/ports/sysutils/skill|/usr/local|SuperKILL, a kill(1)/renice(8) utility with nice features|/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.75|
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.13
top-3.4|/usr/ports/sysutils/top|/usr/local|The ubiquitous system monitoring utility.|/usr/ports/sysutils/top/pkg/DESCR|peter@FreeBSD.org|sysutils||
tua-4.0|/usr/ports/sysutils/tua|/usr/local|The Uucp Analyzer.|/usr/ports/sysutils/tua/pkg/DESCR|torstenb@FreeBSD.ORG|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.4|/usr/ports/sysutils/xcpustate|/usr/X11R6|System monitoring utility graphicaly showing cpu load and status.|/usr/ports/sysutils/xcpustate/pkg/DESCR|obrien@cs.ucdavis.edu|sysutils||
xdu-3.0|/usr/ports/sysutils/xdu|/usr/X11R6|Graphically display output of du|/usr/ports/sysutils/xdu/pkg/DESCR|asami@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|furusawa@com.cs.osakafu-u.ac.jp|sysutils|jp-nkf-1.62|
xperfmon++-1.40|/usr/ports/sysutils/xperfmon|/usr/X11R6|A graphical X11 system performance monitor.|/usr/ports/sysutils/xperfmon/pkg/DESCR|Lars_Koeller@odie.physik2.uni-rostock.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|asami@FreeBSD.ORG|sysutils x11||
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||
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
glimpse-4.0|/usr/ports/textproc/glimpse|/usr/local|Text search engine|/usr/ports/textproc/glimpse/pkg/DESCR|chuckr@freebsd.org|textproc databases||
isearch-1.14|/usr/ports/textproc/isearch|/usr/local|Text Search Engine by CNIDR|/usr/ports/textproc/isearch/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|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.1|
ispell-3.1.20|/usr/ports/textproc/ispell|/usr/local|An interactive spelling checker.|/usr/ports/textproc/ispell/pkg/DESCR|jmz@FreeBSD.org|textproc|emacs-19.34b gmake-3.75|
jade-0.8|/usr/ports/textproc/jade|/usr/local|An object-oriented SGML parser toolkit and DSSSL engine|/usr/ports/textproc/jade/pkg/DESCR|jfieber@FreeBSD.ORG|textproc|unzip-5.3.1|
linuxdoc-1.0|/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||
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||
rman-3.0.2a9|/usr/ports/textproc/rman|/usr/local|Reverse compile man pages from formatted form.|/usr/ports/textproc/rman/pkg/DESCR|thomas@ghpc8.ihf.rwth-aachen.de|textproc||
sp-1.1.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||
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
vn-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@cs.ucdavis.edu|vietnamese||
vn-vnelvis-1.4|/usr/ports/vietnamese/vnelvis|/usr/local|A vi clone that speaks Vietnamese|/usr/ports/vietnamese/vnelvis/pkg/DESCR|obrien@cs.ucdavis.edu|vietnamese||
vn-vnless-1.0|/usr/ports/vietnamese/vnless|/usr/local|A pager utility that speaks Vietnamese|/usr/ports/vietnamese/vnless/pkg/DESCR|obrien@cs.ucdavis.edu|vietnamese||
vn-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@cs.ucdavis.edu|vietnamese||vn-vn7to8-1.1.1 vn-vnpstext-1.1
vn-vnpstext-1.1|/usr/ports/vietnamese/vnpstext|/usr/local|converts 8-bit VISCII Vietnamese text into PostScript|/usr/ports/vietnamese/vnpstext/pkg/DESCR|obrien@cs.ucdavis.edu|vietnamese||
vn-vnroff-2.0|/usr/ports/vietnamese/vnroff|/usr/local|converts Vietnamese VIQR text into troff format|/usr/ports/vietnamese/vnroff/pkg/DESCR|obrien@cs.ucdavis.edu|vietnamese||
vn-vnterm-3.3|/usr/ports/vietnamese/vnterm|/usr/X11R6|An xterm that speaks Vietnamese|/usr/ports/vietnamese/vnterm/pkg/DESCR|obrien@cs.ucdavis.edu|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-6a png-0.96 xpm-3.4j|jpeg-6a png-0.96 xpm-3.4j
analog-2.11|/usr/ports/www/analog|/usr/local|An extremely fast program for analysing WWW logfiles.|/usr/ports/www/analog/pkg/DESCR|jfitz@freebsd.org|www||
apache-1.2.1|/usr/ports/www/apache|/usr/local|The extremely popular Apache http server.  Very fast, very clean.|/usr/ports/www/apache/pkg/DESCR|ache@freebsd.org|www||
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-6a png-0.96|jpeg-6a png-0.96
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
cgiparse-0.8c|/usr/ports/www/cgiparse|/usr/local|C library to parse CGI Forms|/usr/ports/www/cgiparse/pkg/DESCR|jmg@FreeBSD.ORG|devel||
chimera-1.65|/usr/ports/www/chimera|/usr/X11R6|X/Athena World-Wide Web client|/usr/ports/www/chimera/pkg/DESCR|asami@FreeBSD.ORG|www||
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|
gwstat|/usr/ports/www/gwstat|/usr/local|generate GIF graphs that illustrate the httpd server traffic|/usr/ports/www/gwstat/pkg/DESCR|andreas@FreeBSD.ORG|www||ImageMagick-3.8.6 apache-1.2.1 ghostscript-4.03 jbigkit-0.9 jpeg-6a mpeg_lib-1.1 perl-5.004 png-0.96 tiff-3.3 wwwstat-2.01 xmgr-3.01
harvest-1.4.2|/usr/ports/www/harvest|/usr/local|Collect information from all over the Internet|/usr/ports/www/harvest/pkg/DESCR|andreas@klemm.gtn.com|www||
http-analyze-1.9|/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.2|
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.75|
libwww-5.1b|/usr/ports/www/libwww|/usr/local|The W3C Reference Library.|/usr/ports/www/libwww/pkg/DESCR|ports@FreeBSD.ORG|www devel|gmake-3.75|
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.01b6|/usr/ports/www/linux-netscape4|/usr/local|netscape web-surfboard|/usr/ports/www/linux-netscape4/pkg/DESCR|ache@FreeBSD.ORG|www|linux_lib-2.4|linux_lib-2.4
lynx+fotemods-2.7.1|/usr/ports/www/lynx|/usr/local|An alphanumeric display oriented World-Wide Web Client.|/usr/ports/www/lynx/pkg/DESCR|ache@FreeBSD.ORG|www|unzip-5.3.1|
mapedit-2.24|/usr/ports/www/mapedit|/usr/X11R6|A WWW authoring tool to create clickable maps|/usr/ports/www/mapedit/pkg/DESCR|andreas@FreeBSD.ORG|www||
mhonarc-2.1|/usr/ports/www/mhonarc|/usr/local|WWW front end for mail archives.  |/usr/ports/www/mhonarc/pkg/DESCR|koshy@india.hp.com|www mail||
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|camltk41-1.0 gmake-3.75 ocaml-1.03 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
netscape-3.01|/usr/ports/www/netscape3|/usr/local|netscape-3.01 web-surfboard (regular or gold)|/usr/ports/www/netscape3/pkg/DESCR|ache@FreeBSD.ORG|www||
netscape-4.0b5|/usr/ports/www/netscape4|/usr/local|netscape web-surfboard|/usr/ports/www/netscape4/pkg/DESCR|ache@FreeBSD.ORG|www||
p5-Apache-0.98|/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|perl-5.004|perl-5.004
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.07 p5-MD5-1.7 p5-MIME-Base64-2.01 p5-Net-1.0505 p5-libwww-5.10 perl-5.004|perl-5.004
p5-CGI_Lite-1.7|/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.004|perl-5.004
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.004|perl-5.004
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.004|perl-5.004
p5-HTML-Stream-1.38|/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.004|perl-5.004
p5-HTTPD-Tools-0.53|/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.004|perl-5.004
p5-WWW-Search-1.009|/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.07 p5-MD5-1.7 p5-MIME-Base64-2.01 p5-Net-1.0505 p5-libwww-5.10 perl-5.004|perl-5.004
p5-libwww-5.10|/usr/ports/www/p5-libwww|/usr/local|perl5 library for WWW access.|/usr/ports/www/p5-libwww/pkg/DESCR|jfitz@FreeBSD.ORG|www perl5|p5-Data-Dumper-2.07 p5-MD5-1.7 p5-MIME-Base64-2.01 p5-Net-1.0505 perl-5.004|perl-5.004
slang-lynx+fotemods-2.7.1|/usr/ports/www/slang-lynx|/usr/local|Color Lynx (without keypad) - An alphanumeric display oriented WWW Client.|/usr/ports/www/slang-lynx/pkg/DESCR|ache@FreeBSD.ORG|www|libslang-0.99.38 unzip-5.3.1|libslang-0.99.38
squid-1.0.22|/usr/ports/www/squid|/usr/local|Post-Harvest_cached WWW proxy cache and accelerator|/usr/ports/www/squid/pkg/DESCR|stesin@elvisti.kiev.ua|www||
squid-1.1.11|/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.11|/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||
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.75|emacs-19.34b
w3-msql-1.0|/usr/ports/www/w3-msql|/usr/local|An interface between HTML pages and the MiniSQL database engine|/usr/ports/www/w3-msql/pkg/DESCR|jfitz@FreeBSD.ORG|www databases|msql-2.0|
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|pgiffuni@fps.biblos.unal.edu.co|www||
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.017|/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||
wn-1.16.8|/usr/ports/www/wn|/usr/local|A great http server|/usr/ports/www/wn/pkg/DESCR|ports@FreeBSD.ORG|www||
wwwcount-2.3|/usr/ports/www/wwwcount|/usr/local|Access counter, clock and date for WWW pages|/usr/ports/www/wwwcount/pkg/DESCR|ache@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||apache-1.2.1 perl-5.004
fwf-3.8|/usr/ports/x11/FWF|/usr/X11R6|The Free Widget Foundation Widget Release|/usr/ports/x11/FWF/pkg/DESCR|ports@FreeBSD.ORG|x11|xpm-3.4j|xpm-3.4j
XFree86-3.3|/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|/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|asami@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.4j|xpm-3.4j
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||
blast-1.0|/usr/ports/x11/blast|/usr/X11R6|Blast blows holes through windows.|/usr/ports/x11/blast/pkg/DESCR|searle@longacre.demon.co.uk|x11||
blt-2.1|/usr/ports/x11/blt|/usr/local|A Tk extension (with shared libs)|/usr/ports/x11/blt/pkg/DESCR|lukin@okbmei.msk.su|x11 tk41|tk-4.1|tk-4.1
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@rabbit.augusta.de|x11|xpm-3.4j|xpm-3.4j
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|gmake-3.75 ocaml-1.03 tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
ctwm-3.5b1|/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.4j|xpm-3.4j
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||
enlightenment-0.9|/usr/ports/x11/enlightenment|/usr/X11R6|a very artistic X window manager.|/usr/ports/x11/enlightenment/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11|gmake-3.75 imlib-0.1|ImageMagick-3.8.6 imlib-0.1 jbigkit-0.9 jpeg-6a mpeg_lib-1.1 netpbm-94.3.1 png-0.96 tiff-3.3
etlfonts-noncjk-1.0|/usr/ports/x11/etlfonts|/usr/X11R6|X11 supplemental fonts|/usr/ports/x11/etlfonts/pkg/DESCR|mita@jp.FreeBSD.org|x11||
emiclock-1.0.2|/usr/ports/x11/emiclock|/usr/X11R6|Hyper-animated face analog clock for X11|/usr/ports/x11/emiclock/pkg/DESCR|asami@FreeBSD.ORG|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||
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.3|/usr/ports/x11/filerunner|/usr/local|Filemanager with FTP capabilities. Uses Tcl/Tk.|/usr/ports/x11/filerunner/pkg/DESCR|lukin@okbmei.msk.su|x11 tk41|tcl-7.6 tk-4.2|tcl-7.6 tk-4.2
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.4j|xpm-3.4j
fvwm-2.0.45|/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.4j|xpm-3.4j
fvwm-2.0.43|/usr/ports/x11/fvwm2-english|/usr/X11R6|beta of the fvwm window manager - requires XPM|/usr/ports/x11/fvwm2-english/pkg/DESCR|peter@FreeBSD.org|x11|xpm-3.4j|xpm-3.4j
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@klemm.gtn.com|x11|gmake-3.75 gsm-1.0.10 rplay-3.2.0b6 xpm-3.4j|fbsd-icons-1.0 xpm-3.4j
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||
gwm-1.8c|/usr/ports/x11/gwm|/usr/X11R6|Generic Window Manager|/usr/ports/x11/gwm/pkg/DESCR|markm@FreeBSD.ORG|x11||
iv-3.1|/usr/ports/x11/iv|/usr/local|A toolkit from Stanford University and Silicon Graphics.|/usr/ports/x11/iv/pkg/DESCR|ports@FreeBSD.ORG|x11||
lesstif-0.80|/usr/ports/x11/lesstif|/usr/X11R6|API compatible clone of the Motif toolkit.|/usr/ports/x11/lesstif/pkg/DESCR|ports@FreeBSD.org|x11||
libsx-1.1|/usr/ports/x11/libsx|/usr/X11R6|Simple X Windows library.|/usr/ports/x11/libsx/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|x11||
lupe-0.07|/usr/ports/x11/lupe|/usr/X11R6|Real-time magnifying glass for X11|/usr/ports/x11/lupe/pkg/DESCR|furusawa@com.cs.osakafu-u.ac.jp|x11|gmake-3.75|
mlvwm-0.7.1|/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.4j|xpm-3.4j
neXtaw-0.5|/usr/ports/x11/neXtaw|/usr/X11R6|Athena Widgets with N*XTSTEP appearance|/usr/ports/x11/neXtaw/pkg/DESCR|tg@FreeBSD.ORG|x11||
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-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|p5-Tcl-b1 perl-5.004 tk-4.1|perl-5.004 tk-4.1
p5-Tk-2.02|/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.07 p5-MD5-1.7 p5-MIME-Base64-2.01 p5-Net-1.0505 p5-libwww-5.10 perl-5.004 tk-4.1|perl-5.004 tk-4.1
piewm-1.0|/usr/ports/x11/piewm|/usr/X11R6|A tvtwm with pie (circular) menus.|/usr/ports/x11/piewm/pkg/DESCR|asami@FreeBSD.ORG|x11|xpm-3.4j|xpm-3.4j
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.75 python-1.4 qt-1.2 tk-4.1|python-1.4 qt-1.2 tk-4.1
qt-1.2|/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.75|
qvwm-1.0b8c|/usr/ports/x11/qvwm|/usr/X11R6|The most win95-like window manager. Standalone, not fvwm patched.|/usr/ports/x11/qvwm/pkg/DESCR|Nakai@Mlab.t.u-tokyo.ac.jp|x11|xpm-3.4j|xpm-3.4j
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.20|/usr/ports/x11/rxvt|/usr/X11R6|rxvt - a low memory usage xterm replacement that supports color|/usr/ports/x11/rxvt/pkg/DESCR|winter@jurai.net|x11||
slingshot-2.1|/usr/ports/x11/slingshot|/usr/X11R6|Supplemental Libraries to extend Xview|/usr/ports/x11/slingshot/pkg/DESCR|pgiffuni@FPS.biblos.unal.edu.co|x11|gmake-3.75 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||
tix-4.1.0|/usr/ports/x11/tix|/usr/local|An extension to the Tk toolkit.|/usr/ports/x11/tix/pkg/DESCR|ports@FreeBSD.ORG|x11 tk41|tk-4.1|tk-4.1
tk-3.6|/usr/ports/x11/tk|/usr/local|Tcl Tool Kit.|/usr/ports/x11/tk/pkg/DESCR|ports@FreeBSD.ORG|x11|tcl-7.3|tcl-7.3
tk-4.0.2|/usr/ports/x11/tk4|/usr/local|Tcl Tool Kit.|/usr/ports/x11/tk4/pkg/DESCR|ports@FreeBSD.ORG|x11|gmake-3.75 tcl-7.4.2|tcl-7.4.2
tk-4.1|/usr/ports/x11/tk41|/usr/local|Graphical toolkit for TCL.|/usr/ports/x11/tk41/pkg/DESCR|ports@FreeBSD.ORG|x11 tk41||
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|tcl-7.6|tcl-7.6
tkdesk-1.0b3|/usr/ports/x11/tkdesk|/usr/local|A graphical, highly configurable and powerful file manager.|/usr/ports/x11/tkdesk/pkg/DESCR|nox@jelal.hb.north.de|misc x11 tk41|tk-4.1|tk-4.1
tkgoodstuff-4.2b1.8|/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|tcl-7.6 tk-4.2|fvwm-2.0.45 tcl-7.6 tk-4.2 xpm-3.4j
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.4j|xpm-3.4j
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||
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||
x3270-3.0.3.7|/usr/ports/x11/x3270|/usr/X11R6|3270 Terminal emulator.|/usr/ports/x11/x3270/pkg/DESCR|ports@FreeBSD.ORG|x11 emulators||
xalarm-3.06|/usr/ports/x11/xalarm|/usr/X11R6|An X based alarm clock.|/usr/ports/x11/xalarm/pkg/DESCR|desmo@bandwidth.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.10|/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||
xbuffy-3.2.1|/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|asami@FreeBSD.ORG|x11||
xdaliclock-2.08|/usr/ports/x11/xdaliclock|/usr/X11R6|A rather neat animated clock.|/usr/ports/x11/xdaliclock/pkg/DESCR|gpalmer@FreeBSD.ORG|x11||
xdtm-2.5.5|/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.4j|xpm-3.4j
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|asami@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.4j|xpm-3.4j
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.4j|xpm-3.4j
xforms-0.86|/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.31|/usr/ports/x11/xkeycaps|/usr/X11R6|Graphically display and edit the keyboard mapping.|/usr/ports/x11/xkeycaps/pkg/DESCR|jmz@FreeBSD.org|x11||
xloadimage-3.03|/usr/ports/x11/xloadimage|/usr/X11R6|X11 Image Loading Utility.|/usr/ports/x11/xloadimage/pkg/DESCR|jmz@FreeBSD.org|x11||
xlockmore-4.02|/usr/ports/x11/xlockmore|/usr/X11R6|Like XLock session locker/screen saver, but just more.|/usr/ports/x11/xlockmore/pkg/DESCR|ports@freebsd.org|x11|xpm-3.4j|xpm-3.4j
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.75|
xmbdfed-2.2|/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||
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||
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@pobox.com|x11||
xscreensaver-1.27|/usr/ports/x11/xscreensaver|/usr/X11R6|Save your screen while you entertain your cat|/usr/ports/x11/xscreensaver/pkg/DESCR|asami@FreeBSD.ORG|x11|xpm-3.4j|xpm-3.4j
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||
xtestpicture-1.1|/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