-
Notifications
You must be signed in to change notification settings - Fork 1
/
INDEX
1768 lines (1768 loc) · 328 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|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|y|n|y
bzip-0.21|archivers/bzip||block-sorting file compressor, encumbered|archivers/bzip/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|y|n|y
bzip2-1.0.2|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|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|y|y|y|y
gcpio-2.4.2|archivers/gcpio||GNU copy-in/out (cpio)|archivers/gcpio/pkg/DESCR|David Lebel <[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|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|y|y|y|y
gtar-1.13.25|archivers/gtar||GNU version of the traditional tar archiver|archivers/gtar/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|any|y|y|y|y
gtar-1.13.25-static|archivers/gtar,static||GNU version of the traditional tar archiver|archivers/gtar/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|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||:devel/gmake||any|y|y|y|y
lha-1.14i|archivers/lha||archive files using LZW compression (.lzh files)|archivers/lha/pkg/DESCR|Yozo Toda <[email protected]>|archivers||||any|n|y|n|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::archivers/lzo|||any|y|y|y|y
makeself-1.5.5|archivers/makeself||script generating a self-extractible .tgz from a directory|archivers/makeself/pkg/DESCR|Reinhard J. Sammer <[email protected]>|archivers misc||||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||interface to lzo compression library|archivers/p5-Compress-LZO/pkg/DESCR|Dan Harnett <[email protected]>|archivers perl5|lzo.1::archivers/lzo|||any|y|y|y|y
p5-Compress-Zlib-1.16|archivers/p5-Compress-Zlib||perl interface to the zlib compression library|archivers/p5-Compress-Zlib/pkg/DESCR|Anil Madhavapeddy <[email protected]>|archivers perl5||||any|y|y|y|y
rar-2.02|archivers/rar||RAR archiver (binary port)|archivers/rar/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||i386 sparc|n|n|n|y
star-1.3|archivers/star||unique standard tape archiver with many enhancements|archivers/star/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers sysutils||:devel/gmake||any|y|y|y|y
star-1.3-static|archivers/star,static||unique standard tape archiver with many enhancements|archivers/star/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers sysutils||:devel/gmake||any|y|y|y|y
unace-1.2b|archivers/unace||extract, view & test ACE archives|archivers/unace/pkg/DESCR|Brad Smith <[email protected]>|archivers||||any|y|y|y|y
unarj-2.43|archivers/unarj||extract files from ARJ archives|archivers/unarj/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|y|n|y
unrar-2.50|archivers/unrar||extract, list & test RAR archives|archivers/unrar/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|y
unzip-5.42|archivers/unzip||extract, list & test files in a ZIP archive|archivers/unzip/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|y|y|y|y
zip-2.3|archivers/zip||create/update ZIP files compatible with PKZip(tm)|archivers/zip/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||unzip-*:archivers/unzip||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
kstars-0.8.5|astro/kstars||desktop planetarium|astro/kstars/pkg/DESCR|Kevin Lo <[email protected]>|astro|kdecore.3,DCOP,kio,kfile,kdeui,kdesu,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/gmake :x11/qt2-designer zsh-*:shells/zsh/stable||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
wmglobe-1.3|astro/wmglobe||wm-dockapp; displays the earth on an icon|astro/wmglobe/pkg/DESCR|Peter Stromberg <[email protected]>|astro x11 x11/windowmaker|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff ungif.5::graphics/libungif wraster.4::x11/windowmaker|||any|y|y|y|y
wmmoonclock-1.27|astro/wmmoonclock||wm-dockapp; shows the moon phase|astro/wmmoonclock/pkg/DESCR|Peter Stromberg <[email protected]>|astro x11 x11/windowmaker||||any|y|y|y|y
wmspaceweather-1.04|astro/wmspaceweather||wm-dockapp; space weather monitor|astro/wmspaceweather/pkg/DESCR|Peter Stromberg <[email protected]>|astro x11 x11/windowmaker|||wget-*:net/wget|any|y|y|y|y
wmsun-1.03|astro/wmsun||wm-dockapp; shows sunrise/sunset times|astro/wmsun/pkg/DESCR|Peter Stromberg <[email protected]>|astro x11 x11/windowmaker||||any|y|y|y|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|The OpenBSD ports mailing-list <[email protected]>|astro|Xm.2::x11/openmotif|||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|The OpenBSD ports mailing-list <[email protected]>|astro x11||||any|n|y|n|y
xworld-2.0|astro/xworld||earth as seen from the direction of the sun|astro/xworld/pkg/DESCR|Vladimir Kotal <[email protected]>|astro x11||||any|y|y|y|y
abcde-2.0.3|audio/abcde||command-line utility to rip and encode audio cds|audio/abcde/pkg/DESCR|Han Boetes <[email protected]>|audio|||cdparanoia-*:audio/cdparanoia vorbis-tools-*:audio/vorbis-tools wget-*:net/wget|any|y|y|y|y
ac3dec-0.6.1|audio/ac3dec||ac3 audio (as used on DVDs) decoding tools|audio/ac3dec/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio||||any|y|y|y|y
ascd-0.13.2|audio/ascd||cd player for Afterstep or Window Maker|audio/ascd/pkg/DESCR|Peter Stromberg <[email protected]>|audio x11 x11/windowmaker|workman.1::audio/libworkman|||any|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|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
bladeenc-0.94.2|audio/bladeenc||high-quality MP3 encoder|audio/bladeenc/pkg/DESCR|Brad Smith <[email protected]>|audio||||any|n|y|n|y
bonk-0.5|audio/bonk||lossy/lossless audio coder|audio/bonk/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
cdparanoia-3.a9.7p2|audio/cdparanoia||CDDA reading utility with extra data verification features|audio/cdparanoia/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/autoconf-new||any|y|y|y|y
disc-cover-1.3.1|audio/disc-cover||creates cover for audio cds using cddb and latex|audio/disc-cover/pkg/DESCR|Nikolay Sturm <[email protected]>|audio|||:audio/p5-Audio-CD :graphics/ImageMagick :print/teTeX/base :www/p5-libwww|any|y|y|y|y
esound-0.2.24|audio/esound||sound library for Enlightenment|audio/esound/pkg/DESCR|Brad Smith <[email protected]>|audio|audiofile::devel/libaudiofile|:devel/autoconf-new||any|y|y|y|y
flac-1.0.2|audio/flac||free lossless audio codec|audio/flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio archivers|ogg.3::audio/libogg|:devel/nasm||any|y|y|y|y
gkrellm-volume-0.8|audio/gkrellm-volume||volume control plugin for gkrellm|audio/gkrellm-volume/pkg/DESCR|Joshua Stein <[email protected]>|audio||:sysutils/gkrellm|:sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gkrellmms-0.5.5|audio/gkrellmms||gkrellm plugin to control xmms|audio/gkrellmms/pkg/DESCR|Joshua Stein <[email protected]>|audio|xmms::audio/xmms|:audio/xmms :sysutils/gkrellm|:audio/xmms :sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gkrellmss-0.2|audio/gkrellmss||GKrellM Sound Scope|audio/gkrellmss/pkg/DESCR|David Lebel <[email protected]>|audio|esd::audio/esound|:audio/esound :devel/gmake :sysutils/gkrellm|:audio/esound :sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gogo-2.26a|audio/gogo||686 class CPU optimized mp3 encoder|audio/gogo/pkg/DESCR|Bob Beck <[email protected]>|audio||:devel/gmake :devel/nasm||i386|n|y|n|y
gom-0.29.103|audio/gom||generic audio mixer|audio/gom/pkg/DESCR|Scott Robinson <[email protected]>|audio|olgx::x11/xview/lib xview::x11/xview/lib|:devel/autoconf||any|y|y|y|y
gqmpeg-0.12.1|audio/gqmpeg||mpg123 front-end with skin support|audio/gqmpeg/pkg/DESCR|Bruno Rohee <[email protected]>|audio|gdk_pixbuf.2::graphics/gdk-pixbuf iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:audio/mpg123 gettext->=0.10.38:devel/gettext|:audio/mpg123 gettext->=0.10.38:devel/gettext|any|y|y|y|y
grip-2.95p1|audio/grip||front-end to external cd audio rippers and mp3 encoders|audio/grip/pkg/DESCR|David Lebel <[email protected]>|audio|gthread.1.2::devel/glib gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||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
id3ed-1.10.3|audio/id3ed||interactive console id3 tag editor|audio/id3ed/pkg/DESCR|Nick Nauwelaerts <[email protected]>|audio||||any|y|y|y|y
id3lib-3.8.0pre2|audio/id3lib||library for manipulating ID3v1 and ID3v2 tags|audio/id3lib/pkg/DESCR|David Lebel <[email protected]>|audio||:devel/gmake||any|y|y|y|y
knapster2-0.3|audio/knapster||Napster client for KDE 2|audio/knapster/pkg/DESCR|Flinn Mueller <[email protected]>|audio|kdecore.3::x11/kde/libs2|:devel/gmake :x11/qt2-designer||any|y|y|y|y
ksmp3play-0.5.1|audio/ksmp3play||curses-based mp3 player|audio/ksmp3play/pkg/DESCR|Peter Valchev <[email protected]>|audio|SDL::devel/sdl smpeg.1.3:smpeg-*:devel/smpeg|||any|y|y|y|y
lame-3.89b|audio/lame||Lame Ain't an MP3 Encoder|audio/lame/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake :devel/libtool||any|n|y|n|y
libao-0.8.2|audio/libao||portable audio output library|audio/libao/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libao-arts-0.8.2|audio/libao,-arts||aRts module for portable audio output library|audio/libao/pkg/DESCR-arts|Christian Weisgerber <[email protected]>|audio|ao.3::audio/libao artsc.0::x11/kde/libs2|||any|y|y|y|y
libao-esd-0.8.2|audio/libao,-esd||ESounD module for portable audio output library|audio/libao/pkg/DESCR-esd|Christian Weisgerber <[email protected]>|audio|ao.3::audio/libao esd.2::audio/esound|||any|y|y|y|y
liba52-0.7.1b|audio/liba52||AC-3 decoding library|audio/liba52/pkg/DESCR|Marc Espie <[email protected]>|audio||||any|y|y|y|y
libcdaudio-0.99.6|audio/libcdaudio||multi-platform cd player development library|audio/libcdaudio/pkg/DESCR|Kevin Lo <[email protected]>|audio||||any|y|y|y|y
libmikmod-3.1.10p2|audio/libmikmod||mikmod sound library|audio/libmikmod/pkg/DESCR|Peter Valchev <[email protected]>|audio devel||||any|y|y|y|y
libmikmod-3.1.10p2-esd|audio/libmikmod,esd||mikmod sound library|audio/libmikmod/pkg/DESCR|Peter Valchev <[email protected]>|audio devel|esd.2::audio/esound|||any|y|y|y|y
libogg-1.0rc3|audio/libogg||Ogg bitstream library|audio/libogg/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libvorbis-1.0rc3|audio/libvorbis||audio compression codec library|audio/libvorbis/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ogg.3::audio/libogg|||any|y|y|y|y
libworkman-1.4|audio/libworkman||multi-platform CD-Player library|audio/libworkman/pkg/DESCR|Peter Stromberg <[email protected]>|audio||||any|y|y|y|y
lopster-0.9.9|audio/lopster||full featured GTK Napster client|audio/lopster/pkg/DESCR|Cameron Lerch <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|y
mad-0.14.2b|audio/mad||high-quality mpeg audio decoder|audio/mad/pkg/DESCR|Peter Valchev <[email protected]>|audio devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mixer.app-1.7.0|audio/mixer.app||wm-dockapp; sound mixer|audio/mixer.app/pkg/DESCR|Peter Stromberg <[email protected]>|audio x11 x11/windowmaker||||any|y|y|y|y
mp3cddb-0.1|audio/mp3cddb||embedding CDDB information in MP3s|audio/mp3cddb/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/mp3info :audio/p5-MP3-Info :audio/p5-cddb|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||:devel/gmake||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|The OpenBSD ports mailing-list <[email protected]>|audio||||any|n|y|n|y
mpg123-0.59r-esd|audio/mpg123,esd||mpeg audio 1/2 layer 1, 2 and 3 player|audio/mpg123/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|esd.2::audio/esound|||any|n|y|n|y
mpg321-0.2.3|audio/mpg321||free clone of mpg123, a command-line mp3 player|audio/mpg321/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ao.2::audio/libao mad.0::audio/mad|||any|y|y|y|y
nap-1.5.0|audio/nap||gnu curses-based napster client|audio/nap/pkg/DESCR|Peter Valchev <[email protected]>|audio||||any|y|y|y|y
nomadio-0.4|audio/nomadio||Creative Labs NOMAD II MG IO|audio/nomadio/pkg/DESCR|Noma Dio <[email protected]>|audio||||i386|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.42|audio/opennap||opensource Napster(tm) server|audio/opennap/pkg/DESCR|Brad Smith <[email protected]>|audio net||:devel/gmake||any|y|y|y|y
p5-Audio-CD-0.04|audio/p5-Audio-CD||interface to libcdaudio|audio/p5-Audio-CD/pkg/DESCR|Kevin Lo <[email protected]>|audio perl5|cdaudio.1::audio/libcdaudio|||any|y|y|y|y
p5-CDDB_get-1.66|audio/p5-CDDB_get||perl interface to query for cddb-information|audio/p5-CDDB_get/pkg/DESCR|Felix Kronlage <[email protected]>|audio perl5||||any|y|y|y|y
p5-MP3-ID3v1Tag-1.11|audio/p5-MP3-ID3v1Tag||edit id3v1 tags from an audio mpeg layer 3|audio/p5-MP3-ID3v1Tag/pkg/DESCR|Kevin Lo <[email protected]>|audio perl5||||any|y|y|y|y
p5-MP3-Info-0.91|audio/p5-MP3-Info||Perl5 module for reading MPEG1-Layer3 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
p5-libvorbis-0.03.1|audio/p5-libvorbis||Perl extension for Ogg Vorbis streams|audio/p5-libvorbis/pkg/DESCR|Nikolay Sturm <[email protected]>|audio perl5|vorbis.1,vorbisenc.1,vorbisfile.2::audio/libvorbis|||any|y|y|y|y
rio500-0.7|audio/rio500||Diamond Rio 500 utilities|audio/rio500/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gtk.1.2::x11/gtk+|:devel/gmake||i386|y|y|y|y
rplay-3.3.2|audio/rplay||network audio player|audio/rplay/pkg/DESCR|Kevin Lo <[email protected]>|audio|gsm.1.0::audio/gsm|||any|y|y|y|y
rsynth-2.0|audio/rsynth||speech synthesizer|audio/rsynth/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|gdbm.::databases/gdbm|:devel/autoconf-new||any|y|y|y|y
shorten-3.4|audio/shorten||fast compression for waveform files|audio/shorten/pkg/DESCR|Christian Weisgerber <[email protected]>|audio archivers||||any|n|y|n|y
sox-12.17.3|audio/sox||SOund eXchange - universal sound sample translator|audio/sox/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/autoconf-new||any|y|y|y|y
soundtracker-0.6.4-sun|audio/soundtracker,sun||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile gtk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1::devel/gettext|:devel/autoconf :devel/gmake||any|y|y|y|y
soundtracker-0.6.4-gnome-sun|audio/soundtracker,gnome,sun||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile gnome.36,gnomesupport.0,gnomeui.46,art_lgpl.4::x11/gnome/libs gtk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1::devel/gettext|:devel/autoconf :devel/gmake||any|y|y|y|y
soundtracker-0.6.4-esd|audio/soundtracker,esd||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile gtk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1::devel/gettext|:devel/autoconf :devel/gmake||any|y|y|y|y
streamripper-1.0.5|audio/streamripper||rip shoutcast streams to local mp3s|audio/streamripper/pkg/DESCR|Mark Grimes <[email protected]>|audio||||any|y|y|y|y
teknap-1.3g|audio/teknap||console napster client|audio/teknap/pkg/DESCR|Jason Ish <[email protected]>|audio||||any|y|y|y|y
tempest-1.0.5|audio/tempest||sends AM radio signals using a monitor|audio/tempest/pkg/DESCR|Sebastian Stark <[email protected]>|audio|SDL::devel/sdl||mad-*:audio/mad sox-*:audio/sox|any|y|y|y|y
timidity-0.2i-motif|audio/timidity,motif||MIDI to WAV renderer and player|audio/timidity/pkg/DESCR|[email protected]|audio|Xm.2::x11/openmotif|||any|n|n|n|n
tosha-0.6|audio/tosha||read CD digital audio data through the SCSI bus|audio/tosha/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
tracker-5.3|audio/tracker||MOD player|audio/tracker/pkg/DESCR|Marc Espie <[email protected]>|audio||||any|y|y|y|y
vorbis-tools-1.0rc3|audio/vorbis-tools||play, encode, and manage Ogg Vorbis files|audio/vorbis-tools/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ao.3::audio/libao curl.2::net/curl iconv.2::converters/libiconv vorbis.1,vorbisenc.1,vorbisfile.2::audio/libvorbis|||any|y|y|y|y
waveplay-20001210|audio/waveplay||simple wav audio player|audio/waveplay/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||i386|y|y|y|y
wmix-3.0|audio/wmix||wm-dockapp; audio mixer|audio/wmix/pkg/DESCR|Han Boetes <[email protected]>|audio x11 x11/windowmaker||||any|y|y|y|y
wmmixer-1.0b1|audio/wmmixer||wm-dockapp; audio mixer|audio/wmmixer/pkg/DESCR|Peter Stromberg <[email protected]>|audio x11 x11/windowmaker||||any|y|y|y|y
wmmp3-0.12|audio/wmmp3||wm-dockapp; front end for mpg123|audio/wmmp3/pkg/DESCR|Peter Stromberg <[email protected]>|audio x11 x11/windowmaker|||mpg123-*:audio/mpg123|any|y|y|y|y
wmtune-1.1c|audio/wmtune||premier dockable radio tuner|audio/wmtune/pkg/DESCR|Vladimir Popov <[email protected]>|audio x11 x11/windowmaker||||any|y|y|y|y
wmtune-1.1c-zoltrix|audio/wmtune,zoltrix||premier dockable radio tuner|audio/wmtune/pkg/DESCR|Vladimir Popov <[email protected]>|audio x11 x11/windowmaker||||i386|y|y|y|y
workman-1.3a|audio/workman||OpenLook-based CD player|audio/workman/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|xview.3.2,olgx.3.2::x11/xview/lib|:x11/xview/config||any|y|y|y|y
wsoundprefs-1.1.1|audio/wsoundprefs||preferences program for wsoundserver|audio/wsoundprefs/pkg/DESCR|Peter Stromberg <[email protected]>|audio|PropList.2::devel/libproplist audiofile::devel/libaudiofile iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext wraster.4::x11/windowmaker wsound::audio/wsoundserver|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext wsoundserver-*:audio/wsoundserver|any|y|y|y|y
wsoundserver-0.4.0|audio/wsoundserver||sound server for Window Maker|audio/wsoundserver/pkg/DESCR|Peter Stromberg <[email protected]>|audio|PropList.2::devel/libproplist audiofile::devel/libaudiofile dockapp::devel/libdockapp wraster.4::x11/windowmaker||windowmaker-*:x11/windowmaker|any|y|y|y|y
wsoundserver-0.4.0-esd|audio/wsoundserver,esd||sound server for Window Maker|audio/wsoundserver/pkg/DESCR|Peter Stromberg <[email protected]>|audio|PropList.2::devel/libproplist audiofile::devel/libaudiofile dockapp::devel/libdockapp esd::audio/esound wraster.4::x11/windowmaker||windowmaker-*:x11/windowmaker|any|y|y|y|y
xcd-1.6|audio/xcd||Tcl/Tk CD player|audio/xcd/pkg/DESCR|Angelos D. Keromytis <[email protected]>|audio|||:x11/tk/8.3|any|y|y|y|y
xcdplayer-2.2|audio/xcdplayer||CD player for X11|audio/xcdplayer/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
xhippo-3.2|audio/xhippo||generic playlist manager for UNIX|audio/xhippo/pkg/DESCR|Kevin Lo <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmcd-2.6p1|audio/xmcd||Motif CD player|audio/xmcd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|Xm.2::x11/openmotif|||any|y|y|y|y
xmix-2.1|audio/xmix||X11-based audio mixer|audio/xmix/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
xmmix-1.2.2|audio/xmmix||Motif-based audio mixer|audio/xmmix/pkg/DESCR|Dan Weeks <[email protected]>|audio|Xm.2::x11/openmotif|||any|y|y|y|y
xmms-1.2.7|audio/xmms||Multimedia player for the X Window System|audio/xmms/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+ xml.9::textproc/libxml1|:devel/autoconf :devel/gmake :devel/libtool|unzip-*:archivers/unzip|any|y|y|y|y
xmms-gnome-1.2.7|audio/xmms,-gnome||GNOME applet for XMMS|audio/xmms/pkg/DESCR-gnome|Wilbern Cobb <[email protected]>|audio|gnome.36,gnomesupport.0,gnomeui.46,art_lgpl.4::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+ panel_applet.0::x11/gnome/core xml.9::textproc/libxml1|:devel/autoconf :devel/gmake :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-esd-1.2.7|audio/xmms,-esd||Esound output plugin for XMMS|audio/xmms/pkg/DESCR-esd|Wilbern Cobb <[email protected]>|audio|esd.2::audio/esound|:devel/autoconf :devel/gmake :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-vorbis-1.2.7|audio/xmms,-vorbis||Ogg Vorbis input plugin for XMMS|audio/xmms/pkg/DESCR-vorbis|Wilbern Cobb <[email protected]>|audio|vorbis.0,vorbisfile.1::audio/libvorbis|:devel/autoconf :devel/gmake :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-mikmod-1.2.7|audio/xmms,-mikmod||Mikmod input plugin for XMMS|audio/xmms/pkg/DESCR-mikmod|Wilbern Cobb <[email protected]>|audio|mikmod.0::audio/libmikmod|:devel/autoconf :devel/gmake :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-flac-1.0.2|audio/xmms-flac||XMMS input plugin for playing FLAC files|audio/xmms-flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|FLAC.2::audio/flac xmms.2::audio/xmms|:devel/automake||!hppa m88k vax|y|y|y|y
xmms-fmradio-1.5|audio/xmms-fmradio||FM radio input plug-in for XMMS|audio/xmms-fmradio/pkg/DESCR|Vladimir Popov <[email protected]>|audio x11|xmms.2::audio/xmms|||!hppa m88k vax|y|y|y|y
xmms-shn-2.2.5|audio/xmms-shn||XMMS input plugin for playing shorten files|audio/xmms-shn/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|gthread.1.2::devel/glib xmms.2::audio/xmms|||!hppa m88k vax|y|y|y|y
xmp-1.1.5|audio/xmp||extended Module Player; many formats plus an X11 display|audio/xmp/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||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|n|n|n|n
iozone-3.83|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|The OpenBSD ports mailing-list <[email protected]>|benchmarks||||any|y|y|y|y
netperf-2.2alpha|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|The OpenBSD ports mailing-list <[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||||any|n|y|n|y
qcad-1.4.7|cad/qcad||Qt-based 2D CAD system|cad/qcad/pkg/DESCR|Jacob Meuser <[email protected]>|cad x11|lib/qt2/qt.2::x11/qt2|||any|y|y|y|y
spice-3f5|cad/spice||Simulation Program for Integrated Circuit Electronics|cad/spice/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|cad||||any|n|y|n|y
zh-fonts-arphicttf-2.11|chinese/arphicttf||chinese big5/gb truetype fonts|chinese/arphicttf/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11||:chinese/ttfm||any|y|y|y|y
zh-bg5pdf-1.0.0|chinese/bg5pdf||convert Big5 encoded files to PDF|chinese/bg5pdf/pkg/DESCR|Kevin Lo <[email protected]>|chinese print|pdf.2::print/pdflib|python-2.1*:lang/python/2.1|:chinese/taipeifonts python-2.1*:lang/python/2.1|any|y|y|y|y
zh-bg5ps-1.3.0|chinese/bg5ps||convert Big5/GB encoded files to postscript|chinese/bg5ps/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11|ttf.1::print/freetype||:chinese/arphicttf python-2.1*:lang/python/2.1|any|y|y|y|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|||:chinese/taipeifonts|any|y|y|y|y
zh-hc-3.0|chinese/hc||convert between GB and BIG-5 codes|chinese/hc/pkg/DESCR|Kevin Lo <[email protected]>|chinese||||any|y|y|y|y
zh-fonts-kc-1.05|chinese/kcfonts||extra chinese fonts|chinese/kcfonts/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11||||any|y|y|y|y
zh-lunar-2.1|chinese/lunar||convert solar calendar to lunar calendar|chinese/lunar/pkg/DESCR|Kevin Lo <[email protected]>|chinese||||any|n|y|n|y
py-zhCodecs-1.2.0|chinese/py-zhCodecs||Python Unicode codecs for Chinese charsets|chinese/py-zhCodecs/pkg/DESCR|Shell Hung <[email protected]>|chinese devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
zh-fonts-taipei-1.01|chinese/taipeifonts||extra chinese fonts|chinese/taipeifonts/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11||||any|y|y|y|y
zh-ttfm-0.9.3|chinese/ttfm||big5/gb enhanced truetype font manager|chinese/ttfm/pkg/DESCR|Kevin Lo <[email protected]>|chinese|ttf.1::print/freetype|||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|||:chinese/taipeifonts|any|y|y|y|y
bpl+-1.0|comms/bpl+||B Plus file transfer protocol|comms/bpl+/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms||||any|n|n|n|n
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.1|comms/hylafax||send/receive faxes and share modems|comms/hylafax/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|tiff::graphics/tiff|:devel/gmake|ghostscript-*:print/ghostscript/gnu|any|y|y|y|y
hylafax-4.1-a4|comms/hylafax,a4||send/receive faxes and share modems|comms/hylafax/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|tiff::graphics/tiff|:devel/gmake|ghostscript-*:print/ghostscript/gnu|any|y|y|y|y
jpilot-0.99.2|comms/jpilot||desktop organizer software for the palm pilot|comms/jpilot/pkg/DESCR|Peter Valchev <[email protected]>|comms palm|gtk.1.2,gdk.1.2:gtk+-*:x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext pisock.3:pilot-link-*:comms/pilot-link|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
kermit-8.0.201|comms/kermit||serial and network communications package|comms/kermit/pkg/DESCR|Christian Weisgerber <[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|The OpenBSD ports mailing-list <[email protected]>|comms||||any|n|y|n|y
malsync-2.0.6|comms/malsync||command line tool to synchronize Palm pilot to AvantGo|comms/malsync/pkg/DESCR|Xiao Hui LOO <[email protected]>|comms palm|pisock.3::comms/pilot-link|:devel/gmake||any|y|y|y|y
mgetty-1.1.21|comms/mgetty+sendfax||handle external logins, send and receive faxes|comms/mgetty+sendfax/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms||||any|?|?|?|?
minicom-1.83.1|comms/minicom||MS-DOS Telix-like serial communication program|comms/minicom/pkg/DESCR|Oleg Safiullin <[email protected]>|comms|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|:comms/kermit :comms/lrzsz gettext->=0.10.38:devel/gettext|any|y|y|y|y
pilot-link-0.9.5|comms/pilot-link||PalmPilot communication utilities|comms/pilot-link/pkg/DESCR|Peter Valchev <[email protected]>|comms palm|tk83::x11/tk/8.3|:devel/gmake bzip2-*:archivers/bzip2||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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|comms|||:comms/hylafax :print/gv|any|y|y|y|y
xcept-2.1.2|comms/xcept||decoder for the CEPT (Btx) protocol|comms/xcept/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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
html2wml-0.4.8|converters/html2wml||on-the-fly HTML to WML conversion|converters/html2wml/pkg/DESCR|Shell Hung <[email protected]>|converters www perl5||:devel/gmake :textproc/p5-Text-Template :textproc/p5-XML-Checker :textproc/p5-XML-LibXML :textproc/p5-XML-Parser :www/p5-libwww|:devel/gmake :textproc/p5-Text-Template :textproc/p5-XML-Checker :textproc/p5-XML-LibXML :textproc/p5-XML-Parser :www/p5-libwww|any|y|y|y|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
libdvdcss-0.0.3.ogle3|converters/libdvdcss||Descramble DVDs|converters/libdvdcss/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||:devel/gmake||any|n|n|y|y
libiconv-1.7|converters/libiconv||character set conversion library|converters/libiconv/pkg/DESCR|Brad Smith <[email protected]>|converters devel||||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-Convert-ASN1-0.15|converters/p5-Convert-ASN1||module to encode and decode ASN.1 data structures|converters/p5-Convert-ASN1/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5||||any|y|y|y|y
p5-Convert-BER-1.31|converters/p5-Convert-BER||module to encode and decode objects|converters/p5-Convert-BER/pkg/DESCR|Kevin Lo <[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-DateManip-5.40|converters/p5-DateManip||manipulate dates in perl|converters/p5-DateManip/pkg/DESCR|Marc Espie <[email protected]>|converters perl5||||any|y|y|y|y
p5-MIME-Base64-2.12|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
p5-Text-Iconv-1.2|converters/p5-Text-Iconv||interface to iconv() codeset conversion function|converters/p5-Text-Iconv/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5|iconv.2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
p5-Unicode-Map8-0.11|converters/p5-Unicode-Map8||module to implement efficient mapping tables|converters/p5-Unicode-Map8/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5||:converters/p5-Unicode-String||any|y|y|y|y
p5-Unicode-String-2.06|converters/p5-Unicode-String||modules to handle various Unicode issues|converters/p5-Unicode-String/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5||:converters/p5-MIME-Base64||any|y|y|y|y
ppmtoTbmp-1.1|converters/ppmtoTbmp||PPM to Pilot bitmap converter|converters/ppmtoTbmp/pkg/DESCR|Dorqus Maximus <[email protected]>|converters graphics|pnm,ppm,pgm,pbm::graphics/netpbm|||any|y|y|y|y
recode-3.6|converters/recode||convert files between character sets and usages|converters/recode/pkg/DESCR|Angelos D. Keromytis <[email protected]>|converters textproc|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
rpm2cpio-1.1|converters/rpm2cpio||rpm2cpio, simple perl converter|converters/rpm2cpio/pkg/DESCR|The OpenBSD ports mailing-list <[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
wv-0.6.5|converters/wv||convert various Microsoft formats into HTML/PNG|converters/wv/pkg/DESCR|Anil Madhavapeddy <[email protected]>|converters|Magick.5::graphics/ImageMagick glib.1::devel/glib iconv.2::converters/libiconv png.2::graphics/png wmf.0::graphics/libwmf|:devel/gmake|libiconv-*:converters/libiconv|any|y|y|y|y
xlhtml-0.2.9.8|converters/xlhtml||convert Excel and PowerPoint to HTML|converters/xlhtml/pkg/DESCR|Anil Madhavapeddy <[email protected]>|converters||||any|y|y|y|y
MyCC-0.8.2|databases/MyCC||GUI client for MySQL|databases/MyCC/pkg/DESCR|Peter Stromberg <[email protected]>|databases|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql lib/qt3/qt.3::x11/qt3|||any|y|y|y|y
db-3.1.17|databases/db||Berkeley DB package, revision 3|databases/db/pkg/DESCR|Heikki Korpela <[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|Heikki Korpela <[email protected]>|databases||:devel/jdk/1.1||i386|y|y|y|y
freetds-0.53|databases/freetds||project to document and implement the TDS protocol|databases/freetds/pkg/DESCR|Joshua Stein <[email protected]>|databases|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gdbm-1.8.0|databases/gdbm||GNU dbm|databases/gdbm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||||any|y|y|y|y
gnats-3.113|databases/gnats||GNU Problem Report Management System|databases/gnats/pkg/DESCR|Dug Song <[email protected]>|databases devel||||any|y|y|y|y
gq-0.5.0|databases/gq||GTK-based LDAP client|databases/gq/pkg/DESCR|Olivier Lemaire <[email protected]>|databases|gtk.1.2,gdk.1.2::x11/gtk+ ldap,lber::databases/openldap|||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||||any|y|y|y|y
mysql-client-3.23.49|databases/mysql||multithreaded SQL database (client)|databases/mysql/pkg/DESCR|Brad Smith <[email protected]>|databases||||any|y|y|y|y
mysql-server-3.23.49|databases/mysql,-server||multithreaded SQL database (server)|databases/mysql/pkg/DESCR-server|Brad Smith <[email protected]>|databases|||mysql-client-3.23.*:databases/mysql p5-DBD-Msql-Mysql-*:databases/p5-DBD-Msql-Mysql|any|y|y|y|y
mysql-tests-3.23.49|databases/mysql,-tests||multithreaded SQL database (regression test suite)|databases/mysql/pkg/DESCR-tests|Brad Smith <[email protected]>|databases||||any|y|y|y|y
mysql2pgsql-20010320|databases/mysql2pgsql||convert a MySQL dump to a PostgreSQL dump|databases/mysql2pgsql/pkg/DESCR|Pete Fritchman <[email protected]>|databases|||:databases/p5-DBI|any|y|y|y|y
mysqlgui-1.7.5|databases/mysqlgui||graphical sql client for MySQL|databases/mysqlgui/pkg/DESCR|Peter Stromberg <[email protected]>|databases|fleditor::x11/fleditor fltk::x11/fltk iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext jpeg.62::graphics/jpeg lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql sqlplus::devel/mysql++|flvw->=1.0:x11/flvw gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
openldap-client-2.0.23|databases/openldap||Open source LDAP software (client)|databases/openldap/pkg/DESCR|Jakob Schlyter <[email protected]>|databases net||||any|y|y|y|y
openldap-server-2.0.23|databases/openldap,-server||Open source LDAP software (server)|databases/openldap/pkg/DESCR-server|Jakob Schlyter <[email protected]>|databases net|||openldap-client-2.0.23:databases/openldap|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-Msql-Mysql-1.22.19|databases/p5-DBD-Msql-Mysql||MySQL drivers for the Perl DBI|databases/p5-DBD-Msql-Mysql/pkg/DESCR|Peter Stromberg <[email protected]>|databases perl5|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|any|y|y|y|y
p5-DBD-Msql-Mysql-1.22.19-dbimon|databases/p5-DBD-Msql-Mysql,dbimon||MySQL drivers for the Perl DBI|databases/p5-DBD-Msql-Mysql/pkg/DESCR|Peter Stromberg <[email protected]>|databases perl5|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI p5-Data-ShowTable->=3.3:devel/p5-Data-ShowTable p5-Term-ReadKey-*:devel/p5-Term-ReadKey p5-Term-ReadLine-Gnu-*:devel/p5-Term-ReadLine-Gnu|any|y|y|y|y
p5-DBD-Pg-1.01|databases/p5-DBD-Pg||access to PostgreSQL databases through the DBI|databases/p5-DBD-Pg/pkg/DESCR|Peter Galbavy <[email protected]>|databases perl5|pq.2::databases/postgresql|:databases/p5-DBI||any|y|y|y|y
p5-DBI-1.21|databases/p5-DBI||unified perl interface for database access|databases/p5-DBI/pkg/DESCR|Shell Hung <[email protected]>|databases perl5||||any|y|y|y|y
p5-DBIx-XHTML_Table-0.99|databases/p5-DBIx-XHTML_Table||create HTML table from sql queries|databases/p5-DBIx-XHTML_Table/pkg/DESCR|Shell Hung <[email protected]>|databases www perl5||:databases/p5-DBI||any|y|y|y|y
p5-SQL-Statement-0.1020|databases/p5-SQL-Statement||sql parsing and processing|databases/p5-SQL-Statement/pkg/DESCR|Kevin Lo <[email protected]>|databases perl5||||any|y|y|y|y
p5-Tie-DBI-0.91|databases/p5-Tie-DBI||Tie hashes to DBI relational databases|databases/p5-Tie-DBI/pkg/DESCR|Peter Galbavy <[email protected]>|databases perl5||||any|y|y|y|y
p5-ldap-0.25|databases/p5-ldap||client interface to LDAP servers|databases/p5-ldap/pkg/DESCR|Shell Hung <[email protected]>|databases perl5||:converters/p5-Convert-ASN1 :security/p5-Digest-MD5 :security/p5-IO-Socket-SSL :textproc/p5-XML-Parser :www/p5-URI|:converters/p5-Convert-ASN1 :security/p5-Digest-MD5 :security/p5-IO-Socket-SSL :textproc/p5-XML-Parser :www/p5-URI|any|y|y|y|y
p5-sybperl-2.13|databases/p5-sybperl||Sybase database access in Perl|databases/p5-sybperl/pkg/DESCR|Joshua Stein <[email protected]>|databases perl|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext tds.0,sybdb.0,ct.0::databases/freetds|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
postgresql-7.1.3|databases/postgresql||PostgreSQL RDBMS|databases/postgresql/pkg/DESCR|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases||:devel/gmake||any|y|y|y|y
postgresql-clients-7.1.3|databases/postgresql,-clients||PostgreSQL RDBMS client libraries and utilities|databases/postgresql/pkg/DESCR-clients|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases||:devel/gmake||any|y|y|y|y
postgresql-docs-7.1.3|databases/postgresql,-docs||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases||:devel/gmake||any|y|y|y|y
postgresql-7.1.3-odbc|databases/postgresql,odbc||PostgreSQL RDBMS|databases/postgresql/pkg/DESCR|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc|:devel/gmake||any|y|y|y|y
postgresql-clients-7.1.3-odbc|databases/postgresql,-clients,odbc||PostgreSQL RDBMS client libraries and utilities|databases/postgresql/pkg/DESCR-clients|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc|:devel/gmake||any|y|y|y|y
postgresql-docs-7.1.3|databases/postgresql,-docs,odbc||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc|:devel/gmake||any|y|y|y|y
postgresql-7.1.3-tcl|databases/postgresql,tcl||PostgreSQL RDBMS|databases/postgresql/pkg/DESCR|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
postgresql-clients-7.1.3-tcl|databases/postgresql,-clients,tcl||PostgreSQL RDBMS client libraries and utilities|databases/postgresql/pkg/DESCR-clients|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
postgresql-docs-7.1.3|databases/postgresql,-docs,tcl||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
postgresql-7.1.3-tcl-odbc|databases/postgresql,tcl,odbc||PostgreSQL RDBMS|databases/postgresql/pkg/DESCR|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
postgresql-clients-7.1.3-tcl-odbc|databases/postgresql,-clients,tcl,odbc||PostgreSQL RDBMS client libraries and utilities|databases/postgresql/pkg/DESCR-clients|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
postgresql-docs-7.1.3|databases/postgresql,-docs,tcl,odbc||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases|iodbc::databases/iodbc tk83::x11/tk/8.3|:devel/gmake||any|y|y|y|y
py-mysql-0.9.1|databases/py-mysql||python interface to MySQL|databases/py-mysql/pkg/DESCR|Shell Hung <[email protected]>|databases|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
py-psycopg-1.0.1|databases/py-psycopg||PostgreSQL database adapter for Python|databases/py-psycopg/pkg/DESCR|Maurice Nonnekes <[email protected]>|databases|pq.2::databases/postgresql|:devel/py-mxDateTime python-2.1*:lang/python/2.1|:devel/py-mxDateTime python-2.1*:lang/python/2.1|any|y|y|y|y
py-psycopg-1.0.1-zope|databases/py-psycopg,zope||PostgreSQL database adapter for Python|databases/py-psycopg/pkg/DESCR|Maurice Nonnekes <[email protected]>|databases|pq.2::databases/postgresql|:devel/py-mxDateTime :www/zope python-2.1*:lang/python/2.1|:devel/py-mxDateTime :www/zope python-2.1*:lang/python/2.1|any|y|y|y|y
sqsh-2.1|databases/sqsh||SQL shell|databases/sqsh/pkg/DESCR|Joshua Stein <[email protected]>|databases shells|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext tds.0,ct.0::databases/freetds|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmysql-1.9|databases/xmysql||X11 front end to the MySQL database engine|databases/xmysql/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql xforms.0::x11/xforms|||any|y|y|y|y
xmysqladmin-1.0|databases/xmysqladmin||X11 front end to the mysqladmin command|databases/xmysqladmin/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql xforms.0::x11/xforms|||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.13|devel/ORBit||high-performance CORBA ORB with support for the C language|devel/ORBit/pkg/DESCR|Brad Smith <[email protected]>|devel|glib.1.2,gmodule.1.2::devel/glib iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
asp2php-0.75.25|devel/asp2php||convert ASP code to PHP code|devel/asp2php/pkg/DESCR|Shell Hung <[email protected]>|devel www|gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
asp2php-0.75.25-no_x11|devel/asp2php,no_x11||convert ASP code to PHP code|devel/asp2php/pkg/DESCR|Shell Hung <[email protected]>|devel www||||any|y|y|y|y
astyle-1.14.1|devel/astyle||indenter and formatter of C/C++/Java source files|devel/astyle/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel||:devel/gmake unzip-*:archivers/unzip||any|y|y|y|y
atlas-0.4.3.1|devel/atlas||C++ reference implementation of the Atlas protocol|devel/atlas/pkg/DESCR|Peter Valchev <[email protected]>|devel|SDL::devel/sdl sigc.0.0:libsigc++-*:devel/libsigc++|||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
autoconf-2.52|devel/autoconf-new||automatically configure source code on many Un*x platforms|devel/autoconf-new/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
automake-1.4-p5|devel/automake||GNU Standards-compliant Makefile generator|devel/automake/pkg/DESCR|Jason Ish <[email protected]>|devel||||any|y|y|y|y
binutils-2.11.2|devel/binutils/stable||GNU development tools|devel/binutils/stable/pkg/DESCR|Federico G. Schwindt <[email protected]>|devel||:devel/autoconf :devel/automake||any|y|y|y|y
bison-1.34|devel/bison||GNU parser generator|devel/bison/pkg/DESCR|David Leonard <[email protected]>|devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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.19|devel/cook||like make(1), but more powerful and clean|devel/cook/pkg/DESCR|Gregory Steuck <[email protected]>|devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
cscope-15.3|devel/cscope||code browsing program|devel/cscope/pkg/DESCR|Matthew Kolb <[email protected]>|devel||:devel/autoconf||any|y|y|y|y
ctm-19960528|devel/ctm||directory synchronization over mail|devel/ctm/pkg/DESCR|The OpenBSD ports mailing-list <[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-2.0.0|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.3|devel/ddd||Data Display Debugger, graphical front-end for GDB, etc|devel/ddd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|Xm.2::x11/openmotif|:devel/gmake||any|y|y|y|y
dejagnu-1.3|devel/dejagnu||GNU automated testing framework|devel/dejagnu/pkg/DESCR|Niklas Hallqvist <[email protected]>|devel|tk83.1.3::x11/tk/8.3||:lang/expect|any|y|y|y|y
doc++-3.4.9|devel/doc++||documentation system for C, C++, IDL and Java|devel/doc++/pkg/DESCR|Kevin Lo <[email protected]>|devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext ghostscript-*:print/ghostscript/gnu teTeX_base-*:print/teTeX/base|any|y|y|y|y
ectags-5.0.1|devel/ectags||multilanguage implementation of ctags|devel/ectags/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
flawfinder-0.21|devel/flawfinder||c/c++ source code auditing tool|devel/flawfinder/pkg/DESCR|Jason Peel <[email protected]>|devel security|||python-2.1*:lang/python/2.1|any|y|y|y|y
gconf-1.0.7|devel/gconf||configuration database system written for GNOME|devel/gconf/pkg/DESCR|Nils Nordman <[email protected]>|devel|gnome.36::x11/gnome/libs oaf.::x11/gnome/oaf|:devel/autoconf bzip2-*:archivers/bzip2||any|y|y|y|y
gengameng-4.0|devel/gengameng||X11 game engine library|devel/gengameng/pkg/DESCR|Peter Valchev <[email protected]>|devel x11|SDL::devel/sdl SDL_image::devel/sdl-image|:devel/autoconf :devel/automake||any|y|y|y|y
gettext-0.10.40|devel/gettext||GNU gettext|devel/gettext/pkg/DESCR|Brad Smith <[email protected]>|devel|iconv.2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
indent-2.2.6|devel/gindent||GNU utility to indent C source files|devel/gindent/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
glade-0.6.4|devel/glade||free user interface builder for GTK+ and GNOME|devel/glade/pkg/DESCR|Nils Nordman <[email protected]>|devel|gtk.1.2,gdk.1.2::x11/gtk+|bzip2-*:archivers/bzip2 scrollkeeper-*:textproc/scrollkeeper|autoconf->=2.13:devel/autoconf automake->=1.4:devel/automake scrollkeeper-*:textproc/scrollkeeper|any|y|y|y|y
glade-0.6.4-gnome|devel/glade,gnome||free user interface builder for GTK+ and GNOME|devel/glade/pkg/DESCR|Nils Nordman <[email protected]>|devel|gnome.36,art_lgpl.4,gnomesupport.0,gnomeui.46::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+|bzip2-*:archivers/bzip2 scrollkeeper-*:textproc/scrollkeeper|autoconf->=2.13:devel/autoconf automake->=1.4:devel/automake scrollkeeper-*:textproc/scrollkeeper|any|y|y|y|y
glib-1.2.10|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|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gmp-3.1.1|devel/gmp||library for arbitrary precision arithmetic|devel/gmp/pkg/DESCR|Jakob Schlyter <[email protected]>|devel math||||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
gtl-1.0.0|devel/gtl||c++ graph data template library based on the stl|devel/gtl/pkg/DESCR|Peter Valchev <[email protected]>|devel||||any|n|n|n|n
guilib-1.1.0|devel/guilib||SDL C++ GUI widget library|devel/guilib/pkg/DESCR|Mark Grimes <[email protected]>|devel graphics|SDL.::devel/sdl|||any|y|y|y|y
help2man-1.24|devel/help2man||GNU help2man|devel/help2man/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
horde-2.0|devel/horde|/var/www|modular framework for web-based applications|devel/horde/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel www|||php4->=4.0.6-gettext-imap-mysql-mcrypt:www/php4,gettext,imap,mysql,mcrypt php4-pear->=4.1.0:www/php4,-pear|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|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/gmake||any|y|y|y|y
jad-1.5.8c|devel/jad||fast Java decompiler|devel/jad/pkg/DESCR|Kevin Lo <[email protected]>|devel||unzip-*:archivers/unzip||any|n|n|n|y
jakarta-ant-1.3|devel/jakarta-ant||java equivalent to make|devel/jakarta-ant/pkg/DESCR|Felix Kronlage <[email protected]>|devel|||:devel/jdk/1.2-blackdown|i386|y|y|y|y
jakarta-servletapi-3.2.4|devel/jakarta-servletapi||implementation of the JSP and Java Servlet APIs|devel/jakarta-servletapi/pkg/DESCR|Reinhard J. Sammer <[email protected]>|www devel||unzip-*:archivers/unzip|jdk-blackdown-*:devel/jdk/1.2-blackdown|any|y|y|y|y
jdk-1.1.8|devel/jdk/1.1||Java Development Kit for Java 1.1 platform|devel/jdk/1.1/pkg/DESCR|Matt Behrens <[email protected]>|devel|||freebsd_lib->=2.2.8:emulators/freebsd_lib|i386|n|n|n|n
jdk-blackdown-1.2pre2|devel/jdk/1.2-blackdown||Blackdown Java Development Kit for Java 2 platform|devel/jdk/1.2-blackdown/pkg/DESCR|Matt Behrens <[email protected]>|devel||bzip2-*:archivers/bzip2 redhat_base->=6.2:emulators/redhat/base|bzip2-*:archivers/bzip2 redhat_base->=6.2:emulators/redhat/base|i386|n|n|n|n
jdk-linux-1.3.1_02|devel/jdk/1.3-linux||Java Development Kit for Java 2 Standard Edition 1.3|devel/jdk/1.3-linux/pkg/DESCR|Christian Gruber <[email protected]>|devel java||redhat_base->=6.2:emulators/redhat/base|redhat_base->=6.2:emulators/redhat/base|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-*:archivers/unzip|:devel/jdk/1.1|i386|n|n|n|n
kdbg-1.2.2|devel/kdbg||graphical debugger for kde|devel/kdbg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|kdecore.3.::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/gmake||any|y|y|y|y
lam-6.5.1|devel/lam||great implementation of the message passing interface|devel/lam/pkg/DESCR|Todd Fries <[email protected]>|devel math net comms||||any|y|y|y|y
lclint-2.5r|devel/lclint||superseded by splint|devel/lclint/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
libaudiofile-0.2.3|devel/libaudiofile||SGI audiofile library clone|devel/libaudiofile/pkg/DESCR|Brad Smith <[email protected]>|devel audio||||any|y|y|y|y
libavl-1.4.0|devel/libavl||library for balanced binary trees|devel/libavl/pkg/DESCR|Kevin Lo <[email protected]>|devel||||any|y|y|y|y
libdockapp-0.4.0|devel/libdockapp||dockapp-making standard library for Window Maker|devel/libdockapp/pkg/DESCR|Peter Stromberg <[email protected]>|devel||||any|y|y|y|y
libdvdread-0.9.2|devel/libdvdread||accessing DVD files|devel/libdvdread/pkg/DESCR|Marc Espie <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libevent-0.3d|devel/libevent||asynchronous event library|devel/libevent/pkg/DESCR|Dug Song <[email protected]>|devel||||any|y|y|y|y
libglade-0.17|devel/libglade||library for loading GLADE interface files at runtime|devel/libglade/pkg/DESCR|Nils Nordman <[email protected]>|devel|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml.9::textproc/libxml1|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libglade-0.17-gnome|devel/libglade,gnome||library for loading GLADE interface files at runtime|devel/libglade/pkg/DESCR|Nils Nordman <[email protected]>|devel|gnome.36,art_lgpl,gnomesupport,gnomeui::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml.9::textproc/libxml1|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop-1.0.13|devel/libgtop||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Nils Nordman <[email protected]>|devel|glib.1.2::devel/glib iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop-1.0.13-gnome|devel/libgtop,gnome||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Nils Nordman <[email protected]>|devel|glib.1.2::devel/glib gnome.36,gnomesupport::x11/gnome/libs iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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||:devel/gmake||any|y|y|y|y
libsigc++-1.0.4|devel/libsigc++||callback framework for C++|devel/libsigc++/pkg/DESCR|Shell Hung <[email protected]>|devel||||any|y|y|y|y
libslang-1.4.4|devel/libslang||stack-based interpreter for terminal applications|devel/libslang/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
libtool-1.3.5p3|devel/libtool||generic shared library support script|devel/libtool/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
libusb-0.1.5|devel/libusb||usb access library|devel/libusb/pkg/DESCR|Peter Valchev <[email protected]>|devel||||any|y|y|y|y
libuta-0.3.40|devel/libuta||graphical user interface library for C++|devel/libuta/pkg/DESCR|Peter Valchev <[email protected]>|devel|SDL_mixer::devel/sdl-mixer png.2:png-*:graphics/png sigc.0.0:libsigc++-*:devel/libsigc++ smpeg.1.3:smpeg-*:devel/smpeg ttf.1.3:freetype-*:print/freetype|||any|y|y|y|y
lincvs-0.4.90|devel/lincvs||graphical CVS front-end using QT2|devel/lincvs/pkg/DESCR|Reinhard J. Sammer <[email protected]>|devel|lib/qt2/qt.2::x11/qt2|:devel/gmake :x11/qt2-designer||!sparc|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
mico-2.3.6|devel/mico||free and complete CORBA-compliant implementation|devel/mico/pkg/DESCR|Andre S. Barbosa <[email protected]>|devel||:devel/gmake||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
mysql++-1.7.9|devel/mysql++||C++ API for MySQL|devel/mysql++/pkg/DESCR|Peter Stromberg <[email protected]>|devel|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|:devel/gmake||any|y|y|y|y
mysql++-docs-1.7.9|devel/mysql++,-docs||C++ API for MySQL documentation|devel/mysql++/pkg/DESCR-docs|Peter Stromberg <[email protected]>|devel||:devel/gmake||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-Algorithm-Diff-1.11a|devel/p5-Algorithm-Diff||interface to compute differences between two objects|devel/p5-Algorithm-Diff/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-MDiff-0.94|devel/p5-Algorithm-MDiff||interface to calculate m-difference between two objects|devel/p5-Algorithm-MDiff/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-MarkovChain-0.03|devel/p5-Algorithm-MarkovChain||module to create Markov chains and output based on them|devel/p5-Algorithm-MarkovChain/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-Permute-0.04|devel/p5-Algorithm-Permute||interface to handy and fast permutation|devel/p5-Algorithm-Permute/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Attribute-Handlers-0.76|devel/p5-Attribute-Handlers||perl module to simplify package attribute handling|devel/p5-Attribute-Handlers/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||||any|y|y|y|y
p5-B-Graph-0.51|devel/p5-B-Graph||backend to diagram op trees|devel/p5-B-Graph/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-BSD-Resource-1.11|devel/p5-BSD-Resource||BSD process resource limit and priority functions|devel/p5-BSD-Resource/pkg/DESCR|Dan Weeks <[email protected]>|devel perl5||||any|y|y|y|y
p5-C-Scan-0.74|devel/p5-C-Scan||module to scan C language files|devel/p5-C-Scan/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||:devel/p5-Data-Flow||any|y|y|y|y
p5-Class-Date-1.0.10|devel/p5-Class-Date||module for easy date and time manipulation|devel/p5-Class-Date/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Loader-2.02|devel/p5-Class-Loader||load modules and create objects on demand|devel/p5-Class-Loader/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-MethodMaker-1.05|devel/p5-Class-MethodMaker||module for creating generic methods|devel/p5-Class-MethodMaker/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-IniFiles-2.27|devel/p5-Config-IniFiles||module for reading .ini-style configuration files|devel/p5-Config-IniFiles/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Curses-1.06|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.992|devel/p5-Curses-Widgets||curses(3) based terminal widgets|devel/p5-Curses-Widgets/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||:devel/p5-Curses|:devel/p5-Curses|any|y|y|y|y
p5-Data-Flow-0.05|devel/p5-Data-Flow||extension for simple-minded recipe-controlled build of data|devel/p5-Data-Flow/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Data-ShowTable-3.3|devel/p5-Data-ShowTable||print arrays of data in a nicely formatted listing|devel/p5-Data-ShowTable/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||any|y|y|y|y
p5-Date-Calc-5.0|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-Date-Handler-0.15|devel/p5-Date-Handler||perl module for calculates time differences|devel/p5-Date-Handler/pkg/DESCR|Shell Hung <[email protected]>|devel perl5||||any|y|y|y|y
p5-Devel-SmallProf-0.9|devel/p5-Devel-SmallProf||per-line Perl profiler|devel/p5-Devel-SmallProf/pkg/DESCR|Srebrenko Sehic <[email protected]>|devel perl5||:devel/p5-Time-HiRes|:devel/p5-Time-HiRes|any|y|y|y|y
p5-File-Tail-0.98|devel/p5-File-Tail||library for reading from continuously updated files|devel/p5-File-Tail/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||:devel/p5-Time-HiRes|:devel/p5-Time-HiRes|any|y|y|y|y
p5-FreezeThaw-0.41|devel/p5-FreezeThaw||module for converting structures to strings and back|devel/p5-FreezeThaw/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-String-1.01|devel/p5-IO-String||emulate IO::File interface for in-core strings|devel/p5-IO-String/pkg/DESCR|Shell Hung <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-stringy-2.108|devel/p5-IO-stringy||in-core objects like strings and arrays for I/O|devel/p5-IO-stringy/pkg/DESCR|Shell Hung <[email protected]>|devel perl5||||any|y|y|y|y
p5-Locale-PGetText-0.16|devel/p5-Locale-PGettext||perl perl i18n routines|devel/p5-Locale-PGettext/pkg/DESCR|Shell Hung <[email protected]>|devel||||any|y|y|y|y
p5-MLDBM-2.00|devel/p5-MLDBM||store multi-level hash structure in single-level tied hash|devel/p5-MLDBM/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||:devel/p5-FreezeThaw|:devel/p5-FreezeThaw|any|y|y|y|y
p5-Net-Server-0.77|devel/p5-Net-Server||extensible framework for Perl server engines|devel/p5-Net-Server/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel net perl5||||any|y|y|y|y
p5-Params-Validate-0.06|devel/p5-Params-Validate||perl module to validate function/method parameters|devel/p5-Params-Validate/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||||any|y|y|y|y
p5-Parse-RecDescent-1.80|devel/p5-Parse-RecDescent||perl module to generate recursive descent parsers|devel/p5-Parse-RecDescent/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||||any|y|y|y|y
p5-Set-Scalar-1.17|devel/p5-Set-Scalar||module for containing a set of scalars|devel/p5-Set-Scalar/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Storable-1.0.14|devel/p5-Storable||persistency for perl data structures|devel/p5-Storable/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-String-CRC32-1.2|devel/p5-String-CRC32||interface for cyclic redundency check generation|devel/p5-String-CRC32/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ReadKey-2.18|devel/p5-Term-ReadKey||change terminal modes, and perform non-blocking reads|devel/p5-Term-ReadKey/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ReadLine-Gnu-1.11|devel/p5-Term-ReadLine-Gnu||GNU Readline Library Wrapper Module|devel/p5-Term-ReadLine-Gnu/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Harness-2.02|devel/p5-Test-Harness||perl module for running perl test scripts with statistics|devel/p5-Test-Harness/pkg/DESCR|Shell Hung <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Simple-0.42|devel/p5-Test-Simple||basic utilities for writing tests in perl|devel/p5-Test-Simple/pkg/DESCR|Shell Hung <[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
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
pccts-1.33r32|devel/pccts||Purdue Compiler Construction Tool Set|devel/pccts/pkg/DESCR|Federico Schwindt <[email protected]>|devel lang||unzip-*:archivers/unzip||any|y|y|y|y
pcre-3.9|devel/pcre||perl-compatible regular expression library|devel/pcre/pkg/DESCR|Jakob Schlyter <[email protected]>|devel||||any|y|y|y|y
perltidy-20010328|devel/perltidy||tool to indent and reformat perl scripts|devel/perltidy/pkg/DESCR|Pete Fritchman <[email protected]>|devel||||any|y|y|y|y
pkgconfig-0.12.0|devel/pkgconfig||tool for managing library compile/link flags|devel/pkgconfig/pkg/DESCR|Shell Hung <[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|The OpenBSD ports mailing-list <[email protected]>|devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
prc-tools-0.5.0|devel/prc-tools|/usr/local/palm|PalmPilot(tm) development environment|devel/prc-tools/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel palm||||i386|y|y|y|y
pth-1.4.1|devel/pth||GNU portable threads|devel/pth/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
py-Checker-0.8.9|devel/py-Checker||python codes checker|devel/py-Checker/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.2*:lang/python/2.2|python-2.2*:lang/python/2.2|any|y|y|y|y
py-mxDateTime-2.0.3|devel/py-mxDateTime||Date and Time types for Python|devel/py-mxDateTime/pkg/DESCR|Maurice Nonnekes <[email protected]>|devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
py-optik-1.2|devel/py-optik||command line parsing library for Python|devel/py-optik/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
py-unit-1.4.1|devel/py-unit||unit testing framework for python|devel/py-unit/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.1*:lang/python/2.1 python-tkinter-2.1*:lang/python/2.1,-tkinter|python-2.1*:lang/python/2.1 python-tkinter-2.1*:lang/python/2.1,-tkinter|any|y|y|y|y
py-unit-1.4.1-no_x11|devel/py-unit,no_x11||unit testing framework for python|devel/py-unit/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
rats-1.3|devel/rats||source code auditing tool|devel/rats/pkg/DESCR|Jason Peel <[email protected]>|devel security|expat::textproc/expat|||any|y|y|y|y
sdl-1.2.3-sun|devel/sdl,sun||cross-platform multimedia library|devel/sdl/pkg/DESCR|Peter Valchev <[email protected]>|devel||:devel/autoconf :devel/gmake :devel/nasm||any|y|y|y|y
sdl-1.2.3-esd|devel/sdl,esd||cross-platform multimedia library|devel/sdl/pkg/DESCR|Peter Valchev <[email protected]>|devel|esd.2::audio/esound|:devel/autoconf :devel/gmake :devel/nasm||any|y|y|y|y
sdl-image-1.2.1|devel/sdl-image||SDL image library|devel/sdl-image/pkg/DESCR|Mark Grimes <[email protected]>|devel graphics|SDL.::devel/sdl jpeg.62.::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff|||any|y|y|y|y
sdl-mixer-1.2.1|devel/sdl-mixer||SDL multi-channel audio mixer library|devel/sdl-mixer/pkg/DESCR|Mark Grimes <[email protected]>|devel audio|SDL.::devel/sdl smpeg.1::devel/smpeg|||any|y|y|y|y
sdl-net-1.2.3|devel/sdl-net||SDL cross-platform networking library|devel/sdl-net/pkg/DESCR|Mark Grimes <[email protected]>|devel net|GUI.::devel/guilib SDL.::devel/sdl|||any|y|y|y|y
sdl-ttf-2.0.4|devel/sdl-ttf||SDL TrueType fonts library|devel/sdl-ttf/pkg/DESCR|Mark Grimes <[email protected]>|devel graphics|SDL.::devel/sdl|||any|y|y|y|y
sdlmm-0.1.8|devel/sdlmm||C++ wrapper for the Simple DirectMedia Layer|devel/sdlmm/pkg/DESCR|Peter Valchev <[email protected]>|devel|SDL::devel/sdl|||any|y|y|y|y
shtool-1.5.4|devel/shtool||GNU Portable Shell Tool|devel/shtool/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
slib-2c9|devel/slib||scheme r5 library|devel/slib/pkg/DESCR|Marc Espie <[email protected]>|devel||unzip-*:archivers/unzip||any|y|y|y|y
smpeg-0.4.4|devel/smpeg||mpeg video player library with sound support|devel/smpeg/pkg/DESCR|Peter Valchev <[email protected]>|devel graphics|SDL::devel/sdl gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
splint-3.0.1.6|devel/splint||advanced lint: statically check C programs|devel/splint/pkg/DESCR|Marc Espie <[email protected]>|devel||:devel/gmake bison-*:devel/bison||any|y|y|y|y
swig-1.3.9|devel/swig||simplified wrapper and interface generator|devel/swig/pkg/DESCR|Kevin Lo <[email protected]>|devel||:lang/guile :lang/python/2.1 :lang/ruby :lang/tcl/8.3||any|y|y|y|y
swig-examples-1.3.9|devel/swig,-examples||examples for swig|devel/swig/pkg/DESCR-examples|Kevin Lo <[email protected]>|devel||:lang/guile :lang/python/2.1 :lang/ruby :lang/tcl/8.3||any|y|y|y|y
t1lib-1.3.1|devel/t1lib||Type 1 rasterizer library for UNIX/X11|devel/t1lib/pkg/DESCR|Brad Smith <[email protected]>|devel textproc||:devel/gmake||any|y|y|y|y
tclcl-1.0b11|devel/tclcl||Tcl/C++ interface used by ns and nam|devel/tclcl/pkg/DESCR|Angelos D. Keromytis <[email protected]>|devel|otcl.1::lang/otcl tk83.1::x11/tk/8.3|||any|y|y|y|y
tkcvs-6.0|devel/tkcvs||graphical frontend to CVS|devel/tkcvs/pkg/DESCR|Todd T. Fries <[email protected]>|devel||:x11/tk/8.3|:x11/tk/8.3|any|y|y|y|y
tmake-1.8|devel/tmake||Cross-platform makefile tool from TrollTech|devel/tmake/pkg/DESCR|Dan Weeks <[email protected]>|devel||||any|y|y|y|y
varconf-0.5.0|devel/varconf||configuration system for the STAGE server|devel/varconf/pkg/DESCR|Peter Valchev <[email protected]>|devel|Atlas.1.1:atlas-*:devel/atlas sigc.0.0:libsigc++-*:devel/libsigc++|||any|y|y|y|y
xmake-1.01|devel/xmake||powerful make utility|devel/xmake/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|n|n|n|n
abiword-0.7.12|editors/abiword||open-source, cross-platform WYSIWYG word processor|editors/abiword/pkg/DESCR|Dug Song <[email protected]>|editors|gtk.1.2::x11/gtk+ png.2::graphics/png|:devel/gmake|:textproc/ispell|any|y|y|y|y
axe-6.1.2|editors/axe||simple to use text editor for X11|editors/axe/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors||||any|n|y|n|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.1|editors/bvi||binary visual display editor, based on vi|editors/bvi/pkg/DESCR|Christian Weisgerber <[email protected]>|editors||||any|y|y|y|y
cooledit-3.17.2|editors/cooledit||easy to use, graphical editor|editors/cooledit/pkg/DESCR|Marc Espie <[email protected]>|editors||||any|y|y|y|y
cooledit-3.17.2-python|editors/cooledit,python||easy to use, graphical editor|editors/cooledit/pkg/DESCR|Marc Espie <[email protected]>|editors||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
ee-1.4.4|editors/ee||easy to use text editor|editors/ee/pkg/DESCR|Jose Nazario <[email protected]>|editors||||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
emacs-20.7|editors/emacs||GNU editor|editors/emacs/pkg/DESCR|Matthew Economou <[email protected]>|editors||:devel/gmake||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||:devel/gmake||any|y|y|y|y
emacs-leim-20.7|editors/emacs-leim||Library of Emacs Input Method|editors/emacs-leim/pkg/DESCR|Sungman Cho <[email protected]>|editors||:devel/gmake :editors/emacs|:editors/emacs|any|y|y|y|y
emacs-21.1|editors/emacs21||GNU editor: extensible, customizable, self documenting|editors/emacs21/pkg/DESCR|Mark Grimes <[email protected]>|editors|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff|:devel/gmake||any|y|y|y|y
emacs-leim-21.1|editors/emacs21-leim||Library of Emacs Input Method|editors/emacs21-leim/pkg/DESCR|Yozo TODA <[email protected]>|editors||:devel/gmake emacs-*:editors/emacs21|emacs-*:editors/emacs21|any|y|y|y|y
hexedit-1.2.2|editors/hexedit||view and edit files in hexadecimal or ASCII|editors/hexedit/pkg/DESCR|Brad Smith <[email protected]>|editors||||any|y|y|y|y
hnb-1.8.1|editors/hnb||hierarchical notebook|editors/hnb/pkg/DESCR|Kevin Lo <[email protected]>|editors|xml2.6::textproc/libxml|||any|y|y|y|y
jed-0.99.14|editors/jed||text editor|editors/jed/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors|slang.14::devel/libslang|||any|y|y|y|y
jed-0.99.14-no_x11|editors/jed,no_x11||text editor|editors/jed/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors|slang.14::devel/libslang|||any|y|y|y|y
joe-2.8p1|editors/joe||joe's own editor|editors/joe/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors||||any|y|y|y|y
jove-4.16|editors/jove||Jonathan's Own Version of Emacs|editors/jove/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors||||any|n|y|n|y
kxmleditor-0.7.1|editors/kxmleditor||xml editor for KDE|editors/kxmleditor/pkg/DESCR|Kevin Lo <[email protected]>|editors|kdecore.3,DCOP,kfile,kdeui,kparts,ksycoca,kio,kdesu,kssl::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/autoconf :x11/qt2-designer||any|y|y|y|y
nano-1.0.8|editors/nano||small, easy to use editor|editors/nano/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nano-1.0.8-slang|editors/nano,slang||small, easy to use editor|editors/nano/pkg/DESCR|Christian Weisgerber <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext slang.14::devel/libslang|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nedit-5.2|editors/nedit||X11/Motif GUI text editor|editors/nedit/pkg/DESCR|Oleg Safiullin <[email protected]>|editors x11|Xm.2::x11/openmotif|||any|y|y|y|y
nvi-m17n-1.79.19991117|editors/nvi-m17n||multilingual clone of vi/ex|editors/nvi-m17n/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|editors|canna.1.::japanese/canna|||any|y|y|y|y
ted-2.10|editors/ted||X11 based RTF editor|editors/ted/pkg/DESCR|Marc Espie <[email protected]>|editors textproc print|Xm.2::x11/openmotif jpeg.62::graphics/jpeg png.2.::graphics/png tiff.35::graphics/tiff|||!hppa m88k vax|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.3,olgx.3::x11/xview/lib|:x11/xview/config||any|n|n|n|n
uemacs-4.0|editors/uemacs||full screen simple editor|editors/uemacs/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors||unzip-*:archivers/unzip||any|n|y|n|y
vim-6.0.270-gtk|editors/vim/stable,gtk||vi clone, many additional features|editors/vim/stable/pkg/DESCR|David Lebel <[email protected]>|editors|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-lang-6.0.270-gtk|editors/vim/stable,-lang,gtk||vi clone, NLS subpackage|editors/vim/stable/pkg/DESCR-lang|David Lebel <[email protected]>|editors|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-6.0.270-no_x11|editors/vim/stable,no_x11||vi clone, many additional features|editors/vim/stable/pkg/DESCR|David Lebel <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-lang-6.0.270-no_x11|editors/vim/stable,-lang,no_x11||vi clone, NLS subpackage|editors/vim/stable/pkg/DESCR-lang|David Lebel <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-6.1b.23-gtk|editors/vim/snapshot,gtk||vi clone, many additional features, snapshot version|editors/vim/snapshot/pkg/DESCR|David Lebel <[email protected]>|editors|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-lang-6.1b.23-gtk|editors/vim/snapshot,-lang,gtk||vi clone, NLS subpackage, snapshot version|editors/vim/snapshot/pkg/DESCR-lang|David Lebel <[email protected]>|editors|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-6.1b.23-no_x11|editors/vim/snapshot,no_x11||vi clone, many additional features, snapshot version|editors/vim/snapshot/pkg/DESCR|David Lebel <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-lang-6.1b.23-no_x11|editors/vim/snapshot,-lang,no_x11||vi clone, NLS subpackage, snapshot version|editors/vim/snapshot/pkg/DESCR-lang|David Lebel <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|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|||:emulators/redhat/base|i386|n|n|n|n
xemacs-21.1.14|editors/xemacs21||heavily customizable and extensible editor|editors/xemacs21/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext png.2.::graphics/png|:devel/autoconf :devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xemacs-21.1.14-mule|editors/xemacs21,mule||heavily customizable and extensible editor|editors/xemacs21/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext png.2.::graphics/png|:devel/autoconf :devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xemacs-sumo-21.20010204|editors/xemacs21-sumo||complete set of supported XEmacs packages|editors/xemacs21-sumo/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors||||any|y|y|y|y
xemacs-sumo-21.20010204-mule|editors/xemacs21-sumo,mule||complete set of supported XEmacs packages|editors/xemacs21-sumo/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors||||any|y|y|y|y
xwpe-1.5.22a|editors/xwpe||powerful programming editor|editors/xwpe/pkg/DESCR|Yannick Cote <[email protected]>|editors||||any|y|y|y|y
gtypist-2.5|education/gtypist||interactive typing tutor|education/gtypist/pkg/DESCR|Christian Weisgerber <[email protected]>|education||||any|y|y|y|y
keduca-0.4|education/keduca||tool to allow the creation and revision of form based test|education/keduca/pkg/DESCR|Kevin Lo <[email protected]>|education|kdecore.3,DCOP,kdesu,kdeui,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
khangman-0.71|education/khangman||classical hangman game|education/khangman/pkg/DESCR|Kevin Lo <[email protected]>|education|kdecore.3,DCOP,kdeui::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/autoconf :devel/automake :x11/qt2-designer||any|y|y|y|y
klettres-1.3.01|education/klettres||interactive learning the French alphabet|education/klettres/pkg/DESCR|Kevin Lo <[email protected]>|education|kdecore.3,DCOP,kdeui::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
kmessedwords-1.0.0|education/kmessedwords||simple mind-training game|education/kmessedwords/pkg/DESCR|Kevin Lo <[email protected]>|education|kdecore.3,DCOP,kdeui::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
ktouch-1.0|education/ktouch||interactive typing tutor|education/ktouch/pkg/DESCR|Kevin Lo <[email protected]>|education|kdecore.3,DCOP,kdesu,kdeui,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/gmake :x11/qt2-designer||any|y|y|y|y
bochs-1.2.1|emulators/bochs||x86 machine simulator|emulators/bochs/pkg/DESCR|Todd T. Fries <[email protected]>|emulators||:devel/autoconf||any|y|y|y|y
bochs-1.2.1-debug|emulators/bochs,debug||x86 machine simulator|emulators/bochs/pkg/DESCR|Todd T. Fries <[email protected]>|emulators||:devel/autoconf||any|y|y|y|y
freebsd_lib-4.0|emulators/freebsd_lib|/usr/local/emul/freebsd|libraries necessary for FreeBSD compatibility|emulators/freebsd_lib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|emulators||||i386|y|y|y|y
frodo-4.1b|emulators/frodo||Commodore 64 emulator|emulators/frodo/pkg/DESCR|Marc Espie <[email protected]>|emulators games|||:x11/tk/8.3|any|y|y|y|y
fuse-0.4.1|emulators/fuse||Free Unix Spectrum Emulator|emulators/fuse/pkg/DESCR|Alexander Yurchenko <[email protected]>|emulators|glib.1.2::devel/glib|||any|y|y|y|y
ines-1.2|emulators/ines||emulates the Nintendo Entertainment System|emulators/ines/pkg/DESCR|Aaron Campbell <[email protected]>|emulators games|||:emulators/redhat/base|i386|y|y|y|y
mastergear-1.4|emulators/mastergear||emulates the Sega GameGear and MasterSystem|emulators/mastergear/pkg/DESCR|Aaron Campbell <[email protected]>|emulators games|||:emulators/redhat/base|i386|y|y|y|y
redhat_base-6.2p4|emulators/redhat/base|/usr/local/emul/redhat|Linux compatibility package based on RedHat 6.2|emulators/redhat/base/pkg/DESCR|Jason Ish <[email protected]>|emulators||rpm->=3.0.6p1:misc/rpm||i386|y|y|y|y
redhat_motif-2.1.30|emulators/redhat/motif|/usr/local/emul/redhat|Motif toolkit Linux libraries|emulators/redhat/motif/pkg/DESCR|Christian Weisgerber <[email protected]>|emulators||rpm->=3.0.6p1:misc/rpm|:emulators/redhat/base|i386|y|y|y|y
simh-2.9.2|emulators/simh||PDP, IBM 1401, Nova and other CPUs simulator|emulators/simh/pkg/DESCR|Oleg Safiullin <[email protected]>|emulators||unzip-*:archivers/unzip||any|y|y|y|y
snes9x-1.37c|emulators/snes9x||emulates the Super Nintendo Entertainment System|emulators/snes9x/pkg/DESCR|Aaron Campbell <[email protected]>|emulators games|||:emulators/redhat/base|i386|y|y|y|y
spectemu-0.94|emulators/spectemu||ZX Spectrum 48k emulator|emulators/spectemu/pkg/DESCR|Alexander Yurchenko <[email protected]>|emulators||||any|y|y|y|y
spim-6.4|emulators/spim||MIPS R2000/R3000 simulator|emulators/spim/pkg/DESCR|Kevin Lo <[email protected]>|emulators||||any|y|y|y|y
uae-0.8.21|emulators/uae||UAE amiga emulator|emulators/uae/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|emulators x11||||any|y|y|y|y
vgb-2.1|emulators/vgb||emulates the Nintendo Gameboy|emulators/vgb/pkg/DESCR|Aaron Campbell <[email protected]>|emulators games|||:emulators/redhat/base|i386|y|y|y|y
wine-990225|emulators/wine||MS-Windows 3.1/95/NT emulator for Unix (Alpha release)|emulators/wine/pkg/DESCR|The OpenBSD ports mailing-list <[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 palm||||any|y|y|y|y
xmame+xmess-0.56.2-x11|emulators/xmame,x11||emulates arcade machines and old home computers|emulators/xmame/pkg/DESCR|Claudio Castiglia <[email protected]>|emulators games||:devel/gmake :devel/nasm bzip2-*:archivers/bzip2 unzip-*:archivers/unzip||alpha hppa i386 m68k powerpc sparc|y|y|y|y
xmame-0.56.2-x11|emulators/xmame,-mame,x11||emulates a massive variety of arcade machines|emulators/xmame/pkg/DESCR-mame|Claudio Castiglia <[email protected]>|emulators games||:devel/gmake :devel/nasm bzip2-*:archivers/bzip2 unzip-*:archivers/unzip||alpha hppa i386 m68k powerpc sparc|y|y|y|y
xmess-0.56.2-x11|emulators/xmame,-mess,x11||emulates game consoles and old home computers|emulators/xmame/pkg/DESCR-mess|Claudio Castiglia <[email protected]>|emulators games||:devel/gmake :devel/nasm bzip2-*:archivers/bzip2 unzip-*:archivers/unzip||alpha hppa i386 m68k powerpc sparc|y|y|y|y
zsnes-1.337|emulators/zsnes||Super Nintendo emulator for x86|emulators/zsnes/pkg/DESCR|Wilbern Cobb <[email protected]>|emulators games|SDL.:sdl-*-!no_x11:devel/sdl png.2::graphics/png|:devel/autoconf :devel/gmake :devel/nasm||i386|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||:devel/gmake||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
afternoonstalker-1.0|games/afternoonstalker||Night Stalker clone for X|games/afternoonstalker/pkg/DESCR|Lurene Grenier <[email protected]>|games|gengameng.4.0::devel/gengameng|:devel/autoconf-new :devel/automake||any|y|y|y|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
amph-0.8.9|games/amph||jump'n run game with unique video effects|games/amph/pkg/DESCR|Peter Valchev <[email protected]>|games x11|SDL::devel/sdl|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|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.3|games/angband||rogue-like game with X11 support|games/angband/pkg/DESCR|Carsten Ilchmann <[email protected]>|games||||any|n|y|n|y
angband-2.9.3-no_x11|games/angband,no_x11||rogue-like game|games/angband/pkg/DESCR|Carsten Ilchmann <[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
burgerspace-1.6|games/burgerspace||burgertime clone for X|games/burgerspace/pkg/DESCR|Peter Valchev <[email protected]>|games|gengameng.4.0::devel/gengameng|:devel/autoconf :devel/automake||any|y|y|y|y
castle-combat-0.7.2|games/castle-combat||Rampart arcade game clone for X11|games/castle-combat/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer png.2::graphics/png|:devel/autoconf||any|y|y|y|y
cgoban-1.9.12|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||||any|n|n|n|n
corewars-0.9.12|games/corewars||computer simulation game|games/corewars/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|gtk.1.2,gdk::x11/gtk+|||any|y|y|y|y
cosmosmash-1.1|games/cosmosmash||astrosmash clone for X|games/cosmosmash/pkg/DESCR|Sean Escriva <[email protected]>|games|gengameng.4.0::devel/gengameng|:devel/autoconf :devel/automake||any|y|y|y|y
dopewars-1.5.3|games/dopewars||game where you deal drugs on the streets of NY|games/dopewars/pkg/DESCR|Brad Smith <[email protected]>|games|gtk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
eboard-0.4.2|games/eboard||gtk+ chess board interface|games/eboard/pkg/DESCR|Federico Schwindt <[email protected]>|games|Imlib.19,gdk_imlib::graphics/imlib|||any|y|y|y|y
eboard-extras-1pl2|games/eboard-extras||eboard extra piece sets and sounds|games/eboard-extras/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|||:games/eboard|any|y|y|y|y
falconseye-1.9.3|games/falconseye||NetHack derivative|games/falconseye/pkg/DESCR|Marc Espie <[email protected]>|games x11|SDL::devel/sdl|unzip-*:archivers/unzip|hackdata-*:games/hackdata timidity-*:audio/timidity|any|y|y|y|y
fire-1.0|games/fire||organic fireworks demo|games/fire/pkg/DESCR|Peter Valchev <[email protected]>|games|SDL::devel/sdl|||any|y|y|y|y
freeciv-1.12.0|games/freeciv||Civilization clone for X11; multiplayer|games/freeciv/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
freeciv-1.12.0-gtk|games/freeciv,gtk||Civilization clone for X11; multiplayer|games/freeciv/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|Imlib.19,gdk_imlib::graphics/imlib iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
frotz-2.32|games/frotz||Curses-based interpreter for Infocom-compatible games|games/frotz/pkg/DESCR|Carsten Ilchmann <[email protected]>|games||||any|n|y|n|y
gemdropx-0.7|games/gemdropx||one-player puzzle game for x11|games/gemdropx/pkg/DESCR|Peter Valchev <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|:devel/gmake||any|y|y|y|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-3.0.0|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
gtkballs-2.2.0|games/gtkballs||gtk+ clone of the lines ball logic game|games/gtkballs/pkg/DESCR|Peter Valchev <[email protected]>|games x11|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|y
gtkpool-0.4.1|games/gtkpool||simple gtk+ pool simulation game|games/gtkpool/pkg/DESCR|Peter Valchev <[email protected]>|games x11|gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
hackdata-3.3.1|games/hackdata||common data for the nethack/slash ports|games/hackdata/pkg/DESCR|Marc Espie <[email protected]>|games||||any|y|y|y|y
heroes-0.12-sdl|games/heroes,sdl||graphically improved game of yore|games/heroes/pkg/DESCR|Peter Valchev <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
icebreaker-1.2.1|games/icebreaker||jezzball-style, penguin puzzle game|games/icebreaker/pkg/DESCR|Peter Valchev <[email protected]>|games|SDL_mixer::devel/sdl-mixer smpeg.1.3:smpeg-*:devel/smpeg|:devel/gmake||any|y|y|y|y
kslide-0.83|games/kslide||puzzle game for KDE|games/kslide/pkg/DESCR|Kevin Lo <[email protected]>|games|kdecore.3,DCOP,kdeui,kfile,ksycoca,kio,kdesu,kssl::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/gmake :x11/qt2-designer bzip2-*:archivers/bzip2||any|y|y|y|y
lgeneral-0.5.0|games/lgeneral||turn-based strategy engine|games/lgeneral/pkg/DESCR|Peter Valchev <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|:devel/autoconf||any|y|y|y|y
lincity-1.11|games/lincity||Rich city simulation game for X|games/lincity/pkg/DESCR|Wilbern Cobb <[email protected]>|games||||any|y|y|y|y
moon-buggy-0.5.1|games/moon-buggy||drive some car across the moon|games/moon-buggy/pkg/DESCR|Felix Kronlage <[email protected]>|games||||any|y|y|y|y
moria-5.5.2|games/moria||The Dungeons of Moria|games/moria/pkg/DESCR|David Lebel <[email protected]>|games||||any|n|y|n|y
nethack-3.3.1|games/nethack||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games|||hackdata-*:games/hackdata|any|y|y|y|y
nethack-3.3.1-no_x11|games/nethack,no_x11||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games|||hackdata-*:games/hackdata|any|y|y|y|y
nethack-3.3.1-qt|games/nethack,qt||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games|lib/qt2/qt.2::x11/qt2||hackdata-*: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
newvox-1.0|games/newvox||voxel-style landscape rendering fly-by|games/newvox/pkg/DESCR|Peter Valchev <[email protected]>|games|SDL::devel/sdl|||any|y|y|y|y
omega-0.90.4|games/omega||complex rogue-style game of dungeon exploration|games/omega/pkg/DESCR|David Lebel <[email protected]>|games||||any|y|y|y|y
qstat-2.4e|games/qstat||displays the status of multi-player Internet Game servers|games/qstat/pkg/DESCR|Aaron Campbell <[email protected]>|games||||any|y|y|y|y
quake-20000101-sdl|games/quake,sdl||Quake/Quake-world client|games/quake/pkg/DESCR|Maurice Nonnekes <[email protected]>|games|SDL::devel/sdl|:devel/autoconf :devel/gmake||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server,sdl||Quake world server|games/quake/pkg/DESCR-server|Maurice Nonnekes <[email protected]>|games||:devel/autoconf :devel/gmake||any|y|y|y|y
quake-20000101-ggi|games/quake,ggi||Quake/Quake-world client|games/quake/pkg/DESCR|Maurice Nonnekes <[email protected]>|games|ggi.::graphics/ggi|:devel/autoconf :devel/gmake||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server,ggi||Quake world server|games/quake/pkg/DESCR-server|Maurice Nonnekes <[email protected]>|games||:devel/autoconf :devel/gmake||any|y|y|y|y
quake-20000101|games/quake||Quake/Quake-world client|games/quake/pkg/DESCR|Maurice Nonnekes <[email protected]>|games||:devel/autoconf :devel/gmake||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server||Quake world server|games/quake/pkg/DESCR-server|Maurice Nonnekes <[email protected]>|games||:devel/autoconf :devel/gmake||any|y|y|y|y
sarien-0.7.0|games/sarien||interpreter for old Sierra AGI games|games/sarien/pkg/DESCR|Aaron Campbell <[email protected]>|games emulators||:devel/gmake||any|y|y|y|y
sdlroids-1.3.4|games/sdlroids||essentially an Asteroids clone|games/sdlroids/pkg/DESCR|David Lebel <[email protected]>|games|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|||any|y|y|y|y
sdlzombies-1.0.0|games/sdlzombies||zombies clone|games/sdlzombies/pkg/DESCR|Peter Valchev <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|||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-*:games/hackdata|any|y|y|y|y
slash-em-3.3.1.6e4f6|games/slash-em||dungeon explorin', hackin', game. Hard|games/slash-em/pkg/DESCR|Marc Espie <[email protected]>|games|||hackdata-*:games/hackdata|any|y|y|y|y
slash-em-3.3.1.6e4f6-no_x11|games/slash-em,no_x11||dungeon explorin', hackin', game. Hard|games/slash-em/pkg/DESCR|Marc Espie <[email protected]>|games|||hackdata-*:games/hackdata|any|y|y|y|y
slash-3.2.2-e8-no_x11|games/slash,no_x11||dungeon explorin', hackin' game, but harder than nethack|games/slash/pkg/DESCR|Marc Espie <[email protected]>|games|||hackdata-*:games/hackdata|any|y|y|y|y
speyes-1.2.0|games/speyes||wm-dockapp; xeyes clone using South Park characters|games/speyes/pkg/DESCR|Peter Stromberg <[email protected]>|games x11 x11/windowmaker||||any|y|y|y|y
spider-1.1|games/spider||challenging double decked solitaire game|games/spider/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
starlanes-1.2.2|games/starlanes||classic space-age stock trading game|games/starlanes/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games||||any|y|y|y|y
taxipilot-0.6.0|games/taxipilot||silly little game based on Spacetaxi for the C64|games/taxipilot/pkg/DESCR|Kevin Lo <[email protected]>|games|kdecore.3,DCOP,kdesu,kdeui,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/gmake :x11/qt2-designer||any|y|y|y|y
toppler-0.96|games/toppler||Nebulous rewrite of Tower Toppler|games/toppler/pkg/DESCR|Lurene Grenier <[email protected]>|games|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|:devel/autoconf||any|y|y|y|y
vectoroids-1.0.7|games/vectoroids||vector-based, pretty, Asteroids clone|games/vectoroids/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|SDL::devel/sdl SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|:devel/gmake||any|y|y|y|y
wmeyes-0.0|games/wmeyes||wm-dockapp; xeyes variant|games/wmeyes/pkg/DESCR|Peter Stromberg <[email protected]>|games x11 x11/windowmaker||||any|n|n|n|n
wmminichess-0.8|games/wmminichess||wm-dockapp; chess game|games/wmminichess/pkg/DESCR|Peter Stromberg <[email protected]>|games x11 x11/windowmaker|||gnuchess-*:games/gnuchess|any|y|y|y|y
wmtictactoe-1.1.1|games/wmtictactoe||wm-dockapp; TicTacToe game|games/wmtictactoe/pkg/DESCR|Peter Stromberg <[email protected]>|games x11 x11/windowmaker||||any|y|y|y|y
wmtimebomb-0.2.0|games/wmtimebomb||wm-app; minesweeper|games/wmtimebomb/pkg/DESCR|Peter Stromberg <[email protected]>|games x11 x11/windowmaker|PropList.2::devel/libproplist iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext wraster.4::x11/windowmaker|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xasteroids-5.0|games/xasteroids||X11-based asteroids-style arcade|games/xasteroids/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xbat-1.11|games/xbat||XEVIOUS-like shooting game|games/xbat/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|n|n|y
xbattle-5.4.1|games/xbattle||concurrent multi-player battle strategy game|games/xbattle/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xboard-4.2.6|games/xboard||X11 frontend for GNU Chess and the Internet Chess Server|games/xboard/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games x11||||any|y|y|y|y
xboing-2.4|games/xboing||X11 arcade|games/xboing/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xbreaky-0.0.4|games/xbreaky||breakout game for X Window|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|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|n|n|n
xcubes-5.5.2|games/xcubes||cube puzzle for X11|games/xcubes/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xdeblock-1.0|games/xdeblock||block action game|games/xdeblock/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|n|n|n
xdino-5.5.2|games/xdino||dino puzzle game for X11|games/xdino/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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||||any|n|y|n|y
xjewel-1.6|games/xjewel||dropping jewels game for X11|games/xjewel/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xmahjongg-3.5|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|Paul Janzen <[email protected]>|games|Xaw3d.::x11/Xaw3d|||any|y|y|y|y
xminehunter-0.4|games/xminehunter||Motif minesweeper game|games/xminehunter/pkg/DESCR|Angelos D. Keromytis <[email protected]>|games|Xm.2::x11/openmotif|||any|n|y|n|y
xminesweep-3.0|games/xminesweep||Windows minesweeper|games/xminesweep/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|y|n|y
xmj-1.0|games/xmj||Mahjongg|games/xmj/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xmris-4.04|games/xmris||Mr Do video arcade game for X11|games/xmris/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||:devel/gmake||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|The OpenBSD ports mailing-list <[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
xpilot-4.4.3|games/xpilot||multiplayer 2d space battles game|games/xpilot/pkg/DESCR|Peter Valchev <[email protected]>|games x11||||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
xscavenger-1.4.3|games/xscavenger||Lode Runner clone|games/xscavenger/pkg/DESCR|Joshua Stein <[email protected]>|games||||any|y|y|y|y
xscrabble-1.0|games/xscrabble||X11 version of the popular board game|games/xscrabble/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|y|n|y
xskat-3.4|games/xskat||skat card game|games/xskat/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xsol-2.1.1|games/xsol||solitaire|games/xsol/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xsoldier-0.96|games/xsoldier||shooting game for X11|games/xsoldier/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|games|Imlib.19::graphics/imlib|||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
zangband-2.6.2|games/zangband||Zangband (Zelazny Angband) with color, X11 support|games/zangband/pkg/DESCR|David Lebel <[email protected]>|games||:devel/autoconf :devel/automake :devel/gmake||any|y|y|y|y
zangband-2.6.2-no_x11|games/zangband,no_x11||Zangband (Zelazny Angband) with color, X11 support|games/zangband/pkg/DESCR|David Lebel <[email protected]>|games||:devel/autoconf :devel/automake :devel/gmake||any|y|y|y|y
zoom-0.9.99beta3|games/zoom||Z-code interpreter for X11|games/zoom/pkg/DESCR|Jose Nazario <[email protected]>|games||||!sparc64|y|y|y|y
ImageMagick-5.2.9|graphics/ImageMagick||display and manipulate images under X11|graphics/ImageMagick/pkg/DESCR|Brad Smith <[email protected]>|graphics|bz2.10::archivers/bzip2 jbig.1.2::graphics/jbigkit mpeg.13::graphics/mpeg-lib png.2::graphics/png tiff.35::graphics/tiff ttf.1.3::print/freetype xml2.6::textproc/libxml|netpbm-*:graphics/netpbm transfig-*:print/transfig|netpbm-*:graphics/netpbm transfig-*:print/transfig|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
blender-2.23|graphics/blender||3D creation software|graphics/blender/pkg/DESCR|Reinhard J. Sammer <[email protected]>|graphics|||:emulators/redhat/base|i386|n|n|n|n
cadubi-1.2|graphics/cadubi||ASCII drawing utility|graphics/cadubi/pkg/DESCR|Joshua Stein <[email protected]>|graphics editors|||:devel/p5-Term-ReadKey|any|n|n|n|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
cqcam-0.91|graphics/cqcam||color QuickCam control program|graphics/cqcam/pkg/DESCR|Joshua Stein <[email protected]>|graphics|gtk.1,gdk.1::x11/gtk+ jpeg.62::graphics/jpeg xview,olgx::x11/xview/lib|||i386|y|y|y|y
dia-0.88.1|graphics/dia||visio-like technical drawing|graphics/dia/pkg/DESCR|Mark Grimes <[email protected]>|graphics|art_lgpl.5::graphics/libart gdk_pixbuf.2::graphics/gdk-pixbuf popt::devel/popt xml2.6::textproc/libxml|:devel/gmake||any|y|y|y|y
dumpmpeg-0.6|graphics/dumpmpeg||dump frames from mpeg-1 movies|graphics/dumpmpeg/pkg/DESCR|Peter Valchev <[email protected]>|graphics x11|smpeg.1.3:smpeg-*:devel/smpeg|||any|y|y|y|y
enjoympeg-0.4.1|graphics/enjoympeg||mpeg-1 video player|graphics/enjoympeg/pkg/DESCR|Peter Valchev <[email protected]>|graphics x11|smpeg.1.3:smpeg-*:devel/smpeg|||any|y|y|y|y
flash-0.4.10|graphics/flash||open source standalone flash(tm) player|graphics/flash/pkg/DESCR|Peter Valchev <[email protected]>|graphics||||any|y|y|y|y
fnlib-0.5|graphics/fnlib||color font rendering library for X|graphics/fnlib/pkg/DESCR|Brad Smith <[email protected]>|graphics|Imlib.19::graphics/imlib|:devel/gmake||any|y|y|y|y
fxtv-1.03|graphics/fxtv||Display and capture for Brooktree-based cards|graphics/fxtv/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics|Xaw3d.6.1::x11/Xaw3d jpeg.62::graphics/jpeg tiff.35::graphics/tiff|:devel/gmake|:audio/mp3encode :audio/mpg123 :audio/sox :graphics/mpeg_encode :graphics/mplex|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|jpeg.62::graphics/jpeg png.2::graphics/png ttf.1.3::print/freetype|||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|jpeg.62::graphics/jpeg png.2::graphics/png ttf.1.3::print/freetype|||any|y|y|y|y
gdk-pixbuf-0.10.1p1|graphics/gdk-pixbuf||replacement library for Imlib|graphics/gdk-pixbuf/pkg/DESCR|Tom Knienieder <[email protected]>|graphics|gtk.1.2,gdk.1.2::x11/gtk+ jpeg.62::graphics/jpeg png.2::graphics/png tiff.35.::graphics/tiff|||any|y|y|y|y
gdk-pixbuf-0.10.1p1-gnome|graphics/gdk-pixbuf,gnome||replacement library for Imlib|graphics/gdk-pixbuf/pkg/DESCR|Tom Knienieder <[email protected]>|graphics|gnome.36,art_lgpl,gnomesupport,gnomeui::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+ jpeg.62::graphics/jpeg png.2::graphics/png tiff.35.::graphics/tiff|||any|y|y|y|y
libggi-2.0b3|graphics/ggi||Generic Graphics Library|graphics/ggi/pkg/DESCR|Todd T. Fries <[email protected]>|graphics|gii.0.7,gg.0.7::graphics/gii|bzip2-*:archivers/bzip2||any|y|y|y|y
gif2png-2.4.2|graphics/gif2png||converts GIF images to the PNG format|graphics/gif2png/pkg/DESCR|Brad Smith <[email protected]>|graphics|png.2::graphics/png|:devel/gmake||any|y|y|y|y
gifsicle-1.30|graphics/gifsicle||creating & editing GIF images and animations|graphics/gifsicle/pkg/DESCR|Jakob Schlyter <[email protected]>|graphics||||any|y|y|y|y
gifsicle-1.30-no_x11|graphics/gifsicle,no_x11||creating & editing GIF images and animations|graphics/gifsicle/pkg/DESCR|Jakob Schlyter <[email protected]>|graphics||||any|y|y|y|y
giftrans-1.12|graphics/giftrans||handle GIF89a transparent option and interlace mode|graphics/giftrans/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics||||any|n|y|n|y
libgii-0.7|graphics/gii||General Input Library (used by libggi)|graphics/gii/pkg/DESCR|Todd T. Fries <[email protected]>|graphics||bzip2-*:archivers/bzip2||any|y|y|y|y
gimp-1.2.2|graphics/gimp||GNU Image Manipulation Program|graphics/gimp/pkg/DESCR|Brad Smith <[email protected]>|graphics|aa.1.3::graphics/aalib gtk.1.2,gdk.1.2::x11/gtk+ mpeg.13::graphics/mpeg-lib png.2::graphics/png tiff.35::graphics/tiff|wget-*:net/wget|wget-*:net/wget|any|y|y|y|y
gkrellkam-0.2.3b|graphics/gkrellkam||image and webcam display plugin for gkrellm|graphics/gkrellkam/pkg/DESCR|Dan Weeks <[email protected]>|graphics||:devel/gmake :sysutils/gkrellm|:net/wget :sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gle-3.0.4|graphics/gle||OpenGL Extrusion library|graphics/gle/pkg/DESCR|David Lebel <[email protected]>|graphics devel|glut.3::graphics/glut|||any|y|y|y|y
glut-3.7|graphics/glut||OpenGL Utility Toolkit|graphics/glut/pkg/DESCR|Dan Weeks <[email protected]>|graphics devel||||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|Imlib.19,gdk_imlib::graphics/imlib Magick.5::graphics/ImageMagick|||any|y|y|y|y
gqview-1.1.1|graphics/gqview||Gtk-based graphic file viewer|graphics/gqview/pkg/DESCR|Joshua Stein <[email protected]>|graphics|gdk_pixbuf.2::graphics/gdk-pixbuf gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
gracula-3.0|graphics/gracula||graphic counter language compiler/interpreter|graphics/gracula/pkg/DESCR|Kevin Lo <[email protected]>|graphics||||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|gtk.1.2,glib.1.2::x11/gtk+ jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff||:archivers/bzip :archivers/bzip2|any|y|y|y|y
imlib-1.9.11|graphics/imlib||image manipulation library for X11|graphics/imlib/pkg/DESCR|Brad Smith <[email protected]>|graphics devel|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff ungif.5::graphics/libungif|:devel/gmake :graphics/jpeg gettext->=0.10.38:devel/gettext|:graphics/jpeg gettext->=0.10.38:devel/gettext|any|y|y|y|y
indexpage-1.0.2|graphics/indexpage||generate index pages for displaying images|graphics/indexpage/pkg/DESCR|Kevin Lo <[email protected]>|graphics|||:graphics/ImageMagick :graphics/p5-Image-Size|any|y|y|y|y
iview-1.4|graphics/iview||image viewer for X|graphics/iview/pkg/DESCR|Peter Valchev <[email protected]>|graphics x11|SDL_image::devel/sdl-image|||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|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
kuickshow-0.8.1|graphics/kuickshow||image viewer similar to ACDSee for Windows|graphics/kuickshow/pkg/DESCR|Kevin Lo <[email protected]>|graphics|Imlib.19::graphics/imlib kdecore.3.::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:devel/autoconf :devel/gmake :x11/qt2-designer||any|y|y|y|y
lcms-1.08|graphics/lcms||color management library|graphics/lcms/pkg/DESCR|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
libart-2.3.3|graphics/libart||high-performance 2D graphics library|graphics/libart/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics||||any|y|y|y|y
libdivxdecore-0.4.7|graphics/libdivxdecore||opendivx decoding API|graphics/libdivxdecore/pkg/DESCR|Federico Schwindt <[email protected]>|graphics devel||||any|y|y|y|y
libmng-1.0.3|graphics/libmng||Multiple-image Network Graphics (MNG) reference library|graphics/libmng/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg.62::graphics/jpeg lcms::graphics/lcms|||any|y|y|y|y
libungif-4.1.0b1|graphics/libungif||tools and library routines for working with GIF images|graphics/libungif/pkg/DESCR|Brad Smith <[email protected]>|graphics||:devel/autoconf||any|y|y|y|y
libwmf-0.2.0|graphics/libwmf||WMF handling and conversion library|graphics/libwmf/pkg/DESCR|Anil Madhavapeddy <[email protected]>|graphics devel|jpeg.62::graphics/jpeg png.2::graphics/png xml2::textproc/libxml|||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_encode|graphics/mpeg_encode||UCB's MPEG-I video stream encoder|graphics/mpeg_encode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics|jpeg.62::graphics/jpeg|||any|n|n|n|n
mpeg_play-2.4|graphics/mpeg_play||play mpeg movies on X11|graphics/mpeg_play/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics||||any|y|y|y|y
mplex-1.1|graphics/mplex||Multiplexes MPEG component streams into system layers|graphics/mplex/pkg/DESCR|The OpenBSD ports mailing-list <[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-9.24|graphics/netpbm||toolkit for converting images between different formats|graphics/netpbm/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff|:devel/gmake||any|y|y|y|y
p5-GD-1.33|graphics/p5-GD||module to interface with the GD graphics library|graphics/p5-GD/pkg/DESCR|Anil Madhavapeddy <[email protected]>|graphics perl5|gd.18::graphics/gd|||any|y|y|y|y
p5-GD-1.33-no_x11|graphics/p5-GD,no_x11||module to interface with the GD graphics library|graphics/p5-GD/pkg/DESCR|Anil Madhavapeddy <[email protected]>|graphics perl5|gd.18::graphics/gd|||any|y|y|y|y
p5-GD-Graph-1.33|graphics/p5-GD-Graph||module for graph plotting|graphics/p5-GD-Graph/pkg/DESCR|Anil Madhavapeddy <[email protected]>|graphics perl5|||:graphics/p5-GD :graphics/p5-GD-TextUtil|any|y|y|y|y
p5-GD-Graph3d-0.55|graphics/p5-GD-Graph3d||module for 3D graph plotting|graphics/p5-GD-Graph3d/pkg/DESCR|Anil Madhavapeddy <[email protected]>|graphics perl5||:graphics/p5-GD-Graph|:graphics/p5-GD-Graph|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|Anil Madhavapeddy <[email protected]>|graphics perl5|||:graphics/p5-GD|any|y|y|y|y
p5-Graphics-ColorNames-0.30|graphics/p5-Graphics-ColorNames||defines RGB values for common color names|graphics/p5-Graphics-ColorNames/pkg/DESCR|Shell Hung <[email protected]>|graphics perl5||||any|y|y|y|y
p5-Image-Info-1.09|graphics/p5-Image-Info||perl module for getting image information|graphics/p5-Image-Info/pkg/DESCR|Shell Hung <[email protected]>|graphics perl5||:devel/p5-IO-String||any|y|y|y|y
p5-Image-Size-2.97|graphics/p5-Image-Size||module to determine the size of images in several formats|graphics/p5-Image-Size/pkg/DESCR|Kevin Lo <[email protected]>|graphics perl5||||any|y|y|y|y
p5-Imager-0.39|graphics/p5-Imager||module for generating and manipulating images|graphics/p5-Imager/pkg/DESCR|Peter Valchev <[email protected]>|graphics perl5||:devel/gmake||any|y|y|y|y
png-1.2.1|graphics/png||library for manipulating PNG images|graphics/png/pkg/DESCR|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
pngcrush-1.5.8|graphics/pngcrush||optimizer for PNG files|graphics/pngcrush/pkg/DESCR|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
povray-3.1g|graphics/povray||3D image rendering package|graphics/povray/pkg/DESCR|Bruno Rohee <[email protected]>|graphics|png.2.::graphics/png|||any|n|y|n|y
povray-3.1g-no_x11|graphics/povray,no_x11||3D image rendering package|graphics/povray/pkg/DESCR|Bruno Rohee <[email protected]>|graphics|png.2.::graphics/png|||any|n|y|n|y
py-Imaging-1.1.2|graphics/py-Imaging||python imaging library|graphics/py-Imaging/pkg/DESCR|Sebastian Stark <[email protected]>|graphics|jpeg.62::graphics/jpeg|python-2.1*:lang/python/2.1 python-tkinter-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1 python-tkinter-2.1*:lang/python/2.1|any|y|y|y|y
qiv-1.7|graphics/qiv||very small and pretty fast gdk/Imlib image viewer|graphics/qiv/pkg/DESCR|David Lebel <[email protected]>|graphics|gdk_imlib.19::graphics/imlib|:devel/gmake||any|y|y|y|y
s10sh-0.2.0|graphics/s10sh||S10sh - a Canon PowerShot digital camera driver|graphics/s10sh/pkg/DESCR|Markus Friedl <[email protected]>|graphics|usb::devel/libusb|||any|y|y|y|y
xmms-smpeg-0.3.4|graphics/smpeg-xmms||MPEG and VCD video playback in XMMS|graphics/smpeg-xmms/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics|SDL::devel/sdl glib.1.2:glib-*:devel/glib gtk.1.2:gtk+-*:x11/gtk+ smpeg.1.3:smpeg-*:devel/smpeg xmms.2.0:xmms-*:audio/xmms|:devel/gmake||any|y|y|y|y
synaesthesia-2.1-esd|graphics/synaesthesia,esd||visual sound representation|graphics/synaesthesia/pkg/DESCR|Mark Grimes <[email protected]>|graphics x11|SDL.::devel/sdl esd.2::audio/esound|:devel/gmake||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|||:graphics/netpbm|any|n|y|n|y
tiff-3.5.7|graphics/tiff||tools and library routines for working with TIFF images|graphics/tiff/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg.62::graphics/jpeg|||any|y|y|y|y
tiff2png-0.81c|graphics/tiff2png||converts TIFF images to PNG format|graphics/tiff2png/pkg/DESCR|Brad Smith <[email protected]>|graphics|png.2::graphics/png tiff.35::graphics/tiff|||any|y|y|y|y
vid-1.0.1|graphics/vid||Get images from USB cameras using the OV511(+) chipsets|graphics/vid/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics|pbm,pgm,pnm,ppm::graphics/netpbm|:graphics/netpbm||any|y|y|y|y
win32-codecs-0.60|graphics/win32-codecs||Huge compilation of Win32 binary codecs|graphics/win32-codecs/pkg/DESCR|Kevin Lo <[email protected]>|graphics||bzip2-*:archivers/bzip2||i386|n|n|n|n
wmgrabimage-0.72|graphics/wmgrabimage||wm-dockapp; WWW image monitor|graphics/wmgrabimage/pkg/DESCR|Peter Stromberg <[email protected]>|graphics x11 x11/windowmaker|||ImageMagick-*:graphics/ImageMagick wget-*:net/wget xv-*:graphics/xv|any|y|y|y|y
wmicons-1.0|graphics/wmicons||icons mainly for use in Window Maker|graphics/wmicons/pkg/DESCR|Peter Stromberg <[email protected]>|graphics x11 x11/windowmaker|||windowmaker-*:x11/windowmaker|any|y|y|y|y
wmphoto-0.3a|graphics/wmphoto||wm-dockapp; shows photos and execute commands on that photo|graphics/wmphoto/pkg/DESCR|Peter Stromberg <[email protected]>|graphics x11 x11/windowmaker|||ImageMagick-*:graphics/ImageMagick|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|The OpenBSD ports mailing-list <[email protected]>|graphics||||any|y|y|y|y
xfig-3.2.3d|graphics/xfig||CAD drawing program for X11|graphics/xfig/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics x11|Xaw3d.6.1::x11/Xaw3d jpeg.62::graphics/jpeg png.2::graphics/png||:print/gv :print/transfig|any|y|y|y|y
xmedcon-0.5.2|graphics/xmedcon||medical image conversion|graphics/xmedcon/pkg/DESCR|Tom Knienieder <[email protected]>|graphics|gdk_pixbuf::graphics/gdk-pixbuf gtk.1.2::x11/gtk+|||any|y|y|y|y
xpaint-2.6.1|graphics/xpaint||simple paint program|graphics/xpaint/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics x11|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff|||any|y|y|y|y
xpm|graphics/xpm||-xpm library|/dev/null|The OpenBSD ports mailing-list <[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.62.::graphics/jpeg png.2.::graphics/png tiff.35.::graphics/tiff|||any|n|y|n|y
ja-Wnn-4.2|japanese/Wnn||Japanese input method|japanese/Wnn/pkg/DESCR|Marc Espie <[email protected]>|japanese||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ja-Wnndict-4.2|japanese/Wnn,-dict|/var/dict/Wnn|dictionaries for Japanese Wnn|japanese/Wnn/pkg/DESCR-dict|Marc Espie <[email protected]>|japanese||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
zh-Wnn-4.2|japanese/Wnn,-zh||Chinese input method|japanese/Wnn/pkg/DESCR-zh|Marc Espie <[email protected]>|chinese||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
zh-Wnndict-4.2|japanese/Wnn,-zhdict|/var/dict/Wnn|dictionaries for Chinese Wnn|japanese/Wnn/pkg/DESCR-zhdict|Marc Espie <[email protected]>|chinese||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ko-Wnn-4.2|japanese/Wnn,-ko||Korean input method|japanese/Wnn/pkg/DESCR-ko|Marc Espie <[email protected]>|korean||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ko-Wnndict-4.2|japanese/Wnn,-kodict|/var/dict/Wnn|dictionaries for Korean Wnn|japanese/Wnn/pkg/DESCR-kodict|Marc Espie <[email protected]>|korean||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
Wnn-xwnmo-4.2|japanese/Wnn,-xwnmo||X11 input method for Wnn|japanese/Wnn/pkg/DESCR-xwnmo|Marc Espie <[email protected]>|japanese chinese korean||:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
Wnn-data-4.2|japanese/Wnn,-data||common files to all languages of Wnn|japanese/Wnn/pkg/DESCR-data|Marc Espie <[email protected]>|japanese chinese korean||:japanese/groff||any|y|y|y|y
cannalib-3.5b2p1|japanese/canna||canna (kana-kanji converter) libraries|japanese/canna/pkg/DESCR|Marc Espie <[email protected]>|japanese||:japanese/groff||any|n|y|n|y
cannadict-3.5b2|japanese/canna,-dict|/var/dict|canna (kana-kanji converter) dictionaries|japanese/canna/pkg/DESCR-dict|Marc Espie <[email protected]>|japanese||:japanese/groff||any|n|y|n|y
cannaserver-3.5b2|japanese/canna,-server||canna (kana-kanji converter) server|japanese/canna/pkg/DESCR-server|Marc Espie <[email protected]>|japanese||:japanese/groff||any|n|y|n|y
ja-fonts-funet-19911117|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-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-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-canna|japanese/jvim,canna||Japanized Vim, canna input method|japanese/jvim/pkg/DESCR|Marc Espie <[email protected]>|japanese editors|canna.1::japanese/canna|:japanese/onew,canna||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||:japanese/Wnn :japanese/onew,wnn4||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|canna.1::japanese/canna|:japanese/Wnn :japanese/onew,wnn4,canna||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
kanjips-19900310|japanese/kanjips||converts Japanese fonts in PostScript documents|japanese/kanjips/pkg/DESCR|Marc Espie <[email protected]>|japanese print||||any|y|y|y|y
kbanner-2|japanese/kbanner||display kanji files in large letters|japanese/kbanner/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|japanese||||any|y|y|y|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||:japanese/Wnn||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|canna16::japanese/canna|||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|canna16::japanese/canna|:japanese/Wnn||any|y|y|y|y
ja-kterm-6.2.0|japanese/kterm||Japanese-capable xterm|japanese/kterm/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|japanese x11|Xaw3d.6.1::x11/Xaw3d|||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
ja-onew-canna-2.2.10|japanese/onew,canna||library for Japanese Input Method canna|japanese/onew/pkg/DESCR|Marc Espie <[email protected]>|japanese|canna.1::japanese/canna|||any|y|y|y|y
ja-onew-wnn4-2.2.10|japanese/onew,wnn4||library for Japanese Input Method Wnn4|japanese/onew/pkg/DESCR|Marc Espie <[email protected]>|japanese||:japanese/Wnn||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/pkg/DESCR|Marc Espie <[email protected]>|japanese|canna.1::japanese/canna|:japanese/Wnn||any|y|y|y|y
jlint-2.3|java/jlint||Java program analyzer and checker|java/jlint/pkg/DESCR|Kevin Lo <[email protected]>|java||||any|y|y|y|y
junit-3.7|java/junit||regression testing utility for use with the Java language|java/junit/pkg/DESCR|Kevin Lo <[email protected]>|java||unzip-*:archivers/unzip|:devel/jdk/1.2-blackdown|i386|y|y|y|y
baekmuk-fonts-2.0|korean/baekmuk-fonts||extra Korean fonts|korean/baekmuk-fonts/pkg/DESCR|pilot <[email protected]>|korean x11||||any|y|y|y|y
hanterm-fonts-3.1|korean/hanterm-fonts||extra Korean fonts|korean/hanterm-fonts/pkg/DESCR|Dug Song <[email protected]>|korean x11||||any|y|y|y|y
hanterm-xf-p19|korean/hanterm-xf||XFree86-based xterm with Korean language support|korean/hanterm-xf/pkg/DESCR|Dug Song <[email protected]>|korean x11|iconv.2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
gofer-2.30a|lang/Gofer||lazy functional language|lang/Gofer/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang||||any|y|y|y|y
STk-3.1.1|lang/STk||scheme interpreter with Tk interface|lang/STk/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang||||any|y|y|y|y
camlp4-3.02|lang/camlp4||Pre-Processor-Pretty-Printer for Objective Caml|lang/camlp4/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang||:devel/gmake :lang/ocaml|:lang/ocaml|any|n|n|y|y
camlp4-doc-3.02|lang/camlp4,-doc||Camlp4 documentation|lang/camlp4/pkg/DESCR-doc|Angelos D. Keromytis <[email protected]>|lang||:devel/gmake :lang/ocaml|:lang/ocaml|any|n|n|y|y
clisp-2.27|lang/clisp||ANSI Common Lisp compiler|lang/clisp/pkg/DESCR|Shell Hung <[email protected]>|lang||bzip2-*:archivers/bzip2||!powerpc sparc sparc64|y|y|y|y
dejagnu-1.4.2|lang/egcs/dejagnu||recent dejagnu, needed for gcc|lang/egcs/dejagnu/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|tk83.1.3::x11/tk/8.3||:lang/expect|any|y|y|y|y
gcc-3.0.3|lang/egcs/stable||GNU compiler collection: core C compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/gmake bison-*:devel/bison||any|y|y|y|y
g++-3.0.3|lang/egcs/stable,-c++||GNU compiler collection: C++ compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/gmake bison-*:devel/bison|:lang/egcs/stable|any|y|y|y|y
g77-3.0.3|lang/egcs/stable,-g77||GNU compiler collection: f77 compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/gmake bison-*:devel/bison|:lang/egcs/stable|any|y|y|y|y
gobjc-3.0.3|lang/egcs/stable,-objc||GNU compiler collection: obj C compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/gmake bison-*:devel/bison|:lang/egcs/stable|any|y|y|y|y
gcc-20011105-core|lang/egcs/snapshot||GNU compiler collection (experimental): core C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/bison :lang/egcs/dejagnu||any|n|y|n|y
gcc-20011105-c++|lang/egcs/snapshot,-c++||GNU compiler collection (experimental): C++ compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/bison :lang/egcs/dejagnu||any|n|y|n|y
gcc-20011105-objc|lang/egcs/snapshot,-objc||GNU compiler collection (experimental): obj C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/bison :lang/egcs/dejagnu||any|n|y|n|y
gcc-20011105-g77|lang/egcs/snapshot,-g77||GNU compiler collection (experimental): f77 compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/bison :lang/egcs/dejagnu||any|n|y|n|y
gcc-20011105-java|lang/egcs/snapshot,-java||GNU compiler collection (experimental): java compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf :devel/bison :lang/egcs/dejagnu||any|n|y|n|y
erlang-47.4.0|lang/erlang||Ericsson's high-level functional programming language|lang/erlang/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang||:devel/autoconf :devel/gmake||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|tk83.1.3::x11/tk/8.3|||any|y|y|y|y
ezm3-1.0|lang/ezm3||Modula-3 distribution for building CVSup|lang/ezm3/pkg/DESCR|Christian Weisgerber <[email protected]>|lang||:devel/gmake bzip2-*:archivers/bzip2||i386|y|y|y|y
gawk-3.1.0|lang/gawk||GNU awk|lang/gawk/pkg/DESCR|Peter Stromberg <[email protected]>|lang|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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||:devel/gmake||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.4|lang/icon/interp||programming language with generators, X11 and more|lang/icon/interp/pkg/DESCR|Marc Espie <[email protected]>|lang||||any|y|y|y|y
icon-compiler-9.4|lang/icon/interp,-compiler||icon compiler|lang/icon/interp/pkg/DESCR-compiler|Marc Espie <[email protected]>|lang||||any|y|y|y|y
icon-lib-9.4|lang/icon/lib||useful and interesting programs for Icon|lang/icon/lib/pkg/DESCR|Marc Espie <[email protected]>|lang||:lang/icon/interp|:lang/icon/interp|any|y|y|y|y
icon-interp-9.4-no_x11|lang/icon/interp,no_x11||programming language with generators|lang/icon/interp/pkg/DESCR|Marc Espie <[email protected]>|lang||||any|y|y|y|y
icon-compiler-9.4-no_x11|lang/icon/interp,-compiler,no_x11||icon compiler|lang/icon/interp/pkg/DESCR-compiler|Marc Espie <[email protected]>|lang||||any|y|y|y|y
icon-lib-9.4-no_x11|lang/icon/lib,no_x11||useful and interesting programs for Icon|lang/icon/lib/pkg/DESCR|Marc Espie <[email protected]>|lang||:lang/icon/interp|:lang/icon/interp|any|y|y|y|y
intel2gas-1.3.3|lang/intel2gas||convert Intel assembly language (nasm) to AT&T syntax (gas)|lang/intel2gas/pkg/DESCR|Vincent Derrien <[email protected]>|lang||||any|y|y|y|y
jikes-1.15|lang/jikes||compile Java source into .class files (quickly!)|lang/jikes/pkg/DESCR|Ian Darwin <[email protected]>|lang||||any|y|y|y|y
kaffe-1.0.6|lang/kaffe||Transvirtual's Java JDK1.1 compiler, runtime and libs|lang/kaffe/pkg/DESCR|Ian Darwin <[email protected]>|lang|gmp.4.::devel/gmp jpeg.62.::graphics/jpeg png.2.::graphics/png ungif.5.::graphics/libungif|:devel/libtool||i386|y|y|y|y
klone-2.1a|lang/klone||small, Lisp-like interpreted language|lang/klone/pkg/DESCR|The OpenBSD ports mailing-list <[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||:devel/gmake||any|y|y|n|n
librep-0.13.4|lang/librep||Emacs Lisp-like runtime library|lang/librep/pkg/DESCR|Robbie Gates <[email protected]>|lang|gdbm.2::databases/gdbm iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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.02|lang/ocaml||ML language based on complete class-based objective system|lang/ocaml/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang|tcl83.1.3::lang/tcl/8.3 tk83.1.3::x11/tk/8.3|:devel/gmake||any|y|y|y|y
otcl-1.0a7|lang/otcl||MIT Object Tcl|lang/otcl/pkg/DESCR|Angelos D. Keromytis <[email protected]>|lang|tk83.1::x11/tk/8.3|||any|y|y|y|y
pm3-1.1.15|lang/pm3||Polytechnique Montreal Modula-3|lang/pm3/pkg/DESCR|Marc Espie <[email protected]>|lang|Xm.2::x11/openmotif|:devel/gmake||i386|y|y|y|y
python-2.2|lang/python/2.2||interpreted object-oriented programming language|lang/python/2.2/pkg/DESCR|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tests-2.2|lang/python/2.2,-tests||Python testsuite|lang/python/2.2/pkg/DESCR-tests|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tools-2.2|lang/python/2.2,-tools||extra tools for Python|lang/python/2.2/pkg/DESCR-tools|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tkinter-2.2|lang/python/2.2,-tkinter||tk GUI module for Python|lang/python/2.2/pkg/DESCR-tkinter|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-mpz-2.2|lang/python/2.2,-mpz||GNU arbitrary magnitude integer module for Python|lang/python/2.2/pkg/DESCR-mpz|Matt Behrens <[email protected]>|lang|gmp::devel/gmp tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-expat-2.2|lang/python/2.2,-expat||expat module for Python|lang/python/2.2/pkg/DESCR-expat|Matt Behrens <[email protected]>|lang|expat::textproc/expat tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-2.1.2|lang/python/2.1||interpreted object-oriented programming language|lang/python/2.1/pkg/DESCR|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tests-2.1.2|lang/python/2.1,-tests||Python testsuite|lang/python/2.1/pkg/DESCR-tests|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tools-2.1.2|lang/python/2.1,-tools||extra tools for Python|lang/python/2.1/pkg/DESCR-tools|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-tkinter-2.1.2|lang/python/2.1,-tkinter||tk GUI module for Python|lang/python/2.1/pkg/DESCR-tkinter|Matt Behrens <[email protected]>|lang|tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-mpz-2.1.2|lang/python/2.1,-mpz||GNU arbitrary magnitude integer module for Python|lang/python/2.1/pkg/DESCR-mpz|Matt Behrens <[email protected]>|lang|gmp::devel/gmp tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
python-expat-2.1.2|lang/python/2.1,-expat||expat module for Python|lang/python/2.1/pkg/DESCR-expat|Matt Behrens <[email protected]>|lang|expat::textproc/expat tk83::x11/tk/8.3|:devel/autoconf :devel/gmp :textproc/expat||any|y|y|y|y
ruby-1.6.7|lang/ruby||object oriented script language with threads|lang/ruby/pkg/DESCR|Ken Westerback <[email protected]>|lang|tcl83.::lang/tcl/8.3 tk83.::x11/tk/8.3|:devel/autoconf||any|y|y|y|y
r5rs-19980421|lang/scheme-report||revised^5 report on scheme|lang/scheme-report/pkg/DESCR|Marc Espie <[email protected]>|lang||||any|y|y|y|y
scm-5d3|lang/scm||scheme r5 interpreter|lang/scm/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/slib unzip-*:archivers/unzip|:devel/slib|any|y|y|y|y
scm-5d3-no_x11|lang/scm,no_x11||scheme r5 interpreter|lang/scm/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/slib unzip-*:archivers/unzip|:devel/slib|any|y|y|y|y
squeak-3.0.pre2|lang/squeak||smalltalk system|lang/squeak/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/gmake||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 lang/tcl||||any|y|y|y|y
tcl-8.3.4|lang/tcl/8.3||Tool Command Language|lang/tcl/8.3/pkg/DESCR|Kevin Lo <[email protected]>|lang lang/tcl||||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|gdbm.::databases/gdbm|unzip-*:archivers/unzip||any|y|y|y|y
abook-0.4.16|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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|mail|jpeg.62::graphics/jpeg|||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-4.44|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
cmail-3.1|mail/cmail||simple mail counter|mail/cmail/pkg/DESCR|Kevin Lo <[email protected]>|mail||bzip2-*:archivers/bzip2|:net/p5-libnet|any|y|y|y|y
courier-imap-1.4.2|mail/courier-imap||imap server for maildir format mailboxes|mail/courier-imap/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm|:devel/gmake||any|y|y|y|y
courier-pop3-1.4.2|mail/courier-imap,-pop3||pop3 server for maildir format mailboxes|mail/courier-imap/pkg/DESCR-pop3|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm|:devel/gmake||any|y|y|y|y
courier-imap-1.4.2-ldap|mail/courier-imap,ldap||imap server for maildir format mailboxes|mail/courier-imap/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm ldap.2,lber.2:openldap-client-2.*:databases/openldap|:devel/gmake||any|y|y|y|y
courier-pop3-1.4.2-ldap|mail/courier-imap,-pop3,ldap||pop3 server for maildir format mailboxes|mail/courier-imap/pkg/DESCR-pop3|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm ldap.2,lber.2:openldap-client-2.*:databases/openldap|:devel/gmake||any|y|y|y|y
courier-imap-1.4.2-mysql|mail/courier-imap,mysql||imap server for maildir format mailboxes|mail/courier-imap/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|:devel/gmake||any|y|y|y|y
courier-pop3-1.4.2-mysql|mail/courier-imap,-pop3,mysql||pop3 server for maildir format mailboxes|mail/courier-imap/pkg/DESCR-pop3|Anil Madhavapeddy <[email protected]>|mail|gdbm.2::databases/gdbm lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|:devel/gmake||any|y|y|y|y
cucipop-1.31|mail/cucipop||Cubic Circle's POP3 daemon|mail/cucipop/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail||||any|n|y|n|y
elm-2.4ME+66|mail/elm||once-popular mail user agent|mail/elm/pkg/DESCR|Paul Janzen <[email protected]>|mail||||any|y|y|y|y
exim-3.34|mail/exim||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail||||any|y|y|y|y
exim-3.34-mysql|mail/exim,mysql||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|||any|y|y|y|y
exim-3.34-postgresql|mail/exim,postgresql||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|pq.2::databases/postgresql|||any|y|y|y|y
exim-3.34-ldap|mail/exim,ldap||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|ldap.2,lber:openldap-client-2.*:databases/openldap|||any|y|y|y|y
exim-3.34-no_x11|mail/exim,no_x11||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail||||any|y|y|y|y
exim-3.34-no_x11-mysql|mail/exim,no_x11,mysql||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|||any|y|y|y|y
exim-3.34-no_x11-postgresql|mail/exim,no_x11,postgresql||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|pq.2::databases/postgresql|||any|y|y|y|y
exim-3.34-no_x11-ldap|mail/exim,no_x11,ldap||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|ldap.2,lber:openldap-client-2.*:databases/openldap|||any|y|y|y|y
exim-3.34-no_x11-mysql-postgresql-ldap|mail/exim,no_x11,mysql,postgresql,ldap||flexible mail transfer agent|mail/exim/pkg/DESCR|Peter Galbavy <[email protected]>|mail|ldap.2,lber:openldap-client-2.*:databases/openldap lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql pq.2::databases/postgresql|||any|y|y|y|y
exmh-1.6.9|mail/exmh||-superseded by exmh2|/dev/null|The OpenBSD ports mailing-list <[email protected]>|mail tk80||||any|y|y|n|n
exmh-2.5|mail/exmh2||Tcl/Tk-based interface to the MH mail system|mail/exmh2/pkg/DESCR|Michael Paddon <[email protected]>|mail||:lang/tcl/8.3|:lang/expect :mail/metamail :mail/nmh :x11/tk/8.3|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
fetchmail-5.9.6|mail/fetchmail||mail retrieval utility for POP2, POP3, KPOP, IMAP and more|mail/fetchmail/pkg/DESCR|Federico Schwindt <[email protected]>|mail||:devel/autoconf-new||any|y|y|y|y
grepmail-4.70|mail/grepmail||search mailboxes for a particular email|mail/grepmail/pkg/DESCR|Joshua Stein <[email protected]>|mail perl5||:converters/p5-DateManip :devel/p5-Time-TimeDate|:converters/p5-DateManip :devel/p5-Time-TimeDate bzip2-*:archivers/bzip2|any|y|y|y|y
hypermail-2.1.4|mail/hypermail||generate a cross-referenced HTML mail archive|mail/hypermail/pkg/DESCR|Oleg Safiullin <[email protected]>|mail www||||any|y|y|y|y
hypermail-2.1.4-gdbm|mail/hypermail,gdbm||generate a cross-referenced HTML mail archive|mail/hypermail/pkg/DESCR|Oleg Safiullin <[email protected]>|mail www|gdbm.::databases/gdbm|||any|y|y|y|y
imap-uw-2001.315|mail/imap-uw||University of Washington IMAP4rev1/POP2/POP3 mail servers|mail/imap-uw/pkg/DESCR|Jakob Schlyter <[email protected]>|mail||||any|n|y|n|y
imaputils-uw-20001219|mail/imaputils-uw||University of Washington IMAP utilities|mail/imaputils-uw/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|c-client.3:c-client->=4.40p1:mail/c-client|||any|n|y|n|y
imp-3.0|mail/imp|/var/www|highly configurable pop3/imap4 webmail client|mail/imp/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail www||||any|y|y|y|y
isync-0.5|mail/isync||synchronize IMAP4 and maildir mailboxes|mail/isync/pkg/DESCR|Dan Harnett <[email protected]>|mail||||any|y|y|y|y
kbiff-3.5.4|mail/kbiff||new mail notification utility|mail/kbiff/pkg/DESCR|David Lebel <[email protected]>|mail|kdecore.3.::x11/kde/libs2|:x11/qt2-designer bzip2-*:archivers/bzip2||any|y|y|y|y
mailcrypt-3.5.6-emacs-gnupg|mail/mailcrypt,emacs,gnupg||emacs interface to PGP and GnuPG|mail/mailcrypt/pkg/DESCR|Shell Hung <[email protected]>|mail||:editors/emacs|:security/gnupg|any|y|y|y|y
maildrop-1.3.4|mail/maildrop||local mail delivery agent with filtering abilities|mail/maildrop/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail||||any|y|y|y|y
mailman-2.0.8|mail/mailman||mailing list manager with web interface|mail/mailman/pkg/DESCR|Nikolay Sturm <[email protected]>|mail||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
mailman-2.0.8-postfix|mail/mailman,postfix||mailing list manager with web interface|mail/mailman/pkg/DESCR|Nikolay Sturm <[email protected]>|mail||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
majordomo-1.94.5|mail/majordomo||mailing list manager|mail/majordomo/pkg/DESCR|Daniel Hartmeier <[email protected]>|mail||||any|n|n|n|n
mboxgrep-0.7.4|mail/mboxgrep||scan mailboxes for messages matching a regular expression|mail/mboxgrep/pkg/DESCR|Kevin Lo <[email protected]>|mail|pcre::devel/pcre|||any|y|y|y|y
metamail-2.7|mail/metamail||MIME implementation|mail/metamail/pkg/DESCR|The OpenBSD ports mailing-list <[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
mixmaster-2.0.4b45|mail/mixmaster||client for anonymous remailing|mail/mixmaster/pkg/DESCR|Nikolay Sturm <[email protected]>|mail security||||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.5.1|mail/mutt/stable||tty-based e-mail client|mail/mutt/stable/pkg/DESCR|Federico Schwindt <[email protected]>|mail|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mutt-1.3.28i|mail/mutt/snapshot||tty-based e-mail client, development version|mail/mutt/snapshot/pkg/DESCR|David Lebel <[email protected]>|mail|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nmh-1.0.4|mail/nmh||new MH mail handling program|mail/nmh/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail||||any|y|y|y|y
openwebmail-1.62|mail/openwebmail|/var/www|highly configurable webmail client|mail/openwebmail/pkg/DESCR|Kevin Lo <[email protected]>|mail|||:chinese/hc :converters/p5-MIME-Base64 :databases/p5-ldap :net/p5-libnet :textproc/ispell :www/p5-CGI|any|y|y|y|y
p5-Mail-Alias-1.12|mail/p5-Mail-Alias||manipulates e-mail alias files of various formats|mail/p5-Mail-Alias/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail perl5||||any|y|y|y|y
p5-Mail-Box-1.112|mail/p5-Mail-Box||perl module to manage mail folders|mail/p5-Mail-Box/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail perl5||:devel/p5-Time-TimeDate :mail/p5-MIME-tools|:devel/p5-Time-TimeDate :mail/p5-MIME-tools|any|y|y|y|y
p5-Mail-IMAPClient-2.1.3|mail/p5-Mail-IMAPClient||perl module for an IMAP Client API|mail/p5-Mail-IMAPClient/pkg/DESCR|Anil Madhavapeddy <[email protected]>|mail perl5||:devel/p5-Parse-RecDescent||any|y|y|y|y
p5-Mail-POP3Client-2.9|mail/p5-Mail-POP3Client||perl module to talk to a POP3 (RFC1081) server|mail/p5-Mail-POP3Client/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail perl5||||any|y|y|y|y
p5-Mail-Tools-1.15|mail/p5-Mail-Tools||modules for handling mail with perl|mail/p5-Mail-Tools/pkg/DESCR|Marc Espie <[email protected]>|mail devel perl5|||:net/p5-libnet|any|y|y|y|y
p5-MIME-tools-5.411a|mail/p5-MIME-tools||modules for parsing (and creating!) MIME entities|mail/p5-MIME-tools/pkg/DESCR|Shell Hung <[email protected]>|mail perl5||:converters/p5-MIME-Base64 :devel/p5-IO-stringy :mail/p5-Mail-Tools|:converters/p5-MIME-Base64 :devel/p5-IO-stringy :mail/p5-Mail-Tools|any|y|y|y|y
pgpsendmail-1.4.5|mail/pgpsendmail||PGP sign/encrypt/decrypt messages automatically|mail/pgpsendmail/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail||:security/pgp||any|y|y|y|y
pine+pico-4.44|mail/pine||Program for Internet E-mail and News, with pico|mail/pine/pkg/DESCR|Brad Smith <[email protected]>|mail news editors|c-client.4:c-client->=4.41:mail/c-client|c-client->=4.41:mail/c-client||any|n|y|n|y
pico-4.2|mail/pine,-pico||small text editor|mail/pine/pkg/DESCR-pico|Brad Smith <[email protected]>|editors||c-client->=4.41:mail/c-client||any|n|y|n|y
pine-4.44|mail/pine,-pine||Program for Internet E-mail and News, without pico|mail/pine/pkg/DESCR-pine|Brad Smith <[email protected]>|mail news|c-client.4:c-client->=4.41:mail/c-client|c-client->=4.41:mail/c-client||any|n|y|n|y
popclient-3.0b6|mail/popclient||client for pop2, pop3, apop, rpop|mail/popclient/pkg/DESCR|The OpenBSD ports mailing-list <[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|n|n|n|n
poppy-3.1|mail/poppy||client to perform simple tasks with a POP3/IMAP server|mail/poppy/pkg/DESCR|Kevin Lo <[email protected]>|mail||||any|y|y|y|y
postfix-1.1.5|mail/postfix/stable||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail||||any|y|y|y|y
postfix-1.1.5-ldap|mail/postfix/stable,ldap||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|ldap.2,lber:openldap-client-2.*:databases/openldap|||any|y|y|y|y
postfix-1.1.5-mysql|mail/postfix/stable,mysql||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|lib/mysql/mysqlclient.10:mysql-client-3.23.*:databases/mysql|||any|y|y|y|y
postfix-1.1.5-pcre|mail/postfix/stable,pcre||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail|pcre::devel/pcre|||any|y|y|y|y
postfix-1.1.5.tls0.8.5-tls|mail/postfix/stable,tls||fast, secure sendmail replacement|mail/postfix/stable/pkg/DESCR|Jakob Schlyter <[email protected]>|mail||||any|y|y|y|y
prepop-0.1b7|mail/prepop||simple interactive POP3 client|mail/prepop/pkg/DESCR|Patroklos Argyroudis <[email protected]>|mail||||any|y|y|y|y
procmail-3.22|mail/procmail||filtering local mail delivery agent|mail/procmail/pkg/DESCR|Bruno Rohee <[email protected]>|mail||||any|y|y|y|y
razor-agents-1.19|mail/razor-agents||agent for Razor spam filtering networks|mail/razor-agents/pkg/DESCR|Marc Matteo <[email protected]>|mail||p5-Digest-SHA1->=2.00:security/p5-Digest-SHA1 p5-Mail-Tools->=1.15:mail/p5-Mail-Tools p5-Net-DNS->=0.12:net/p5-Net-DNS p5-Time-HiRes->=1.20:devel/p5-Time-HiRes|p5-Digest-SHA1->=2.00:security/p5-Digest-SHA1 p5-Mail-Tools->=1.15:mail/p5-Mail-Tools p5-Net-DNS->=0.12:net/p5-Net-DNS p5-Time-HiRes->=1.20:devel/p5-Time-HiRes|any|y|y|y|y
smtpclient-1.0.0|mail/smtpclient||simple SMTP client|mail/smtpclient/pkg/DESCR|Patroklos Argyroudis <[email protected]>|mail||||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
sylpheed-0.7.4|mail/sylpheed||mail/news client in gtk+|mail/sylpheed/pkg/DESCR|Damien Couderc <[email protected]>|mail news x11|gdk_pixbuf.2::graphics/gdk-pixbuf|||any|y|y|y|y
tkrat-2.0.3|mail/tkrat||mail user agent for X in C with a Tcl/Tk frontend|mail/tkrat/pkg/DESCR|Kevin Lo <[email protected]>|mail x11|tcl83.1.3::lang/tcl/8.3 tk83.1.3::x11/tk/8.3|||any|y|y|y|y
tmda-0.48|mail/tmda||reduce the amount of SPAM/UCE (junk-mail)|mail/tmda/pkg/DESCR|David Lebel <[email protected]>|mail||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
tnef-1.0.1|mail/tnef||decode MS-TNEF MIME attachments|mail/tnef/pkg/DESCR|Jakob Schlyter <[email protected]>|mail||||any|y|y|y|y
ttygrin-0.4.7|mail/ttygrin||tty-based mail and news client|mail/ttygrin/pkg/DESCR|Vincent Derrien <[email protected]>|mail||:devel/gmake||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.2p|mail/wmbiff||xbiff-like Window Maker dock app|mail/wmbiff/pkg/DESCR|Cameron Lerch <[email protected]>|mail x11 x11/windowmaker||||any|y|y|y|y
wmmail-0.64|mail/wmmail||wm-dockapp; mail notifier|mail/wmmail/pkg/DESCR|Peter Stromberg <[email protected]>|mail x11 x11/windowmaker|PropList.2::devel/libproplist|:devel/gmake|windowmaker-*:x11/windowmaker|any|y|y|y|y
wmpop3-0.5.6a|mail/wmpop3||wm-dockapp; POP3 mail check|mail/wmpop3/pkg/DESCR|Peter Stromberg <[email protected]>|mail x11/windowmaker||||any|y|y|y|y
xfaces-3.3|mail/xfaces||mail image display for X11|mail/xfaces/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail|compface::mail/faces|||any|n|n|n|n
xfmail-1.4.6|mail/xfmail||xforms-based mail application for Unix|mail/xfmail/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|mail x11|forms::x11/xforms glib.1.2::devel/glib|bzip2-*:archivers/bzip2||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|The OpenBSD ports mailing-list <[email protected]>|mail x11||||any|y|y|y|y
R-1.4.1|math/R||clone of S, a powerful math/statistics/graphics language|math/R/pkg/DESCR|Ian Darwin <[email protected]>|math|jpeg.62::graphics/jpeg png.2::graphics/png|||any|y|y|y|y
abs-0.8|math/abs||free spreadsheet with graphical user interface|math/abs/pkg/DESCR|Kevin Lo <[email protected]>|math||||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
calcoo-1.3.7|math/calcoo||Gtk-based scientific calculator|math/calcoo/pkg/DESCR|Christian Weisgerber <[email protected]>|math|gtk.1,gdk.1::x11/gtk+|||any|y|y|y|y
cassowary-0.60|math/cassowary||solving toolkit for linear equalities and inequalities|math/cassowary/pkg/DESCR|Peter Valchev <[email protected]>|math|GTL.1::devel/gtl guile.9::lang/guile|:devel/bison :devel/gmake||any|n|n|y|y
coq-7.0|math/coq||proof assistant based on a typed lambda calculus|math/coq/pkg/DESCR|Yozo Toda <[email protected]>|math||:devel/gmake :lang/camlp4 :lang/ocaml||any|y|y|y|y
fftw-2.1.3|math/fftw||C routines for computing the Discrete Fourier Transform|math/fftw/pkg/DESCR|Nikolay Sturm <[email protected]>|math||||any|y|y|y|y
geg-1.0.2|math/geg||simple program for plotting 2d mathematical functions|math/geg/pkg/DESCR|Peter Valchev <[email protected]>|math|gdk_imlib::graphics/imlib glib.1::devel/glib gtk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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.2::graphics/png|||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.2::graphics/png|||any|n|n|n|y
grace-5.1.6|math/grace||GRaphing, Advanced Computation and Exploration of data|math/grace/pkg/DESCR|Nikolay Sturm <[email protected]>|math|Xm.2::x11/openmotif jpeg.62::graphics/jpeg pdf.2::print/pdflib png.2::graphics/png t1.3::devel/t1lib tiff.35::graphics/tiff|||any|y|y|y|y
graphviz-1.7.6|math/graphviz||graph drawing software|math/graphviz/pkg/DESCR|Marc Espie <[email protected]>|math devel graphics|jpeg.62::graphics/jpeg png.2::graphics/png tcl83.::lang/tcl/8.3 tk83.::x11/tk/8.3|:devel/autoconf :devel/automake :devel/gmake :devel/libtool||any|y|y|n|n
grpn-1.1.1|math/grpn||graphical reverse polish notation calculator|math/grpn/pkg/DESCR|Mark Grimes <[email protected]>|math x11|gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
hc-1.1|math/hc||multi-radix integer desk calculator|math/hc/pkg/DESCR|Mark Grimes <[email protected]>|math||||any|y|y|y|y
hexcalc-19951219|math/hexcalc||multi-radix calculator for x11|math/hexcalc/pkg/DESCR|Peter Valchev <[email protected]>|math||||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|||:emulators/redhat/base|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|||:math/maple|i386|n|n|n|n
mcsim-4.2.0|math/mcsim||monte carlo simulation software|math/mcsim/pkg/DESCR|Peter Valchev <[email protected]>|math||||any|y|y|y|y
netcdf-3.5b3|math/netcdf||library for machine-independent, array-oriented data access|math/netcdf/pkg/DESCR|Tom Knienieder <[email protected]>|math||||any|y|y|y|y
ntl-5.2|math/ntl||Victor Shoup's Number Theory Library|math/ntl/pkg/DESCR|Tom Knienieder <[email protected]>|math|gmp.4::devel/gmp|||any|y|y|y|y
octave-2.0.16|math/octave||High-level language for numerical computations|math/octave/pkg/DESCR|Sungman Cho <[email protected]>|math||:devel/gmake||any|y|y|y|y
p5-AI-NeuralNet-BackProp-0.89|math/p5-AI-NeuralNet-BackProp||implement a back-propagation feed-forward neural network|math/p5-AI-NeuralNet-BackProp/pkg/DESCR|Kevin Lo <[email protected]>|math perl5||unzip-*:archivers/unzip||any|y|y|y|y
p5-AI-NeuralNet-Mesh-0.44|math/p5-AI-NeuralNet-Mesh||module to implement an accurate neural network mesh|math/p5-AI-NeuralNet-Mesh/pkg/DESCR|Kevin Lo <[email protected]>|math perl5||unzip-*:archivers/unzip||any|y|y|y|y
p5-AI-Perceptron-0.01|math/p5-AI-Perceptron||module to internal operations of neural networks|math/p5-AI-Perceptron/pkg/DESCR|Kevin Lo <[email protected]>|math perl5||||any|y|y|y|y
p5-Math-GMP-1.06|math/p5-Math-GMP||high speed arbitrary-size integer math|math/p5-Math-GMP/pkg/DESCR|Anil Madhavapeddy <[email protected]>|math perl5|gmp.4::devel/gmp|||any|y|y|y|y
p5-Set-IntSpan-1.07|math/p5-Set-IntSpan||manage sets of integers|math/p5-Set-IntSpan/pkg/DESCR|Kevin Lo <[email protected]>|math perl5||||any|y|y|y|y
py-Numeric-20.3|math/py-Numeric||fast array facility to the Python language|math/py-Numeric/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
py-Numeric-module-20.3|math/py-Numeric,-module||extra modules for py-Numeric|math/py-Numeric/pkg/DESCR-module|Shell Hung <[email protected]>|devel||python-2.1*:lang/python/2.1|:math/py-Numeric|any|y|y|y|y
sc-6.21|math/sc||curses spreadsheet-calculator program|math/sc/pkg/DESCR|Peter Valchev <[email protected]>|math||||any|y|y|y|y
wingz-142|math/wingz||commercial spreadsheet|math/wingz/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|math|||:emulators/redhat/base|i386|n|n|n|y
wmcalc-0.3|math/wmcalc||wm-dockapp; simple four-function calculator|math/wmcalc/pkg/DESCR|Peter Stromberg <[email protected]>|math x11 x11/windowmaker||||any|y|y|y|y
xspread-3.1.1c|math/xspread||spreadsheet program under X11|math/xspread/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|math||||any|y|y|y|y
yorick-1.5.08|math/yorick||interpreted language for scientific computing|math/yorick/pkg/DESCR|Peter Valchev <[email protected]>|math devel||||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|tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|:devel/gmake||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|tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|||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|tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|:devel/gmake :mbone/common||any|y|y|y|y
rat-3.0.33|mbone/rat||Robust Audio Tool from UCL|mbone/rat/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tk80::x11/tk/8.0|:devel/gmake||any|n|y|n|y
relate-2.0|mbone/relate||ReLaTe integrated conferencing tool from UCL|mbone/relate/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl80::lang/tcl/8.0 tk80::x11/tk/8.0|:devel/gmake|:mbone/nte :mbone/rat :mbone/vic :mbone/wbd|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|n|n|n|n
sdr-2.7e|mbone/sdr||MBone Session Directory|mbone/sdr/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|:devel/gmake||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::audio/gsm|||any|n|y|n|y
vat-4.0b2|mbone/vat||Visual Audio Tool, multicast audioconferencing|mbone/vat/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|gsm.1::audio/gsm tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|:audio/gsm||any|y|y|y|y
vic-2.8ucl4|mbone/vic||MBONE video tool|mbone/vic/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl80.1.5::lang/tcl/8.0 tk80.1.5::x11/tk/8.0|:devel/autoconf||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|||ghostscript-*:print/ghostscript/gnu|i386|n|n|n|n
wbd-1.0ucl4|mbone/wbd||shared drawing (whiteboard) tool using multicast|mbone/wbd/pkg/DESCR|Angelos D. Keromytis <[email protected]>|mbone|tcl80::lang/tcl/8.0 tk80::x11/tk/8.0|:print/ghostscript/gnu|:print/ghostscript/gnu|any|y|y|y|y
amanda-2.4.2.2|misc/amanda||network-capable tape backup (client and tape server)|misc/amanda/pkg/DESCR|Tom Schutter <[email protected]>|misc||:archivers/gtar :devel/gmake :math/gnuplot :net/samba/stable||any|y|y|y|y
amanda-client-2.4.2.2|misc/amanda,-client||network-capable tape backup (client only)|misc/amanda/pkg/DESCR-client|Tom Schutter <[email protected]>|misc||:archivers/gtar :devel/gmake :math/gnuplot :net/samba/stable||any|y|y|y|y
astrolog-5.30|misc/astrolog||astrology program for X11 and alpha-numeric terminals|misc/astrolog/pkg/DESCR|The OpenBSD ports mailing-list <[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-*:archivers/bzip2||any|y|y|y|y
brs-4.00l1|misc/brs||bible reader|misc/brs/pkg/DESCR|J Shoemaker <[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|The OpenBSD ports mailing-list <[email protected]>|misc x11|xview.3,olgx.3::x11/xview/lib|:x11/xview/config||any|n|y|n|y
cbb-0.73|misc/cbb||checkbook balancing tool|misc/cbb/pkg/DESCR|Angelos D. Keromytis <[email protected]>|misc tk80|tk80.1.::x11/tk/8.0||:misc/plan :x11/tk/8.0|any|y|y|y|y
cdrchive-1.0.1|misc/cdrchive||Qt-based CD creation tool|misc/cdrchive/pkg/DESCR|Jacob Meuser <[email protected]>|misc x11|lib/qt2/qt.2::x11/qt2||:misc/cdrecord|any|y|y|y|y
cdrdao-1.1.5|misc/cdrdao||write audio/data CD-Rs in disk-at-once mode|misc/cdrdao/pkg/DESCR|Federico Schwindt <[email protected]>|audio misc||:devel/autoconf :devel/gmake :devel/pccts||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||:devel/gmake||alpha amiga hp300 i386 mac68k macppc mvme68k 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.5|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|Yannick Cote <[email protected]>|misc||:devel/gmake||any|y|y|y|y
dnetc-2.8010.463|misc/dnetc||official distributed.net client|misc/dnetc/pkg/DESCR|David Lebel <[email protected]>|misc||||i386 sparc|n|n|n|n
figlet-2.2|misc/figlet||generates ASCII banner art|misc/figlet/pkg/DESCR|Anil Madhavapeddy <[email protected]>|misc graphics||||any|y|y|y|y
fileutils-4.1|misc/fileutils||GNU versions of common file management utilities|misc/fileutils/pkg/DESCR|David Lebel <[email protected]>|misc|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gnuls-4.1|misc/fileutils,-ls||colorized GNU 'ls'|misc/fileutils/pkg/DESCR-ls|David Lebel <[email protected]>|misc|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
findutils-4.1|misc/findutils||finds and then operates on files|misc/findutils/pkg/DESCR|David Lebel <[email protected]>|misc|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gacc-0.7.5|misc/gacc||personal accounts manager|misc/gacc/pkg/DESCR|Kevin Lo <[email protected]>|misc productivity|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|y
garmin-utils-1.7|misc/garmin-utils||Garmin GPS upload/download utilities|misc/garmin-utils/pkg/DESCR|Marco S Hyman <[email protected]>|misc||||any|y|y|y|y
gkrellaclock-0.1|misc/gkrellaclock||analog clock plugin for gkrellm|misc/gkrellaclock/pkg/DESCR|David Lebel <[email protected]>|misc||:sysutils/gkrellm|:sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gkrellm-reminder-0.3.5|misc/gkrellm-reminder||gkrellm plugin to display reminders for important events|misc/gkrellm-reminder/pkg/DESCR|Joshua Stein <[email protected]>|misc||:sysutils/gkrellm|:sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gkrellstock-0.2|misc/gkrellstock||gkrellm plugin to display stock quotes|misc/gkrellstock/pkg/DESCR|Joshua Stein <[email protected]>|misc||:sysutils/gkrellm|:misc/p5-Finance-Quote :sysutils/gkrellm|!hppa m88k vax|y|y|y|y
gone-1.3.2a|misc/gone||terminal locking utility|misc/gone/pkg/DESCR|Kevin Lo <[email protected]>|misc||||any|y|y|y|y
impress-1.1b9|misc/impress||publishing and presentation tool|misc/impress/pkg/DESCR|Kevin Lo <[email protected]>|misc|||:x11/tk/8.3|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|n|n|n|n
ktail-0.5.1|misc/ktail||file monitor|misc/ktail/pkg/DESCR|Kevin Lo <[email protected]>|misc|kdecore.3,DCOP,kdeui,kdesu,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
ktimeclock-2.0.1|misc/ktimeclock||task-based timeclock|misc/ktimeclock/pkg/DESCR|Kevin Lo <[email protected]>|misc x11|kdecore.3,DCOP,kdesu,kdeui,kio,kssl::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
libutf8-0.7.3|misc/libutf8||provides UTF-8 locale support|misc/libutf8/pkg/DESCR|Shell Hung <[email protected]>|misc devel||||any|y|y|y|y
magicpoint-1.09a|misc/magicpoint||X11-based presentation tool|misc/magicpoint/pkg/DESCR|Kevin Lo <[email protected]>|misc productivity|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext mng::graphics/libmng png.2::graphics/png ttf.1::print/freetype ungif.5::graphics/libungif|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mc-4.5.51|misc/mc||free Norton Commander Clone with many useful features|misc/mc/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|misc|glib.1.2::devel/glib|||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|slang.14::devel/libslang|||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
p5-Finance-Quote-1.05|misc/p5-Finance-Quote||module to obtain financial quotes from exchanges|misc/p5-Finance-Quote/pkg/DESCR|Anil Madhavapeddy <[email protected]>|misc perl5||:www/p5-HTML-TableExtract :www/p5-libwww|:www/p5-HTML-TableExtract :www/p5-libwww|any|y|y|y|y
p5-I18N-Charset-1.15|misc/p5-I18N-Charset||module to map charset names registered with IANA|misc/p5-I18N-Charset/pkg/DESCR|Kevin Lo <[email protected]>|misc perl5||:devel/p5-Test-Simple|:devel/p5-Test-Simple|any|y|y|y|y
p5-I18N-LangTags-0.27|misc/p5-I18N-LangTags||deal with RFC-1766-style language tags|misc/p5-I18N-LangTags/pkg/DESCR|Kevin Lo <[email protected]>|misc perl5||||any|y|y|y|y
p5-Locale-Codes-2.02|misc/p5-Locale-Codes||module to provide access to ISO3166 and ISO639 codes|misc/p5-Locale-Codes/pkg/DESCR|Kevin Lo <[email protected]>|misc perl5||||any|y|y|y|y
pdmenu-1.2.69|misc/pdmenu||simple slang-based menu program|misc/pdmenu/pkg/DESCR|Matt Behrens <[email protected]>|misc|slang.14::devel/libslang|||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 palm|pisock::comms/pilot-link qt.1.45::x11/qt|||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|Xm.2::x11/openmotif|||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|||:x11/tk/8.3|any|y|y|y|y
rpm-3.0.6p1|misc/rpm||redhat package manager|misc/rpm/pkg/DESCR|Marc Espie <[email protected]>|misc archivers emulators|bz2.::archivers/bzip2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext popt.0.::devel/popt|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
screen-3.9.11|misc/screen||multi-screen window manager|misc/screen/pkg/DESCR|Brad Smith <[email protected]>|misc||||any|y|y|y|y
screen-3.9.11-static|misc/screen,static||multi-screen window manager|misc/screen/pkg/DESCR|Brad Smith <[email protected]>|misc||||any|y|y|y|y
sh-utils-2.0|misc/sh-utils||GNU command line utilities|misc/sh-utils/pkg/DESCR|David Lebel <[email protected]>|misc|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
splitvt-1.6.3|misc/splitvt||run two shells in a split window/terminal|misc/splitvt/pkg/DESCR|The OpenBSD ports mailing-list <[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|||:x11/tk/8.3|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|||:x11/tk/8.3|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|tk83.1.::x11/tk/8.3||:textproc/glimpse :textproc/rman|any|n|y|n|y
ttyrec-1.0.5|misc/ttyrec||tty recorder|misc/ttyrec/pkg/DESCR|Reinhard J. Sammer <[email protected]>|misc||||any|y|y|y|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
wmmand-1.0|misc/wmmand||wm-dockapp; mandelbrot explorer|misc/wmmand/pkg/DESCR|Peter Stromberg <[email protected]>|misc x11 x11/windowmaker|||xv-*:graphics/xv|any|y|y|y|y
wmnetscapekiller-0.3|misc/wmnetscapekiller||wm-dockapp; for killing Netscape when it freezes|misc/wmnetscapekiller/pkg/DESCR|Peter Stromberg <[email protected]>|misc x11 x11/windowmaker|||skill-*:sysutils/skill|any|y|y|y|y
wmtimer-2.4|misc/wmtimer||wm-dockapp; alarm clock|misc/wmtimer/pkg/DESCR|Peter Stromberg <[email protected]>|misc x11 x11/windowmaker|gtk.1,gdk.1::x11/gtk+|||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|The OpenBSD ports mailing-list <[email protected]>|misc|gdbm.2::databases/gdbm glib.1.2::devel/glib|||any|y|y|y|y
xgas-1.0|misc/xgas||animated simulation of an ideal gas|misc/xgas/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|misc||||any|y|y|y|y
xless-1.7|misc/xless||X11 viewer for text files|misc/xless/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|misc||||any|y|y|y|y
xnc-4.4.6|misc/xnc||filemanager for X Window|misc/xnc/pkg/DESCR|Reinhard J. Sammer <[email protected]>|misc x11|jpeg.62.::graphics/jpeg png.2.::graphics/png|||any|y|y|y|y
xtar-1.4|misc/xtar||view and manipulate contents of a tar file|misc/xtar/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|misc|Xm.2::x11/openmotif|||any|y|y|y|y
xtimer-0.8089|misc/xtimer||super simple digital timer for X11|misc/xtimer/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|misc||||any|y|y|y|y
ytree-1.73|misc/ytree||DOS-XTREE(tm) look-a-like file manager|misc/ytree/pkg/DESCR|William Yodlowsky <[email protected]>|misc||||any|y|y|y|y
aggregate-1.5|net/aggregate||optimise a list of route prefixes|net/aggregate/pkg/DESCR|Joe Abley <[email protected]>|net||||any|y|y|y|y
angst-0.4b|net/angst||active packet sniffer|net/angst/pkg/DESCR|Mark Grimes <[email protected]>|net|net::net/libnet|||any|y|y|y|y
archie-1.4.1|net/archie||Prospero client for the archie service|net/archie/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|net||||any|n|y|n|y
ari-yahoo-1.7|net/ari-yahoo||console Yahoo! messenger client|net/ari-yahoo/pkg/DESCR|Arthur Johnson <[email protected]>|net||||any|y|y|y|y
arpcatch-19970824|net/arpcatch||userland arp-proxy daemon|net/arpcatch/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|net||||any|y|y|y|y
arping-1.04|net/arping||ARP level ping utility|net/arping/pkg/DESCR|Joshua Stein <[email protected]>|net|net::net/libnet|||any|y|y|y|y
arpwatch-2.1a11|net/arpwatch||monitor arp & rarp requests|net/arpwatch/pkg/DESCR|Jakob Schlyter <[email protected]>|net||||any|y|y|y|y
axyftp-0.5.1p1|net/axyftp||ftp client for X window system|net/axyftp/pkg/DESCR|Kevin Lo <[email protected]>|net|Xm.2::x11/openmotif|||any|n|y|n|y
balance-2.33|net/balance||tcp proxy with load balancing and failover mechanisms|net/balance/pkg/DESCR|Jason Peel <[email protected]>|net||||any|y|y|y|y
bind-8.2.5|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.2.0|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|The OpenBSD ports mailing-list <[email protected]>|net||||any|y|y|y|y
BitchX-1.0c18|net/bitchx||alternative ircII color client|net/bitchx/pkg/DESCR|Vincent Derrien <[email protected]>|net||:devel/gmake||any|y|y|y|y
bnc-2.8.4|net/bnc||simple IRC relay proxy with support for virtual hosting|net/bnc/pkg/DESCR|Brad Smith <[email protected]>|net||||any|y|y|y|y
cadaver-0.19.1|net/cadaver||command-line WebDAV client|net/cadaver/pkg/DESCR|David Lebel <[email protected]>|net www|iconv.2::converters/libiconv xml2.6:libxml->=2.4.8:textproc/libxml||libiconv-*:converters/libiconv|any|y|y|y|y
centericq-4.6.0|net/centericq||curses-based icq client implementation|net/centericq/pkg/DESCR|Peter Valchev <[email protected]>|net|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext sigc.0:libsigc++-*:devel/libsigc++|:devel/autoconf :devel/gmake automake-*:devel/automake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
cidr-2.3|net/cidr||RFC 1878 subnet calculator / helper|net/cidr/pkg/DESCR|Jonas Eriksson <[email protected]>|net||||any|y|y|y|y
clog-1.6|net/clog||tcp connection logger daemon|net/clog/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|net security||||any|y|y|y|y
courtney-1.3|net/courtney||simple port scan detector|net/courtney/pkg/DESCR|Brian Caswell <[email protected]>|net security||||any|y|y|y|y
crawl-0.3|net/crawl||small and efficient HTTP crawler|net/crawl/pkg/DESCR|Mark Grimes <[email protected]>|net|db::databases/db|:devel/autoconf :devel/libevent||any|y|y|y|y
ctrace-0.8|net/ctrace||multiprotocol traceroute tool|net/ctrace/pkg/DESCR|Patroklos Argyroudis <[email protected]>|net||:net/p5-Net-RawIP|:net/p5-Net-RawIP|any|y|y|y|y
curl-7.9.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.9.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-16.1f|net/cvsup||network file distribution system|net/cvsup/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel||:lang/ezm3||i386|y|y|y|y
cvsupd-16.1f|net/cvsup,-server||network file distribution server|net/cvsup/pkg/DESCR-server|Christian Weisgerber <[email protected]>|net devel||:lang/ezm3||i386|y|y|y|y
cvsup-16.1f-no_x11|net/cvsup,no_x11||network file distribution system|net/cvsup/pkg/DESCR|Christian Weisgerber <[email protected]>|net devel||:lang/ezm3||i386|y|y|y|y
cvsupd-16.1f-no_x11|net/cvsup,-server,no_x11||network file distribution server|net/cvsup/pkg/DESCR-server|Christian Weisgerber <[email protected]>|net devel||:lang/ezm3||i386|y|y|y|y
dc_gui-0.42|net/dc_gui||GUI for dctc (Direct Connect Text Clone)|net/dc_gui/pkg/DESCR|Nils Nordman <[email protected]>|net x11|gnome.36,art_lgpl.4,gnomesupport.,gnomeui.46,gnorba.28::x11/gnome/libs|:devel/autoconf dctc-*:net/dctc|dctc-*:net/dctc|any|y|y|y|y
dctc-0.68.0|net/dctc||Direct Connect clone|net/dctc/pkg/DESCR|Nils Nordman <[email protected]>|net|glib.1.2,gthread.1.2::devel/glib|:devel/autoconf||any|y|y|y|y
dlint-1.4.0|net/dlint||DNS zone verification tool|net/dlint/pkg/DESCR|Jason Peel <[email protected]>|net||||any|y|y|y|y
dnstracer-1.4|net/dnstracer||domain name system resolution tracer|net/dnstracer/pkg/DESCR|Joshua Stein <[email protected]>|net||||any|y|y|y|y
doc-2.2.3|net/doc||automated domain testing tool|net/doc/pkg/DESCR|Jakob Schlyter <[email protected]>|net|||:net/bind9|any|y|y|y|y
dxpc-3.8.1|net/dxpc||X11 over a low bandwidth link|net/dxpc/pkg/DESCR|Marc Espie <[email protected]>|net x11|lzo::archivers/lzo|||any|y|y|y|y
epic4-1.0.1|net/epic4||(E)nhanced (P)rogrammable (I)RC-II (C)lient|net/epic4/pkg/DESCR|Brad Smith <[email protected]>|net||:devel/autoconf||any|y|y|y|y
ethereal-0.9.1|net/ethereal||network protocol analyzer|net/ethereal/pkg/DESCR|Jakob Schlyter <[email protected]>|net x11|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|y
ethereal-0.9.1-no_x11|net/ethereal,no_x11||network protocol analyzer|net/ethereal/pkg/DESCR|Jakob Schlyter <[email protected]>|net x11|glib.1.2,gmodule.1.2::devel/glib|:devel/gmake||any|y|y|y|y
ettercap-0.6.4|net/ettercap||multi-purpose sniffer/interceptor/logger|net/ettercap/pkg/DESCR|Mark Grimes <[email protected]>|net||:devel/gmake||!hppa m88k vax|y|y|y|y
everybuddy-0.2.1beta6|net/everybuddy||chat program that combines AIM, ICQ, and Yahoo! Chat|net/everybuddy/pkg/DESCR|Josh Rivel <[email protected]>|net|esd::audio/esound|:devel/gmake||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|net::net/libnet|||any|y|y|n|n
flow-tools-0.55|net/flow-tools||cisco NetFlow utilities|net/flow-tools/pkg/DESCR|Jakob Schlyter <[email protected]>|net||||any|y|y|y|y
fping-2.2b1|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
ftpcopy-0.3.9|net/ftpcopy||FTP listing and transfer tools|net/ftpcopy/pkg/DESCR|Brian J. Kifiak <[email protected]>|net||||any|n|n|n|n
gaim-0.54|net/gaim||Gtk-based AOL Instant Messenger (AIM) client|net/gaim/pkg/DESCR|Joshua Stein <[email protected]>|net|gdk_pixbuf.2::graphics/gdk-pixbuf gtk.1.2,glib.1.2::x11/gtk+||:textproc/ispell|any|y|y|y|y
gaim-0.54-esd|net/gaim,esd||Gtk-based AOL Instant Messenger (AIM) client|net/gaim/pkg/DESCR|Joshua Stein <[email protected]>|net|esd.2::audio/esound gdk_pixbuf.2::graphics/gdk-pixbuf gtk.1.2,glib.1.2::x11/gtk+||:textproc/ispell|any|y|y|y|y
gated-3.6|net/gated||routing protocol daemon|net/gated/pkg/DESCR|Jakob Schlyter <[email protected]>|net||:devel/autoconf||any|n|n|n|y
gnomeicu-0.96.1|net/gnomeicu||GNOME ICQ client|net/gnomeicu/pkg/DESCR|Nils Nordman <[email protected]>|net x11/gnome|gdbm.::databases/gdbm panel_applet::x11/gnome/core|:devel/autoconf||any|y|y|y|y
gnut-0.4.28|net/gnut||command line gnutella client|net/gnut/pkg/DESCR|Nikolay Sturm <[email protected]>|net|||findutils-*:misc/findutils|any|y|y|y|y
gtk-gnutella-0.80|net/gtk-gnutella||Gtk-based GUI client for the Gnutella Network|net/gtk-gnutella/pkg/DESCR|Flinn Mueller <[email protected]>|net|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|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.9p1|net/icb||Internet CB - mostly-defunct chat client|net/icb/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|net||||any|y|y|y|y
icecast-1.3.11|net/icecast||Internet based broadcasting system|net/icecast/pkg/DESCR|Federico Schwindt <[email protected]>|net audio||||i386 sparc|y|y|y|y
ickle-0.2.2|net/ickle||gtk-based icq 2000 client|net/ickle/pkg/DESCR|Peter Valchev <[email protected]>|net|gdkmm.2,gtkmm.2::x11/gtkmm|||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
ipband-0.7.1|net/ipband||pcap based IP traffic monitor|net/ipband/pkg/DESCR|Vincent Derrien <[email protected]>|net||||any|y|y|y|y
ipcheck-0.153|net/ipcheck||fully compliant DynDNS.org client|net/ipcheck/pkg/DESCR|David Lebel <[email protected]>|net||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|any|y|y|y|y
iperf-1.2|net/iperf||tool for measuring maximum TCP and UDP bandwidth|net/iperf/pkg/DESCR|Jakob Schlyter <[email protected]>|net||||any|n|y|n|y
ipfm-0.11.4|net/ipfm||IP bandwidth analysis tool|net/ipfm/pkg/DESCR|Oleg Safiullin <[email protected]>|net||||any|y|y|y|y
iplog-2.2.3|net/iplog||TCP/IP traffic logging tool|net/iplog/pkg/DESCR|Brian Caswell <[email protected]>|net security||:devel/gmake||any|y|y|y|y
ipv6calc-0.37|net/ipv6calc||tool for manipulating IPv6 addresses|net/ipv6calc/pkg/DESCR|Vladimir Kotal <[email protected]>|net||||any|y|y|y|y
irc-2.10.3p1|net/irc||internet relay chat (irc) server|net/irc/pkg/DESCR|Brian Caswell <[email protected]>|net||||any|y|y|y|y
ircII-20011210|net/ircII||Internet Relay Chat client|net/ircII/pkg/DESCR|Brad Smith <[email protected]>|net||||any|y|y|y|y
irssi-0.8.4|net/irssi||modular IRC client with many features (ipv6,socks,proxy)|net/irssi/pkg/DESCR|Reinhard J. Sammer <[email protected]>|net|glib.1.2,gmodule::devel/glib|||any|y|y|y|y
irssi-0.8.4-socks|net/irssi,socks||modular IRC client with many features (ipv6,socks,proxy)|net/irssi/pkg/DESCR|Reinhard J. Sammer <[email protected]>|net|glib.1.2,gmodule::devel/glib|:security/dante||any|y|y|y|y
irssi-icb-0.13|net/irssi-icb||icb plugin for irssi|net/irssi-icb/pkg/DESCR|David Lebel <[email protected]>|net||:net/irssi|:net/irssi|!hppa m88k vax|y|y|y|y
jftpgw-0.12.0|net/jftpgw||FTP proxy|net/jftpgw/pkg/DESCR|Brad Smith <[email protected]>|net||||any|y|y|y|y
kinkatta-1.00|net/kinkatta||QT/KDE based AOL Instant Messenter (AiM) client|net/kinkatta/pkg/DESCR|Jeff Nathan <[email protected]>|net|kdecore.3,kdeui,DCOP,kdesu,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
kmago-1.1.2|net/kmago||download manager for KDE|net/kmago/pkg/DESCR|Kevin Lo <[email protected]>|net|kdecore.3.::x11/kde/libs2|:devel/gmake :x11/qt2-designer||any|y|y|y|y
kmago-1.1.2-wget|net/kmago,wget||download manager for KDE|net/kmago/pkg/DESCR|Kevin Lo <[email protected]>|net|kdecore.3.::x11/kde/libs2|:devel/gmake :x11/qt2-designer|:net/wget|any|y|y|y|y
kxicq2-0.7.6|net/kxicq2||ICQ client for KDE|net/kxicq2/pkg/DESCR|Kevin Lo <[email protected]>|net|kdecore.3,DCOP,kdesu,kdeui,kfile,kio,kssl,ksycoca::x11/kde/libs2 lib/qt2/qt.2::x11/qt2|:x11/qt2-designer||any|y|y|y|y
ldistfp-0.1.4|net/ldistfp||remote identd fingerprinting tool|net/ldistfp/pkg/DESCR|Patroklos Argyroudis <[email protected]>|net security||||any|n|n|n|n
lftp-2.5.0a|net/lftp||shell-like command line ftp client|net/lftp/pkg/DESCR|Kevin Lo <[email protected]>|net|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y