-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINDEX
1003 lines (1003 loc) · 170 KB
/
INDEX
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
arc-5.21e|archivers/arc||create & extract files from DOS .ARC files|archivers/arc/pkg/DESCR|[email protected]|archivers|||any|n|y|n|y
bzip-0.21|archivers/bzip||block-sorting file compressor, encumbered|archivers/bzip/pkg/DESCR|[email protected]|archivers|||any|n|y|n|y
bzip2-1.0.1|archivers/bzip2||block-sorting file compressor, unencumbered|archivers/bzip2/pkg/DESCR|Brad Smith <[email protected]>|archivers|||any|y|y|y|y
fastjar-0.90|archivers/fastjar||Sun JDK's `jar' command written entirely in C|archivers/fastjar/pkg/DESCR|Dan Harnett <[email protected]>|archivers|||any|y|y|y|y
freeze-2.5|archivers/freeze||FREEZE / MELT compression program - often used in QNX|archivers/freeze/pkg/DESCR|[email protected]|archivers|||any|y|y|y|y
sharutils-4.2.1|archivers/gshar+gunshar||packing and unpacking of shell archives|archivers/gshar+gunshar/pkg/DESCR|[email protected]|archivers|||any|y|y|y|y
gtar-1.13.17|archivers/gtar||GNU version of the traditional tar archiver|archivers/gtar/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
ha-0.999b|archivers/ha||archive files using the HSC compression method|archivers/ha/pkg/DESCR|Angelos D. Keromytis <[email protected]>|archivers|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
lha-1.14f|archivers/lha||archive files using LZW compression (.lzh files)|archivers/lha/pkg/DESCR|Angelos D. Keromytis <[email protected]>|archivers|||any|y|y|y|y
lzo-1.07|archivers/lzo||portable speedy lossless data compression library|archivers/lzo/pkg/DESCR|Brad Smith <[email protected]>|archivers devel|||any|y|y|y|y
lzop-1.00|archivers/lzop||fast file compressor similar to gzip|archivers/lzop/pkg/DESCR|Dan Harnett <[email protected]>|archivers|lzo-1.07|lzo-1.07|any|y|y|y|y
nulib-3.25|archivers/nulib||NuFX archiver|archivers/nulib/pkg/DESCR|Angelos D. Keromytis <[email protected]>|archivers|||any|n|y|n|y
p5-Compress-LZO-1.00|archivers/p5-Compress-LZO||Perl5 interface to lzo compression library|archivers/p5-Compress-LZO/pkg/DESCR|Dan Harnett <[email protected]>|archivers perl5|lzo-1.07|lzo-1.07|any|y|y|y|y
p5-Compress-Zlib-1.08|archivers/p5-Compress-Zlib||Perl5 interface to zlib compression library|archivers/p5-Compress-Zlib/pkg/DESCR|Angelos D. Keromytis <[email protected]>|archivers perl5|||any|y|y|y|y
rar-2.02|archivers/rar||archiver (binary port)|archivers/rar/pkg/DESCR|[email protected]|archivers|||i386 sparc|n|n|n|y
star-1.2|archivers/star||unique standard tape archiver with many enhancements|archivers/star/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers sysutils|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
unace-1.2b|archivers/unace||extract, view & test ACE archives|archivers/unace/pkg/DESCR|Brad Smith <[email protected]>|archivers|unzip-5.41||any|y|y|y|y
unarj-2.43|archivers/unarj||extract files from ARJ archives|archivers/unarj/pkg/DESCR|[email protected]|archivers|||any|n|y|n|y
unrar-2.50|archivers/unrar||extract, list & test RAR archives|archivers/unrar/pkg/DESCR|[email protected]|archivers|||any|n|n|n|y
unzip-5.41|archivers/unzip||extract, list & test files in a ZIP archive|archivers/unzip/pkg/DESCR|[email protected]|archivers|||any|y|y|y|y
zip-2.3|archivers/zip||create/update ZIP files compatible with pkzip|archivers/zip/pkg/DESCR|[email protected]|archivers|unzip-5.41||any|y|y|y|y
zoo-2.10.1|archivers/zoo||handle the old .zoo archive format|archivers/zoo/pkg/DESCR|Angelos D. Keromytis <[email protected]>|archivers|||any|y|y|y|y
dgpsip-1.32|astro/dgpsip||Differential GPS over IP communication device|astro/dgpsip/pkg/DESCR|Wolfgang Rupprecht <[email protected]>|astro|||any|y|y|y|y
jday-1.2|astro/jday||convert calendar dates to/from astronomical julian dates|astro/jday/pkg/DESCR|Christian Weisgerber <[email protected]>|astro|||any|y|y|y|y
sattrack-3.1.6|astro/sattrack||real-time satellite tracking and orbit propagation program|astro/sattrack/pkg/DESCR|Angelos D. Keromytis <[email protected]>|astro|||any|n|y|n|y
xearth-1.1|astro/xearth||set the root window to the image of earth|astro/xearth/pkg/DESCR|Paul Janzen <[email protected]>|astro x11|||any|n|y|n|y
xephem-3.2.3|astro/xephem||interactive astronomical ephemeris|astro/xephem/pkg/DESCR|[email protected]|astro|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
xphoon-91.9.18|astro/xphoon||set the root window to the moon in its current phase|astro/xphoon/pkg/DESCR|[email protected]|astro x11|||any|n|y|n|y
ac3dec-0.5.6|audio/ac3dec||ac3 audio (as used on DVDs) decoding tools|audio/ac3dec/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||i386|y|y|y|y
aumix-2.7|audio/aumix||full-screen ncurses- or GTK-based audio mixer|audio/aumix/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|glib-1.2.8 gettext-0.10.35 gtk+-1.2.8|glib-1.2.8 gettext-0.10.35 gtk+-1.2.8|any|y|y|y|y
bladeenc-0.93.7|audio/bladeenc||MP3 encoder|audio/bladeenc/pkg/DESCR|Brad Smith <[email protected]>|audio|||any|n|y|n|y
cdparanoia-3.a9.7|audio/cdparanoia||CDDA reading utility with extra data verification features|audio/cdparanoia/pkg/DESCR|[email protected]|audio|autoconf-2.13||any|y|y|y|y
esound-0.2.20|audio/esound||sound library for Enlightenment|audio/esound/pkg/DESCR|Brad Smith <[email protected]>|audio|libaudiofile-0.1.11|libaudiofile-0.1.11|any|y|y|y|y
gogo-2.26a|audio/gogo||686 class CPU optimized mp3 encoder|audio/gogo/pkg/DESCR|Bob Beck <[email protected]>|audio|gettext-0.10.35 gmake-3.79.1 nasm-0.98||i386|n|y|n|y
gom-0.29.103|audio/gom||generic audio mixer|audio/gom/pkg/DESCR|Scott Robinson <[email protected]>|audio|xview-config-3.2.1 autoconf-2.13 xview-lib-3.2.1|xview-lib-3.2.1|any|y|y|y|y
gqmpeg-0.6.3|audio/gqmpeg||mpg123 front-end with skin support|audio/gqmpeg/pkg/DESCR|Bruno Rohee <[email protected]>|audio|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 mpg123-0.59r imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 mpg123-0.59r imlib-1.9.8.1|any|y|y|y|y
gsm-1.0.10|audio/gsm||u-law to gsm encoding audio converter and library|audio/gsm/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||any|y|y|y|y
knapster-0.12|audio/knapster||napster clone|audio/knapster/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gettext-0.10.35 gmake-3.79.1 bzip2-1.0.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
lame-3.86beta|audio/lame||Lame Ain't an MP3 Encoder|audio/lame/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|n|y|n|y
lopster-0.9.4|audio/lopster||full featured GTK Napster client|audio/lopster/pkg/DESCR|Cameron Lerch <[email protected]>|audio|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
mp3cddb|audio/mp3cddb||embedding CDDB information in MP3s|audio/mp3cddb/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio||mp3info-0.2.16 p5-MP3-Info-0.80 p5-CDDB-1.03|any|y|y|y|y
mp3encode-1.10|audio/mp3encode||MPEG layer I, II and III audio file encoder|audio/mp3encode/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|gettext-0.10.35 gmake-3.79.1||any|n|y|n|y
mp3info-0.2.16|audio/mp3info||MP3 information tool|audio/mp3info/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||any|y|y|y|y
mpegaudio-3.9|audio/mpegaudio||MPEG/audio Layer 1 and Layer 2 encoder/decoder|audio/mpegaudio/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||any|y|y|y|y
mpg123-0.59r|audio/mpg123||mpeg audio 1/2 layer 1, 2 and 3 player|audio/mpg123/pkg/DESCR|Hakan Olsson <[email protected]>|audio|||any|y|y|y|y
nspmod-0.1|audio/nspmod||MOD/S3M/MTM tracker that does its own DSP|audio/nspmod/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||any|y|y|y|y
opennap-0.36|audio/opennap||OpenNAP open-source Napster(tm) server|audio/opennap/pkg/DESCR|Brad Smith <[email protected]>|audio net|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
p5-MP3-Info-0.80|audio/p5-MP3-Info||Perl5 module for reading MPEG3 tags|audio/p5-MP3-Info/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio perl5|||any|y|y|y|y
p5-CDDB-1.03|audio/p5-cddb||Perl5 module for CDDB|audio/p5-cddb/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio perl5|||any|y|y|y|y
rio500-0.7|audio/rio500||Diamond Rio 500 utilities|audio/rio500/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|i386|y|y|y|y
rplay-3.3.0|audio/rplay||network audio player|audio/rplay/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|gettext-0.10.35 gsm-1.0.10 gmake-3.79.1|gsm-1.0.10|any|y|y|y|y
rsynth-2.0|audio/rsynth||speech synthesizer|audio/rsynth/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|gdbm-1.8.0 autoconf-2.13|gdbm-1.8.0|any|y|y|y|y
sox-12.17|audio/sox||SOund eXchange - universal sound sample translator|audio/sox/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|autoconf-2.13||any|y|y|y|y
teknap-1.2|audio/teknap||console napster client|audio/teknap/pkg/DESCR|Jason Ish <[email protected]>|audio|||any|y|y|y|y
timidity-0.2i|audio/timidity||MIDI to WAV renderer and player|audio/timidity/pkg/DESCR|[email protected]|audio|lesstif-0.91.8|lesstif-0.91.8|any|n|n|n|n
tosha-0.6|audio/tosha||read CD digital audio data through the SCSI bus|audio/tosha/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||any|y|y|y|y
tracker-5.3|audio/tracker||MOD player|audio/tracker/pkg/DESCR|Marc Espie <[email protected]>|audio|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
waveplay-1.0|audio/waveplay||simple wav audio player|audio/waveplay/pkg/DESCR|[email protected]|audio|||any|y|y|y|y
workman-1.3a|audio/workman||OpenLook-based CD player|audio/workman/pkg/DESCR|[email protected]|audio|xview-config-3.2.1 xview-lib-3.2.1|xview-lib-3.2.1|any|y|y|y|y
xcd-1.6|audio/xcd||Tcl/Tk CD player|audio/xcd/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
xcdplayer-2.2|audio/xcdplayer||CD player for X11|audio/xcdplayer/pkg/DESCR|[email protected]|audio|||any|y|y|y|y
xmcd-2.3|audio/xmcd||Motif CD player|audio/xmcd/pkg/DESCR|[email protected]|audio|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
xmix-2.1|audio/xmix||X11-based audio mixer|audio/xmix/pkg/DESCR|[email protected]|audio|||any|y|y|y|y
xmmix-1.2|audio/xmmix||Motif-based audio mixer|audio/xmmix/pkg/DESCR|[email protected]|audio|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
xmp-1.1.5|audio/xmp||Extended Module Player; many formats plus an X11 display|audio/xmp/pkg/DESCR|[email protected]|audio|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
bonnie-1.0|benchmarks/bonnie||performance test of filesystem I/O|benchmarks/bonnie/pkg/DESCR|Niklas Hallqvist <[email protected]>|benchmarks|||any|y|y|y|y
bytebench-3.1|benchmarks/bytebench||BYTE magazine benchmark suite|benchmarks/bytebench/pkg/DESCR|Angelos D. Keromytis <[email protected]>|benchmarks|||any|y|y|y|y
iozone-3.48|benchmarks/iozone||performance test of sequential file I/O|benchmarks/iozone/pkg/DESCR|Brad Smith <[email protected]>|benchmarks|||any|y|y|y|y
lmbench-1.1|benchmarks/lmbench||system performance measurement|benchmarks/lmbench/pkg/DESCR|[email protected]|benchmarks|||any|y|y|y|y
netperf-2.1pl3|benchmarks/netperf||Network performance benchmark|benchmarks/netperf/pkg/DESCR|Jakob Schlyter <[email protected]>|benchmarks net|||any|n|y|n|y
netpipe-2.4|benchmarks/netpipe||self-scaling network benchmark|benchmarks/netpipe/pkg/DESCR|Brad Smith <[email protected]>|benchmarks net|||any|y|y|y|y
tcpblast-1.0|benchmarks/tcpblast||measure the throughput of a tcp connection|benchmarks/tcpblast/pkg/DESCR|[email protected]|net benchmarks|||any|y|y|y|y
xengine-1.0.1|benchmarks/xengine||reciprocating engine for X11|benchmarks/xengine/pkg/DESCR|Paul Janzen <[email protected]>|benchmarks x11|sharutils-4.2.1||any|n|y|n|y
spice-3f5|cad/spice||Simulation Program for Integrated Circuit Electronics|cad/spice/pkg/DESCR|[email protected]|cad|||any|n|y|n|y
zh-c2t-1.0|chinese/c2t||translate GB/Big5 encoding to tone pinyin|chinese/c2t/pkg/DESCR|Kevin Lo <[email protected]>|chinese|||any|y|y|y|y
zh-cless-290|chinese/cless||pager utility that speaks Chinese|chinese/cless/pkg/DESCR|Kevin Lo <[email protected]>|chinese misc|||any|y|y|y|y
zh-crxvt-2.10-2|chinese/crxvt||Chinese(Big5) VT100 terminal emulator for X|chinese/crxvt/pkg/DESCR|Kevin Lo <[email protected]>|chinese||zh-fonts-taipei|any|y|y|y|y
zh-lunar-2.1|chinese/lunar||Gregorian Solar Calendar (SC) -> Lunar Calendar (LC)|chinese/lunar/pkg/DESCR|Kevin Lo <[email protected]>|chinese|||any|n|y|n|y
zh-fonts-taipei|chinese/taipeifonts||extra chinese fonts|chinese/taipeifonts/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11|||any|y|y|y|y
zh-xcin-2.3.04|chinese/xcin||chinese input utility for X|chinese/xcin/pkg/DESCR|Kevin Lo <[email protected]>|chinese||zh-fonts-taipei|any|y|y|y|y
bpl+-1.0|comms/bpl+||B Plus file transfer protocol|comms/bpl+/pkg/DESCR|[email protected]|comms|||any|n|y|n|y
conserver-5.21|comms/conserver||manage remote serial consoles via TCP/IP|comms/conserver/pkg/DESCR|Angelos D. Keromytis <[email protected]>|comms|||any|y|y|y|y
efax-0.9|comms/efax||small & simple FAX send/receive program|comms/efax/pkg/DESCR|Ian Darwin <[email protected]>|comms|||any|y|y|y|y
hylafax-4.0.2-letter|comms/hylafax||send/receive faxes and share modems|comms/hylafax/pkg/DESCR|David Leonard <[email protected]>|comms|gettext-0.10.35 jpeg-6b gmake-3.79.1 tiff-3.5.5 afm-1.0|jpeg-6b png-1.0.8 tiff-3.5.5 ghostscript-5.50|any|y|y|y|y
jpilot-0.98.1|comms/jpilot||Desktop Organizer Software for the Palm Pilot|comms/jpilot/pkg/DESCR|Hakan Olsson <[email protected]>|comms|tcl-8.0.5 tk-8.0.5 gettext-0.10.35 glib-1.2.8 pilot-link-0.9.3 autoconf-2.13 gtk+-1.2.8|tcl-8.0.5 tk-8.0.5 gettext-0.10.35 glib-1.2.8 pilot-link-0.9.3 gtk+-1.2.8|any|y|y|y|y
kermit-6.0.192|comms/kermit||file transfer/terminal emulation|comms/kermit/pkg/DESCR|[email protected]|comms|||any|n|y|n|y
lrzsz-0.12.20|comms/lrzsz||receive/send files via X/Y/ZMODEM protocol|comms/lrzsz/pkg/DESCR|[email protected]|comms|||any|n|y|n|y
malsync-1.6|comms/malsync||sync Palm organizer with AvantGo sites|comms/malsync/pkg/DESCR|Evan Cordes <[email protected]>|comms|tcl-8.0.5 tk-8.0.5 pilot-link-0.9.3|tcl-8.0.5 tk-8.0.5 pilot-link-0.9.3|any|y|y|y|y
mgetty-1.1.21|comms/mgetty+sendfax||handle external logins, send and receive faxes|comms/mgetty+sendfax/pkg/DESCR|Brad Smith <[email protected]>|comms|||any|?|?|?|?
minicom-1.83.1|comms/minicom||MS-DOS Telix serial communication program "workalike"|comms/minicom/pkg/DESCR|Oleg Safiullin <[email protected]>|comms|gettext-0.10.35|kermit-6.0.192 lrzsz-0.12.20|any|y|y|y|y
pilot-link-0.9.3|comms/pilot-link||PalmPilot communication utilities|comms/pilot-link/pkg/DESCR|Angelos D. Keromytis <[email protected]>|comms|tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
qpage-3.3|comms/qpage||SNPP client/server (alphanum pager software)|comms/qpage/pkg/DESCR|Angelos D. Keromytis <[email protected]>|comms|||any|n|n|n|y
seyon-2.14b|comms/seyon||communication package for X11|comms/seyon/pkg/DESCR|[email protected]|comms x11|||any|y|y|y|y
tkhylafax-3.0|comms/tkhylafax||Tcl/Tk interface to Sam Leffler's fax package|comms/tkhylafax/pkg/DESCR|[email protected]|comms||jpeg-6b png-1.0.8 tiff-3.5.5 ghostscript-5.50 Xaw3d-1.5 hylafax-4.0.2-letter gv-3.5.8|any|y|y|y|y
xcept-2.1.2|comms/xcept||decoder for the CEPT (Btx) protocol|comms/xcept/pkg/DESCR|[email protected]|comms|||any|y|y|y|y
zmtx-zmrx-1.02|comms/zmtx-zmrx||receive/send files via ZMODEM protocol (unrestricted)|comms/zmtx-zmrx/pkg/DESCR|[email protected]|comms|||any|n|n|n|y
base64-1.0|converters/base64||converter to/from base64 encoding|converters/base64/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters|||any|y|y|y|y
btoa-5.2.1|converters/btoa||encode/decode binary to printable ASCII|converters/btoa/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters|||any|n|y|n|y
ish-1.11|converters/ish||binary-to-text file converter|converters/ish/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters|||any|y|y|y|y
mimepp-1.0|converters/mimepp||C++ class library for MIME messages|converters/mimepp/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters|||any|n|n|n|y
mpack-1.5|converters/mpack||external MIME packer/unpacker|converters/mpack/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters mail news|||any|y|y|y|y
p5-DateManip-5.39|converters/p5-DateManip||manipulate dates in perl|converters/p5-DateManip/pkg/DESCR|Marc Espie <[email protected]>|converters perl5|||any|y|y|y|y
p5-Convert-UU-0.40|converters/p5-Convert-UU||Perl5 module for uuencode and uudecode|converters/p5-Convert-UU/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters perl5|||any|n|n|n|y
p5-MIME-Base64-2.11|converters/p5-MIME-Base64||Base64 and Quoted-Printable encodings|converters/p5-MIME-Base64/pkg/DESCR|Anil Madhavapeddy <[email protected]>|converters perl5|||any|y|y|y|y
recode-3.5|converters/recode||convert files between character sets and usages|converters/recode/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters textproc|||any|y|y|y|y
rpm2cpio-1.0|converters/rpm2cpio||rpm2cpio, simple perl converter|converters/rpm2cpio/pkg/DESCR|[email protected]|converters archivers|||any|y|y|y|y
trans-1.20|converters/trans||character encoding converter generator package|converters/trans/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters russian|||any|n|y|n|y
db-3.1.17|databases/db||Berkeley DB package, revision 3|databases/db/pkg/DESCR|[email protected]|databases|||any|y|y|y|y
db-3.1.17-java|databases/db,java||Berkeley DB package, revision 3|databases/db/pkg/DESCR|[email protected]|databases|freebsd_lib-2.2.8 jdk-1.1.8||i386|y|y|y|y
gdbm-1.8.0|databases/gdbm||GNU dbm|databases/gdbm/pkg/DESCR|[email protected]|databases|||any|y|y|y|y
iodbc-2.50.3|databases/iodbc||ODBC 2.x driver manager|databases/iodbc/pkg/DESCR|Dug Song <[email protected]>|databases|libtool-1.3.5||any|y|y|y|y
mysql-3.22.32|databases/mysql||multithreaded SQL database|databases/mysql/pkg/DESCR|Brad Smith <[email protected]>|databases|||any|y|y|y|y
mysql-3.22.32-pth|databases/mysql,pth||multithreaded SQL database|databases/mysql/pkg/DESCR|Brad Smith <[email protected]>|databases|pth-1.3.7|pth-1.3.7|any|y|y|y|y
openldap-2.0.7|databases/openldap||Open source LDAP client and server software|databases/openldap/pkg/DESCR|Jakob Schlyter <[email protected]>|databases net|libtool-1.3.5||any|y|y|y|y
openldapclient-2.0.7|databases/openldap||Open source LDAP client software|databases/openldap/pkg/DESCR-client|Jakob Schlyter <[email protected]>|databases net|libtool-1.3.5||any|y|y|y|y
p5-AsciiDB-TagFile-1.05|databases/p5-AsciiDB-TagFile||tie class for a simple ASCII database|databases/p5-AsciiDB-TagFile/pkg/DESCR|Marc Espie <[email protected]>|databases perl5|||any|y|y|y|y
p5-DBD-Pg-0.95|databases/p5-DBD-Pg||access to PostgreSQL databases through the DBI|databases/p5-DBD-Pg/pkg/DESCR|Kevin Lo <[email protected]>|databases perl5|gettext-0.10.35 gmake-3.79.1 p5-DBI-1.14 postgresql-7.0.2|postgresql-7.0.2|any|y|y|y|y
p5-DBI-1.14|databases/p5-DBI||perl5 Database Interface, required for DBD::* modules|databases/p5-DBI/pkg/DESCR|[email protected]|databases perl5|||any|y|y|y|y
postgresql-7.0.2|databases/postgresql||robust, next generation, object-relational DBMS|databases/postgresql/pkg/DESCR|Pavel Korovin <[email protected]>|databases|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
postgresql-docs-7.0.2|databases/postgresql||documentation for PostgreSQL|databases/postgresql/pkg/DESCR-docs|Pavel Korovin <[email protected]>|databases|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
postgresql-7.0.2-tcl|databases/postgresql,tcl||robust, next generation, object-relational DBMS|databases/postgresql/pkg/DESCR|Pavel Korovin <[email protected]>|databases|gettext-0.10.35 gmake-3.79.1 tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
postgresql-docs-7.0.2|databases/postgresql,tcl||documentation for PostgreSQL|databases/postgresql/pkg/DESCR-docs|Pavel Korovin <[email protected]>|databases|gettext-0.10.35 gmake-3.79.1 tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
xmysql-1.9|databases/xmysql||X11 front end to the MySQL database engine|databases/xmysql/pkg/DESCR|[email protected]|databases|mysql-3.22.32 xforms-0.88|mysql-3.22.32 xforms-0.88|any|y|y|y|y
xmysqladmin-1.0|databases/xmysqladmin||X11 front end to the mysqladmin command|databases/xmysqladmin/pkg/DESCR|[email protected]|databases|mysql-3.22.32 xforms-0.88|mysql-3.22.32 xforms-0.88|any|y|y|y|y
electricfence-2.0.5|devel/ElectricFence||library providing malloc debugging via VM protection|devel/ElectricFence/pkg/DESCR|Niklas Hallqvist <[email protected]>|devel|||any|y|y|y|y
ORBit-0.5.3|devel/ORBit||high-performance CORBA ORB with support for the C language|devel/ORBit/pkg/DESCR|Brad Smith <[email protected]>|devel|gettext-0.10.35 glib-1.2.8 gmake-3.79.1|gettext-0.10.35 glib-1.2.8|any|y|y|y|y
autobook-1.2|devel/autobook||documentation for autoconf, automake, libtool|devel/autobook/pkg/DESCR|Marc Espie <[email protected]>|devel|||any|y|y|y|y
autoconf-2.13|devel/autoconf||automatically configure source code on many Un*x platforms|devel/autoconf/pkg/DESCR|Marc Espie <[email protected]>|devel|||any|y|y|y|y
automake-1.4|devel/automake||GNU Standards-compliant Makefile generator|devel/automake/pkg/DESCR|Jason Ish <[email protected]>|devel|||any|y|y|y|y
bison-1.27|devel/bison||GNU parser generator|devel/bison/pkg/DESCR|David Leonard <[email protected]>|devel|||any|y|y|y|y
boehm-gc-4.12|devel/boehm-gc||garbage collection and memory leak detection for C and C++|devel/boehm-gc/pkg/DESCR|Niklas Hallqvist <[email protected]>|devel|||i386 m68k sparc|y|y|y|y
cook-2.16|devel/cook||like make(1), but more powerful and clean|devel/cook/pkg/DESCR|Gregory Steuck <[email protected]>|devel|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
cscope-15.0bl2|devel/cscope||code browsing program|devel/cscope/pkg/DESCR|Matthew Kolb <[email protected]>|devel|autoconf-2.13||any|y|y|y|y
ctm|devel/ctm||directory synchronization over mail|devel/ctm/pkg/DESCR|[email protected]|net devel|||any|y|y|y|y
cvs2cl-2.30|devel/cvs2cl||generate GNU-style ChangeLogs from CVS repositories|devel/cvs2cl/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel|||any|y|y|y|y
cvsweb-1.104.1.45|devel/cvsweb|/var/www|WWW CGI script to browse CVS repository trees|devel/cvsweb/pkg/DESCR|Christian Weisgerber <[email protected]>|devel www|||any|y|y|y|y
ddd-3.2.1|devel/ddd||Data Display Debugger, graphical front-end for GDB, etc|devel/ddd/pkg/DESCR|[email protected]|devel|gettext-0.10.35 gmake-3.79.1 lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
dejagnu-1.3|devel/dejagnu||GNU automated testing framework|devel/dejagnu/pkg/DESCR|Niklas Hallqvist <[email protected]>|devel|tcl-8.3.2 tk-8.3.2 expect-5.32.1|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
doc++-3.4.6|devel/doc++||documentation system for C, C++, IDL and Java|devel/doc++/pkg/DESCR|Kevin Lo <[email protected]>|devel|gettext-0.10.35 gmake-3.79.1|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5 teTeX_base-1.0.7|any|y|y|y|y
indent-2.2.5|devel/gindent||GNU indent|devel/gindent/pkg/DESCR|[email protected]|devel|||any|y|y|y|y
gettext-0.10.35|devel/gettext||GNU gettext|devel/gettext/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
glib-1.2.8|devel/glib||useful routines for C programming|devel/glib/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
gmake-3.79.1|devel/gmake||GNU make|devel/gmake/pkg/DESCR|Todd T. Fries <[email protected]>|devel|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
gperf-2.7.2|devel/gperf||perfect hash functions, to help write parsers|devel/gperf/pkg/DESCR|Marc Espie <[email protected]>|devel|||any|y|y|y|y
gsl-0.6|devel/gsl||GNU Scientific Library|devel/gsl/pkg/DESCR|Bruno Rohee <[email protected]>|devel|||any|y|y|y|y
id-utils-3.2d|devel/id-utils||gid/lid tools for looking up variables in code|devel/id-utils/pkg/DESCR|[email protected]|devel|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
jdk-1.1.8|devel/jdk||Sun's Java Developers Kit|devel/jdk/pkg/DESCR|Chris Cappuccio <[email protected]>|devel||freebsd_lib-2.2.8|i386|n|n|n|n
jfc-1.1.1|devel/jfc||java foundation classes (jfc)/swing|devel/jfc/pkg/DESCR|Kevin Lo <[email protected]>|devel|unzip-5.41|freebsd_lib-2.2.8 jdk-1.1.8|i386|n|n|n|n
kdbg-1.0.2|devel/kdbg||graphical debugger for kde|devel/kdbg/pkg/DESCR|Sean Cavanaugh <[email protected]>|devel|gettext-0.10.35 gmake-3.79.1 bzip2-1.0.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
lclint-2.5q|devel/lclint||advanced lint: statically check C programs|devel/lclint/pkg/DESCR|Marc Espie <[email protected]>|devel|gettext-0.10.35 bison-1.27 gmake-3.79.1||any|y|y|y|y
libaudiofile-0.1.11|devel/libaudiofile||SGI audiofile library GPLed clone|devel/libaudiofile/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
libevent-0.2b|devel/libevent||asynchronous event library|devel/libevent/pkg/DESCR|Dug Song <[email protected]>|devel|||any|y|y|y|y
libproplist-0.10.1|devel/libproplist||GNUstep/OPENSTEP property lists compatibility library|devel/libproplist/pkg/DESCR|Jason Ish <[email protected]>|devel|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
libsigc++-1.0.1|devel/libsigc++||callback framework for C++|devel/libsigc++/pkg/DESCR|[email protected]|devel|||any|y|y|y|y
libslang-1.4.2|devel/libslang||stack-based interpreter for terminal applications|devel/libslang/pkg/DESCR|Todd T. Fries <[email protected]>|devel|||any|y|y|y|y
libtool-1.3.5|devel/libtool||generic shared library support script|devel/libtool/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
lincvs-0.2.3|devel/lincvs||graphical CVS front-end using QT2|devel/lincvs/pkg/DESCR|Reinhard J. Sammer <[email protected]>|devel|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt2-2.3|jpeg-6b png-1.0.8 qt2-2.3|any|y|y|y|y
m4-1.4|devel/m4||GNU m4|devel/m4/pkg/DESCR|Niklas Hallqvist <[email protected]>|devel|||any|y|y|y|y
mm-1.1.3|devel/mm||shared memory lib for apps with pre-forked process model|devel/mm/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
nasm-0.98|devel/nasm||general-purpose multi-platform x86 assembler|devel/nasm/pkg/DESCR|Angelos D. Keromytis <[email protected]>|devel lang|||i386|y|y|y|y
p5-Curses-1.05|devel/p5-Curses||terminal screen handling and optimisation|devel/p5-Curses/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|||any|y|y|y|y
p5-Curses-Widgets-1.2|devel/p5-Curses-Widgets||curses(3) based terminal widgets|devel/p5-Curses-Widgets/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|p5-Curses-1.05|p5-Curses-1.05|any|y|y|y|y
p5-Date-Calc-4.3|devel/p5-Date-Calc||date calculations for the Gregorian calendar|devel/p5-Date-Calc/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|||any|y|y|y|y
p5-File-Tail-0.97|devel/p5-File-Tail||library for reading from continously updated files|devel/p5-File-Tail/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|p5-Time-HiRes-1.20|p5-Time-HiRes-1.20|any|y|y|y|y
p5-FreezeThaw-0.3|devel/p5-FreezeThaw||module for converting structures to strings and back|devel/p5-FreezeThaw/pkg/DESCR|[email protected]|devel perl5|||any|y|y|y|y
p5-Time-TimeDate-1.10|devel/p5-Time-TimeDate||library for parsing and formatting dates and times|devel/p5-Time-TimeDate/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|||any|y|y|y|y
p5-Time-HiRes-1.20|devel/p5-Time-HiRes||high resolution ualarm, sleep, and gettimeofday module|devel/p5-Time-HiRes/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5|||any|y|y|y|y
pccts-1.33r22|devel/pccts||Purdue Compiler Construction Tool Set |devel/pccts/pkg/DESCR|Federico Schwindt <[email protected]>|devel lang|unzip-5.41||any|y|y|y|y
pcre-3.2|devel/pcre||Perl-compatible regular expression library|devel/pcre/pkg/DESCR|Jakob Schlyter <[email protected]>|devel|||any|y|y|y|y
popt-1.5.1|devel/popt||getopt(3)-like library with a number of enhancements|devel/popt/pkg/DESCR|[email protected]|devel|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
prc-tools-0.5.0|devel/prc-tools|/usr/local/pilot|PalmPilot(tm) development environment|devel/prc-tools/pkg/DESCR|Angelos D. Keromytis <[email protected]>|devel pilot|||any|y|y|y|y
pth-1.3.7|devel/pth||GNU portable threads|devel/pth/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
shtool-1.5.1|devel/shtool||GNU Portable Shell Tool|devel/shtool/pkg/DESCR|Brad Smith <[email protected]>|devel|||any|y|y|y|y
swig-1.3a5|devel/swig||Simplified Wrapper and Interface Generator|devel/swig/pkg/DESCR|Kevin Lo <[email protected]>|devel|tcl-8.3.2 tk-8.3.2 autoconf-2.13 libtool-1.3.5 guile-1.4 python-2.0 ruby-1.4.6||any|y|y|y|y
t1lib-1.0.1|devel/t1lib||Type 1 rasterizer library for UNIX/X11|devel/t1lib/pkg/DESCR|Brad Smith <[email protected]>|devel textproc|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
tclcl-1.0b9|devel/tclcl||Tcl/C++ interface used by ns and nam|devel/tclcl/pkg/DESCR|Angelos D. Keromytis <[email protected]>|devel|tcl-8.3.2 tk-8.3.2 otcl-1.0a5|tcl-8.3.2 tk-8.3.2 otcl-1.0a5|any|y|y|y|y
tkcvs-6.0|devel/tkcvs||graphical frontend to CVS|devel/tkcvs/pkg/DESCR|Todd T. Fries <[email protected]>|devel||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
xmake-1.01|devel/xmake||powerful make utility|devel/xmake/pkg/DESCR|[email protected]|devel|||any|y|y|y|y
abiword-0.7.10|editors/abiword||open-source, cross-platform WYSIWYG word processor|editors/abiword/pkg/DESCR|Dug Song <[email protected]>|editors|gettext-0.10.35 unzip-5.41 glib-1.2.8 gmake-3.79.1 png-1.0.8 expat-1.2 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 png-1.0.8 expat-1.2 ispell-3.1.20 gtk+-1.2.8|any|y|y|y|y
axe-6.1.2|editors/axe||simple to use text editor for X11|editors/axe/pkg/DESCR|[email protected]|editors|||any|y|y|y|y
beav-1.40-13|editors/beav||binary editor and viewer|editors/beav/pkg/DESCR|Kevin Lo <[email protected]>|editors|||any|y|y|y|y
bvi-1.3.0|editors/bvi||binary visual display editor, based on vi|editors/bvi/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|||any|y|y|y|y
emacs-20.7|editors/emacs||GNU editor|editors/emacs/pkg/DESCR|Matthew Economou <[email protected]>|editors|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
emacs-20.7-no_x11|editors/emacs,no_x11||GNU editor|editors/emacs/pkg/DESCR|Matthew Economou <[email protected]>|editors|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
elvis-2.1.4|editors/elvis||clone of the ex/vi text editor|editors/elvis/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|||any|y|y|y|y
elvis-2.1.4-no_x11|editors/elvis,no_x11||clone of the ex/vi text editor|editors/elvis/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|||any|y|y|y|y
hexedit-1.1.0|editors/hexedit||view and edit files in hexadecimal or ASCII|editors/hexedit/pkg/DESCR|Brad Smith <[email protected]>|editors|||any|y|y|y|y
jed-0.99.11|editors/jed||text editor|editors/jed/pkg/DESCR|[email protected]|editors|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
jed-0.99.11-no_x11|editors/jed,no_x11||text editor|editors/jed/pkg/DESCR|[email protected]|editors|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
joe-2.8|editors/joe||Joe's own editor|editors/joe/pkg/DESCR|[email protected]|editors|||any|y|y|y|y
jove-4.16|editors/jove||Jonathan's Own Version of Emacs|editors/jove/pkg/DESCR|[email protected]|editors|||any|n|y|n|y
nano-0.9.23|editors/nano||small, easy to use editor|editors/nano/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|autoconf-2.13 gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
nano-0.9.23-slang|editors/nano,slang||small, easy to use editor|editors/nano/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|autoconf-2.13 gettext-0.10.35 libslang-1.4.2|gettext-0.10.35 libslang-1.4.2|any|y|y|y|y
nedit-5.1.1|editors/nedit||X11/Motif GUI text editor|editors/nedit/pkg/DESCR|Oleg Safiullin <[email protected]>|editors x11|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
nvi-m17n-1.79.19991117|editors/nvi-m17n||multilingual clone of vi/ex|editors/nvi-m17n/pkg/DESCR|Jun-ichiro itojun Hagino <[email protected]>|editors|||any|y|y|y|y
nvi-m17n-1.79.19991117-canna|editors/nvi-m17n,canna||multilingual clone of vi/ex|editors/nvi-m17n/pkg/DESCR|Jun-ichiro itojun Hagino <[email protected]>|editors|ja-groff-1.10_0.99 cannalib-3.5b2p1|cannalib-3.5b2p1|any|y|y|y|y
textedit-1.0|editors/textedit||standard OpenLook text editor for X11|editors/textedit/pkg/DESCR|Ian Darwin <[email protected]>|editors|xview-config-3.2.1 xview-lib-3.2.1|xview-lib-3.2.1|any|n|n|n|n
uemacs-4.0|editors/uemacs||full screen simple editor|editors/uemacs/pkg/DESCR|[email protected]|editors|unzip-5.41||any|n|y|n|y
vim-5.7.19-gtk|editors/vim,gtk||vi clone, many additional features|editors/vim/pkg/DESCR|Jason Ish <[email protected]>|editors|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
vim-5.7.19-no_x11|editors/vim,no_x11||vi clone, many additional features|editors/vim/pkg/DESCR|Jason Ish <[email protected]>|editors|||any|y|y|y|y
wordperfect-8.0|editors/wordperfect||graphical word processor ported from Windows|editors/wordperfect/pkg/DESCR|Dug Song <[email protected]>|editors||linux_lib-2.6.1|i386|n|n|n|n
xemacs-21.1.12|editors/xemacs21||Heavily customizable and extensible editor (almost IDE)|editors/xemacs21/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
xemacs-21.1.12-mule|editors/xemacs21,mule||Heavily customizable and extensible editor (almost IDE)|editors/xemacs21/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
xwpe-1.5.22a|editors/xwpe||powerful programming editor|editors/xwpe/pkg/DESCR|[email protected]|editors|||any|y|y|y|y
bochs-2000_0325a|emulators/bochs||x86 CPU emulator|emulators/bochs/pkg/DESCR|[email protected]|emulators|||any|y|y|y|y
bochs-2000_0325a-debugger|emulators/bochs,debugger||x86 CPU emulator|emulators/bochs/pkg/DESCR|[email protected]|emulators|||any|y|y|y|y
frodo-4.1a|emulators/frodo||Commodore 64 emulator|emulators/frodo/pkg/DESCR|Marc Espie <[email protected]>|emulators games||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
freebsd_lib-2.2.8|emulators/freebsd_lib|/usr/local/emul/freebsd|libraries necessary for FreeBSD 2.x compatibility|emulators/freebsd_lib/pkg/DESCR|Brad Smith <[email protected]>|emulators|||i386|y|y|y|y
linux_lib-2.6.1|emulators/linux_lib|/usr/local/emul/linux|libraries necessary for Linux compatibility|emulators/linux_lib/pkg/DESCR|Brad Smith <[email protected]>|emulators|||i386|y|y|y|y
simh-2.3d|emulators/simh||PDP, IBM 1401, and Nova CPU simulator|emulators/simh/pkg/DESCR|Oleg Safiullin <[email protected]>|emulators|||any|n|y|n|y
wine-990225|emulators/wine||MS-Windows 3.1/95/NT emulator for Unix (Alpha release)|emulators/wine/pkg/DESCR|Bruno Rohee <[email protected]>|emulators x11|||i386|y|y|y|y
x48-0.4.0|emulators/x48||HP48sx emulator|emulators/x48/pkg/DESCR|Todd T. Fries <[email protected]>|emulators|||any|y|y|y|y
xcopilot-0.6.6|emulators/xcopilot||emulator for US Robotics Pilot PDA|emulators/xcopilot/pkg/DESCR|Angelos D. Keromytis <[email protected]>|emulators pilot|||any|y|y|y|y
abuse-2.0|games/abuse||full color 320x200 arcade quality platform shooter|games/abuse/pkg/DESCR|Bruno Rohee <[email protected]>|games x11|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
adom-g15|games/adom||Ancient Domains of Mystery - roguelike|games/adom/pkg/DESCR|Marc Espie <[email protected]>|games|||i386|n|n|n|y
agm-1.3.1|games/agm||AnaGram search utility|games/agm/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|n|n|n|y
an-0.93|games/an||fast anagram generator|games/an/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
angband-2.9.1|games/angband||rogue-like game with X11 support|games/angband/pkg/DESCR|[email protected]|games|||any|n|y|n|y
angband-2.9.1-no_x11|games/angband,no_x11||rogue-like game|games/angband/pkg/DESCR|[email protected]|games|||any|n|y|n|y
bnetd-0.4.19|games/bnetd||Battle.net(r) server emulator|games/bnetd/pkg/DESCR|Kevin Lo <[email protected]>|games|||any|y|y|y|y
cgoban-1.9.10|games/cgoban||X11 Go Toolset|games/cgoban/pkg/DESCR|Federico Schwindt <[email protected]>|games x11|||any|y|y|y|y
connect4-3.2|games/connect4||curses version of the classic game|games/connect4/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|sharutils-4.2.1||any|y|y|y|y
dopewars-1.4.8|games/dopewars||game where you deal drugs on the streets of NY|games/dopewars/pkg/DESCR|Brad Smith <[email protected]>|games|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
freeciv-1.11.4|games/freeciv||Civilization clone for X; multiplayer|games/freeciv/pkg/DESCR|[email protected]|games|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
freeciv-1.11.4-gtk|games/freeciv,gtk||Civilization clone for X; multiplayer|games/freeciv/pkg/DESCR|[email protected]|games|jpeg-6b glib-1.2.8 gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b glib-1.2.8 gettext-0.10.35 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
frotz-2.32|games/frotz||Curses-based interpreter for Infocom-compatible games|games/frotz/pkg/DESCR|[email protected]|games|||any|n|y|n|y
gnuchess-4.0.80|games/gnuchess||"Classic" Gnu Chess|games/gnuchess/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
gnugo-2.6|games/gnugo||GNU version of Go|games/gnugo/pkg/DESCR|Federico Schwindt <[email protected]>|games|||any|y|y|y|y
gnushogi-1.2.3|games/gnushogi||GNU version of Shogi|games/gnushogi/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
hackdata|games/hackdata||common data for the nethack/slash ports|games/hackdata/pkg/DESCR|Marc Espie <[email protected]>|games|||any|y|y|y|y
nethack-3.3.0|games/nethack||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games||hackdata|any|y|y|y|y
nethack-3.3.0-x11|games/nethack,x11||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games||hackdata|any|y|y|y|y
nethack-3.3.0-qt|games/nethack,qt||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt2-2.3|jpeg-6b png-1.0.8 hackdata qt2-2.3|any|y|y|y|y
slash-3.2.2-e8|games/slash||dungeon explorin', hackin' game, but harder than nethack|games/slash/pkg/DESCR|Marc Espie <[email protected]>|games||hackdata|any|y|y|y|y
slash-3.2.2-e8-x11|games/slash,x11||dungeon explorin', hackin' game, but harder than nethack|games/slash/pkg/DESCR|Marc Espie <[email protected]>|games||hackdata|any|y|y|y|y
netris-0.5|games/netris||network head-to-head version of T*tris|games/netris/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
spider-1.1|games/spider||challenging double decked solitaire game|games/spider/pkg/DESCR|[email protected]|games|||any|y|y|y|y
starlanes-1.2.2|games/starlanes||the classic space-age stock trading game|games/starlanes/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xasteroids-5.0|games/xasteroids||X11-based asteroids-style arcade|games/xasteroids/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xbat-1.11|games/xbat||XEVIOUS-like shooting game|games/xbat/pkg/DESCR|[email protected]|games|||any|n|n|n|y
xbattle-5.4.1|games/xbattle||concurrent multi-player battle strategy game|games/xbattle/pkg/DESCR|[email protected]|games|||any|n|y|n|y
xbill-2.0|games/xbill||save your computers from the evil clutches of Bill|games/xbill/pkg/DESCR|[email protected]|games x11|||any|y|y|y|y
xbl-1.0j|games/xbl||3D block-dropping game|games/xbl/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xblast-2.6b|games/xblast||graphical multi-player real-time strategy game for X11|games/xblast/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xboard-4.0.7|games/xboard||X11 frontend for GNU Chess and the Internet Chess Server|games/xboard/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xboing-2.4|games/xboing||X11 arcade|games/xboing/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xbreaky-0.0.4|games/xbreaky||breakout game for X-Windows|games/xbreaky/pkg/DESCR|Kevin Lo <[email protected]>|games|||any|y|y|y|y
xchomp-pl1|games/xchomp||Pac-man-like game under X11|games/xchomp/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xcubes-5.5.2|games/xcubes||cube puzzle for X11|games/xcubes/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xdeblock-1.0|games/xdeblock||block action game|games/xdeblock/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xdino-5.5.2|games/xdino||dino puzzle game for X11|games/xdino/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xevil-1.5|games/xevil||side-view, fast-action, kill everything type of game|games/xevil/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xgolgo-1.0|games/xgolgo||watch what you are doing -- are you hostile|games/xgolgo/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xinvaders-2.0|games/xinvaders||shoot them nasty little bugs|games/xinvaders/pkg/DESCR|Paul Janzen <[email protected]>|games|sharutils-4.2.1||any|n|y|n|y
xjewel-1.6|games/xjewel||dropping jewels game for X11|games/xjewel/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xjig-2.4|games/xjig||jigsaw puzzle game for X11|games/xjig/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xkobo-1.11|games/xkobo||multi-way scrolling shoot'em up for X11, addictive|games/xkobo/pkg/DESCR|Marc Espie <[email protected]>|games|||any|y|y|y|y
xkobo-1.11-harder|games/xkobo,harder||multi-way scrolling shoot'em up for X11, addictive|games/xkobo/pkg/DESCR|Marc Espie <[email protected]>|games|||any|y|y|y|y
xlife-5.3|games/xlife||John Horton Conway's Game of Life|games/xlife/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xmahjongg-3.3|games/xmahjongg||Colorful solitarie Mah jongg game for X11|games/xmahjongg/pkg/DESCR|Federico Schwindt <[email protected]>|games x11|||any|y|y|y|y
xmine-1.0.3|games/xmine||`Athena' port of xminesweeper|games/xmine/pkg/DESCR|[email protected]|games|Xaw3d-1.5|Xaw3d-1.5|any|y|y|y|y
xminehunter-0.4|games/xminehunter||Motif minesweeper game|games/xminehunter/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|lesstif-0.91.8|lesstif-0.91.8|any|n|y|n|y
xminesweep-3.0|games/xminesweep||Windows minesweeper|games/xminesweep/pkg/DESCR|[email protected]|games|||any|n|y|n|y
xmj-1.0|games/xmj||Mahjongg|games/xmj/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xmris-4.04|games/xmris||the Mr Do video arcade game for X11|games/xmris/pkg/DESCR|[email protected]|games|gettext-0.10.35 gmake-3.79.1||any|n|y|n|y
xneko-4.4|games/xneko||classic BSD4.4 cat-and-mouse|games/xneko/pkg/DESCR|Angelos D. Keromytis <[email protected]>|x11 games|||any|y|y|y|y
xonix-1.4|games/xonix||win land without colliding with `flyers' and `eaters'|games/xonix/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xpat2-1.04|games/xpat2||X11 solitaire with 14 variations|games/xpat2/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|||any|y|y|y|y
xripple-1.0|games/xripple||screen bottom ripples like a pool of water|games/xripple/pkg/DESCR|Michael Shalayeff <[email protected]>|games|||any|n|n|n|y
xroach-4.4|games/xroach||cockroaches hide under your windows|games/xroach/pkg/DESCR|Michael Shalayeff <[email protected]>|x11 games|||any|y|y|y|y
xscrabble-1.0|games/xscrabble||X11 version of the popular board game|games/xscrabble/pkg/DESCR|[email protected]|games|||any|n|y|n|y
xskat-3.3|games/xskat||the card game Skat|games/xskat/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xsol-2.1.1|games/xsol||solitaire|games/xsol/pkg/DESCR|[email protected]|games|||any|y|y|y|y
xsoldier-0.96|games/xsoldier||shooting game for X11|games/xsoldier/pkg/DESCR|[email protected]|games x11|||any|y|y|y|y
xteddy-2.0.1|games/xteddy||cuddlesome teddy for the X11 desktop|games/xteddy/pkg/DESCR|[email protected]|games|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|n|y|n|y
xzip-1.8.2|games/xzip||z-code interpreter for X11 (Infocom game format)|games/xzip/pkg/DESCR|Carsten Ilchmann <[email protected]>|games x11|||any|n|n|n|n
ImageMagick-5.2.5|graphics/ImageMagick||display and manipulate images under X11|graphics/ImageMagick/pkg/DESCR|Brad Smith <[email protected]>|graphics|gettext-0.10.35 unzip-5.41 jpeg-6b png-1.0.8 tiff-3.5.5 gmake-3.79.1 ghostscript-5.50 bzip2-1.0.1 jbigkit-1.2 mpeg_lib-1.3.1 netpbm-19940301 freetype-1.3 transfig-3.2.3c libxml-2.2.10|jpeg-6b png-1.0.8 tiff-3.5.5 ghostscript-5.50 bzip2-1.0.1 jbigkit-1.2 mpeg_lib-1.3.1 netpbm-19940301 freetype-1.3 transfig-3.2.3c libxml-2.2.10|any|y|y|y|y
Mesa-3.2.1|graphics/Mesa||graphics library similar to SGI's OpenGL|graphics/Mesa/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
aalib-1.2|graphics/aalib||ascii art library|graphics/aalib/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
aalib-1.2-no_x11|graphics/aalib,no_x11||ascii art library|graphics/aalib/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
compface-1.0|graphics/compface||programs and library for the 'X-face' mail and news header|graphics/compface/pkg/DESCR|Hans-Guenter Weigand <[email protected]>|graphics|||any|n|y|n|y
dia-0.86p1|graphics/dia||visio-like technical drawing|graphics/dia/pkg/DESCR|Mark Grimes <[email protected]>|graphics|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 popt-1.5.1 imlib-1.9.8.1 libart-2.3.3 libxml-2.2.10|jpeg-6b glib-1.2.8 gettext-0.10.35 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 popt-1.5.1 imlib-1.9.8.1 libart-2.3.3 libxml-2.2.10|any|y|y|y|y
fnlib-0.5|graphics/fnlib||color font rendering library for X|graphics/fnlib/pkg/DESCR|[email protected]|graphics|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
fxtv-1.02|graphics/fxtv||X-based TV Display and Capture (use with the bt848 driver)|graphics/fxtv/pkg/DESCR|[email protected]|graphics|gettext-0.10.35 gmake-3.79.1 jpeg-6b tiff-3.5.5 Xaw3d-1.5|jpeg-6b tiff-3.5.5 Xaw3d-1.5|any|y|y|y|y
gd-1.8.3|graphics/gd||graphics library for fast PNG creation|graphics/gd/pkg/DESCR|Brad Smith <[email protected]>|graphics|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3|jpeg-6b png-1.0.8 freetype-1.3|any|y|y|y|y
gd-1.8.3-no_x11|graphics/gd,no_x11||graphics library for fast PNG creation|graphics/gd/pkg/DESCR|Brad Smith <[email protected]>|graphics|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3|jpeg-6b png-1.0.8 freetype-1.3|any|y|y|y|y
libggi-2.0b2.1|graphics/ggi||Generic Graphics Library|graphics/ggi/pkg/DESCR|Todd T. Fries <[email protected]>|graphics|gettext-0.10.35 gmake-3.79.1 libgii-0.6|libgii-0.6|any|y|y|y|y
gif2png-2.3.3|graphics/gif2png||converts GIF images to the PNG format|graphics/gif2png/pkg/DESCR|Brad Smith <[email protected]>|graphics|png-1.0.8|png-1.0.8|any|y|y|y|y
giflib-4.1.0|graphics/giflib||Gif Library and utilities|graphics/giflib/pkg/DESCR|Brad Smith <[email protected]>|graphics|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
giftrans-1.12|graphics/giftrans||handle GIF89a transparent option and interlace mode|graphics/giftrans/pkg/DESCR|[email protected]|graphics|||any|n|y|n|y
gifsicle-1.21|graphics/gifsicle||a tool for creating & editing GIF images and animations|graphics/gifsicle/pkg/DESCR|Jakob Schlyter <[email protected]>|graphics|||any|y|y|y|y
libgii-0.6|graphics/gii||General Input Library (used by libggi)|graphics/gii/pkg/DESCR|Todd T. Fries <[email protected]>|graphics|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
gimp-1.1.27|graphics/gimp||the GIMP: the GNU Image Manipulation Program|graphics/gimp/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg-6b gettext-0.10.35 glib-1.2.8 aalib-1.2 mpeg_lib-1.3.1 png-1.0.8 tiff-3.5.5 wget-1.5.3 gtk+-1.2.8|jpeg-6b gettext-0.10.35 glib-1.2.8 aalib-1.2 mpeg_lib-1.3.1 png-1.0.8 tiff-3.5.5 wget-1.5.3 gtk+-1.2.8|any|y|y|y|y
gphoto-0.4.3|graphics/gphoto||universal digital camera picture control tool|graphics/gphoto/pkg/DESCR|Dug Song <[email protected]>|graphics|gettext-0.10.35 unzip-5.41 jpeg-6b png-1.0.8 tiff-3.5.5 gmake-3.79.1 ghostscript-5.50 glib-1.2.8 bzip2-1.0.1 jbigkit-1.2 mpeg_lib-1.3.1 netpbm-19940301 freetype-1.3 transfig-3.2.3c libxml-2.2.10 giflib-4.1.0 gtk+-1.2.8 autoconf-2.13 ImageMagick-5.2.5 imlib-1.9.8.1|jpeg-6b png-1.0.8 tiff-3.5.5 ghostscript-5.50 gettext-0.10.35 glib-1.2.8 bzip2-1.0.1 jbigkit-1.2 mpeg_lib-1.3.1 netpbm-19940301 freetype-1.3 transfig-3.2.3c libxml-2.2.10 giflib-4.1.0 gtk+-1.2.8 ImageMagick-5.2.5 imlib-1.9.8.1|any|y|y|y|y
gqview-0.8.2|graphics/gqview||gtk-based graphic file viewer|graphics/gqview/pkg/DESCR|Brad Smith <[email protected]>|graphics|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
gtksee-0.5.0|graphics/gtksee||image viewer similar to ACDSee for Windows|graphics/gtksee/pkg/DESCR|Joshua Stein <[email protected]>|graphics|gettext-0.10.35 glib-1.2.8 jpeg-6b png-1.0.8 tiff-3.5.5 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 bzip-0.21 bzip2-1.0.1 jpeg-6b png-1.0.8 tiff-3.5.5 gtk+-1.2.8|any|y|y|y|y
gracula-3.0|graphics/gracula||a graphic counter language compiler/interpreter|graphics/gracula/pkg/DESCR|Kevin Lo <[email protected]>|graphics|||any|y|y|y|y
imlib-1.9.8.1|graphics/imlib||image manipulation library for X11|graphics/imlib/pkg/DESCR|Brad Smith <[email protected]>|devel graphics|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8|any|y|y|y|y
jbigkit-1.2|graphics/jbigkit||lossless image compression library|graphics/jbigkit/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
jpeg-6b|graphics/jpeg||IJG's JPEG compression utilities|graphics/jpeg/pkg/DESCR|Angelos D. Keromytis <[email protected]>|graphics|||any|y|y|y|y
libart-2.3.3|graphics/libart||high-performance 2D graphics library|graphics/libart/pkg/DESCR|[email protected]|graphics|||any|y|y|y|y
mpeg_lib-1.3.1|graphics/mpeg-lib||collection of C routines to decode MPEG movies|graphics/mpeg-lib/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
mpeg_play-2.4|graphics/mpeg_play||play mpeg movies on X11|graphics/mpeg_play/pkg/DESCR|[email protected]|graphics|||any|y|y|y|y
mtv-1.0.6.0|graphics/mtv||mpeg video player|graphics/mtv/pkg/DESCR|Kevin Lo <[email protected]>|graphics|||i386|n|n|n|n
netpbm-19940301|graphics/netpbm||toolkit for converting images between different formats|graphics/netpbm/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg-6b png-1.0.8 tiff-3.5.5|jpeg-6b png-1.0.8 tiff-3.5.5|any|n|y|n|y
p5-GD-1.30|graphics/p5-GD||module to interface with the GD graphics library|graphics/p5-GD/pkg/DESCR|[email protected]|graphics perl5|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|any|y|y|y|y
p5-GD-1.30-no_x11|graphics/p5-GD,no_x11||module to interface with the GD graphics library|graphics/p5-GD/pkg/DESCR|[email protected]|graphics perl5|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|any|y|y|y|y
p5-GD-Graph-1.33|graphics/p5-GD-Graph||module for graph plotting|graphics/p5-GD-Graph/pkg/DESCR|[email protected]|graphics perl5||jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 p5-GD-1.30 p5-GD-TextUtil-0.80|any|y|y|y|y
p5-GD-Graph3d-0.54|graphics/p5-GD-Graph3d||module for 3D graph plotting|graphics/p5-GD-Graph3d/pkg/DESCR|[email protected]|graphics perl5|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 p5-GD-1.30 p5-GD-TextUtil-0.80 p5-GD-Graph-1.33|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 p5-GD-1.30 p5-GD-TextUtil-0.80 p5-GD-Graph-1.33|any|y|y|y|y
p5-GD-TextUtil-0.80|graphics/p5-GD-TextUtil||text utilities for use with GD drawing package|graphics/p5-GD-TextUtil/pkg/DESCR|[email protected]|graphics perl5||jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 p5-GD-1.30|any|y|y|y|y
png-1.0.8|graphics/png||library for manipulating PNG images|graphics/png/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
pngcrush-1.5.1|graphics/pngcrush||optimizer for PNG files|graphics/pngcrush/pkg/DESCR|Brad Smith <[email protected]>|graphics|||any|y|y|y|y
tgif-4.1.40|graphics/tgif||two-dimensional drawing tool and hyper-object browser|graphics/tgif/pkg/DESCR|Jakob Schlyter <[email protected]>|graphics||jpeg-6b png-1.0.8 tiff-3.5.5 netpbm-19940301|any|n|y|n|y
tiff-3.5.5|graphics/tiff||Tools and library routines for working with TIFF images|graphics/tiff/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg-6b|jpeg-6b|any|y|y|y|y
tiff2png-0.81|graphics/tiff2png||converts TIFF images to PNG format|graphics/tiff2png/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg-6b png-1.0.8 tiff-3.5.5|jpeg-6b png-1.0.8 tiff-3.5.5|any|y|y|y|y
xanim-2.80.1|graphics/xanim||X11 animation player with support for lots of formats|graphics/xanim/pkg/DESCR|Marc Espie <[email protected]>|graphics x11|||any|n|y|n|y
xbmbrowser-5.1|graphics/xbmbrowser||view complete directories of X bitmaps and X pixmaps|graphics/xbmbrowser/pkg/DESCR|[email protected]|graphics|||any|y|y|y|y
xfig-3.2.3a|graphics/xfig||CAD drawing program for X11|graphics/xfig/pkg/DESCR|[email protected]|graphics x11|jpeg-6b Xaw3d-1.5|png-1.0.8 ghostscript-5.50 Xaw3d-1.5 jpeg-6b gv-3.5.8 transfig-3.2.3c|any|y|y|y|y
xpaint-2.5.7|graphics/xpaint||simple paint program|graphics/xpaint/pkg/DESCR|[email protected]|graphics x11|jpeg-6b png-1.0.8 tiff-3.5.5|jpeg-6b png-1.0.8 tiff-3.5.5|any|y|y|y|y
xpm|graphics/xpm||xpm library|/dev/null|[email protected]|graphics x11|||any|y|y|y|y
xv-3.10a|graphics/xv||X11 image display and modification tool|graphics/xv/pkg/DESCR|Bruno Rohee <[email protected]>|graphics x11|jpeg-6b png-1.0.8 tiff-3.5.5|jpeg-6b png-1.0.8 tiff-3.5.5|any|n|y|n|y
ja-Wnn-4.2|japanese/Wnn||Japanese input method|japanese/Wnn/pkg/DESCR|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
ja-Wnndict-4.2|japanese/Wnn|/var/dict/Wnn|dictionaries for Japanese Wnn|japanese/Wnn/pkg/DESCR-dict|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
zh-Wnn-4.2|japanese/Wnn||Chinese input method|japanese/Wnn/pkg/DESCR-zh|Marc Espie <[email protected]>|chinese|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
zh-Wnndict-4.2|japanese/Wnn|/var/dict/Wnn|dictionaries for Chinese Wnn|japanese/Wnn/pkg/DESCR-zhdict|Marc Espie <[email protected]>|chinese|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
ko-Wnn-4.2|japanese/Wnn||Korean input method|japanese/Wnn/pkg/DESCR-ko|Marc Espie <[email protected]>|korean|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
ko-Wnndict-4.2|japanese/Wnn|/var/dict/Wnn|dictionaries for Korean Wnn|japanese/Wnn/pkg/DESCR-kodict|Marc Espie <[email protected]>|korean|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
Wnn-xwnmo-4.2|japanese/Wnn||X11 input method for Wnn|japanese/Wnn/pkg/DESCR-xwnmo|Marc Espie <[email protected]>|japanese chinese korean|ja-groff-1.10_0.99|Wnn-data-4.2|any|y|y|y|y
Wnn-data-4.2|japanese/Wnn-data||common files to all languages of Wnn|japanese/Wnn-data/pkg/DESCR|Marc Espie <[email protected]>|japanese chinese korean|||any|y|y|y|y
cannalib-3.5b2p1|japanese/canna||canna (kana-kanji converter) libraries|japanese/canna/pkg/DESCR|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99||any|n|y|n|y
cannadict-3.5b2|japanese/canna|/var/dict|canna (kana-kanji converter) dictionnaries|japanese/canna/pkg/DESCR-dict|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99||any|n|y|n|y
cannaserver-3.5b2|japanese/canna||canna (kana-kanji converter) server|japanese/canna/pkg/DESCR-server|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99||any|n|y|n|y
ja-kinput2-3.0-wnn|japanese/kinput2,wnn||X input method for Japanese, wnn support|japanese/kinput2/pkg/DESCR|SUZUKI Hitoshi <[email protected]>|japanese x11|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2||any|y|y|y|y
ja-kinput2-3.0-canna|japanese/kinput2,canna||X input method for Japanese, canna support|japanese/kinput2/pkg/DESCR|SUZUKI Hitoshi <[email protected]>|japanese x11|ja-groff-1.10_0.99 cannalib-3.5b2p1|cannalib-3.5b2p1|any|y|y|y|y
ja-kinput2-3.0-canna-wnn|japanese/kinput2,canna,wnn||X input method for Japanese, canna and wnn support|japanese/kinput2/pkg/DESCR|SUZUKI Hitoshi <[email protected]>|japanese x11|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2 cannalib-3.5b2p1|cannalib-3.5b2p1|any|y|y|y|y
ja-onew-wnn4-2.2.10|japanese/onew-wnn4||library for Japanese Input Method Wnn4|japanese/onew-wnn4/pkg/DESCR|Marc Espie <[email protected]>|japanese|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2||any|y|y|y|y
ja-onew-canna-2.2.10|japanese/onew-canna||library for Japanese Input Method canna|japanese/onew-canna/pkg/DESCR|Marc Espie <[email protected]>|japanese|ja-groff-1.10_0.99 cannalib-3.5b2p1|cannalib-3.5b2p1|any|y|y|y|y
ja-onew-wnn4-canna-2.2.10|japanese/onew-wnn4-canna||library for Japanese Input Method canna or wnn4|japanese/onew-wnn4-canna/pkg/DESCR|Marc Espie <[email protected]>|japanese|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2 cannalib-3.5b2p1|cannalib-3.5b2p1|any|y|y|y|y
kakasi-2.3.1|japanese/kakasi||Kanji -> kana converter|japanese/kakasi/pkg/DESCR|Marc Espie <[email protected]>|japanese|||any|y|y|y|y
ja-fonts-gnu-1.2|japanese/intlfonts||extra japanese fonts|japanese/intlfonts/pkg/DESCR|Marc Espie <[email protected]>|japanese x11|||any|y|y|y|y
ja-fonts-funet|japanese/funetfonts||extra japanese fonts, marumoji|japanese/funetfonts/pkg/DESCR|Marc Espie <[email protected]>|japanese x11|||any|n|y|n|y
ja-groff-1.10_0.99|japanese/groff||japanese groff|japanese/groff/pkg/DESCR|Marc Espie <[email protected]>|japanese textproc print|||any|y|y|y|y
ja-jvim-2.0r|japanese/jvim||Japanized Vim|japanese/jvim/pkg/DESCR|Marc Espie <[email protected]>|japanese editors|||any|y|y|y|y
ja-jvim-2.0r-wnn|japanese/jvim,wnn||Japanized Vim, wnn input method|japanese/jvim/pkg/DESCR|Marc Espie <[email protected]>|japanese editors|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2 ja-onew-wnn4-2.2.10||any|y|y|y|y
ja-jvim-2.0r-canna|japanese/jvim,canna||Japanized Vim, canna input method|japanese/jvim/pkg/DESCR|Marc Espie <[email protected]>|japanese editors|ja-groff-1.10_0.99 cannalib-3.5b2p1 ja-onew-canna-2.2.10|cannalib-3.5b2p1|any|y|y|y|y
ja-jvim-2.0r-wnn-canna|japanese/jvim,wnn,canna||Japanized Vim, canna or wnn input method|japanese/jvim/pkg/DESCR|Marc Espie <[email protected]>|japanese editors|Wnn-data-4.2 ja-groff-1.10_0.99 ja-Wnn-4.2 cannalib-3.5b2p1 ja-onew-wnn4-canna-2.2.10|cannalib-3.5b2p1|any|y|y|y|y
kanjips|japanese/kanjips||converts Japanese fonts in PostScript documents|japanese/kanjips/pkg/DESCR|Marc Espie <[email protected]>|japanese print|||any|y|y|y|y
ja-kterm-6.2.0|japanese/kterm||Japanese-capable xterm|japanese/kterm/pkg/DESCR|[email protected]|japanese x11|||any|y|y|y|y
ja-kterm-6.2.0-xaw3d|japanese/kterm,xaw3d||Japanese-capable xterm|japanese/kterm/pkg/DESCR|[email protected]|japanese x11|Xaw3d-1.5|Xaw3d-1.5|any|y|y|y|y
ja-less-3.32p2.48|japanese/less||less + zcat + ISO-2022 - a pager similar to more and pg|japanese/less/pkg/DESCR|Marc Espie <[email protected]>|japanese|||any|y|y|y|y
ja-nkf-1.62|japanese/nkf||Network Kanji code conversion Filter|japanese/nkf/pkg/DESCR|Marc Espie <[email protected]>|japanese textproc|||any|y|y|y|y
gofer-2.30a|lang/Gofer||lazy functional language|lang/Gofer/pkg/DESCR|[email protected]|lang|||any|y|y|y|y
STk-3.1.1|lang/STk||scheme interpreter with Tk interface|lang/STk/pkg/DESCR|[email protected]|lang|||any|y|y|y|y
camlp4-3.00|lang/camlp4||Pre-Processor-Pretty-Printer for Objective Caml|lang/camlp4/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang|gettext-0.10.35 tcl-8.3.2 tk-8.3.2 gmake-3.79.1 ocaml-3.00||any|n|n|y|y
clisp-20000306|lang/clisp||ANSI Common Lisp compiler|lang/clisp/pkg/DESCR|Justin R. Smith <[email protected]>|lang|||any|y|y|y|y
dejagnu-19990614|lang/egcs/dejagnu||dejagnu snapshot, needed for gcc|lang/egcs/dejagnu/pkg/DESCR|[email protected]|devel lang/egcs|tcl-8.3.2 tk-8.3.2 expect-5.32.1|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
gcc-2.95.1|lang/egcs/stable||experimental GNU C, C++, f77..., release flavor|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang|bzip2-1.0.1 autoconf-2.13||any|y|y|y|y
gcc-20000731-core|lang/egcs/snapshot||GNU compiler collection (experimental): core C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 expect-5.32.1 autoconf-2.13 bison-1.27 dejagnu-19990614||any|n|y|n|y
gcc-20000731-c++|lang/egcs/snapshot||GNU compiler collection (experimental): C++ compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 expect-5.32.1 autoconf-2.13 bison-1.27 dejagnu-19990614||any|n|y|n|y
gcc-20000731-objc|lang/egcs/snapshot||GNU compiler collection (experimental): obj C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 expect-5.32.1 autoconf-2.13 bison-1.27 dejagnu-19990614||any|n|y|n|y
gcc-20000731-g77|lang/egcs/snapshot||GNU compiler collection (experimental): f77 compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 expect-5.32.1 autoconf-2.13 bison-1.27 dejagnu-19990614||any|n|y|n|y
gcc-20000731-java|lang/egcs/snapshot||GNU compiler collection (experimental): java compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 expect-5.32.1 autoconf-2.13 bison-1.27 dejagnu-19990614||any|n|y|n|y
erlang-47.4.0|lang/erlang||Ericsson's high-level functional programming language|lang/erlang/pkg/DESCR|[email protected]|lang|gettext-0.10.35 autoconf-2.13 gmake-3.79.1||any|y|y|y|y
expect-5.32.1|lang/expect||sophisticated scripter based on Tcl/Tk|lang/expect/pkg/DESCR|Niklas Hallqvist <[email protected]>|lang|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
guavac-1.2|lang/guavac||Java compiler and decompiler developed under GPL|lang/guavac/pkg/DESCR|Todd T. Fries <[email protected]>|lang|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
guile-1.4|lang/guile||GNU's Ubiquitous Intelligent Language for Extension|lang/guile/pkg/DESCR|Bruno Rohee <[email protected]>|lang|||any|y|y|y|y
icon_interp-9.3.2|lang/icon/interp||programming language with generators, X11 graphics and more|lang/icon/interp/pkg/DESCR|Marc Espie <[email protected]>|lang|||any|y|y|y|y
icon_lib-9.3.3|lang/icon/lib||useful and interesting programs for Icon|lang/icon/lib/pkg/DESCR|Marc Espie <[email protected]>|lang|icon_interp-9.3.2|icon_interp-9.3.2|any|y|y|y|y
icon_interp-9.3.2-no_x11|lang/icon/interp,no_x11||programming language with generators, X11 graphics and more|lang/icon/interp/pkg/DESCR|Marc Espie <[email protected]>|lang|||any|y|y|y|y
icon_lib-9.3.3-no_x11|lang/icon/lib,no_x11||useful and interesting programs for Icon|lang/icon/lib/pkg/DESCR|Marc Espie <[email protected]>|lang|icon_interp-9.3.2|icon_interp-9.3.2|any|y|y|y|y
kaffe-1.0.5|lang/kaffe||Transvirtual's Java JDK1.1 compiler, runtime and libs|lang/kaffe/pkg/DESCR|Ian Darwin <[email protected]>|lang|gettext-0.10.35 gmake-3.79.1 libtool-1.3.5 giflib-4.1.0 jpeg-6b png-1.0.8|giflib-4.1.0 jpeg-6b png-1.0.8|i386|y|y|y|y
klone-2.1|lang/klone||small, Lisp-like interpreted language|lang/klone/pkg/DESCR|[email protected]|lang|||any|n|y|n|y
libgcj-2.95|lang/libgcj||Java(tm) runtime library, mainly for egcs|lang/libgcj/pkg/DESCR|Niklas Hallqvist <[email protected]>|lang|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
librep-0.12.4|lang/librep||an Emacs Lisp-like runtime library|lang/librep/pkg/DESCR|[email protected]|lang|gdbm-1.8.0 gettext-0.10.35 gmake-3.79.1|gdbm-1.8.0 gettext-0.10.35|any|y|y|y|y
lua-4.0|lang/lua||powerful, light-weight programming language|lang/lua/pkg/DESCR|David Terrell <[email protected]>|lang|||any|y|y|y|y
mawk-1.3.3|lang/mawk||new/posix awk|lang/mawk/pkg/DESCR|Brad Smith <[email protected]>|lang|||any|y|y|y|y
ocaml-3.00|lang/ocaml||ML language based on complete class-based objective system|lang/ocaml/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang|gettext-0.10.35 gmake-3.79.1 tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
otcl-1.0a5|lang/otcl||MIT Object Tcl|lang/otcl/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
python-2.0-threads|lang/python,threads||interpreted object-oriented programming language|lang/python/pkg/DESCR|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-tools-2.0|lang/python,threads||extra tools for python|lang/python/pkg/DESCR-tools|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-2.0-threads|lang/python,threads||interpreted object-oriented programming language|lang/python/pkg/DESCR|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-tools-2.0|lang/python,threads||extra tools for python|lang/python/pkg/DESCR-tools|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-2.0-tk-threads|lang/python,tk,threads,no_tools||interpreted object-oriented programming language|lang/python/pkg/DESCR|Jason Ish <[email protected]>|lang|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
python-2.0-tk|lang/python,tk,no_tools||interpreted object-oriented programming language|lang/python/pkg/DESCR|Jason Ish <[email protected]>|lang|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
python-1.5.2-threads|lang/python15,threads||interpreted object-oriented programming language|lang/python15/pkg/DESCR|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-tools-1.5.2|lang/python15,threads||extra tools for python|lang/python15/pkg/DESCR-tools|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-1.5.2-threads|lang/python15,threads||interpreted object-oriented programming language|lang/python15/pkg/DESCR|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-tools-1.5.2|lang/python15,threads||extra tools for python|lang/python15/pkg/DESCR-tools|Jason Ish <[email protected]>|lang|||any|y|y|y|y
python-1.5.2-tk-threads|lang/python15,tk,threads,no_tools||interpreted object-oriented programming language|lang/python15/pkg/DESCR|Jason Ish <[email protected]>|lang|tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
python-1.5.2-tk|lang/python15,tk,no_tools||interpreted object-oriented programming language|lang/python15/pkg/DESCR|Jason Ish <[email protected]>|lang|tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
ruby-1.4.6|lang/ruby||object oriented script language with threads|lang/ruby/pkg/DESCR|Marc Espie <[email protected]>|lang|tcl-8.3.2 tk-8.3.2 autoconf-2.13|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
tcl-8.0.5|lang/tcl/8.0||Tool Command Language|lang/tcl/8.0/pkg/DESCR|Niklas Hallqvist <[email protected]>|lang|||any|y|y|y|y
tcl-8.3.2|lang/tcl/8.3||Tool Command Language|lang/tcl/8.3/pkg/DESCR|Kevin Lo <[email protected]>|lang|||any|y|y|y|y
unicon-10.0beta|lang/unicon||programming language with generators, X11 graphics and more|lang/unicon/pkg/DESCR|Marc Espie <[email protected]>|lang|unzip-5.41 gdbm-1.8.0|gdbm-1.8.0|any|y|y|y|y
abook-0.4.10|mail/abook||addressbook program with mutt support|mail/abook/pkg/DESCR|Reinhard J. Sammer <[email protected]>|mail|||any|y|y|y|y
adcomplain-3.52|mail/adcomplain||complain about SPAM|mail/adcomplain/pkg/DESCR|[email protected]|mail news|||any|y|y|y|y
asmail-0.56|mail/asmail||biff-type program, designed to match AfterStep|mail/asmail/pkg/DESCR|[email protected]|mail|jpeg-6b|jpeg-6b|any|y|y|y|y
bulk_mailer-1.13|mail/bulk_mailer||speed mail delivery by sorting & batching addresses|mail/bulk_mailer/pkg/DESCR|Kevin Lo <[email protected]>|mail|||any|y|y|y|y
c-client-2000a|mail/c-client||University of Washington's c-client mail access routines|mail/c-client/pkg/DESCR|Brad Smith <[email protected]>|mail devel|||any|n|y|n|y
checkpassword-0.81|mail/checkpassword||simple, uniform password-checking interface|mail/checkpassword/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail|||any|y|y|y|y
courier-imap-1.2.3|mail/courier-imap||imap server for maildir format mailboxes|mail/courier-imap/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|||any|y|y|y|y
courier-imap-1.2.3-pop3|mail/courier-imap,pop3||imap server for maildir format mailboxes|mail/courier-imap/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|||any|y|y|y|y
cucipop-1.31|mail/cucipop||Cubic Circle's POP3 daemon (fully RFC1939 compliant)|mail/cucipop/pkg/DESCR|[email protected]|mail|||any|n|y|n|y
dot-forward-0.71|mail/dot-forward|/var/qmail|sendmail-style .forward support for qmail|mail/dot-forward/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88 qmail-1.03|any|y|y|y|y
elm-2.4ME+66|mail/elm||a once-popular mail user agent|mail/elm/pkg/DESCR|Paul Janzen <[email protected]>|mail|||any|y|y|y|y
exim-3.20|mail/exim||MTA for systems connected to the Internet|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|||any|y|y|y|y
exim-3.20-mysql|mail/exim,mysql||MTA for systems connected to the Internet|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|mysql-3.22.32||any|y|y|y|y
exim-3.20-pgsql|mail/exim,pgsql||MTA for systems connected to the Internet|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|gettext-0.10.35 gmake-3.79.1 postgresql-7.0.2||any|y|y|y|y
exim-3.20-ldap|mail/exim,ldap||MTA for systems connected to the Internet|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|libtool-1.3.5 openldap-2.0.7||any|y|y|y|y
exim-3.20-no_x11|mail/exim,no_x11||MTA for systems connected to the Internet|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|||any|y|y|y|y
exmh-1.6.9|mail/exmh||superseded by exmh2|/dev/null|[email protected]|mail tk80|||any|y|y|y|y
exmh-2.0.2|mail/exmh2||X11/Tk-based mail reader front end to MH|mail/exmh2/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail tk80|tcl-8.0.5|tcl-8.0.5 metamail-2.7 nmh-1.0.4 tk-8.0.5|any|y|y|y|y
ezmlm-0.53|mail/ezmlm||easy-to-use, high-speed mailing list manager for qmail|mail/ezmlm/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail|||any|y|y|y|y
ezmlm-0.53-idx|mail/ezmlm,idx||easy-to-use, high-speed mailing list manager for qmail|mail/ezmlm/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail|||any|n|n|y|y
faces-1.6.1|mail/faces||visual mail, user and print face server|mail/faces/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail|||any|n|y|n|y
fastforward-0.51|mail/fastforward|/var/qmail|qmail forwarding, including sendmail-style /etc/aliases|mail/fastforward/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88 qmail-1.03|any|y|y|y|y
fetchmail-5.6.1|mail/fetchmail||mail retrieval utility for POP2, POP3, KPOP, IMAP and more|mail/fetchmail/pkg/DESCR|Federico Schwindt <[email protected]>|mail|||any|y|y|y|y
fetchmail-5.6.1-kerberos|mail/fetchmail,kerberos||mail retrieval utility for POP2, POP3, KPOP, IMAP and more|mail/fetchmail/pkg/DESCR|Federico Schwindt <[email protected]>|mail|||any|y|y|y|y
hypermail-2b30|mail/hypermail||generate a cross-referenced HTML mail archive|mail/hypermail/pkg/DESCR|Oleg Safiullin <[email protected]>|mail www|||any|y|y|y|y
imap-uw-2000a|mail/imap-uw||University of Washington IMAP4rev1/POP2/POP3 mail servers|mail/imap-uw/pkg/DESCR|[email protected]|mail|||any|n|y|n|y
maildrop-1.2.2|mail/maildrop||local mail delivery agent with filtering abilities|mail/maildrop/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|||any|y|y|y|y
majordomo-1.94.5|mail/majordomo||Majordomo mailing list manager|mail/majordomo/pkg/DESCR|Daniel Hartmeier <[email protected]>|mail|||any|n|n|n|n
mess822-0.58|mail/mess822||library for parsing Internet mail messages|mail/mess822/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88 qmail-1.03|any|y|y|y|y
metamail-2.7|mail/metamail||MIME implementation|mail/metamail/pkg/DESCR|[email protected]|mail|||any|y|y|y|y
mh-6.8.4|mail/mh||Rand MH mail handling system|mail/mh/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail|||any|y|y|y|y
movemail-1.0|mail/movemail||move your mail box to another location|mail/movemail/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail|||any|y|y|y|y
mutt-1.2.5i-slang|mail/mutt,slang||tty-based e-mail client|mail/mutt/pkg/DESCR|Federico Schwindt <[email protected]>|mail|gettext-0.10.35 libslang-1.4.2|gettext-0.10.35 libslang-1.4.2|any|y|y|y|y
mutt-1.2.5i-curses|mail/mutt,curses||tty-based e-mail client|mail/mutt/pkg/DESCR|Federico Schwindt <[email protected]>|mail|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
mutt-1.2.5i-slang-imap-pop|mail/mutt,slang,imap,pop||tty-based e-mail client|mail/mutt/pkg/DESCR|Federico Schwindt <[email protected]>|mail|gettext-0.10.35 libslang-1.4.2|gettext-0.10.35 libslang-1.4.2|any|y|y|y|y
nmh-1.0.4|mail/nmh||new MH mail handling program|mail/nmh/pkg/DESCR|[email protected]|mail|||any|y|y|y|y
p5-Mail-POP3Client-2.6|mail/p5-Mail-POP3Client||Perl5 module to talk to a POP3 (RFC1081) server|mail/p5-Mail-POP3Client/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail perl5|||any|y|y|y|y
p5-Mail-Tools-1.1401|mail/p5-Mail-Tools||modules for handling mail with perl|mail/p5-Mail-Tools/pkg/DESCR|Marc Espie <[email protected]>|mail devel perl5||p5-libnet-1.0703|any|y|y|y|y
pgpsendmail-1.4.5|mail/pgpsendmail||PGP sign/encrypt/decrypt messages automatically|mail/pgpsendmail/pkg/DESCR|[email protected]|mail|pgp-2.6.3||any|y|y|y|y
pine+pico-4.21|mail/pine||Program for Internet E-mail and News, plus editor|mail/pine/pkg/DESCR|Marco S Hyman <[email protected]>|mail news editors|c-client-2000a|c-client-2000a|any|n|y|n|y
pine-4.21|mail/pine||Program for Internet E-mail and News, without editor|mail/pine/pkg/DESCR-pine|Marco S Hyman <[email protected]>|mail news|c-client-2000a|c-client-2000a|any|n|y|n|y
pico-4.21|mail/pine||small text editor|mail/pine/pkg/DESCR-pico|Marco S Hyman <[email protected]>|editors|||any|n|y|n|y
popclient-3.0b6|mail/popclient||client for pop2, pop3, apop, rpop|mail/popclient/pkg/DESCR|[email protected]|mail|||any|y|y|y|y
poppassd-4.0|mail/poppassd||server: allow users to change password from within Eudora|mail/poppassd/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mail|||any|y|y|y|y
postfix-19991231-pl13|mail/postfix/stable||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|||any|y|y|y|y
postfix-snapshot-20001217|mail/postfix/snapshot||fast, secure sendmail replacement|mail/postfix/snapshot/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|||any|y|y|y|y
procmail-3.15|mail/procmail||local mail delivery agent|mail/procmail/pkg/DESCR|Bruno Rohee <[email protected]>|mail|||any|y|y|y|y
qmail-1.03|mail/qmail|/var/qmail|secure, reliable, efficient, simple MTA|mail/qmail/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88|any|y|y|y|y
qmailanalog-0.70|mail/qmailanalog||tools to analyze qmail-send's activity record|mail/qmailanalog/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88 qmail-1.03|any|y|y|y|y
serialmail-0.75|mail/serialmail||tools for passing mail across serial links|mail/serialmail/pkg/DESCR|Camiel Dobbelaar <[email protected]>|mail||ucspi-tcp-0.88 qmail-1.03 daemontools-0.70|any|y|y|y|y
solid-pop3d-0.15|mail/solid-pop3d||flexible POP3 server|mail/solid-pop3d/pkg/DESCR|Dan Harnett <[email protected]>|mail|||any|y|y|y|y
solid-pop3d-0.15p1-apop|mail/solid-pop3d,apop||flexible POP3 server|mail/solid-pop3d/pkg/DESCR|Dan Harnett <[email protected]>|mail|||any|y|y|y|y
tkrat-2.0b9|mail/tkrat||mail user agent for X in C with a Tcl/Tk frontend|mail/tkrat/pkg/DESCR|Rik Schneider <[email protected]>|mail x11|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 tk-8.3.2|any|y|y|y|y
vmailmgr-0.96.9|mail/vmailmgr||virtual mail manager to qmail for multiple domains|mail/vmailmgr/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail||ucspi-unix-0.34 daemontools-0.70|any|y|y|y|y
vrfy-99.05.22|mail/vrfy||verify email addresses and mailing lists|mail/vrfy/pkg/DESCR|Bruno Rohee <[email protected]>|mail|||any|y|y|y|y
wmbiff-0.2|mail/wmbiff||xbiff-like Window Maker dock app|mail/wmbiff/pkg/DESCR|Cameron Lerch <[email protected]>|mail|||any|y|y|y|y
xfaces-3.3|mail/xfaces||mail image display for X11|mail/xfaces/pkg/DESCR|[email protected]|mail|faces-1.6.1|faces-1.6.1|any|n|n|n|n
xfmail-1.4.6|mail/xfmail||xforms-based mail application for Unix|mail/xfmail/pkg/DESCR|Kevin Lo <[email protected]>|mail x11|bzip2-1.0.1 glib-1.2.8 xforms-0.88|glib-1.2.8 xforms-0.88|i386 sparc m68k hp300|n|y|n|y
xlbiff-3.0|mail/xlbiff||display from/subject from incoming mails using X11|mail/xlbiff/pkg/DESCR|[email protected]|mail x11|||any|y|y|y|y
calc-2.11.1t3.0|math/calc||C-style arbitrary precision calculator|math/calc/pkg/DESCR|Niels Provos <[email protected]>|math|||any|y|y|y|y
gnuplot-3.7.1|math/gnuplot||command-driven interactive function plotting program|math/gnuplot/pkg/DESCR|Dan Harnett <[email protected]>|math graphics|png-1.0.8|png-1.0.8|any|n|n|n|y
gnuplot-3.7.1-no_x11|math/gnuplot,no_x11||command-driven interactive function plotting program|math/gnuplot/pkg/DESCR|Dan Harnett <[email protected]>|math graphics|png-1.0.8|png-1.0.8|any|n|n|n|y
grpn-1.1.1|math/grpn||graphical reverse polish notation calculator|math/grpn/pkg/DESCR|Mark Grimes <[email protected]>|math x11|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
hoc-1.1|math/hoc||from Kernighan & Pike: High Order Calculator|math/hoc/pkg/DESCR|Ian Darwin <[email protected]>|math|||any|y|y|y|y
maple-5.5|math/maple||algebraic and symbolic computations; commercial|math/maple/pkg/DESCR|Marc Espie <[email protected]>|math||linux_lib-2.6.1|i386|n|n|n|n
mapleshare-5.5|math/maple-share||libraries for maple V 5; commercial|math/maple-share/pkg/DESCR|Marc Espie <[email protected]>|math||linux_lib-2.6.1 maple-5.5|i386|n|n|n|n
Wingz-142|math/wingz||commercial spreadsheet|math/wingz/pkg/DESCR|Angelos D. Keromytis <[email protected]>|math||linux_lib-2.6.1|i386|n|n|n|y
xspread-3.1.1c|math/xspread||spreadsheet program under X11|math/xspread/pkg/DESCR|[email protected]|math|||any|y|y|y|y
common-1.0.6|mbone/common||common library functions used by the UCL multicast utils|mbone/common/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gettext-0.10.35 gmake-3.79.1 tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
imm-3.5a1|mbone/imm||Internet Image (or other data) Multicaster (and receiver)|mbone/imm/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|n|y|n|y
nte-1.7.0|mbone/nte||Network Text Editor multicast tool from UCL|mbone/nte/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gettext-0.10.35 tcl-8.0.5 tk-8.0.5 gmake-3.79.1 common-1.0.6|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
rat-3.0|mbone/rat||Robust Audio Tool from UCL|mbone/rat/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
relate|mbone/relate||ReLaTe integrated conferencing tool from UCL|mbone/relate/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gettext-0.10.35 gmake-3.79.1 tcl-8.0.5 tk-8.0.5|png-1.0.8 tcl-8.0.5 tk-8.0.5 ghostscript-5.50 nte-1.7.0 rat-3.0 vic-2.8ucl4 wbd-1.0ucl4|any|y|y|y|y
rtptools-1.9|mbone/rtptools||record, playback and monitor RTPv2 data streams|mbone/rtptools/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|||any|y|y|y|y
sdr-2.7e|mbone/sdr||MBone Session Directory|mbone/sdr/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gettext-0.10.35 gmake-3.79.1 tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
speak_freely-7.1|mbone/speak_freely||voice communication over data networks|mbone/speak_freely/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone audio security|gsm-1.0.10|gsm-1.0.10|any|n|y|n|y
vat-4.0b2|mbone/vat||The Visual Audio Tool - multicast audioconferencing|mbone/vat/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gsm-1.0.10 tcl-8.0.5 tk-8.0.5|gsm-1.0.10 tcl-8.0.5 tk-8.0.5|any|y|y|y|y
vic-2.8ucl4|mbone/vic||MBONE video tool|mbone/vic/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|autoconf-2.13 tcl-8.0.5 tk-8.0.5|tcl-8.0.5 tk-8.0.5|any|y|y|y|y
wb-1.59|mbone/wb||shared drawing (whiteboard) tool using multicast|mbone/wb/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone||png-1.0.8 ghostscript-5.50|i386|y|y|y|y
wbd-1.0ucl4|mbone/wbd||shared drawing (whiteboard) tool using multicast|mbone/wbd/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|unzip-5.41 jpeg-6b png-1.0.8 ghostscript-5.50|png-1.0.8 ghostscript-5.50|any|y|y|y|y
amanda-2.4.1p1|misc/amanda||Advanced Maryland Automatic Network Disk Archiver|misc/amanda/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
astrolog-5.30|misc/astrolog||astrology program for X11 and alpha-numeric terminals|misc/astrolog/pkg/DESCR|[email protected]|misc|||any|n|y|n|y
buffer-1.17.1|misc/buffer||buffer sporadic I/O for faster tape and pipe throughput|misc/buffer/pkg/DESCR|Christian Weisgerber <[email protected]>|misc|bzip2-1.0.1||any|y|y|y|y
brs-4.00l1|misc/brs||bible reader|misc/brs/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
calentool-2.3|misc/calentool||nice X11-based calendar/scheduling tool (using XView)|misc/calentool/pkg/DESCR|[email protected]|misc x11|xview-config-3.2.1 xview-lib-3.2.1|xview-lib-3.2.1|any|n|y|n|y
cbb-0.73|misc/cbb||checkbook balancing tool|misc/cbb/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc tk80|tcl-8.0.5 tk-8.0.5|lesstif-0.91.8 tcl-8.0.5 plan-1.6.1 tk-8.0.5|any|y|y|y|y
cdrdao-1.1.3|misc/cdrdao||write audio/data CD-Rs in disk-at-once mode|misc/cdrdao/pkg/DESCR|Federico Schwindt <[email protected]>|audio misc|gettext-0.10.35 unzip-5.41 gmake-3.79.1 pccts-1.33r22||any|y|y|y|y
cdrecord-1.9|misc/cdrecord||creates CD's on a CD-Recorder|misc/cdrecord/pkg/DESCR|Niklas Hallqvist <[email protected]>|misc|gettext-0.10.35 gmake-3.79.1||alpha amiga arc i386 mac68k mvme68k powerpc sparc sun3|y|y|y|y
deco-3.8.3|misc/deco||Demos Commander, a free Norton Commander clone|misc/deco/pkg/DESCR|Oleg Safiullin <[email protected]>|misc|||any|y|y|y|y
delay-1.4|misc/delay||delay program with feedback to the user|misc/delay/pkg/DESCR|Brad Smith <[email protected]>|misc|||any|y|y|y|y
dialog-0.6z|misc/dialog||format the display of a shell script|misc/dialog/pkg/DESCR|[email protected]|misc|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
figlet-2.2|misc/figlet||generates ASCII banner art|misc/figlet/pkg/DESCR|Anil Madhavapeddy <[email protected]>|misc graphics|||any|y|y|y|y
gAcc-0.7.2|misc/gacc||personnal accounts manager|misc/gacc/pkg/DESCR|Kevin Lo <[email protected]>|misc|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
gnuls-4.0|misc/gnuls||colorized GNU `ls'|misc/gnuls/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
impress-1.1b6|misc/impress||publishing and presentation tool|misc/impress/pkg/DESCR|Kevin Lo <[email protected]>|misc||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
jive-1.1|misc/jive||convert English text to Jive|misc/jive/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc|||any|y|y|y|y
magicpoint-1.07a|misc/magicpoint||X11-based presentation tool|misc/magicpoint/pkg/DESCR|[email protected]|misc productivity|gettext-0.10.35 gmake-3.79.1 png-1.0.8 freetype-1.3|png-1.0.8 freetype-1.3|any|y|y|y|y
mc-4.1.35|misc/mc||free Norton Commander Clone with many useful features|misc/mc/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
mmv-1.01b|misc/mmv||move/copy/append/link multiple files with wildcards|misc/mmv/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc|||any|n|y|n|y
most-4.9.0|misc/most||browse or page through a text file|misc/most/pkg/DESCR|William Yodlowsky <[email protected]>|misc|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
mshell-1.0|misc/mshell||Unix menuing shell|misc/mshell/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc|||any|n|y|n|y
Business-CreditCard-0.21|misc/p5-CreditCard||verify credit card pins|misc/p5-CreditCard/pkg/DESCR|Marc Espie <[email protected]>|misc perl5|||any|y|y|y|y
pdmenu-1.2.61|misc/pdmenu||simple slang-based menu program|misc/pdmenu/pkg/DESCR|Matt Behrens <[email protected]>|misc|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
pi-address-0.4.0|misc/pi-address||PalmPilot address database editor|misc/pi-address/pkg/DESCR|Jakob Schlyter <[email protected]>|misc x11|tcl-8.0.5 gettext-0.10.35 tk-8.0.5 gmake-3.79.1 jpeg-6b png-1.0.8 pilot-link-0.9.3 qt-1.45|tcl-8.0.5 tk-8.0.5 pilot-link-0.9.3 qt-1.45|any|y|y|y|y
plan-1.6.1|misc/plan||X11/Motif schedule planner with calendar|misc/plan/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc|lesstif-0.91.8|lesstif-0.91.8|any|n|y|n|y
remind-3.0.22|misc/remind||scripting language for reminders, with a Tk front end|misc/remind/pkg/DESCR|Kevin Lo <[email protected]>|misc||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
rpm-3.0.6|misc/rpm||redhat package manager|misc/rpm/pkg/DESCR|Marc Espie <[email protected]>|misc archivers emulators|bzip2-1.0.1 gettext-0.10.35 popt-1.5.1|bzip2-1.0.1 gettext-0.10.35 popt-1.5.1|any|y|y|y|y
screen-3.9.8|misc/screen||multi-screen window manager|misc/screen/pkg/DESCR|Brad Smith <[email protected]>|misc|||any|y|y|y|y
splitvt-1.6.3|misc/splitvt||run two shells in a split window/terminal|misc/splitvt/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
tkcron-2.12|misc/tkcron||frontend to crontab|misc/tkcron/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
tkinfo-2.5|misc/tkinfo||Tk script to read GNU info files and display them|misc/tkinfo/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc||tcl-8.3.2 tk-8.3.2|any|y|y|y|y
tkman-2.1|misc/tkman||Tcl/Tk-based manual browser|misc/tkman/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc|tcl-8.3.2 tk-8.3.2|tcl-8.3.2 glimpse-4.1 rman-3.0.9 tk-8.3.2|any|n|y|n|y
viz-1.1.1|misc/viz||Convert invisible (binary) characters to a visible form|misc/viz/pkg/DESCR|Kevin Lo <[email protected]>|misc|||any|y|y|y|y
xd-8087|misc/xd||yet another dump utility|misc/xd/pkg/DESCR|Kevin Lo <[email protected]>|misc|||any|y|y|y|y
xdelta-1.1.1|misc/xdelta||binary delta generator and prototype RCS replacement|misc/xdelta/pkg/DESCR|[email protected]|misc|gdbm-1.8.0 glib-1.2.8|gdbm-1.8.0 glib-1.2.8|any|y|y|y|y
xgas-1.0|misc/xgas||animated simulation of an ideal gas|misc/xgas/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
xless-1.7|misc/xless||X11 viewer for text files|misc/xless/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
xtar-1.4|misc/xtar||view and manipulate contents of a tar file|misc/xtar/pkg/DESCR|[email protected]|misc|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
xtimer-0.8089|misc/xtimer||super simple digital timer for X11|misc/xtimer/pkg/DESCR|[email protected]|misc|||any|y|y|y|y
archie-1.4.1|net/archie||Prospero client for the archie service|net/archie/pkg/DESCR|[email protected]|net|||any|n|y|n|y
arpcatch|net/arpcatch||Userland arp-proxy daemon|net/arpcatch/pkg/DESCR|[email protected]|net|||any|y|y|y|y
arping-0.94|net/arping||ARP level ping utility|net/arping/pkg/DESCR|Joshua Stein <[email protected]>|net|libnet-1.0.1b||any|y|y|y|y
arpwatch-2.1a10|net/arpwatch||monitor arp & rarp requests|net/arpwatch/pkg/DESCR|[email protected]|net|||any|y|y|y|y
axyftp-0.5.1|net/axyftp||ftp client for X window system|net/axyftp/pkg/DESCR|Kevin Lo <[email protected]>|net|lesstif-0.91.8|lesstif-0.91.8|any|n|y|n|y
bind-8.2.2-P7|net/bind8|/|Berkeley Internet Name Daemon|net/bind8/pkg/DESCR|Hakan Olsson <[email protected]>, Jakob Schlyter <[email protected]>|net|||any|n|n|n|n
bind-9.0.1|net/bind9||Berkeley Internet Name Daemon|net/bind9/pkg/DESCR|Jakob Schlyter <[email protected]>|net|||any|y|y|y|y
bing-1.0.4|net/bing||point-to-point bandwith measurement tool|net/bing/pkg/DESCR|[email protected]|net|||any|y|y|y|y
bitchx-1.0c17p1|net/bitchx||alternative ircII color client|net/bitchx/pkg/DESCR|Brad Smith <[email protected]>|net|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
cidr-2.3|net/cidr||RFC 1878 subnet calculator / helper|net/cidr/pkg/DESCR|[email protected]|net|||any|y|y|y|y
clog-1.6|net/clog||tcp connection logger daemon|net/clog/pkg/DESCR|[email protected]|net security|||any|y|y|y|y
curl-7.5|net/curl||get files from FTP, GOPHER, HTTP or HTTPS servers|net/curl/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
curl-7.5-kerberos|net/curl,kerberos||get files from FTP, GOPHER, HTTP or HTTPS servers|net/curl/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
cvsup-bin-16.1|net/cvsup-bin||network file distribution system, optimized for CVS|net/cvsup-bin/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel|||i386|y|y|y|y
cvsup-bin-16.1-no_x11|net/cvsup-bin,no_x11||network file distribution system, optimized for CVS|net/cvsup-bin/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel|||i386|y|y|y|y
cvsup-bin-16.0|net/cvsup-bin-old||network file distribution system, optimized for CVS|net/cvsup-bin-old/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel|||sparc|y|y|y|y
cvsup-bin-16.0-no_x11|net/cvsup-bin-old,no_x11||network file distribution system, optimized for CVS|net/cvsup-bin-old/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel|||sparc|y|y|y|y
djbdns-1.02|net/djbdns||collection of Domain Name System tools|net/djbdns/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net||ucspi-tcp-0.88 daemontools-0.70|any|y|y|y|y
dxpc-3.8.0|net/dxpc||X11 over a low bandwidth link|net/dxpc/pkg/DESCR|Marc Espie <[email protected]>|net x11|lzo-1.07|lzo-1.07|any|y|y|y|y
epic4-0.9.14|net/epic4||(E)nhanced (P)rogrammable (I)RC-II (C)lient|net/epic4/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
ethereal-0.8.14|net/ethereal||network protocol analyzer|net/ethereal/pkg/DESCR|Jakob Schlyter <[email protected]>|net x11|gettext-0.10.35 glib-1.2.8 python-2.0 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
firewalk-0.8|net/firewalk||gateway acl scanner (via static-source port traceroute)|net/firewalk/pkg/DESCR|Dug Song <[email protected]>|net|libnet-1.0.1b||any|y|y|y|y
flow-tools-0.34|net/flow-tools||cisco NetFlow utilities|net/flow-tools/pkg/DESCR|Jakob Schlyter <[email protected]>|net|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
fping-1.20|net/fping||quickly ping N hosts w/o flooding the network|net/fping/pkg/DESCR|Oleg Safiullin <[email protected]>|net|||any|y|y|y|y
gaim-0.9.10|net/gaim||gtk-based AOL Instant Messenger (AIM) client|net/gaim/pkg/DESCR|Evan Cordes <[email protected]>|net|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|?|?|?|?
gated-3.6|net/gated||routing protocol daemon|net/gated/pkg/DESCR|Jakob Schlyter <[email protected]>|net|autoconf-2.13||any|n|n|n|y
hping-2.0b54|net/hping||TCP/UDP ping/traceroute tool|net/hping/pkg/DESCR|Dug Song <[email protected]>|net|||any|y|y|y|y
httptunnel-3.0.5|net/httptunnel||HTTP tunneling utility|net/httptunnel/pkg/DESCR|Jakob Schlyter <[email protected]>|net|||any|y|y|y|y
icb-5.0.9|net/icb||Internet CB - mostly-defunct chat client|net/icb/pkg/DESCR|[email protected]|net|||any|y|y|y|y
icecast-1.3.7|net/icecast||Internet based broadcasting system|net/icecast/pkg/DESCR|Federico Schwindt <[email protected]>|net audio www|||any|y|y|y|y
icmpinfo-1.11|net/icmpinfo||look at the icmp messages received by the host|net/icmpinfo/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net sysutils|||any|y|y|y|y
ipfm-0.10.4|net/ipfm||IP bandwidth analysis tool|net/ipfm/pkg/DESCR|Oleg Safiullin <[email protected]>|net|||any|y|y|y|y
irc-2.10.1|net/irc||'Internet Relay Chat' server|net/irc/pkg/DESCR|[email protected]|net|||any|y|y|y|y
ircii-4.4Z|net/ircII||'Internet Relay Chat' client|net/ircII/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
jftpgw-0.0.11|net/jftpgw||FTP proxy|net/jftpgw/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
lftp-2.3.5|net/lftp||shell-like command line ftp client|net/lftp/pkg/DESCR|Kevin Lo <[email protected]>|net|||any|y|y|y|y
libnet-1.0.1b|net/libnet||raw IP packet construction library|net/libnet/pkg/DESCR|Dug Song <[email protected]>|net|||any|y|y|y|y
libnids-1.16|net/libnids||network monitoring library with TCP/IP reassembly|net/libnids/pkg/DESCR|Dug Song <[email protected]>|net|libnet-1.0.1b||any|y|y|y|y
licq-0.61|net/licq||ICQ clone for UNIX|net/licq/pkg/DESCR|[email protected]|net|gettext-0.10.35 jpeg-6b png-1.0.8 gmake-3.79.1 qt-1.45|qt-1.45|any|y|y|y|y
micq-0.4.5|net/micq||text-based ICQ implementation|net/micq/pkg/DESCR|Oleg Safiullin <[email protected]>|net|||any|y|y|y|y
mirror-2.9|net/mirror||mirror packages on remote sites|net/mirror/pkg/DESCR|[email protected]|net|||any|y|y|y|y
mrtd-1.6.0a|net/mrtd||Daemon/Libs/Toolkit for routing BPG4, RIP, OSPF, etc|net/mrtd/pkg/DESCR|Christopher Turan <[email protected]>|net|||any|y|y|y|y
mrtg-2.8.12|net/mrtg||multi-router traffic grapher|net/mrtg/pkg/DESCR|Brad Smith <[email protected]>|net|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|any|y|y|y|y
mtr-0.42|net/mtr||Matt's traceroute - network diagnostic tool|net/mtr/pkg/DESCR|Jakob Schlyter <[email protected]>|net|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
nam-1.0a8|net/nam||The UCB/LBNL Network Animator|net/nam/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net|tcl-8.3.2 tk-8.3.2 otcl-1.0a5 tclcl-1.0b9||any|y|y|y|y
nbtscan-1.0.2|net/nbtscan||NetBIOS name network scanner|net/nbtscan/pkg/DESCR|Dug Song <[email protected]>|net|||any|y|y|y|y
ncftp-3.0.1|net/ncftp||curses-based ftp program|net/ncftp/pkg/DESCR|Eric Jackson <[email protected]>|net|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
nemesis-1.1|net/nemesis||Command line arbitrary packet builder|net/nemesis/pkg/DESCR|Kyle Hargraves <[email protected]>|net security|libnet-1.0.1b||any|y|y|y|y
netatalk-990130|net/netatalk||File and Print Services for AppleTalk Networks|net/netatalk/pkg/DESCR|Ian McWilliam <[email protected]>|net|||any|y|y|y|y
netpipes-4.1.1-export|net/netpipe||shell utilities to connect programs to sockets|net/netpipe/pkg/DESCR|[email protected]|net|||any|y|y|y|y
ngrep-1.38|net/ngrep||network grep|net/ngrep/pkg/DESCR|Dug Song <[email protected]>|net|gettext-0.10.35 gmake-3.79.1||any|n|y|n|y
nmap-2.54b6|net/nmap||port scanning large networks|net/nmap/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net security|||any|y|y|y|y
nmapfe-0.9.5|net/nmapfe||graphical front end to nmap port scanner|net/nmapfe/pkg/DESCR|Sean Cavanaugh <[email protected]>|net security|gettext-0.10.35 glib-1.2.8 nmap-2.54b6 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 nmap-2.54b6 gtk+-1.2.8|any|y|y|y|y
ns-2.1b6|net/ns||The UCB/LBNL Network Simulator Version 2|net/ns/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net|tcl-8.3.2 tk-8.3.2 otcl-1.0a5 tclcl-1.0b9|tcl-8.3.2|any|y|y|y|y
nsping-0.8|net/nsping||DNS "ping"|net/nsping/pkg/DESCR|Dug Song <[email protected]>|net|||any|y|y|y|y
ntop-1.1|net/ntop||network usage, interface similar to top(1)|net/ntop/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
p5-libnet-1.0703|net/p5-libnet||modules for net-based applications|net/p5-libnet/pkg/DESCR|Marc Espie <[email protected]>|net perl5|||any|y|y|y|y
pchar-1.2|net/pchar||Sandia Internet path characterization tool|net/pchar/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net|||any|y|y|y|y
pop3gwd-1.2|net/pop3gwd||app-level proxy for mail retrieval behind firewalls|net/pop3gwd/pkg/DESCR|Ian McWilliam <[email protected]>|net mail|||any|y|y|y|y
popa3d-0.4|net/popa3d||security first POP3 daemon|net/popa3d/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net mail|||any|y|y|y|y
popa3d-0.4-apop|net/popa3d,apop||security first POP3 daemon|net/popa3d/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net mail|||any|y|y|y|y
proxy-suite-1.7|net/proxy-suite||set of programs to enhance firewall security|net/proxy-suite/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net security|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
publicfile-0.52|net/publicfile||read-only anonymous FTP and HTTP server|net/publicfile/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net||ucspi-tcp-0.88 daemontools-0.70|any|y|y|y|y
publicfile-0.52-compat|net/publicfile,compat||read-only anonymous FTP and HTTP server|net/publicfile/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net||ucspi-tcp-0.88 daemontools-0.70|any|n|n|y|y
queso-980922|net/queso||determine remote OS using simple tcp packets|net/queso/pkg/DESCR|Brad Smith <[email protected]>|net|||any|y|y|y|y
radiusd-cistron-1.6.4|net/radiusd-cistron||Cistron RADIUS server|net/radiusd-cistron/pkg/DESCR|Dan Harnett <[email protected]>|net|||any|y|y|y|y
radiusd-lucent-2.1|net/radiusd-lucent||Lucent remote access RADIUS server|net/radiusd-lucent/pkg/DESCR|Dan Harnett <[email protected]>|net|||any|y|y|y|y
rrdtool-1.0.28|net/rrdtool||system to store and display time-series data|net/rrdtool/pkg/DESCR|Dan Harnett <[email protected]>|net|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|any|y|y|y|y
rrdtool-1.0.28-tcl|net/rrdtool,tcl||system to store and display time-series data|net/rrdtool/pkg/DESCR|Dan Harnett <[email protected]>|net|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 tcl-8.3.2|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3 tcl-8.3.2|any|y|y|y|y
rsync-2.4.6|net/rsync||mirroring/synchronization over low bandwidth links|net/rsync/pkg/DESCR|Marc Espie <[email protected]>|net|||any|y|y|y|y
samba-2.0.7|net/samba||free SMB and CIFS client and server for UNIX|net/samba/pkg/DESCR|[email protected]|net|||any|y|y|y|y
sharity-light-1.2|net/sharity-light||userland smbfs --- SMB to NFS protocols converter|net/sharity-light/pkg/DESCR|[email protected]|net|||any|y|y|y|y
slirp-1.0c|net/slirp||SLIP/CSLIP emulator for users with shell accounts|net/slirp/pkg/DESCR|[email protected]|net|||any|y|y|y|y
sniffit-0.3.7b|net/sniffit||packet sniffer program; for educational use|net/sniffit/pkg/DESCR|[email protected]|net security|||any|n|y|n|y
snort-1.6.3|net/snort||highly flexible sniffer/basic NIDS|net/snort/pkg/DESCR|Kyle Hargraves <[email protected]>|net security|||any|y|y|y|y
ssldump-0.9b1|net/ssldump||SSLv3/TLS network protocol analyzer|net/ssldump/pkg/DESCR|Jakob Schlyter <[email protected]>|net|||any|y|y|y|y
tcpflow-0.12|net/tcpflow||tool for capturing data from TCP connections|net/tcpflow/pkg/DESCR|Jeremy Jethro <[email protected]>|net|||any|y|y|y|y
tcpreplay-1.0.1|net/tcpreplay||resend network traffic saved by tcpdump|net/tcpreplay/pkg/DESCR|Dug Song <[email protected]>|net|libnet-1.0.1b||any|y|y|y|y
tcpshow-1.74|net/tcpshow||decode tcpdump(1) output|net/tcpshow/pkg/DESCR|[email protected]|net security|||any|n|y|n|y
tcptrace-5.2.1|net/tcptrace||TCP dump file analysis tool|net/tcptrace/pkg/DESCR|Jeremy Jethro <[email protected]>|net|||any|y|y|y|y
tintin-1.5.6|net/tintin++||client program to help playing muds|net/tintin++/pkg/DESCR|[email protected]|net games|||any|y|y|y|y
tinyfugue-4.0s1|net/tinyfugue||programmable MUD client, with macro support and more|net/tinyfugue/pkg/DESCR|[email protected]|net games|||any|y|y|y|y
tircproxy-0.4.5|net/tircproxy||transparent irc proxy|net/tircproxy/pkg/DESCR|[email protected]|net|||any|y|y|y|y
tkirc2.43|net/tkirc||ircII internet relay chat client|net/tkirc/pkg/DESCR|Kevin Lo <[email protected]>|net||tcl-8.3.2 ircii-4.4Z tk-8.3.2|any|y|y|y|y
totd-1.1p4|net/totd||DNS proxy that supports IPv6 <==> IPv4 record translation|net/totd/pkg/DESCR|Jun-ichiro itojun Hagino <[email protected]>|net|||any|y|y|y|y
trafd-3.0.1|net/trafd||the BPF traffic collector|net/trafd/pkg/DESCR|Oleg Safiullin <[email protected]>|net|||any|y|y|y|y
trafshow-3.1|net/trafshow||full screen visualization of network traffic|net/trafshow/pkg/DESCR|Michael Shalayeff <[email protected]>|net|||any|y|y|y|y
ucd-snmp-4.1.2|net/ucd-snmp||extendable SNMP implementation|net/ucd-snmp/pkg/DESCR|Dan Harnett <[email protected]>|net|autoconf-2.13||any|y|y|y|y
ucspi-tcp-0.88|net/ucspi-tcp||tools for building TCP client-server applications|net/ucspi-tcp/pkg/DESCR|Camiel Dobbelaar <[email protected]>|net|||any|y|y|y|y
ucspi-unix-0.34|net/ucspi-unix||tools for building unix domain socket client/servers|net/ucspi-unix/pkg/DESCR|Anil Madhavapeddy <[email protected]>|net|||any|y|y|y|y
vnc-3.3.2r3|net/vnc||display X & Win32 desktops on remote X/Win32/Java displays|net/vnc/pkg/DESCR|[email protected]|net|||any|y|y|y|y
vtun-2.3|net/vtun||virtual tunnels over TCP/IP networks with traffic shaping|net/vtun/pkg/DESCR|Kevin Lo <[email protected]>|net|lzo-1.07|lzo-1.07|any|y|y|y|y
wget-1.5.3|net/wget||retrieve files from the 'net via HTTP and FTP|net/wget/pkg/DESCR|Angelos D. Keromytis <[email protected]>|net|gettext-0.10.35|gettext-0.10.35|any|y|y|y|y
wide-dhcp-1.4.0.3|net/wide-dhcp||Dynamic Host Configuration Protocol, WIDE-Implementation|net/wide-dhcp/pkg/DESCR|[email protected]|net|||any|y|y|y|y
xarchie-2.0.10|net/xarchie||X11 front-end program for the archie network search service|net/xarchie/pkg/DESCR|[email protected]|net|||any|y|y|y|y
xchat-1.4.3|net/xchat||X-Chat is an X11 irc client|net/xchat/pkg/DESCR|[email protected]|x11|glib-1.2.8 gettext-0.10.35 gmake-3.79.1 gtk+-1.2.8|glib-1.2.8 gettext-0.10.35 gtk+-1.2.8|any|y|y|y|y
yafc-0.6.5|net/yafc||powerful console ftp client with many features|net/yafc/pkg/DESCR|Anil Madhavapeddy <[email protected]>|net|||any|y|y|y|y
ytalk-3.1.1|net/ytalk||enhanced talk that allows for multiple parties|net/ytalk/pkg/DESCR|Marc Espie <[email protected]>|net|||any|y|y|y|y
zebra-0.89|net/zebra||Free multithreaded routing daemon software|net/zebra/pkg/DESCR|Jun-ichiro itojun Hagino <[email protected]>|net|||any|y|y|y|y
aub-2.0.5|news/aub||assemble usenet binaries|news/aub/pkg/DESCR|Angelos D. Keromytis <[email protected]>|news|||any|y|y|y|y
cnews-cr.g|news/cnews||C-news|news/cnews/pkg/DESCR|[email protected]|news|||any|y|y|y|y
leafnode-1.9.17|news/leafnode||USENET software package designed for small sites|news/leafnode/pkg/DESCR|[email protected]|news|||any|y|y|y|y
linleech-2.2.1|news/linleech||retrieve usenet posts via script|news/linleech/pkg/DESCR|[email protected]|news|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
newsfetch-1.21|news/newsfetch||download news articles from NNTP server|news/newsfetch/pkg/DESCR|[email protected]|news|||any|y|y|y|y
plor-0.3.2|news/plor||alpha-release reader for reading SOUP and QWK packets|news/plor/pkg/DESCR|[email protected]|news|||any|y|y|y|y
slrn-0.9.6.2|news/slrn||SLang-based newsreader|news/slrn/pkg/DESCR|Christopher Turan <[email protected]>|news|libslang-1.4.2|libslang-1.4.2|any|y|y|y|y
tin-1.4.4|news/tin||full-screen easy to use Usenet reader|news/tin/pkg/DESCR|[email protected]|news|||any|n|y|n|y
tin-1.4.4-nntp_only|news/tin,nntp_only||full-screen easy to use Usenet reader|news/tin/pkg/DESCR|[email protected]|news|||any|n|y|n|y
9menu-1.5|plan9/9menu||simple menu patterned after plan9|plan9/9menu/pkg/DESCR|Angelos D. Keromytis <[email protected]>|plan9|||any|y|y|y|y
9wm-1.2pre|plan9/9wm||8 1/2-like Window Manager for X11|plan9/9wm/pkg/DESCR|Markus Friedl <[email protected]>|plan9|||any|y|y|y|y
larswm-7.0.8|plan9/larswm||9wm with automatic window tiling and virtual desktops|plan9/larswm/pkg/DESCR|William Yodlowsky <[email protected]>|plan9|||any|y|y|y|y
rc-1.6|plan9/rc||shell (clone of plan9 shell)|plan9/rc/pkg/DESCR|Markus Friedl <[email protected]>|plan9 shells|||any|y|y|y|y
rc-1.6-readline|plan9/rc,readline||shell (clone of plan9 shell)|plan9/rc/pkg/DESCR|Markus Friedl <[email protected]>|plan9 shells|||any|y|y|y|y
rc-1.6-editline|plan9/rc,editline||shell (clone of plan9 shell)|plan9/rc/pkg/DESCR|Markus Friedl <[email protected]>|plan9 shells|||any|y|y|y|y
sam-4.3-19980506|plan9/sam||X11 version of Rob Pike's editor, sam|plan9/sam/pkg/DESCR|Markus Friedl <[email protected]>|plan9|||any|y|y|y|y
tcs-19950325|plan9/tcs||translate character sets|plan9/tcs/pkg/DESCR|Markus Friedl <[email protected]>|plan9|||any|y|y|y|y
w9wm-0.1|plan9/w9wm||hacked 9wm, with support for virtual screens|plan9/w9wm/pkg/DESCR|William Yodlowsky <[email protected]>|plan9|||any|y|y|y|y
wily-0.13.41|plan9/wily||clone of the Plan9 editor `acme'|plan9/wily/pkg/DESCR|Angelos D. Keromytis <[email protected]>|plan9 editors|autoconf-2.13||any|y|y|y|y
a2ps-4.13b-a4|print/a2ps,a4||format ascii files for printing on PostScript printers|print/a2ps/pkg/DESCR|Tobias Weingartner <[email protected]>|print|||any|n|y|n|y
a2ps-4.13b-letter|print/a2ps,letter||format ascii files for printing on PostScript printers|print/a2ps/pkg/DESCR|Tobias Weingartner <[email protected]>|print|||any|n|y|n|y
acroread-4.0|print/acroread||view, distribute and print PDF documents|print/acroread/pkg/DESCR|Angelos D. Keromytis <[email protected]>|print||linux_lib-2.6.1|i386|n|n|n|y
afm-1.0|print/afm||Adobe Font Metrics|print/afm/pkg/DESCR|David Leonard <[email protected]>|print|||any|n|y|n|y
bibview-2.2|print/bibview||GUI for manipulating BibTeX bibliography databases|print/bibview/pkg/DESCR|[email protected]|databases print|||any|y|y|y|y
detex-2.6|print/detex||strip TeX/LaTeX codes from a file|print/detex/pkg/DESCR|Angelos D. Keromytis <[email protected]>|print|||any|y|y|y|y
enscript-1.6.1|print/enscript||convert ASCII files to PostScript|print/enscript/pkg/DESCR|Matt Behrens <[email protected]>|print|||any|y|y|y|y
freetype-1.3|print/freetype||free and portable TrueType font rendering engine|print/freetype/pkg/DESCR|Jason Ish <[email protected]>|print|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
ghostscript-6.01|print/ghostscript/aladdin||Aladdin PostScript interpreter|print/ghostscript/aladdin/pkg/DESCR|[email protected]|print lang|unzip-5.41 jpeg-6b png-1.0.8|png-1.0.8|any|n|y|n|y
ghostscript-6.01-a4|print/ghostscript/aladdin,a4||Aladdin PostScript interpreter|print/ghostscript/aladdin/pkg/DESCR|[email protected]|print lang|unzip-5.41 jpeg-6b png-1.0.8|png-1.0.8|any|n|y|n|y
ghostscript-5.50|print/ghostscript/gnu||GNU Postscript interpreter|print/ghostscript/gnu/pkg/DESCR|[email protected]|print|unzip-5.41 jpeg-6b png-1.0.8|png-1.0.8|any|y|y|y|y
ghostscript-5.50-a4|print/ghostscript/gnu,a4||GNU Postscript interpreter|print/ghostscript/gnu/pkg/DESCR|[email protected]|print|unzip-5.41 jpeg-6b png-1.0.8|png-1.0.8|any|y|y|y|y
ghostscript_encrypt-aladdin|print/ghostscript/encrypt,aladdin||encrypted pdf add-on for ghostscript|print/ghostscript/encrypt/pkg/DESCR|[email protected]|print||png-1.0.8 ghostscript-6.01|any|n|y|n|y
ghostscript_encrypt-gnu|print/ghostscript/encrypt,gnu||encrypted pdf add-on for ghostscript|print/ghostscript/encrypt/pkg/DESCR|[email protected]|print||png-1.0.8 ghostscript-5.50|any|n|y|n|y
ghostview-1.5|print/ghostview||X11 front-end for ghostscript|print/ghostview/pkg/DESCR|[email protected]|print|||any|y|y|y|y
gv-3.5.8|print/gv||PostScript and PDF previewer|print/gv/pkg/DESCR|[email protected]|print|Xaw3d-1.5|png-1.0.8 ghostscript-5.50 Xaw3d-1.5|any|y|y|y|y
jadetex-2.20|print/jadetex||macros for the Jade/OpenJade DSSSL TeX backend|print/jadetex/pkg/DESCR|Anil Madhavapeddy <[email protected]>|print|gettext-0.10.35 gmake-3.79.1 unzip-5.41 png-1.0.8 teTeX_texmf-1.0.2 openjade-1.3|png-1.0.8 teTeX_texmf-1.0.2|any|y|y|y|y
lyx-1.0.0|print/lyx||graphical frontend for LaTeX (nearly WYSIWYG)|print/lyx/pkg/DESCR|Angelos D. Keromytis <[email protected]>|print|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5 teTeX_base-1.0.7 xforms-0.88|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5 teTeX_base-1.0.7 ispell-3.1.20 xforms-0.88|any|y|y|y|y
mpage-2.5-us_letter|print/mpage,us_letter||print multiple pages per sheet on PostScript printer|print/mpage/pkg/DESCR|Ian McWilliam <[email protected]>|print|||any|y|y|y|y
mpage-2.5-legal|print/mpage,legal||print multiple pages per sheet on PostScript printer|print/mpage/pkg/DESCR|Ian McWilliam <[email protected]>|print|||any|y|y|y|y
mpage-2.5-a4|print/mpage,a4||print multiple pages per sheet on PostScript printer|print/mpage/pkg/DESCR|Ian McWilliam <[email protected]>|print|||any|y|y|y|y
pdflib-3.02|print/pdflib||C library to produce PDF files|print/pdflib/pkg/DESCR|Jakob Schlyter <[email protected]>|print|jpeg-6b png-1.0.8 tiff-3.5.5|jpeg-6b png-1.0.8 tiff-3.5.5|any|n|y|n|y
pkfonts300-1.0|print/pkfonts||English PK fonts, for ghostscript, xdvi and so on|print/pkfonts/pkg/DESCR|Angelos D. Keromytis <[email protected]>|print|||any|y|y|y|y
psutils-1.17-a4|print/psutils||manipulating PostScript documents|print/psutils/pkg/DESCR|[email protected]|print|||any|y|y|y|y
teTeX_texmf-1.0.2|print/teTeX/texmf||TeX distribution, common support files|print/teTeX/texmf/pkg/DESCR|Marc Espie <[email protected]>, Anil Madhavapeddy <[email protected]>|print/teTeX|||any|y|y|y|y
teTeX_base-1.0.7|print/teTeX/base||TeX distribution, executables|print/teTeX/base/pkg/DESCR|Marc Espie <[email protected]>, Anil Madhavapeddy <[email protected]>|print/teTeX|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5|any|y|y|y|y
transfig-3.2.3c|print/transfig||tools to convert Xfig's .fig files|print/transfig/pkg/DESCR|[email protected]|print|jpeg-6b|png-1.0.8 jpeg-6b ghostscript-5.50|any|y|y|y|y
qhacc-0.6.1a|productivity/qhacc||qt home accounting program|productivity/qhacc/pkg/DESCR|Marc Espie <[email protected]>|productivity x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt2-2.3|jpeg-6b png-1.0.8 qt2-2.3|any|y|y|y|y
cyrproxy-1.4.2|russian/cyrproxy||Cyrillic proxy for network protocols|russian/cyrproxy/pkg/DESCR|Oleg Safiullin <[email protected]>|russian net www|||any|y|y|y|y
d1489-1.4|russian/d1489||cp866<>koi8-r & cp1251<>koi8-r decoders and font converter|russian/d1489/pkg/DESCR|Oleg Safiullin <[email protected]>|russian|||any|y|y|y|y
wget-msgs-1.5.3-ru|russian/wget-msgs||russian messages for GNU wget|russian/wget-msgs/pkg/DESCR|Oleg Safiullin <[email protected]>|russian net|gettext-0.10.35|gettext-0.10.35 wget-1.5.3|any|y|y|y|y
xcyrillic-2.0|russian/xcyrillic||setup X11 fonts for russian language (koi8-r)|russian/xcyrillic/pkg/DESCR|Oleg Safiullin <[email protected]>|russian x11|||any|y|y|y|y
xruskb-1.13.0|russian/xruskb||english-russian keyboard switcher for X11|russian/xruskb/pkg/DESCR|Oleg Safiullin <[email protected]>|russian x11|||any|y|y|y|y
xruskb-1.13.0-motif|russian/xruskb,motif||english-russian keyboard switcher for X11|russian/xruskb/pkg/DESCR|Oleg Safiullin <[email protected]>|russian x11|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
ADMfzap-0.1|security/ADMfzap||connect() and bind() wrapper to evade packet filtering|security/ADMfzap/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
ADMsmb-0.2|security/ADMsmb||Samba security scanner|security/ADMsmb/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
ADMsnmp-0.1|security/ADMsnmp||SNMP audit scanner|security/ADMsnmp/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
antisniff-1.1|security/antisniff||promiscuous mode interface detector|security/antisniff/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|n|n|y
bfbtester-1.0|security/bfbtester||brute force binary tester|security/bfbtester/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
bounix-1.21|security/bounix||Back Orifice Unix client by the cDc|security/bounix/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
cfs-1.3.3|security/cfs||cryptographic file system (user-space NFS server)|security/cfs/pkg/DESCR|Angelos D. Keromytis <[email protected]>|security|||any|y|y|y|y
cgichk-3.6|security/cgichk||scans webservers for vulnerable CGI programs|security/cgichk/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
cops-1.04|security/cops||system secureness checker|security/cops/pkg/DESCR|[email protected]|security|||any|y|y|y|y
crack-5.0|security/crack||the "Sensible" Unix Password Cracker|security/crack/pkg/DESCR|[email protected]|security|||any|y|y|y|y
cyrus-sasl-1.5.24|security/cyrus-sasl||RFC 2222 SASL (Simple Authentication and Security Layer)|security/cyrus-sasl/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|y|y|y|y
dante-1.1.6|security/dante||a socks client and server|security/dante/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|y|y|y|y
dsniff-2.3|security/dsniff||sniffing tools for penetration testing|security/dsniff/pkg/DESCR|Dug Song <[email protected]>|security|libnet-1.0.1b libnids-1.16||any|y|y|y|y
fragrouter-1.6|security/fragrouter||tool for testing network IDS implementations|security/fragrouter/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
gnupg-1.0.4|security/gnupg||GNU privacy guard - a free PGP replacement|security/gnupg/pkg/DESCR|Markus Friedl <[email protected]>|security|||any|y|y|y|y
isic-0.05|security/isic||IP stack integrity checker|security/isic/pkg/DESCR|Dug Song <[email protected]>|security|libnet-1.0.1b||any|y|y|y|y
its4-1.1.1|security/its4||scan C/C++ source code for security problems|security/its4/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|n|n|n
john-1.6|security/john||extremely fast password cracker|security/john/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
john-1.6-k6|security/john,k6||extremely fast password cracker|security/john/pkg/DESCR|Dug Song <[email protected]>|security|||i386|y|y|y|y
l0phtcrack-2.52|security/l0phtcrack||Microsoft LANMAN & NT password sniffer/cracker|security/l0phtcrack/pkg/DESCR|Dug Song <[email protected]>|security|unzip-5.41||any|y|y|y|y
libident-0.22|security/libident||library to interface the ident protocol server (rfc1413)|security/libident/pkg/DESCR|Angelos D. Keromytis <[email protected]>|devel net security|||any|y|y|y|y
libmcrypt-2.4.7|security/libmcrypt||interface to access block and stream encryption algorithms|security/libmcrypt/pkg/DESCR|Anil Madhavapeddy <[email protected]>|security|mhash-0.8.3|mhash-0.8.3|any|y|y|y|y
logsurfer-1.5|security/logsurfer||processes logfiles and perform certain actions|security/logsurfer/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|y|y|y|y
lxnb-0.4|security/lxnb||NetBus client|security/lxnb/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|y|n|y
mcrypt-2.5.5|security/mcrypt||extendable encryption program that supports many ciphers|security/mcrypt/pkg/DESCR|Anil Madhavapeddy <[email protected]>|security|mhash-0.8.3 gettext-0.10.35 libtool-1.3.5 libmcrypt-2.4.7|mhash-0.8.3 gettext-0.10.35 libmcrypt-2.4.7|any|y|y|y|y
mhash-0.8.3|security/mhash||strong hash library|security/mhash/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|y|y|y|y
nbaudit-1.0|security/nbaudit||NetBIOS Auditing Tool / Security Kit|security/nbaudit/pkg/DESCR|[email protected]|security net|||any|y|y|y|y
nessus-1.0.5|security/nessus||Nessus, a free network security scanner|security/nessus/pkg/DESCR|Matt Behrens <[email protected]>|security|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|y|y|y|y
nfsshell-1.0|security/nfsshell||NFS auditing tool|security/nfsshell/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|y|n|y
outguess-0.13b|security/outguess||universal steganography tool|security/outguess/pkg/DESCR|Dug Song <[email protected]>|security|||any|?|?|?|?
parse-1.0|security/parse||watch a tcpdump trace in real-time|security/parse/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|y|n|y
p5-Crypt-SSLeay-0.17|security/p5-Crypt-SSLeay||library to provide LWP https support via OpenSSL|security/p5-Crypt-SSLeay/pkg/DESCR|Anil Madhavapeddy <[email protected]>|security perl5|||any|y|y|y|y
p5-Digest-MD5-2.12|security/p5-Digest-MD5||module to calculate digests|security/p5-Digest-MD5/pkg/DESCR|Benjamin Lerman <[email protected]>|security perl5|||any|y|y|y|y
pgp-2.6.3|security/pgp||Pretty Good Privacy 2.6.3ia|security/pgp/pkg/DESCR|[email protected]|security|||any|n|y|n|y
pgp-5.0i|security/pgp5||Pretty Good Privacy 5.0i (world wide use)|security/pgp5/pkg/DESCR|Federico Schwindt <[email protected]>|security|||any|n|y|n|y
PGPlib|security/pgplib||library to generate (and manipulate) PGP packets|security/pgplib/pkg/DESCR|[email protected]|security|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
portscanner-1.0|security/portscanner||simple and easy to use TCP port scanner|security/portscanner/pkg/DESCR|Brad Smith <[email protected]>|security|||any|n|y|n|y
ppgen-1.0|security/ppgen||secure passphrase generator|security/ppgen/pkg/DESCR|Matt Behrens <[email protected]>|security|||any|y|y|y|y
radiusniff-0.2|security/radiusniff||radius sniffer|security/radiusniff/pkg/DESCR|[email protected]|security|||any|n|y|n|y
rdp-1.0|security/rdp||ICMP router discovery protocol spoofer|security/rdp/pkg/DESCR|Dug Song <[email protected]>|security|libnet-1.0.1b||any|n|y|n|y
scanlogd-2.2|security/scanlogd||TCP port scan detection tool|security/scanlogd/pkg/DESCR|Joshua Stein <[email protected]>|security|libnet-1.0.1b libnids-1.16||any|y|y|y|y
sftp-0.8.1|security/sftp||Ftp replacement that runs over a ssh tunnel|security/sftp/pkg/DESCR|Markus Friedl <[email protected]>|net security|||any|y|y|y|y
shash-0.2.3|security/shash||generates or checks digests or mac|security/shash/pkg/DESCR|Jakob Schlyter <[email protected]>|security|mhash-0.8.3|mhash-0.8.3|any|y|y|y|y
shash-0.2.3-static|security/shash,static||generates or checks digests or mac|security/shash/pkg/DESCR|Jakob Schlyter <[email protected]>|security|mhash-0.8.3||any|y|y|y|y
smurflog-2.1|security/smurflog||a program to assist logging of smurf attacks|security/smurflog/pkg/DESCR|Todd T. Fries <[email protected]>|net security|||any|y|y|y|y
socks5-1.0.11|security/socks5||SOCKS v5 application layer gateway and clients|security/socks5/pkg/DESCR|[email protected]|security net|||any|n|n|n|n
stel|security/stel||Secure Telnet, encrypted version of the telnet daemon|security/stel/pkg/DESCR|Christopher Turan <[email protected]>|security|||any|n|y|n|y
strobe-1.06|security/strobe||fast scatter/gather TCP port scanner|security/strobe/pkg/DESCR|Brad Smith <[email protected]>|security|||any|y|y|y|y
stunnel-3.9|security/stunnel||SSL encryption wrapper for standard network daemons|security/stunnel/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|y|y|y|y
swatch-3.0.1|security/swatch||the Simple WATCHdog log filtering program|security/swatch/pkg/DESCR|Anil Madhavapeddy <[email protected]>|security sysutils|p5-Time-HiRes-1.20 p5-Date-Calc-4.3 p5-File-Tail-0.97 p5-Time-TimeDate-1.10|p5-Time-HiRes-1.20 p5-Date-Calc-4.3 p5-File-Tail-0.97 p5-Time-TimeDate-1.10|any|y|y|y|y
tempwatch-1.0|security/tempwatch||temporary file auditing tool|security/tempwatch/pkg/DESCR|Dug Song <[email protected]>|security|||any|n|y|n|y
uvscan-4.07e|security/uvscan||evaluation version of a DOS/Windows file virus scanner|security/uvscan/pkg/DESCR|Jakob Schlyter <[email protected]>|security||linux_lib-2.6.1 uvscan_dat-4094|any|n|n|n|n
uvscan_dat-4094|security/uvscan_dat||AntiVirus DAT file for uvscan|security/uvscan_dat/pkg/DESCR|Jakob Schlyter <[email protected]>|security|||any|n|n|n|n
whisker-1.4|security/whisker||stealthy webserver vulnerability scanner|security/whisker/pkg/DESCR|Dug Song <[email protected]>|security|||any|y|y|y|y
bash-1.14.7|shells/bash||GNU Bourne Again Shell|shells/bash/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
bash-1.14.7-static|shells/bash,static||GNU Bourne Again Shell|shells/bash/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
bash-2.04|shells/bash2||GNU Bourne Again Shell|shells/bash2/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
bash-2.04-static|shells/bash2,static||GNU Bourne Again Shell|shells/bash2/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
es-0.9b1|shells/es||extensible shell, derived from plan9's rc|shells/es/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
scsh-0.5.1|shells/scsh||Unix shell embedded into Scheme|shells/scsh/pkg/DESCR|[email protected]|shells lang|||any|n|y|n|y
tcsh-6.09.03p1|shells/tcsh||extended C-shell with many useful features|shells/tcsh/pkg/DESCR|Brad Smith <[email protected]>|shells|||any|y|y|y|y
tcsh-6.09.03p1-static|shells/tcsh,static||extended C-shell with many useful features|shells/tcsh/pkg/DESCR|Brad Smith <[email protected]>|shells|||any|y|y|y|y
zsh-3.0.8|shells/zsh||the Z shell, Bourne shell-compatible, release flavor|shells/zsh/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
zsh-3.0.8-static|shells/zsh,static||the Z shell, Bourne shell-compatible, release flavor|shells/zsh/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
zsh-3.1.9|shells/zsh-devel||the Z shell, Bourne shell-compatible, development flavor|shells/zsh-devel/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
zsh-3.1.9-static|shells/zsh-devel,static||the Z shell, Bourne shell-compatible, development flavor|shells/zsh-devel/pkg/DESCR|[email protected]|shells|||any|y|y|y|y
LPRng-3.6.12|sysutils/LPRng||enhanced printer spooler|sysutils/LPRng/pkg/DESCR|[email protected]|sysutils print|||any|y|y|y|y
apc-upsd|sysutils/apc-upsd||UPS software for APC UPS models|sysutils/apc-upsd/pkg/DESCR|Kevin Lo <[email protected]>|sysutils|||any|y|y|y|y
cfengine-1.4.12|sysutils/cfengine||GNU system administration tool for networks|sysutils/cfengine/pkg/DESCR|[email protected]|sysutils|||any|y|y|y|y
contool-3.3a|sysutils/contool||console tool for openlook|sysutils/contool/pkg/DESCR|Ian Darwin <[email protected]>|sysutils|xview-config-3.2.1 xview-lib-3.2.1|xview-lib-3.2.1|any|n|y|n|y
daemontools-0.70|sysutils/daemontools||collection of tools for managing UNIX services|sysutils/daemontools/pkg/DESCR|Camiel Dobbelaar <[email protected]>|sysutils|||any|y|y|y|y
idled-1.16|sysutils/idled||log out idle users and those hogging resources|sysutils/idled/pkg/DESCR|[email protected]|sysutils|||any|n|y|n|y
libretto-config-1.0b5|sysutils/libretto-config||Libretto BIOS Setting Program|sysutils/libretto-config/pkg/DESCR|Todd Miller <[email protected]>|sysutils|||i386|n|y|y|y
lsof-4.53|sysutils/lsof||list information about open files|sysutils/lsof/pkg/DESCR|Angelos D. Keromytis <[email protected]>|sysutils|||any|y|y|y|y
mkhybrid-1.12b5.1|sysutils/mkhybrid||create a hybrid ISO9660/JOLIET/HFS/Rock Ridge filesystem|sysutils/mkhybrid/pkg/DESCR|[email protected]|sysutils|||any|y|y|y|y
mtools-3.9.7.20000821|sysutils/mtools||read/write/list/format DOS disks under Unix|sysutils/mtools/pkg/DESCR|Federico Schwindt <[email protected]>|sysutils|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
radiusreport-0.3b6|sysutils/radiusreport||RADIUS log file analysis tool|sysutils/radiusreport/pkg/DESCR|Dan Harnett <[email protected]>|sysutils|||any|y|y|y|y
rtty-3.2|sysutils/rtty||multiuser "tip"/"cu" replacement with logging|sysutils/rtty/pkg/DESCR|[email protected]|sysutils|||any|y|y|y|y
sdd-1.22|sysutils/sdd||faster and improved version of dd|sysutils/sdd/pkg/DESCR|Christian Weisgerber <[email protected]>|sysutils|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
setquota-0.1|sysutils/setquota||command line quota tools|sysutils/setquota/pkg/DESCR|[email protected]|sysutils|||any|y|y|y|y
skill-3.7.9|sysutils/skill||signal or reprioritize specified processes|sysutils/skill/pkg/DESCR|Jakob Schlyter <[email protected]>|sysutils|||any|n|y|n|y
socket-1.1|sysutils/socket||create tcp socket and connect to stdin/out|sysutils/socket/pkg/DESCR|[email protected]|sysutils net|||any|y|y|y|y
stat-1.3|sysutils/stat||print inode contents|sysutils/stat/pkg/DESCR|[email protected]|sysutils|||any|y|y|y|y
tcplist-2.2|sysutils/tcplist||list tcp connections to/from the local machine|sysutils/tcplist/pkg/DESCR|[email protected]|sysutils net||lsof-4.53|any|y|y|y|y
upsd-2.0|sysutils/upsd||APC Smart UPS Monitoring Daemon|sysutils/upsd/pkg/DESCR|Kevin Lo <[email protected]>|sysutils|||any|n|n|n|y
usbutil-0.4|sysutils/usbutil||USB developer utilities|sysutils/usbutil/pkg/DESCR|Jakob Schlyter <[email protected]>|sysutils|||any|y|y|y|y
wmmon-1.0b2|sysutils/wmmon||WindowMaker dock app similar to xload|sysutils/wmmon/pkg/DESCR|Vladimir Popov <[email protected]>|sysutils|||any|y|y|y|y
xbatt-1.2.1|sysutils/xbatt||laptop battery status display for X11|sysutils/xbatt/pkg/DESCR|Niklas Hallqvist <[email protected]>|sysutils x11|||i386|y|y|y|y
webmin-0.81|sysutils/webmin||Web-based interface for system administration for Unix|sysutils/webmin/pkg/DESCR|Kevin Lo <[email protected]>|sysutils|||any|y|y|y|y
whowatch-1.4|sysutils/whowatch||interactive utility that displays info about online users|sysutils/whowatch/pkg/DESCR|Mark Grimes <[email protected]>|sysutils|||any|y|y|y|y
xntp3-5.93e|sysutils/xntpd||Network Time Protocol implementation|sysutils/xntpd/pkg/DESCR|Jason Wright <[email protected]>|sysutils|||any|y|y|y|y
xosview-1.7.4|sysutils/xosview||graphical performance meter|sysutils/xosview/pkg/DESCR|Oleg Safiullin <[email protected]>|sysutils|||any|y|y|y|y
zap-1.1|sysutils/zap||interactive process killer|sysutils/zap/pkg/DESCR|Ian Darwin <[email protected]>|sysutils|||any|y|y|y|y
TclXML-1.2.1|textproc/TclXML||pure-Tcl implementation of XML parser|textproc/TclXML/pkg/DESCR|Jakob Schlyter <[email protected]>|textproc||tcl-8.3.2|any|n|y|n|y
agrep-2.04|textproc/agrep||approximate grep (fast approximate pattern-matching tool)|textproc/agrep/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|n|y|n|y
antiword-0.30|textproc/antiword||converts MSWord Documents to ASCII Text and PostScript|textproc/antiword/pkg/DESCR|Mark Grimes <[email protected]>|textproc|||any|y|y|y|y
c2html-0.9.2|textproc/c2html||C-language sources to HTML converter|textproc/c2html/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc www|||any|y|y|y|y
catdoc-0.90b4|textproc/catdoc||MS Word ==> ASCII or TeX, Tk viewer included|textproc/catdoc/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc||tcl-8.0.5 tk-8.0.5|any|y|y|y|y
docbook-4.1|textproc/docbook||technical documentation SGML definitions |textproc/docbook/pkg/DESCR|Anil Madhavapeddy <[email protected]>|textproc|unzip-5.41|docbook-modular-1.59 iso8879-1986|any|y|y|y|y
docbook-modular-1.59|textproc/docbook-modular||modular DSSSL stylesheets for the DocBook DTD|textproc/docbook-modular/pkg/DESCR|Anil Madhavapeddy <[email protected]>|textproc print|unzip-5.41||any|y|y|y|y
expat-1.2|textproc/expat||XML 1.0 parser written in C|textproc/expat/pkg/DESCR|Dug Song <[email protected]>|textproc|unzip-5.41||any|y|y|y|y
glimpse-4.1|textproc/glimpse||text search engine|textproc/glimpse/pkg/DESCR|Tobias Weingartner <[email protected]>|textproc databases|||any|n|y|n|y
hevea-1.05|textproc/hevea||LaTeX to html translator|textproc/hevea/pkg/DESCR|Marc Espie <[email protected]>|textproc print|gettext-0.10.35 gmake-3.79.1 tcl-8.3.2 tk-8.3.2 ocaml-3.00||any|y|y|y|y
html-4.0b|textproc/html||all W3C published SGML DTDs for HTML|textproc/html/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
info2html-1.1|textproc/info2html||translate GNU info files into HTML pages|textproc/info2html/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
idiff-1.0|textproc/idiff||powerful command-line front end to diff|textproc/idiff/pkg/DESCR|Ian Darwin <[email protected]>|textproc|||any|y|y|y|y
isearch-1.14|textproc/isearch||text search engine by CNIDR|textproc/isearch/pkg/DESCR|[email protected]|textproc databases|||any|y|y|y|y
iso12083-1993|textproc/iso12083||SGML DTDs from The Electronic Publishing SIG|textproc/iso12083/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
iso8879-1986|textproc/iso8879||character entity sets from ISO 8879:1986 (SGML)|textproc/iso8879/pkg/DESCR|Matthieu Herrb <[email protected]>|textproc|unzip-5.41||any|y|y|y|y
ispell-3.1.20|textproc/ispell||interactive spelling checker|textproc/ispell/pkg/DESCR|[email protected]|textproc|||any|y|y|y|y
ispell-french-3.1.20|textproc/ispell||ispell dictionary for French|textproc/ispell/pkg/DESCR-french|[email protected]|textproc|||any|y|y|y|y
ispell-german-3.1.20|textproc/ispell||ispell dictionary for German|textproc/ispell/pkg/DESCR-german|[email protected]|textproc|||any|y|y|y|y
latex2html-97.1|textproc/latex2html||LaTeX to HTML converter|textproc/latex2html/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc www||jpeg-6b png-1.0.8 tiff-3.5.5 netpbm-19940301 ghostscript-5.50|any|n|y|n|y
lgrind-3.64|textproc/lgrind||LaTeX vgrind(1) look-alike|textproc/lgrind/pkg/DESCR|Marc Espie <[email protected]>|textproc devel print|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5 teTeX_base-1.0.7|png-1.0.8 teTeX_texmf-1.0.2 Xaw3d-1.5 teTeX_base-1.0.7|any|y|y|y|y
libxml-2.2.10|textproc/libxml||XML parsing library|textproc/libxml/pkg/DESCR|Kevin Lo <[email protected]>|textproc|||any|y|y|y|y
linuxdoc-1.1|textproc/linuxdoc||Linuxdoc SGML DTD|textproc/linuxdoc/pkg/DESCR|Matthieu Herrb <[email protected]>|textproc||iso8879-1986|any|y|y|y|y
mgdiff-1.0|textproc/mgdiff||graphical front end to Unix diff|textproc/mgdiff/pkg/DESCR|[email protected]|textproc|lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
openjade-1.3|textproc/openjade||object-oriented SGML/XML parser toolkit and DSSSL engine|textproc/openjade/pkg/DESCR|Anil Madhavapeddy <[email protected]>|textproc|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
p5-sdf-2.001|textproc/p5-sdf||simple document format|textproc/p5-sdf/pkg/DESCR|Dug Song <[email protected]>|textproc perl5|||any|y|y|y|y
par-1.51|textproc/par||paragraph reflow for email|textproc/par/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
pilot_makedoc-0.7|textproc/pilot_makedoc||convert text into the Doc format used by PalmPilots|textproc/pilot_makedoc/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
rman-3.0.9|textproc/rman||reverse compile man pages from formatted form|textproc/rman/pkg/DESCR|[email protected]|textproc|||any|n|y|n|y
rxp-1.2|textproc/rxp||a validating namespace-aware XML parser|textproc/rxp/pkg/DESCR|Jakob Schlyter <[email protected]>|textproc|||any|y|y|y|y
sgmlformat-1.7|textproc/sgmlformat||generate groff/HTML from linuxdoc/docbook SGML documents|textproc/sgmlformat/pkg/DESCR|Matthieu Herrb <[email protected]>|textproc print||docbook-modular-1.59 iso8879-1986 docbook-4.1 linuxdoc-1.1 openjade-1.3|any|y|y|y|y
sablotron-0.44|textproc/sablotron||fast, compact and portable XSL/XSLT processor|textproc/sablotron/pkg/DESCR|Anil Madhavapeddy <[email protected]>|textproc|gettext-0.10.35 gmake-3.79.1 libtool-1.3.5||any|y|y|y|y
sp-1.2.1|textproc/sp||OO toolkit for SGML parsing and entity management|textproc/sp/pkg/DESCR|[email protected]|textproc|||any|y|y|y|y
spiff-1.0|textproc/spiff||very flexible diff-like program|textproc/spiff/pkg/DESCR|Ian Darwin <[email protected]>|textproc|||any|n|y|n|y
texi2html-1.52|textproc/texi2html||texinfo to HTML converter|textproc/texi2html/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
urlview-0.9|textproc/urlview||curses-based URL ripper|textproc/urlview/pkg/DESCR|Sebastian Stark <[email protected]>|textproc|||any|y|y|y|y
wdiff-0.5|textproc/wdiff||word differences between text files|textproc/wdiff/pkg/DESCR|Angelos D. Keromytis <[email protected]>|textproc|||any|y|y|y|y
xml2rfc|textproc/xml2rfc||convert memos written in XML to the RFC format|textproc/xml2rfc/pkg/DESCR|Jakob Schlyter <[email protected]>|textproc||tcl-8.3.2 TclXML-1.2.1 tk-8.3.2|any|y|y|y|y
xpdf-0.91|textproc/xpdf||PDF viewer for X|textproc/xpdf/pkg/DESCR|[email protected]|textproc x11|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 t1lib-1.0.1|t1lib-1.0.1|any|y|y|y|y
xpdf-0.91|textproc/xpdf||PDF viewer for X|textproc/xpdf/pkg/DESCR|[email protected]|textproc x11|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 t1lib-1.0.1|t1lib-1.0.1|any|y|y|y|y
amaya-3.2.1|www/amaya/browser||test-bed browser/authoring tool of the W3C|www/amaya/browser/pkg/DESCR|Bruno Rohee <[email protected]>|www|gettext-0.10.35 gmake-3.79.1 lesstif-0.91.8|lesstif-0.91.8|any|y|y|y|y
amaya-english-dict|www/amaya/english-dict||English dictionary for the Amaya browser/page composer|www/amaya/english-dict/pkg/DESCR|Bruno Rohee <[email protected]>|www||lesstif-0.91.8 amaya-3.2.1|any|y|y|y|y
amaya-french-dict|www/amaya/french-dict||French dictionary for the Amaya browser/page composer|www/amaya/french-dict/pkg/DESCR|Bruno Rohee <[email protected]>|www||lesstif-0.91.8 amaya-3.2.1|any|y|y|y|y
analog-4.11|www/analog||extremely fast program for analysing WWW logfiles|www/analog/pkg/DESCR|Oleg Safiullin <[email protected]>|www|||any|y|y|y|y
august-0.62b|www/august||html editor designed for the experienced web designer|www/august/pkg/DESCR|Kevin Lo <[email protected]>|www||jpeg-6b png-1.0.8 tiff-3.5.5 ghostscript-5.50 bzip2-1.0.1 jbigkit-1.2 mpeg_lib-1.3.1 netpbm-19940301 freetype-1.3 transfig-3.2.3c libxml-2.2.10 tcl-8.3.2 ImageMagick-5.2.5 weblint-1.020 tk-8.3.2|any|y|y|y|y
bk2site-1.1.5|www/bk2site||convert Netscape bookmarks into a Yahoo-like website|www/bk2site/pkg/DESCR|Dug Song <[email protected]>|www|||any|y|y|y|y
bluefish-0.4|www/bluefish||HTML editor for experienced web designers|www/bluefish/pkg/DESCR|Sean Cavanaugh <[email protected]>|www|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1 weblint-1.020|any|y|y|y|y
cgiparse-0.8e|www/cgiparse||C library to parse CGI Forms|www/cgiparse/pkg/DESCR|[email protected]|www|||any|y|y|y|y
decss-0.0.6|www/decss||strip cascading style sheets from webpages|www/decss/pkg/DESCR|Kevin Lo <[email protected]>|www|||any|y|y|y|y
http_load-09nov00|www/http_load||lightweight, single-threaded HTTP/HTTPS load tester|www/http_load/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www benchmarks|||any|y|y|y|y
hotjava-3.0|www/hotjava||Sun's Hotjava web browser|www/hotjava/pkg/DESCR|Chris Cappuccio <[email protected]>|www|freebsd_lib-2.2.8 jdk-1.1.8|freebsd_lib-2.2.8 jdk-1.1.8|any|n|n|n|n
libghttp-1.0.7|www/libghttp||GNOME http client library|www/libghttp/pkg/DESCR|Brad Smith <[email protected]>|www|||any|y|y|y|y
links-0.92|www/links||text browser, displays while downloading|www/links/pkg/DESCR|Marc Espie <[email protected]>|www|||any|y|y|y|y
mhonarc-2.4.7|www/mhonarc||highly customizable e-mail to HTML converter|www/mhonarc/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www mail|p5-Digest-MD5-2.12|p5-Digest-MD5-2.12|any|y|y|y|y
mod_perl-1.24|www/mod_perl||module that embeds a Perl interpreter into Apache|www/mod_perl/pkg/DESCR|Pavel Korovin <[email protected]>|www perl5|||i386 m68k sparc|y|y|y|y
mozilla-17|www/mozilla||free version of the Netscape browser|www/mozilla/pkg/DESCR|[email protected]|www|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 bzip2-1.0.1 ORBit-0.5.3 autoconf-2.13 lesstif-0.91.8|gettext-0.10.35 glib-1.2.8 ORBit-0.5.3 lesstif-0.91.8|any|?|?|?|?
navigator-4.61p1|www/netscape/navigator-old||Netscape Navigator WWW browser with 128-bit encryption|www/netscape/navigator-old/pkg/DESCR|Brad Smith <[email protected]>|www|||sparc|n|n|n|n
communicator-4.61p1|www/netscape/communicator-old||Netscape Communicator WWW browser with 128-bit encryption|www/netscape/communicator-old/pkg/DESCR|Brad Smith <[email protected]>|www|||sparc|n|n|n|n
navigator-4.75p1|www/netscape/navigator||Netscape Navigator WWW browser with 128-bit encryption|www/netscape/navigator/pkg/DESCR|Brad Smith <[email protected]>|www|||i386|n|n|n|n
communicator-4.75p1|www/netscape/communicator||Netscape Communicator WWW browser with 128-bit encryption|www/netscape/communicator/pkg/DESCR|Brad Smith <[email protected]>|www|||i386|n|n|n|n
nscache-0.2p1|www/nscache||Netscape cache browser|www/nscache/pkg/DESCR|Dug Song <[email protected]>|www|gettext-0.10.35 glib-1.2.8 autoconf-2.13 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 gtk+-1.2.8|any|?|?|?|?
p5-Apache-DBI-0.87|www/p5-Apache-DBI||DBI persistent connection, authentication and authorization|www/p5-Apache-DBI/pkg/DESCR|Pavel Korovin <[email protected]>|www databases perl5||p5-DBI-1.14 mod_perl-1.24|any|y|y|y|y
p5-HTML-Base-0.6|www/p5-HTML-Base||base HTML library|www/p5-HTML-Base/pkg/DESCR|[email protected]|www perl5|||any|y|y|y|y
p5-HTML-Parser-3.14|www/p5-HTML-Parser||modules to parse and extract information from HTML|www/p5-HTML-Parser/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www perl5|p5-HTML-Tagset-3.03|p5-HTML-Tagset-3.03|any|y|y|y|y
p5-HTML-Tagset-3.03|www/p5-HTML-Tagset||data tables useful for parsing HTML|www/p5-HTML-Tagset/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www perl5|||any|y|y|y|y
p5-URI-1.09|www/p5-URI||library to parse Uniform Resource Identifiers|www/p5-URI/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www perl5|p5-MIME-Base64-2.11|p5-MIME-Base64-2.11|any|y|y|y|y
p5-libwww-5.48|www/p5-libwww||library for WWW access in Perl|www/p5-libwww/pkg/DESCR|Anil Madhavapeddy <[email protected]>|www perl5|p5-HTML-Tagset-3.03 p5-MIME-Base64-2.11 p5-libnet-1.0703 p5-Crypt-SSLeay-0.17 p5-Digest-MD5-2.12 p5-HTML-Parser-3.14 p5-URI-1.09|p5-HTML-Tagset-3.03 p5-MIME-Base64-2.11 p5-libnet-1.0703 p5-Crypt-SSLeay-0.17 p5-Digest-MD5-2.12 p5-HTML-Parser-3.14 p5-URI-1.09|any|y|y|y|y
php3-3.0.18|www/php3||server-side HTML-embedded scripting language|www/php3/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|unzip-5.41 expat-1.2|expat-1.2|i386 m68k sparc mips|y|y|y|y
php3-3.0.18-mysql|www/php3,mysql||server-side HTML-embedded scripting language|www/php3/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|unzip-5.41 mysql-3.22.32 expat-1.2|mysql-3.22.32 expat-1.2|i386 m68k sparc mips|y|y|y|y
php3-3.0.18-postgresql|www/php3,postgresql||server-side HTML-embedded scripting language|www/php3/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|gettext-0.10.35 gmake-3.79.1 unzip-5.41 postgresql-7.0.2 expat-1.2|postgresql-7.0.2 expat-1.2|i386 m68k sparc mips|y|y|y|y
php4-4.0.3pl1p1|www/php4||server-side HTML-embedded scripting language|www/php4/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|||i386 m68k sparc mips|y|y|y|y
php4-4.0.3pl1p1-mysql|www/php4,mysql||server-side HTML-embedded scripting language|www/php4/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|mysql-3.22.32|mysql-3.22.32|i386 m68k sparc mips|y|y|y|y
php4-4.0.3pl1p1-postgresql|www/php4,postgresql||server-side HTML-embedded scripting language|www/php4/pkg/DESCR|Jakob Schlyter <[email protected]>|www lang|gettext-0.10.35 gmake-3.79.1 postgresql-7.0.2|postgresql-7.0.2|i386 m68k sparc mips|y|y|y|y
squid-2.3|www/squid||WWW and FTP proxy cache and accelerator|www/squid/pkg/DESCR|Brad Smith <[email protected]>|www|||any|y|y|y|y
surfraw-1.0.2|www/surfraw||command line interface to popular WWW search engines|www/surfraw/pkg/DESCR|Christian Weisgerber <[email protected]>|www|||any|y|y|y|y
thttpd-2.20b|www/thttpd||tiny/turbo/throttling HTTP server|www/thttpd/pkg/DESCR|Jakob Schlyter <[email protected]>|www|||any|y|y|y|y
tidy-4aug00|www/tidy||validate, correct, and pretty-print HTML files|www/tidy/pkg/DESCR|Bruno Rohee <[email protected]>|www|||any|y|y|y|y
transproxy-1.3|www/transproxy||transparent www proxy driver for IPFILTER|www/transproxy/pkg/DESCR|Jakob Schlyter <[email protected]>|www net|||any|y|y|y|y
w3m-0.1.10|www/w3m||text-based web browser/pager|www/w3m/pkg/DESCR|Dug Song <[email protected]>|www|||any|y|y|y|y
ja-w3m-0.1.10|www/w3m,kanji||text-based web browser/pager, japanese flavor|www/w3m/pkg/DESCR|Dug Song <[email protected]>|www japanese|||any|y|y|y|y
w3mir-1.0.9|www/w3mir||utility to mirror web pages|www/w3mir/pkg/DESCR|Jeff Bachtel <[email protected]>|www|p5-HTML-Tagset-3.03 p5-libnet-1.0703 p5-Crypt-SSLeay-0.17 p5-Digest-MD5-2.12 p5-HTML-Parser-3.14 p5-MIME-Base64-2.11 p5-URI-1.09 p5-libwww-5.48|p5-HTML-Tagset-3.03 p5-libnet-1.0703 p5-Crypt-SSLeay-0.17 p5-Digest-MD5-2.12 p5-HTML-Parser-3.14 p5-MIME-Base64-2.11 p5-URI-1.09 p5-libwww-5.48|any|y|y|y|y
webalizer-2.01.06|www/webalizer||web server log file analysis program|www/webalizer/pkg/DESCR|Dan Harnett <[email protected]>|www|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|jpeg-6b png-1.0.8 freetype-1.3 gd-1.8.3|any|y|y|y|y
weblint-1.020|www/weblint||perl lint program for html|www/weblint/pkg/DESCR|Sean Cavanaugh <[email protected]>|www|||any|y|y|y|y
wwwcount-2.5|www/wwwcount||access counter, clock and date for WWW pages|www/wwwcount/pkg/DESCR|Oleg Safiullin <[email protected]>|www|||any|y|y|y|y
wwwoffle-2.5e|www/wwwoffle||WWW OFFLine Explorer|www/wwwoffle/pkg/DESCR|[email protected]|www|||any|y|y|y|y
Xaw3d-1.5|x11/Xaw3d||3D Athena Widget set that looks like Motif|x11/Xaw3d/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
afterstep-1.8.0|x11/afterstep||Window manager, continuation of the Bowman NeXTSTEP clone|x11/afterstep/pkg/DESCR|[email protected]|x11|jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
asapm-2.9|x11/asapm||an Advanced Power Management monitor utility for X Windows|x11/asapm/pkg/DESCR|Joshua Stein <[email protected]>|x11|jpeg-6b|jpeg-6b|i386|y|y|y|y
asclock-1.0-english|x11/asclock,english||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-german|x11/asclock,german||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-portuguese|x11/asclock,portuguese||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-dutch|x11/asclock,dutch||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-norwegian|x11/asclock,norwegian||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-italian|x11/asclock,italian||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-swedish|x11/asclock,swedish||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-spanish|x11/asclock,spanish||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-hungarian|x11/asclock,hungarian||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-breton|x11/asclock,breton||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-french|x11/asclock,french||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
asclock-1.0-czech|x11/asclock,czech||Afterstep clock with some language extensions|x11/asclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
aterm-0.4.0|x11/aterm||color vt102 terminal emulator with transparency support|x11/aterm/pkg/DESCR|Brad Smith <[email protected]>|x11|jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
bclock-1.0|x11/bclock||round, analog X11 clock with bezier curve hands|x11/bclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
blackbox-0.61.0|x11/blackbox||small & pretty window manager for 8 and more bits displays|x11/blackbox/pkg/DESCR|Bruno Rohee <[email protected]>|x11|||any|y|y|y|y
blast-1.0|x11/blast||blow holes through windows|x11/blast/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
bricons-3.0|x11/bricons||quick start-up utility for applications on an X11 display|x11/bricons/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
ctwm-3.5.2|x11/ctwm||twm, plus support for multiple virtual screens, etc|x11/ctwm/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
dclock-pl4|x11/dclock||digital clock with optional military time and alarm|x11/dclock/pkg/DESCR|Dug Song <[email protected]>|x11|||any|n|y|n|y
emiclock-2.0.2|x11/emiclock||hyper-animated face analog clock for X11|x11/emiclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
enlightenment-0.16.5|x11/enlightenment||"themed" window manager|x11/enlightenment/pkg/DESCR|[email protected]|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 libaudiofile-0.1.11 imlib-1.9.8.1 esound-0.2.20 fnlib-0.5 freetype-1.3 libghttp-1.0.7|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 libaudiofile-0.1.11 imlib-1.9.8.1 esound-0.2.20 fnlib-0.5 freetype-1.3 libghttp-1.0.7|any|y|y|y|y
eterm-0.8.10|x11/eterm||color X11 terminal emulator with transparency support|x11/eterm/pkg/DESCR|Kyle Hargraves <[email protected]>|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
ja-eterm-0.8.10|x11/eterm,kanji||color japanese terminal emulator with transparency support|x11/eterm/pkg/DESCR|Kyle Hargraves <[email protected]>|x11 japanese|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
explorer-0.72|x11/explorer||file manager with same look and feel as Windows95(tm)|x11/explorer/pkg/DESCR|[email protected]|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt-1.45|qt-1.45|any|y|y|y|y
freefonts-0.10|x11/freefonts||collection of ATM fonts from the CICA archives|x11/freefonts/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
fltk-1.0.9|x11/fltk||Fast-Light Tool Kit|x11/fltk/pkg/DESCR|Matt Behrens <[email protected]>|x11|||any|y|y|y|y
flwm-1.0.0|x11/flwm||fast-light window manager|x11/flwm/pkg/DESCR|Jason Wright <[email protected]>|x11|fltk-1.0.9|fltk-1.0.9|any|y|y|y|y
fvwm95-2.0.43a|x11/fvwm95||win95-like window manager based on fvwm 2.x|x11/fvwm95/pkg/DESCR|Dan Harnett <[email protected]>|x11|gettext-0.10.35 gsm-1.0.10 gmake-3.79.1 rplay-3.3.0||any|y|y|y|y
fsv-0.9|x11/fsv||3D filesystem visualizer |x11/fsv/pkg/DESCR|Kevin Lo <[email protected]>|x11|gettext-0.10.35 glib-1.2.8 Mesa-3.2.1 gtk+-1.2.8 gtkglarea-1.2.2|gettext-0.10.35 glib-1.2.8 Mesa-3.2.1 gtk+-1.2.8 gtkglarea-1.2.2|any|y|y|y|y
gtk+-1.2.8|x11/gtk+||General Toolkit for X11 GUI|x11/gtk+/pkg/DESCR|Brad Smith <[email protected]>|x11 devel|gettext-0.10.35 glib-1.2.8|gettext-0.10.35 glib-1.2.8|any|y|y|y|y
gtkglarea-1.2.2|x11/gtkglarea||OpenGL/Mesa widget for GTK+ GUI toolkit|x11/gtkglarea/pkg/DESCR|Brad Smith <[email protected]>|x11 graphics|gettext-0.10.35 glib-1.2.8 Mesa-3.2.1 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 Mesa-3.2.1 gtk+-1.2.8|any|y|y|y|y
gtkmm-1.2.1|x11/gtkmm||C++ interface for gtk+|x11/gtkmm/pkg/DESCR|[email protected]|devel x11|gettext-0.10.35 glib-1.2.8 gmake-3.79.1 libsigc++-1.0.1 m4-1.4 gtk+-1.2.8|gettext-0.10.35 glib-1.2.8 libsigc++-1.0.1 gtk+-1.2.8|any|y|y|y|y
icewm-1.0.4|x11/icewm||small, fast window manager|x11/icewm/pkg/DESCR|Sean Cavanaugh <[email protected]>|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|n|n|n|n
kdelibs-1.1.2|x11/kde/libs||X11 libraries + a windows manager and much more|x11/kde/libs/pkg/DESCR|Brad Smith <[email protected]>|x11|bzip2-1.0.1 gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45|any|y|y|y|y
kdebase-1.1.2|x11/kde/base||X11 libraries + a windows manager and much more|x11/kde/base/pkg/DESCR|Brad Smith <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 Mesa-3.2.1 giflib-4.1.0 kdelibs-1.1.2|jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 Mesa-3.2.1 giflib-4.1.0 kdelibs-1.1.2|any|y|y|y|y
kdesupport-1.1.2|x11/kde/support||extra libs and utils for kde|x11/kde/support/pkg/DESCR|Sean Cavanaugh <[email protected]>|x11 converters|gettext-0.10.35 jpeg-6b png-1.0.8 bzip2-1.0.1 gmake-3.79.1 qt-1.45|qt-1.45|any|y|y|y|y
kdegames-1.1.2|x11/kde/games||games for KDE|x11/kde/games/pkg/DESCR|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2 kdesupport-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2 kdesupport-1.1.2|any|y|y|y|y
kabalone-1.1.2|x11/kde/games||board game for kde|x11/kde/games/pkg/DESCR-kabalone|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kasteroids-1.1.2|x11/kde/games||Asteroids clone for KDE|x11/kde/games/pkg/DESCR-kasteroids|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2 kdesupport-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2 kdesupport-1.1.2|any|y|y|y|y
kblackbox-1.1.2|x11/kde/games||graphical logic game for kde |x11/kde/games/pkg/DESCR-kblackbox|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kmahjongg-1.1.2|x11/kde/games||mahjongg game for kde|x11/kde/games/pkg/DESCR-kmahjongg|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kmines-1.1.2|x11/kde/games||minesweeper game for kde|x11/kde/games/pkg/DESCR-kmines|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
konquest-1.1.2|x11/kde/games||game of galactic conquest for kde |x11/kde/games/pkg/DESCR-konquest|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kpat-1.1.2|x11/kde/games||solitaire games for kde|x11/kde/games/pkg/DESCR-kpat|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kpoker-1.1.2|x11/kde/games||video poker for kde|x11/kde/games/pkg/DESCR-kpoker|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kreversi-1.1.2|x11/kde/games||strategy boardgame for kde|x11/kde/games/pkg/DESCR-kreversi|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
ksame-1.1.2|x11/kde/games||ball-matching game for kde|x11/kde/games/pkg/DESCR-ksame|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kshisen-1.1.2|x11/kde/games||tile matching game for kde|x11/kde/games/pkg/DESCR-kshisen|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
ksirtet-1.1.2|x11/kde/games||tetris clone for kde|x11/kde/games/pkg/DESCR-ksirtet|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
ksmiletris-1.1.2|x11/kde/games||tetris-like game for kde|x11/kde/games/pkg/DESCR-ksmiletris|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
ksnake-1.1.2|x11/kde/games||snake racing game for kde|x11/kde/games/pkg/DESCR-ksnake|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
ksokoban-1.1.2|x11/kde/games||japanese strategy game for kde |x11/kde/games/pkg/DESCR-ksokoban|Sean Cavanaugh <[email protected]>|x11 games|gettext-0.10.35 gmake-3.79.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 bzip2-1.0.1 kdelibs-1.1.2|giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 qt-1.45 kdelibs-1.1.2|any|y|y|y|y
kdelibs-2.0.1|x11/kde/libs2||X11 toolkit, libraries|x11/kde/libs2/pkg/DESCR|[email protected]|x11 x11/kde|gettext-0.10.35 bzip2-1.0.1 autoconf-2.13 gmake-3.79.1 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3|any|y|y|y|y
kdebase-2.0.1|x11/kde/base2||X11 toolkit, basic applications|x11/kde/base2/pkg/DESCR|[email protected]|x11 x11/kde|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1 lesstif-0.91.8|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1 lesstif-0.91.8|any|y|y|y|y
kdegames-2.0.1|x11/kde/games2||games for KDE|x11/kde/games2/pkg/DESCR|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kabalone-2.0.1|x11/kde/games2||board game for kde|x11/kde/games2/pkg/DESCR-kabalone|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kasteroids-2.0.1|x11/kde/games2||Asteroids clone for KDE|x11/kde/games2/pkg/DESCR-kasteroids|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
katomic-2.0.1|x11/kde/games2||game similar to sokoban for kde|x11/kde/games2/pkg/DESCR-katomic|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kblackbox-2.0.1|x11/kde/games2||graphical logic game for kde |x11/kde/games2/pkg/DESCR-kblackbox|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kfouleggs-2.0.1|x11/kde/games2||PuyoPuyo clone for kde|x11/kde/games2/pkg/DESCR-kfouleggs|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kjumpingcube-2.0.1|x11/kde/games2||tactical board game for kde|x11/kde/games2/pkg/DESCR-kjumpingcube|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kmahjongg-2.0.1|x11/kde/games2||mahjongg game for kde|x11/kde/games2/pkg/DESCR-kmahjongg|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kmines-2.0.1|x11/kde/games2||minesweeper game for kde|x11/kde/games2/pkg/DESCR-kmines|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
konquest-2.0.1|x11/kde/games2||game of galactic conquest for kde |x11/kde/games2/pkg/DESCR-konquest|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kpat-2.0.1|x11/kde/games2||solitaire games for kde|x11/kde/games2/pkg/DESCR-kpat|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kpoker-2.0.1|x11/kde/games2||video poker for kde|x11/kde/games2/pkg/DESCR-kpoker|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kreversi-2.0.1|x11/kde/games2||strategy boardgame for kde|x11/kde/games2/pkg/DESCR-kreversi|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ksame-2.0.1|x11/kde/games2||ball-matching game for kde|x11/kde/games2/pkg/DESCR-ksame|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kshisen-2.0.1|x11/kde/games2||tile matching game for kde|x11/kde/games2/pkg/DESCR-kshisen|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ksirtet-2.0.1|x11/kde/games2||tetris clone for kde|x11/kde/games2/pkg/DESCR-ksirtet|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ksmiletris-2.0.1|x11/kde/games2||tetris-like game for kde|x11/kde/games2/pkg/DESCR-ksmiletris|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ksnake-2.0.1|x11/kde/games2||snake racing game for kde|x11/kde/games2/pkg/DESCR-ksnake|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ksokoban-2.0.1|x11/kde/games2||japanese strategy game for kde |x11/kde/games2/pkg/DESCR-ksokoban|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kspaceduel-2.0.1|x11/kde/games2||space arcade game for kde|x11/kde/games2/pkg/DESCR-kspaceduel|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ktron-2.0.1|x11/kde/games2||classic tron game, for kde|x11/kde/games2/pkg/DESCR-ktron|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
ktuberling-2.0.1|x11/kde/games2||virtual potato-head for kde|x11/kde/games2/pkg/DESCR-ktuberling|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
lskat-2.0.1|x11/kde/games2||card game for two players, based on Skat|x11/kde/games2/pkg/DESCR-lskat|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
kdetoys-2.0.1|x11/kde/toys2||some useless kde applications|x11/kde/toys2/pkg/DESCR|[email protected]|x11 x11/kde games|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
koffice-2.0.1|x11/kde/office2||office applications for kde|x11/kde/office2/pkg/DESCR|[email protected]|x11 x11/kde productivity|gettext-0.10.35 gmake-3.79.1 autoconf-2.13 libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 bzip2-1.0.1 kdelibs-2.0.1|libaudiofile-0.1.11 jpeg-6b png-1.0.8 tiff-3.5.5 qt2-2.3 kdelibs-2.0.1|any|y|y|y|y
lesstif-0.91.8|x11/lesstif||API compatible clone of the Motif toolkit|x11/lesstif/pkg/DESCR|Brad Smith <[email protected]>|x11|||any|y|y|y|y
lupe-0.07|x11/lupe||real-time magnifying glass for X11|x11/lupe/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
mouseclock-1.0|x11/mouseclock||display the current time using the X11 root cursor|x11/mouseclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
mxconns-3.1.4|x11/mxconns||interactive X11 proxy with selective X request replacement|x11/mxconns/pkg/DESCR|David Terrell <[email protected]>|x11 security|lesstif-0.91.8|lesstif-0.91.8|any|n|y|n|y
olvwm-4.2|x11/olvwm||OpenLook Virtual Window manager|x11/olvwm/pkg/DESCR|Ian Darwin <[email protected]>|x11|xview-config-3.2.1 xview-lib-3.2.1|xview-lib-3.2.1|any|y|y|y|y
openmotif-2.1.30|x11/openmotif||Motif toolkit|x11/openmotif/pkg/DESCR|Sungman Cho <[email protected]>|x11|||any|n|y|n|y
piewm-1.0|x11/piewm||tvtwm with pie (circular) menus|x11/piewm/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
qlwm-1.7|x11/qlwm||qt-based window manager|x11/qlwm/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt2-2.3|jpeg-6b png-1.0.8 qt2-2.3|any|y|y|y|y
qt-1.45|x11/qt||C++ X11 GUI toolkit|x11/qt/pkg/DESCR|Brad Smith <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8||any|n|n|n|n
qt-examples-1.45|x11/qt||examples and tutorial for qt|x11/qt/pkg/DESCR-examples|Brad Smith <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8||any|n|n|n|n
qt-html-1.45|x11/qt||off-line html documentation for qt|x11/qt/pkg/DESCR-html|Brad Smith <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8||any|n|n|n|n
qt2-2.3|x11/qt2||C++ X11 GUI toolkit|x11/qt2/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
qt2-examples-2.3|x11/qt2||examples and tutorial for qt2|x11/qt2/pkg/DESCR-examples|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8|jpeg-6b png-1.0.8|any|y|y|y|y
qt2-html-2.3|x11/qt2||off-line html documentation for qt2|x11/qt2/pkg/DESCR-html|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
qt2-2.3-gl|x11/qt2,gl||C++ X11 GUI toolkit|x11/qt2/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 Mesa-3.2.1 jpeg-6b png-1.0.8|Mesa-3.2.1 jpeg-6b png-1.0.8|any|y|y|y|y
qt2-examples-2.3-gl|x11/qt2,gl||examples and tutorial for qt2|x11/qt2/pkg/DESCR-examples|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 Mesa-3.2.1 jpeg-6b png-1.0.8|Mesa-3.2.1 jpeg-6b png-1.0.8|any|y|y|y|y
qt2-html-2.3|x11/qt2,gl||off-line html documentation for qt2|x11/qt2/pkg/DESCR-html|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1||any|y|y|y|y
qvwm-1.1.8|x11/qvwm||Windows 95/98/NT like window manager |x11/qvwm/pkg/DESCR|Dan Harnett <[email protected]>|x11|||any|y|y|y|y
qvwm-1.1.8-esound|x11/qvwm,esound||Windows 95/98/NT like window manager |x11/qvwm/pkg/DESCR|Dan Harnett <[email protected]>|x11|libaudiofile-0.1.11 esound-0.2.20|libaudiofile-0.1.11 esound-0.2.20|any|y|y|y|y
qvwm-1.1.8-esound-imlib|x11/qvwm,esound,imlib||Windows 95/98/NT like window manager |x11/qvwm/pkg/DESCR|Dan Harnett <[email protected]>|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 libaudiofile-0.1.11 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 esound-0.2.20 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 libaudiofile-0.1.11 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 esound-0.2.20 imlib-1.9.8.1|any|y|y|y|y
qvwm-1.1.8-imlib|x11/qvwm,imlib||Windows 95/98/NT like window manager |x11/qvwm/pkg/DESCR|Dan Harnett <[email protected]>|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|any|y|y|y|y
rclock-2.6.1|x11/rclock||analog clock for X11 w/appoint. reminder and mail notif|x11/rclock/pkg/DESCR|Angelos D. Keromytis <[email protected]>|x11|||any|y|y|y|y
root-tail-0.0.9|x11/root-tail||tails a given file anywhere on your X11 root window|x11/root-tail/pkg/DESCR|Cameron Lerch <[email protected]>|x11|||any|y|y|y|y
rxvt-2.7.3|x11/rxvt||color, low memory usage, xterm replacement|x11/rxvt/pkg/DESCR|Jason Ish <[email protected]>|x11|||any|y|y|y|y
sliderule-1.0|x11/sliderule||the part of X11R3's xcalc featuring a slide rule|x11/sliderule/pkg/DESCR|[email protected]|x11|||any|n|y|n|y
swisswatch-0.06|x11/swisswatch||Swiss railway clock emulation|x11/swisswatch/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
tk-8.0.5|x11/tk/8.0||graphical toolkit for Tcl|x11/tk/8.0/pkg/DESCR|Niklas Hallqvist <[email protected]>|x11 tk80|tcl-8.0.5|tcl-8.0.5|any|y|y|y|y
tk-8.3.2|x11/tk/8.3||Graphical toolkit for TCL|x11/tk/8.3/pkg/DESCR|Kevin Lo <[email protected]>|x11 tk83|tcl-8.3.2|tcl-8.3.2|any|y|y|y|y
Tktable-2.6|x11/tktable||tk extension|x11/tktable/pkg/DESCR|Kevin Lo <[email protected]>|x11|gettext-0.10.35 tcl-8.3.2 gmake-3.79.1 tk-8.3.2||any|y|y|y|y
tvtwm-pl11|x11/tvtwm||twm with a virtual desktop|x11/tvtwm/pkg/DESCR|Dug Song <[email protected]>|x11|||any|y|y|y|y
viewfax-2.3|x11/viewfax||display files containing g3 and/or g4 coded fax pages|x11/viewfax/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
windowmaker-0.62.1|x11/windowmaker||windowmanager that emulates NEXTSTEP(tm)|x11/windowmaker/pkg/DESCR|Jason Ish <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 libproplist-0.10.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5|libproplist-0.10.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5|any|y|y|y|y
wmx-6pre6|x11/wmx||window manager|x11/wmx/pkg/DESCR|Jakob Schlyter <[email protected]>|x11|||any|y|y|y|y
wterm-6.2.6|x11/wterm||color vt102 terminal emulator with transparency support|x11/wterm/pkg/DESCR|Brad Smith <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 libproplist-0.10.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 windowmaker-0.62.1|libproplist-0.10.1 giflib-4.1.0 jpeg-6b png-1.0.8 tiff-3.5.5 windowmaker-0.62.1|any|y|y|y|y
x2vnc-1.0|x11/x2vnc||one keyboard and/or mouse, multiple X and VNC displays|x11/x2vnc/pkg/DESCR|Dug Song <[email protected]>|x11|||any|y|y|y|y
x2x-1.27|x11/x2x||one keyboard and/or mouse, multiple X displays|x11/x2x/pkg/DESCR|Todd T. Fries <[email protected]>|x11|||any|y|y|y|y
xaniroc-1.02|x11/xaniroc||animate your root-cursor|x11/xaniroc/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xantfarm-1.16|x11/xantfarm||ant hill simulation on X11 root window|x11/xantfarm/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xautolock-pl11|x11/xautolock||fire up programs in case of user inactivity under X|/dev/null|Thomas Graichen <[email protected]>|x11|||any|?|?|?|?
xcb-2.3|x11/xcb||tool for managing X11 cut-buffers|x11/xcb/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xco-1.3|x11/xco||display X11 color names and colors|x11/xco/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xcoloredit-1.2|x11/xcoloredit||find color values by graphical color mixing|x11/xcoloredit/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xcolors-1.3|x11/xcolors||display all (ok, most of) the colors in the universe|x11/xcolors/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xdaliclock-2.11|x11/xdaliclock||rather neat animated clock|x11/xdaliclock/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xdtm-2.5.8|x11/xdtm||Desktop Manager: a graphical shell for X11|x11/xdtm/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xdu-3.0|x11/xdu||graphic disk usage viewer|x11/xdu/pkg/DESCR|Jakob Schlyter <[email protected]>|x11|||any|y|y|y|y
xfce-3.6.3|x11/xfce||CDE like desktop with GTK|x11/xfce/pkg/DESCR|Kevin Lo <[email protected]>|x11|gettext-0.10.35 jpeg-6b glib-1.2.8 gmake-3.79.1 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 imlib-1.9.8.1|jpeg-6b gettext-0.10.35 glib-1.2.8 giflib-4.1.0 png-1.0.8 tiff-3.5.5 gtk+-1.2.8 sox-12.17 imlib-1.9.8.1|any|y|y|y|y
xfed-1.0|x11/xfed||X11 fonts (.bdf files) editor|x11/xfed/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xfedor-1.0|x11/xfedor||.bdf, .xbm, .xpm mouse cursor editor|x11/xfedor/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xfishtank-2.2|x11/xfishtank||fish swim in the background of your screen|x11/xfishtank/pkg/DESCR|[email protected]|x11|||any|n|n|n|y
xfm-1.4.2|x11/xfm||X11 File Manager|x11/xfm/pkg/DESCR|[email protected]|x11|Xaw3d-1.5|Xaw3d-1.5|any|y|y|y|y
xforms-0.88|x11/xforms||GUI toolkit for X11|x11/xforms/pkg/DESCR|[email protected]|x11|||i386 sparc m68k hp300|y|y|y|y
xfstt-1.1|x11/xfstt||A TrueType font server for X11|x11/xfstt/pkg/DESCR|Jason Ish <[email protected]>|x11|||any|y|y|y|y
xgrab-2.41|x11/xgrab||X11 image grabber|x11/xgrab/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xglobe-0.5p1|x11/xglobe||display the Earth on X11|x11/xglobe/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt-1.45|qt-1.45|any|y|y|y|y
xglobe-0.5p1-no_map-gfx|x11/xglobe,no_map,gfx||display the Earth on X11|x11/xglobe/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt-1.45|jpeg-6b png-1.0.8 qt-1.45|any|y|y|y|y
xglobe-0.5p1-qt2|x11/xglobe,qt2||display the Earth on X11|x11/xglobe/pkg/DESCR|Marc Espie <[email protected]>|x11|gettext-0.10.35 gmake-3.79.1 jpeg-6b png-1.0.8 qt2-2.3|jpeg-6b png-1.0.8 qt2-2.3|any|y|y|y|y
xkeycaps-2.46|x11/xkeycaps||keymap editor for the X window system|x11/xkeycaps/pkg/DESCR|Hans Insulander <[email protected]>|x11 sysutils|||any|y|y|y|y
xloadimage-4.1|x11/xloadimage||graphics file viewer for X11|x11/xloadimage/pkg/DESCR|Christian Weisgerber <[email protected]>|x11 graphics|jpeg-6b tiff-3.5.5|jpeg-6b tiff-3.5.5|any|y|y|y|y
xlockmore-4.08.2|x11/xlockmore||XLock session locker/screen saver with lots of savers|/dev/null|Todd T. Fries <[email protected]>|x11|||any|y|y|y|y
xlogout-1.1|x11/xlogout||simple logout button|x11/xlogout/pkg/DESCR|Christian Weisgerber <[email protected]>|x11|||any|y|y|y|y
xmascot-2.5p2|x11/xmascot||moving mascot on your X11 screen|x11/xmascot/pkg/DESCR|[email protected]|x11|||any|n|y|n|y
xmbdfed-4.4|x11/xmbdfed||Motif tool for editing X11 bitmap fonts|x11/xmbdfed/pkg/DESCR|[email protected]|x11|gettext-0.10.35 gmake-3.79.1 freetype-1.3 lesstif-0.91.8|freetype-1.3 lesstif-0.91.8|any|y|y|y|y
xmold-1.0|x11/xmold||mold spreading over your X11 screen|x11/xmold/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xpostit-3.3.1|x11/xpostit||PostIt (R) messages onto your X11 screen|x11/xpostit/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
XPostitPlus-2.3|x11/xpostitPlus||PostIt (R) messages onto your X11 screen|x11/xpostitPlus/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xprompt-1.4|x11/xprompt||display a dialog box and prompt user for text|x11/xprompt/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xsnow-1.40|x11/xsnow||snowy and Santa-y desktop|x11/xsnow/pkg/DESCR|[email protected]|x11|||any|n|y|n|y
xtacy-1.14|x11/xtacy||X11 trippy color-cycling toy|x11/xtacy/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xtattr-1.0|x11/xtattr||changing xterm attributes|x11/xtattr/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xterm-149|x11/xterm||a newer version of xterm|x11/xterm/pkg/DESCR|Christian Weisgerber <[email protected]>|x11|||any|y|y|y|y
xtestpicture-1.1|x11/xtestpicture||full-screen image to adjust your monitor|x11/xtestpicture/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xtoolwait-1.1|x11/xtoolwait||tool startup utility for X11|x11/xtoolwait/pkg/DESCR|[email protected]|x11|||any|y|y|y|y
xtraceroute-0.8.14|x11/xtraceroute||graphical version of traceroute|x11/xtraceroute/pkg/DESCR|Brad Smith <[email protected]>|net x11|gettext-0.10.35 glib-1.2.8 jpeg-6b Mesa-3.2.1 gtk+-1.2.8 tiff-3.5.5 gtkglarea-1.2.2|gettext-0.10.35 glib-1.2.8 jpeg-6b Mesa-3.2.1 gtk+-1.2.8 tiff-3.5.5 gtkglarea-1.2.2|any|y|y|y|y
xview-config-3.2.1|x11/xview/config||OpenLook Toolkit config files|x11/xview/config/pkg/DESCR|[email protected]|x11|||any|y|y|y|y