-
Notifications
You must be signed in to change notification settings - Fork 1
/
INDEX
2663 lines (2663 loc) · 591 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|n|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
cabextract-0.6|archivers/cabextract||Extracts files from Microsoft CAB archives|archivers/cabextract/pkg/DESCR|Steve Shockley <[email protected]>|archivers||||any|y|y|y|y
fastjar-0.93|archivers/fastjar||Sun JDK's jar command written entirely in C|archivers/fastjar/pkg/DESCR|Dan Harnett <[email protected]>|archivers||:devel/gmake||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|n|n|n|n
gcpio-2.5|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.14|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|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|any|y|y|y|y
gtar-1.14-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|bzip2-*:archivers/bzip2 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|The OpenBSD ports mailing-list <[email protected]>|archivers||:devel/gmake||any|y|y|y|y
lha-1.14i.p0|archivers/lha||archive files using LZW compression (.lzh files)|archivers/lha/pkg/DESCR|Yozo Toda <[email protected]>|archivers||||any|n|y|n|y
lxsplit-1.0pre|archivers/lxsplit||file joiner/splitter|archivers/lxsplit/pkg/DESCR|Jolan Luff <[email protected]>|archivers||||any|y|y|y|y
lzo-1.08|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.01|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
macutil-2.0b3|archivers/macutil||several programs to handle macintosh files and archives|archivers/macutil/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|n
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|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|y
p5-Archive-Tar-1.08|archivers/p5-Archive-Tar||perl interface to tar archives|archivers/p5-Archive-Tar/pkg/DESCR|Kevin Lo <[email protected]>|archivers perl5||p5-IO-Zlib->=1.01:archivers/p5-IO-Zlib|p5-IO-Zlib->=1.01:archivers/p5-IO-Zlib|any|y|y|y|y
p5-Archive-Zip-1.05|archivers/p5-Archive-Zip||perl interface to ZIP files|archivers/p5-Archive-Zip/pkg/DESCR|Peter Galbavy <[email protected]>|archivers perl5|||p5-Compress-Zlib-*:archivers/p5-Compress-Zlib|any|y|y|y|y
p5-Compress-LZO-1.08|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|||!m88k vax|y|y|y|y
p5-Compress-Zlib-1.33|archivers/p5-Compress-Zlib||perl interface to the zlib compression library|archivers/p5-Compress-Zlib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers perl5||||!m88k vax|y|y|y|y
p5-IO-Zlib-1.01|archivers/p5-IO-Zlib||IO:: style interface to Compress::Zlib|archivers/p5-IO-Zlib/pkg/DESCR|Jakob Schlyter <[email protected]>|archivers perl5||p5-Compress-Zlib->1.15:archivers/p5-Compress-Zlib|p5-Compress-Zlib->1.15:archivers/p5-Compress-Zlib|any|y|y|y|y
par2cmdline-0.3|archivers/par2cmdline||command line implementation of the PAR v2.0 specification|archivers/par2cmdline/pkg/DESCR|Jolan Luff <[email protected]>|archivers||||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.4.3|archivers/star||unique standard tape archiver with many enhancements|archivers/star/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers sysutils||:devel/gmake bzip2-*:archivers/bzip2|bzip2-*:archivers/bzip2|any|y|y|y|y
star-1.4.3-static|archivers/star,static||unique standard tape archiver with many enhancements|archivers/star/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers sysutils||:devel/gmake bzip2-*:archivers/bzip2|bzip2-*:archivers/bzip2|any|y|y|y|y
ucl-1.01|archivers/ucl||portable lossless data compression library|archivers/ucl/pkg/DESCR|Wilbern Cobb <[email protected]>|archivers devel||nasm-*:devel/nasm||any|y|y|y|y
unace-1.2b|archivers/unace||extract, view & test ACE archives|archivers/unace/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|n
unarj-2.43|archivers/unarj||extract files from ARJ archives|archivers/unarj/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|n
unrar-3.30|archivers/unrar||extract, list, and test RAR archives|archivers/unrar/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|n|n|n|y
unzip-5.50p2|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|The OpenBSD ports mailing-list <[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.3|astro/jday||astronomical julian date calculator|astro/jday/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|astro||||any|y|y|y|y
luna-1.9|astro/luna||display the moon's phase|astro/luna/pkg/DESCR|Nick Nauwelaerts <[email protected]>|astro||:archivers/lha||any|n|n|n|n
phoon-20030120|astro/phoon||displays the phase of the moon in ascii|astro/phoon/pkg/DESCR|Nick Nauwelaerts <[email protected]>|astro||||any|y|y|y|y
py-metar-0.8|astro/py-metar||Python module to access the NOAA's METAR weather reports|astro/py-metar/pkg/DESCR|Xavier Santolaria <[email protected]>|astro||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
sattrack-3.1.6|astro/sattrack||real-time satellite tracking and orbit propagation program|astro/sattrack/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|astro||||any|n|y|n|y
sunclock-3.50pre1|astro/sunclock,no_maps||display the phase of the Sun on a map of the Earth|astro/sunclock/pkg/DESCR|Nick Nauwelaerts <[email protected]>|astro|jpeg.62::graphics/jpeg|||any|y|y|y|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|n|n|n|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.1.19|audio/abcde||command-line utility to rip and encode audio cds|audio/abcde/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||cdparanoia-*:audio/cdparanoia vorbis-tools-*:audio/vorbis-tools|any|y|y|y|y
ac3dec-0.6.1|audio/ac3dec||ac3 audio (as used on DVDs) decoding tools|audio/ac3dec/pkg/DESCR|The OpenBSD ports mailing-list <[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.8|audio/aumix||full-screen ncurses or GTK-based audio mixer|audio/aumix/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|gdk-x11-2.0.0.14,gdk_pixbuf-2.0.0.14,gtk-x11-2.0.0.14::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
bladeenc-0.94.2p1|audio/bladeenc||high-quality MP3 encoder|audio/bladeenc/pkg/DESCR|Brad Smith <[email protected]>|audio||||any|n|y|n|y
bonk-0.6|audio/bonk||lossy/lossless audio coder|audio/bonk/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
cdparanoia-3.a9.8|audio/cdparanoia||CDDA reading utility with extra data verification features|audio/cdparanoia/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/autoconf/2.52 :devel/metaauto||any|y|y|y|y
cplay-1.49|audio/cplay||curses front-end for various audio players|audio/cplay/pkg/DESCR|Victor Sahlstedt <[email protected]>|audio|||python-2.3*:lang/python/2.3|any|y|y|y|y
disc-cover-1.5.2|audio/disc-cover||creates cover for audio cds using cddb and latex|audio/disc-cover/pkg/DESCR|Nikolay Sturm <[email protected]>|audio|||ImageMagick-*:graphics/ImageMagick p5-Audio-CD-*:audio/p5-Audio-CD p5-libwww-*:www/p5-libwww teTeX_base-*:print/teTeX/base|any|y|y|y|y
easytag-0.30|audio/easytag||MP3 ID3 tags editor|audio/easytag/pkg/DESCR|Jim Geovedi <[email protected]>|audio x11|FLAC.4::audio/flac gdk.1.2,gtk.1.2::x11/gtk+ iconv.2::converters/libiconv id3.3.8::audio/id3lib intl.1:gettext->=0.10.38:devel/gettext vorbis.1,vorbisfile.1::audio/libvorbis|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext help2man-*:devel/help2man|gettext->=0.10.38:devel/gettext|any|y|y|y|y
esound-0.2.28|audio/esound||sound library for Enlightenment|audio/esound/pkg/DESCR|Brad Smith <[email protected]>|audio|audiofile::devel/libaudiofile|:devel/autoconf/2.13 :devel/metaauto||any|y|y|y|y
faad-2.0|audio/faad||MPEG2 and MPEG-4 AAC decoder|audio/faad/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/autoconf/2.59 :devel/automake :devel/gmake :devel/libtool :devel/metaauto||any|n|y|n|y
flac-1.1.0|audio/flac||free lossless audio codec|audio/flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio archivers|iconv.2::converters/libiconv ogg.4::audio/libogg|:devel/nasm|libiconv-*:converters/libiconv|any|y|y|y|y
flite-1.2|audio/flite||text to speech utility|audio/flite/pkg/DESCR|Jason L. Wright <[email protected]>|audio||:devel/gmake||any|n|n|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/2.13 :devel/metaauto||any|y|y|y|y
gqmpeg-0.20.0|audio/gqmpeg||front-end to various audio players|audio/gqmpeg/pkg/DESCR|Margarida Sequeira <[email protected]>|audio|gdk_pixbuf.2::graphics/gdk-pixbuf iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext mpg321-*:audio/mpg321|any|y|y|y|y
grip-3.0.0|audio/grip||front-end to external cd audio rippers and mp3 encoders|audio/grip/pkg/DESCR|David Lebel <[email protected]>|audio|ghttp::www/libghttp gnome.36,gnomesupport.0,gnomeui.46,art_lgpl.4::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+ id3.3.8::audio/id3lib|:devel/gmake :devel/libtool||any|y|y|y|y
gsm-1.0.10|audio/gsm||u-law to gsm encoding audio converter and library|audio/gsm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|n|n|n|n
id3ed-1.10.4|audio/id3ed||interactive console id3 tag editor|audio/id3ed/pkg/DESCR|Nick Nauwelaerts <[email protected]>|audio||||any|y|y|y|y
id3lib-3.8.3|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
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.96|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/nasm||any|n|y|n|y
lame-3.96-no_x11|audio/lame,no_x11||lame ain't an MP3 encoder|audio/lame/pkg/DESCR|Jakob Schlyter <[email protected]>|audio||:devel/gmake :devel/nasm||any|n|y|n|y
liba52-0.7.4p0|audio/liba52||AC-3 decoding library|audio/liba52/pkg/DESCR|Marc Espie <[email protected]>|audio||||any|y|y|y|y
libao-0.8.4|audio/libao||portable audio output library|audio/libao/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libao-arts-0.8.4|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/arts3|||any|y|y|y|y
libao-esd-0.8.4|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
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
libid3tag-0.15.1b|audio/libid3tag||library for reading ID3 tags|audio/libid3tag/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libmad-0.15.1b|audio/libmad||high-quality MPEG audio decoder|audio/libmad/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libmikmod-3.1.10p3|audio/libmikmod||mikmod sound library|audio/libmikmod/pkg/DESCR|Peter Valchev <[email protected]>|audio devel||||any|y|y|y|y
libmikmod-3.1.10p3-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.1|audio/libogg||Ogg bitstream library|audio/libogg/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libsidplay-1.36.57|audio/libsidplay||C64 music player and SID chip emulator library|audio/libsidplay/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libsndfile-1.0.7|audio/libsndfile||library to handle various audio file formats|audio/libsndfile/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|y|y|y|y
libvorbis-1.0.1|audio/libvorbis||audio compression codec library|audio/libvorbis/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ogg.5::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-1.2.0p2|audio/lopster||full featured GTK Napster client|audio/lopster/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext ogg.4::audio/libogg|:devel/gmake gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
madplay-0.15.1b|audio/madplay||command-line MPEG audio decoder and player|audio/madplay/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|iconv.2::converters/libiconv id3tag.3::audio/libid3tag intl.1:gettext->=0.10.38:devel/gettext mad.2::audio/libmad|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mixer.app-1.8.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
morseplayer-1.2|audio/morseplayer||morse player|audio/morseplayer/pkg/DESCR|Jason Wright <[email protected]>|audio||||any|y|y|y|y
mp3blaster-3.2.0|audio/mp3blaster||text console audio player with an interactive interface|audio/mp3blaster/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|sidplay.1::audio/libsidplay vorbis.1,vorbisfile.2::audio/libvorbis|||any|y|y|y|y
mp3cddb-0.1|audio/mp3cddb||embedding CDDB information in MP3s|audio/mp3cddb/pkg/DESCR|Margarida Sequeira <[email protected]>|audio|||:audio/mp3info :audio/p5-MP3-Info :audio/p5-cddb|any|y|y|y|y
mp3encode-1.10p1|audio/mp3encode||MPEG layer I, II and III audio file encoder|audio/mp3encode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||any|n|y|n|y
mp3info-0.8.4|audio/mp3info||MP3 information tool|audio/mp3info/pkg/DESCR|Margarida Sequeira <[email protected]>|audio|gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
mp3info-0.8.4-no_x11|audio/mp3info,no_x11||MP3 information tool|audio/mp3info/pkg/DESCR|Margarida Sequeira <[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|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
mpg123-0.59rp2|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.59rp2-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.10|audio/mpg321||free clone of mpg123, a command-line mp3 player|audio/mpg321/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ao.3::audio/libao id3tag.2::audio/libid3tag mad.2::audio/libmad|||!m88k vax|y|y|y|y
nap-1.5.1p1|audio/nap||gnu curses-based napster client|audio/nap/pkg/DESCR|Peter Valchev <[email protected]>|audio||||any|y|y|y|y
normalize-0.7.4|audio/normalize||audio file volume normalizer|audio/normalize/pkg/DESCR|Jason Ish <[email protected]>|audio|audiofile::devel/libaudiofile iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext mad.2::audio/libmad|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nspmod-0.1|audio/nspmod||MOD/S3M/MTM tracker that does its own DSP|audio/nspmod/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
opennap-0.44p0|audio/opennap||opensource Napster(tm) server|audio/opennap/pkg/DESCR|The OpenBSD ports mailing-list <[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|||!m88k vax|y|y|y|y
p5-CDDB_get-2.23|audio/p5-CDDB_get||perl interface to query for cddb-information|audio/p5-CDDB_get/pkg/DESCR|Dan Weeks <[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-1.02|audio/p5-MP3-Info||Perl5 module for reading MPEG1-Layer3 tags|audio/p5-MP3-Info/pkg/DESCR|Nikolay Sturm <[email protected]>|audio perl5||||any|y|y|y|y
p5-CDDB-1.12|audio/p5-cddb||Perl5 module for CDDB|audio/p5-cddb/pkg/DESCR|Margarida Sequeira <[email protected]>|audio perl5||||any|y|y|y|y
p5-libvorbis-0.04|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|||!m88k vax|y|y|y|y
py-ao-0.82|audio/py-ao||Python wrapper module for the ao library|audio/py-ao/pkg/DESCR|Xavier Santolaria <[email protected]>|audio|ao.3::audio/libao|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-cddb-1.4|audio/py-cddb||CDDB audio CD track info access in Python|audio/py-cddb/pkg/DESCR|Xavier Santolaria <[email protected]>|audio||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-id3-1.2|audio/py-id3||read and manipulate ID3 tags on MP3 files with Python|audio/py-id3/pkg/DESCR|Xavier Santolaria <[email protected]>|audio||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
py-ogg-1.3|audio/py-ogg||Python wrapper for the Ogg libraries|audio/py-ogg/pkg/DESCR|Xavier Santolaria <[email protected]>|audio|ogg::audio/libogg|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-xmms-1.06|audio/py-xmms||Python interface to XMMS|audio/py-xmms/pkg/DESCR|Xavier Santolaria <[email protected]>|audio|xmms.3::audio/xmms|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|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|The OpenBSD ports mailing-list <[email protected]>|audio|gdbm.::databases/gdbm|:devel/autoconf/2.13 :devel/metaauto||any|n|n|n|n
shorten-3.6.0|audio/shorten||fast compression for waveform files|audio/shorten/pkg/DESCR|Christian Weisgerber <[email protected]>|audio archivers||||any|n|y|n|y
sidplay-1.0.9|audio/sidplay||Commodore 64 music player and SID chip emulator|audio/sidplay/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|sidplay.1::audio/libsidplay|||any|y|y|y|y
soundtracker-0.6.6|audio/soundtracker||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.13 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
soundtracker-0.6.6-esd|audio/soundtracker,esd||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile esd.2::audio/esound gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.13 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
soundtracker-0.6.6-gnome-esd|audio/soundtracker,gnome,esd||Music tracking tool for X11|audio/soundtracker/pkg/DESCR|Wilbern Cobb <[email protected]>|audio|audiofile::devel/libaudiofile esd.2::audio/esound gdk_pixbuf::graphics/gdk-pixbuf gnome.36,gnomesupport.0,gnomeui.46,art_lgpl.4::x11/gnome/libs gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.13 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
sox-12.17.4|audio/sox||SOund eXchange - universal sound sample translator|audio/sox/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/autoconf/2.54 :devel/metaauto||any|n|n|n|n
sox-12.17.4-mp3-vorbis|audio/sox,mp3,vorbis||SOund eXchange - universal sound sample translator|audio/sox/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|mad.2::audio/libmad mp3lame.0::audio/lame vorbis.1,vorbisenc.1,vorbisfile.2::audio/libvorbis|:devel/autoconf/2.54 :devel/metaauto||any|n|n|n|n
speex-1.0.3|audio/speex||patent-free speech codec|audio/speex/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ogg.4::audio/libogg|||any|y|y|y|y
streamripper-1.0.5|audio/streamripper||rip shoutcast streams to local mp3s|audio/streamripper/pkg/DESCR|Margarida Sequeira <[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.5p1|audio/tempest||sends AM radio signals using a monitor|audio/tempest/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|SDL::devel/sdl||madplay-*:audio/madplay 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|The OpenBSD ports mailing-list <[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
vlorb-1.2|audio/vlorb||audio CD to audio file encoder|audio/vlorb/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||cdparanoia-*:audio/cdparanoia flac-*:audio/flac p5-CDDB-*:audio/p5-cddb vorbis-tools-*:audio/vorbis-tools vorbisgain-*:audio/vorbisgain|any|y|y|y|y
vorbis-tools-1.0.1|audio/vorbis-tools||play, encode, and manage Ogg Vorbis files|audio/vorbis-tools/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|FLAC.5::audio/flac ao.3::audio/libao curl.2::net/curl iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext speex.2::audio/speex vorbis.2,vorbisenc.2,vorbisfile.3::audio/libvorbis|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
vorbisgain-0.34|audio/vorbisgain||add tags to Ogg Vorbis files to adjust the volume|audio/vorbisgain/pkg/DESCR|Moritz Grimm <[email protected]>|audio|vorbis.2,vorbisfile.3::audio/libvorbis|unzip-*:archivers/unzip||any|y|y|y|y
waveplay-20010924|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|The OpenBSD ports mailing-list <[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 an mp3 player|audio/wmmp3/pkg/DESCR|Peter Stromberg <[email protected]>|audio x11 x11/windowmaker|||madplay-*:audio/madplay|any|y|y|y|y
wmtune-1.1cp1|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.1cp1-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|:audio/esound|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|The OpenBSD ports mailing-list <[email protected]>|audio|||:x11/tk/8.4|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.3|audio/xhippo||generic playlist manager for UNIX|audio/xhippo/pkg/DESCR|Kevin Lo <[email protected]>|audio|gdk_pixbuf_xlib-2.0.0.0::x11/gtk+2 iconv.2::converters/libiconv id3tag.2::audio/libid3tag intl.1:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|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.10|audio/xmms||Multimedia player for the X Window System|audio/xmms/pkg/DESCR|Robert Nagy <[email protected]>|audio|gthread.1.2::devel/glib gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml.9::textproc/libxml1|:devel/autoconf/2.59 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext unzip-*:archivers/unzip|any|y|y|y|y
xmms-esd-1.2.10|audio/xmms,-esd||Esound output plugin for XMMS|audio/xmms/pkg/DESCR-esd|Robert Nagy <[email protected]>|audio|esd.2::audio/esound iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.59 :devel/metaauto gettext->=0.10.38:devel/gettext|:audio/xmms gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmms-vorbis-1.2.10|audio/xmms,-vorbis||Ogg Vorbis input plugin for XMMS|audio/xmms/pkg/DESCR-vorbis|Robert Nagy <[email protected]>|audio|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext vorbis.0,vorbisfile.1::audio/libvorbis|:devel/autoconf/2.59 :devel/metaauto gettext->=0.10.38:devel/gettext|:audio/xmms gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmms-mikmod-1.2.10|audio/xmms,-mikmod||Mikmod input plugin for XMMS|audio/xmms/pkg/DESCR-mikmod|Robert Nagy <[email protected]>|audio|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext mikmod.0::audio/libmikmod|:devel/autoconf/2.59 :devel/metaauto gettext->=0.10.38:devel/gettext|:audio/xmms gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmms-mp3-1.2.10|audio/xmms,-mp3||MP3 input plugin for XMMS|audio/xmms/pkg/DESCR-mp3|Robert Nagy <[email protected]>|audio|gthread.1.2::devel/glib gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml.9::textproc/libxml1|:devel/autoconf/2.59 :devel/metaauto gettext->=0.10.38:devel/gettext|:audio/xmms gettext->=0.10.38:devel/gettext|any|n|y|n|y
xmms-bonk-0.12|audio/xmms-bonk||XMMS input plugin to play bonk files|audio/xmms-bonk/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|xmms.3::audio/xmms|||!m88k vax|y|y|y|y
xmms-flac-1.1.0|audio/xmms-flac||XMMS input plugin for playing FLAC files|audio/xmms-flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|FLAC.5::audio/flac xmms.3::audio/xmms|||!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|||!m88k vax|y|y|y|y
xmms-shn-2.4.0|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.4::audio/xmms|||!m88k vax|y|y|y|y
xmms-sid-0.7.4|audio/xmms-sid||XMMS input plugin for playing SID files|audio/xmms-sid/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|sidplay.1::audio/libsidplay xmms.3::audio/xmms|||!m88k vax|y|y|y|y
xmp-2.0.4|audio/xmp||extended module player|audio/xmp/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|esd.2::audio/esound|:devel/gmake||any|y|y|y|y
xmms-xmp-2.0.4|audio/xmp,-xmms||extended module player plugin for XMMS|audio/xmp/pkg/DESCR-xmms|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake|:audio/xmms|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
bonnie++-1.03a|benchmarks/bonnie++||enhanced performance test of filesystem I/O|benchmarks/bonnie++/pkg/DESCR|Martin Reindl <[email protected]>|benchmarks||:devel/gmake||any|y|y|y|y
bytebench-3.1|benchmarks/bytebench||BYTE magazine benchmark suite|benchmarks/bytebench/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|benchmarks||||any|n|n|n|n
iozone-3.203|benchmarks/iozone||performance test of sequential file I/O|benchmarks/iozone/pkg/DESCR|Brad Smith <[email protected]>|benchmarks||||any|n|n|n|n
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.2pl3|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|The OpenBSD ports mailing-list <[email protected]>|benchmarks net||||any|y|y|y|y
netstrain-3.0|benchmarks/netstrain||tool to measure TCP throughput|benchmarks/netstrain/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|benchmarks net||||any|y|y|y|y
pear-Benchmark-1.2.1|benchmarks/pear-Benchmark|/var/www|framework to benchmark PHP scripts or function calls|benchmarks/pear-Benchmark/pkg/DESCR|Anil Madhavapeddy <[email protected]>|benchmarks pear||php4-pear-4.3.*:www/php4/core,-pear|php4-pear-4.3.*:www/php4/core,-pear|any|y|y|y|y
randread-0.2|benchmarks/randread||help benchmark random read performance|benchmarks/randread/pkg/DESCR|Xavier Santolaria <[email protected]>|benchmarks||||any|y|y|y|y
tcpblast-1.1|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
ubench-0.32|benchmarks/ubench||Unix benchmark utility|benchmarks/ubench/pkg/DESCR|Xavier Santolaria <[email protected]>|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
py-biopython-1.24|biology/py-biopython||Python tools for computational molecular biology|biology/py-biopython/pkg/DESCR|Xavier Santolaria <[email protected]>|biology||:devel/py-mxDateTime :math/py-Numeric python-2.3*:lang/python/2.3|:devel/py-mxDateTime :math/py-Numeric python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
autobook-1.3|books/autobook||documentation for autoconf, automake, libtool|books/autobook/pkg/DESCR|Marc Espie <[email protected]>|books devel||||any|y|y|y|y
cvs-guide-1.21|books/cvs-guide||the definitive guide to CVS|books/cvs-guide/pkg/DESCR|Anil Madhavapeddy <[email protected]>|books||||any|y|y|y|y
docbook-guide-2.0.8|books/docbook-guide||the definite guide to DocBook|books/docbook-guide/pkg/DESCR|Anil Madhavapeddy <[email protected]>|books||unzip-*:archivers/unzip||any|y|y|y|y
grokking-the-gimp-1.0|books/grokking-the-gimp||book about gimp|books/grokking-the-gimp/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|books graphics||||any|y|y|y|y
mason-book-1.0|books/mason-book||book on embedding Perl in HTML with Mason|books/mason-book/pkg/DESCR|Anil Madhavapeddy <[email protected]>|books||:graphics/p5-Image-Size :textproc/p5-Pod-Simple :www/p5-HTML-Parser :www/p5-URI||any|y|y|y|y
zopebook-2.6|books/zopebook||Zope documentation|books/zopebook/pkg/DESCR|Xavier Santolaria <[email protected]>|books||||any|y|y|y|y
chipmunk-1.57|cad/chipmunk||electronic CAD system|cad/chipmunk/pkg/DESCR|Peter Valchev <[email protected]>|cad||||any|y|y|y|y
klogic-1.6|cad/klogic||logic circuit simulator for KDE|cad/klogic/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|cad education x11 x11/kde|kdecore.4,DCOP,kdefx,kdesu,kdeui,kio::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/gmake||!m88k vax|y|y|y|y
qcad-1.5.4|cad/qcad||Qt-based 2D CAD system|cad/qcad/pkg/DESCR|Jacob Meuser <[email protected]>|cad x11|lib/qt3/qt-mt.3::x11/qt3,mt|||any|y|y|y|y
spice-3f5p1|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|!m88k vax|n|y|n|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|n|n|n|n
zh-hc-3.0|chinese/hc||convert between GB and BIG-5 codes|chinese/hc/pkg/DESCR|Kevin Lo <[email protected]>|chinese||||any|n|y|n|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-libtabe-0.2.5|chinese/libtabe||library for Chinese language processing|chinese/libtabe/pkg/DESCR|Kevin Lo <[email protected]>|chinese|lib/db/db.3:db->3,<4:databases/db/v3|||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.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
zh-rxvt-big5-2.7.8p0|chinese/rxvt-big5|/usr/local/emul/redhat|color terminal emulator Linux binary|chinese/rxvt-big5/pkg/DESCR|Kevin Lo <[email protected]>|chinese||rpm->=3.0.6p1:misc/rpm|:chinese/taipeifonts :emulators/redhat/base|i386|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|n|n|n|n
zh-ttfm-0.9.5|chinese/ttfm||big5/gb enhanced truetype font manager|chinese/ttfm/pkg/DESCR|Kevin Lo <[email protected]>|chinese||||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
zh-xcin25-2.5.3p0|chinese/xcin25|/usr/local/emul/redhat|Chinese input method Linux binary|chinese/xcin25/pkg/DESCR|Kevin Lo <[email protected]>|chinese||rpm->=3.0.6p1:misc/rpm|:chinese/rxvt-big5|i386|y|y|y|y
birda-1.1|comms/birda||Bohlin's IrDA utilities|comms/birda/pkg/DESCR|Alexander Yurchenko <[email protected]>|comms||||any|y|y|y|y
bottlerocket-0.04c|comms/bottlerocket||X.10 firecracker interface|comms/bottlerocket/pkg/DESCR|Jason Wright <[email protected]>|comms||||any|y|y|y|y
conserver-7.2.7|comms/conserver||manage remote serial consoles via TCP/IP|comms/conserver/pkg/DESCR|Peter Valchev <[email protected]>|comms||:devel/autoconf/2.54 :devel/metaauto||any|y|y|y|y
efax-0.9p1|comms/efax||small & simple FAX send/receive program|comms/efax/pkg/DESCR|Ian Darwin <[email protected]>|comms||||any|y|y|y|y
flipit-0.3.5|comms/flipit||x10 firecracker utility|comms/flipit/pkg/DESCR|Jason Wright <[email protected]>|comms||||any|y|y|y|y
hylafax-4.1.5p1|comms/hylafax||send/receive faxes and share modems|comms/hylafax/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|jpeg::graphics/jpeg tiff::graphics/tiff|:devel/gmake|ghostscript-*:print/ghostscript/gnu|any|y|y|y|y
hylafax-4.1.5p1-a4|comms/hylafax,a4||send/receive faxes and share modems|comms/hylafax/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|jpeg::graphics/jpeg 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.211|comms/kermit||serial and network communications package|comms/kermit/pkg/DESCR|The OpenBSD ports mailing-list <[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|n|n|n|n
minicom-2.00.0p1|comms/minicom||MS-DOS Telix-like serial communication program|comms/minicom/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.13 :devel/metaauto 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.5p1|comms/pilot-link||PalmPilot communication utilities|comms/pilot-link/pkg/DESCR|Peter Valchev <[email protected]>|comms palm||: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|The OpenBSD ports mailing-list <[email protected]>|comms||||any|n|n|n|y
scmxx-0.6.3.8|comms/scmxx||data exchange utility for Siemens mobile phones|comms/scmxx/pkg/DESCR|Alexander Yurchenko <[email protected]>|comms|iconv.2::converters/libiconv|:devel/gmake|libiconv-*:converters/libiconv|any|y|y|y|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
wy60-2.0.8|comms/wy60||curses-based emulator for the Wyse 60 terminal|comms/wy60/pkg/DESCR|Christian Weisgerber <[email protected]>|comms||||any|y|y|y|y
xcept-2.1.2p1|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.3|converters/base64||converter to/from base64 encoding|converters/base64/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||||any|y|y|y|y
btoa-5.2.1|converters/btoa||encode/decode binary to printable ASCII|converters/btoa/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||||any|n|y|n|y
html2wml-0.4.9|converters/html2wml||on-the-fly HTML to WML conversion|converters/html2wml/pkg/DESCR|Shell Hung <[email protected]>|converters www perl5||:devel/gmake p5-Text-Template-*:textproc/p5-Text-Template p5-XML-Checker-*:textproc/p5-XML-Checker p5-XML-LibXML-*:textproc/p5-XML-LibXML p5-XML-Parser-*:textproc/p5-XML-Parser p5-libwww-*:www/p5-libwww|p5-Text-Template-*:textproc/p5-Text-Template p5-XML-Checker-*:textproc/p5-XML-Checker p5-XML-LibXML-*:textproc/p5-XML-LibXML p5-XML-Parser-*:textproc/p5-XML-Parser p5-libwww-*:www/p5-libwww|any|y|y|y|y
ish-1.11|converters/ish||binary-to-text file converter|converters/ish/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||||any|n|n|n|n
libdvd-0.2|converters/libdvd||descramble scrambled DVDs using ACSS|converters/libdvd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||||any|n|y|y|y
libdvdcss-1.2.8|converters/libdvdcss||descramble scrambled DVDs|converters/libdvdcss/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||||any|n|y|y|y
libiconv-1.9.1|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|The OpenBSD ports mailing-list <[email protected]>|converters||||any|n|n|n|y
mpack-1.5p1|converters/mpack||external MIME packer/unpacker|converters/mpack/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters mail news||||any|y|y|y|y
p5-Convert-ASN1-0.18|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.3101|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-TNEF-0.17|converters/p5-Convert-TNEF||module to read TNEF files|converters/p5-Convert-TNEF/pkg/DESCR|Ibrahim Khalifa <[email protected]>|converters perl5|||p5-MIME-tools-*:mail/p5-MIME-tools|any|y|y|y|y
p5-Convert-UU-0.52|converters/p5-Convert-UU||Perl5 module for uuencode and uudecode|converters/p5-Convert-UU/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5||||any|n|n|n|y
p5-Convert-UUlib-0.31|converters/p5-Convert-UUlib||interface to the uulib library|converters/p5-Convert-UUlib/pkg/DESCR|Ibrahim Khalifa <[email protected]>|converters perl5||||!m88k vax|y|y|y|y
p5-Date-Tolkien-Shire-1.12|converters/p5-Date-Tolkien-Shire||convert dates into the Shire Calendar|converters/p5-Date-Tolkien-Shire/pkg/DESCR|Xavier Santolaria <[email protected]>|converters perl5||||any|y|y|y|y
p5-DateManip-5.42a|converters/p5-DateManip||manipulate dates in perl|converters/p5-DateManip/pkg/DESCR|Marc Espie <[email protected]>|converters perl5||||any|y|y|y|y
p5-IDNA-Punycode-0.02|converters/p5-IDNA-Punycode||encodes Unicode strings in Punycode|converters/p5-IDNA-Punycode/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|converters perl5||||any|y|y|y|y
p5-Jcode-0.83|converters/p5-Jcode||handles various Japanese charsets|converters/p5-Jcode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters japanese perl5||||!m88k vax|y|y|y|y
p5-Net-IDN-Nameprep-0.02|converters/p5-Net-IDN-Nameprep||Perl IDN nameprep tools|converters/p5-Net-IDN-Nameprep/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|net 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|!m88k vax|y|y|y|y
p5-Unicode-Map-0.112|converters/p5-Unicode-Map||conversions to and from arbitrary character sets|converters/p5-Unicode-Map/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5||||!m88k vax|y|y|y|y
p5-Unicode-Map8-0.12|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|:converters/p5-Unicode-String|!m88k vax|y|y|y|y
p5-Unicode-MapUTF8-1.09|converters/p5-Unicode-MapUTF8||conversions to and from arbitrary character sets and UTF8|converters/p5-Unicode-MapUTF8/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5||:converters/p5-Jcode :converters/p5-Unicode-Map|:converters/p5-Jcode :converters/p5-Unicode-Map|any|y|y|y|y
p5-Unicode-String-2.07|converters/p5-Unicode-String||modules to handle various Unicode issues|converters/p5-Unicode-String/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5||||!m88k vax|y|y|y|y
playfair-0.5.0|converters/playfair||strips DRM from iTMS protected AAC audio files|converters/playfair/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters audio||||!m88k vax sparc64|n|n|n|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
py-cjkcodecs-1.0.3|converters/py-cjkcodecs||Python unicode codecs for Chinese, Japanese and Korean|converters/py-cjkcodecs/pkg/DESCR|Kevin Lo <[email protected]>|converters||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-iconvcodec-1.1.2|converters/py-iconvcodec||universal unicode codec using iconv for Python|converters/py-iconvcodec/pkg/DESCR|Kevin Lo <[email protected]>|converters|iconv.2::converters/libiconv|python-2.3*:lang/python/2.3|libiconv-*:converters/libiconv python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
qprint-1.0|converters/qprint||converter to/from quoted-printable encoding|converters/qprint/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||:devel/autoconf/2.13 :devel/metaauto||any|y|y|y|y
recode-3.6p1|converters/recode||convert files between character sets and usages|converters/recode/pkg/DESCR|The OpenBSD ports mailing-list <[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.2|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|The OpenBSD ports mailing-list <[email protected]>|converters russian||||any|n|y|n|y
wv-0.7.2|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.6,wmflite.6::graphics/libwmf|:devel/gmake|libiconv-*:converters/libiconv|any|y|y|y|y
wv2-0.2.1|converters/wv2||library providing routines to access Microsoft Word/Excel files|converters/wv2/pkg/DESCR|Brad Smith <[email protected]>|converters|glib-2.0.0.0,glib-2.0.0.0::devel/glib2 gsf-1::devel/libgsf,no_gnome iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2::textproc/libxml|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|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
mysqlcc-0.9.4|databases/MyCC||GUI client for MySQL|databases/MyCC/pkg/DESCR|Peter Stromberg <[email protected]>|databases|lib/mysql/mysqlclient.10::databases/mysql lib/qt3/qt-mt.3::x11/qt3,mt|||any|y|y|y|y
db-3.1.17p1|databases/db/v3||Berkeley DB package, revision 3|databases/db/v3/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||||any|y|y|y|y
db-4.2.52p1|databases/db/v4||Berkeley DB package, revision 4|databases/db/v4/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||||any|y|y|y|y
dbh-1.0.18|databases/dbh||library to create Disk Based Hashtables on POSIX systems|databases/dbh/pkg/DESCR|Jolan Luff <[email protected]>|databases||bzip2-*:archivers/bzip2 pkgconfig-*:devel/pkgconfig||any|y|y|y|y
freetds-0.62.3|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.3|databases/gdbm||GNU dbm|databases/gdbm/pkg/DESCR|Margarida Sequeira <[email protected]>|databases||||any|y|y|y|y
gnats-3.113.1p2|databases/gnats||GNU Problem Report Management System|databases/gnats/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel||||any|y|y|y|y
gq-0.7.0beta2|databases/gq||GTK-based LDAP client|databases/gq/pkg/DESCR|Marc Balmer <[email protected]>|databases|gdk_pixbuf::graphics/gdk-pixbuf gtk.1.2,gdk.1.2::x11/gtk+ iconv.2::converters/libiconv ldap,lber::databases/openldap|:devel/autoconf/2.13 :devel/metaauto cyrus-sasl-*:security/cyrus-sasl2|libiconv-*:converters/libiconv|any|y|y|y|y
iodbc-2.50.3|databases/iodbc||ODBC 2.x driver manager|databases/iodbc/pkg/DESCR|Andrew Dalgleish <[email protected]>|databases||||any|y|y|y|y
mysql-client-4.0.20|databases/mysql||multithreaded SQL database (client)|databases/mysql/pkg/DESCR|Brad Smith <[email protected]>|databases||:devel/autoconf/2.57 :devel/gmake :devel/metaauto||any|y|y|y|y
mysql-server-4.0.20|databases/mysql,-server||multithreaded SQL database (server)|databases/mysql/pkg/DESCR-server|Brad Smith <[email protected]>|databases||:devel/autoconf/2.57 :devel/gmake :devel/metaauto|mysql-client-4.0.*:databases/mysql p5-DBD-mysql-*:databases/p5-DBD-mysql|any|y|y|y|y
mysql-tests-4.0.20|databases/mysql,-tests||multithreaded SQL database (regression test suite)|databases/mysql/pkg/DESCR-tests|Brad Smith <[email protected]>|databases||:devel/autoconf/2.57 :devel/gmake :devel/metaauto||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.2::x11/fleditor fltk.1,fltk_images.1::x11/fltk iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext jpeg.62::graphics/jpeg lib/mysql/mysqlclient.10::databases/mysql sqlplus.1::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.1.29|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.1.29|databases/openldap,-server||Open source LDAP software (server)|databases/openldap/pkg/DESCR-server|Jakob Schlyter <[email protected]>|databases net|||openldap-client-2.1.29:databases/openldap|any|y|y|y|y
p5-AsciiDB-TagFile-1.06|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-Class-DBI-0.95|databases/p5-Class-DBI||simple database abstraction|databases/p5-Class-DBI/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-DBD-SQLite :databases/p5-Ima-DBI :devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-Trigger :devel/p5-Universal-moniker|:databases/p5-DBD-SQLite :databases/p5-Ima-DBI :devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-Trigger :devel/p5-Universal-moniker|any|y|y|y|y
p5-Class-DBI-AbstractSearch-0.03|databases/p5-Class-DBI-AbstractSearch||abstract Class::DBI's SQL with SQL::Abstract|databases/p5-Class-DBI-AbstractSearch/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI :databases/p5-SQL-Abstract|:databases/p5-Class-DBI :databases/p5-SQL-Abstract|any|y|y|y|y
p5-Class-DBI-AsForm-2.2|databases/p5-Class-DBI-AsForm||produce HTML form elements for database columns|databases/p5-Class-DBI-AsForm/pkg/DESCR|Sam Smith <[email protected]>|www databases perl5||:databases/p5-Class-DBI :databases/p5-Class-DBI-Plugin-Type :www/p5-HTML-Tree|:databases/p5-Class-DBI :databases/p5-Class-DBI-Plugin-Type :www/p5-HTML-Tree|any|y|y|y|y
p5-Class-DBI-FromCGI-0.94|databases/p5-Class-DBI-FromCGI||update Class::DBI objects through CGI::Untaint|databases/p5-Class-DBI-FromCGI/pkg/DESCR|Sam Smith <[email protected]>|databases perl5 www||:databases/p5-Class-DBI :www/p5-CGI-Untaint|:databases/p5-Class-DBI :www/p5-CGI-Untaint|any|y|y|y|y
p5-Class-DBI-Loader-0.02|databases/p5-Class-DBI-Loader||dynamic definition of Class::DBI sub classes|databases/p5-Class-DBI-Loader/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI|:databases/p5-Class-DBI|any|y|y|y|y
p5-Class-DBI-Loader-Relationship-1.2|databases/p5-Class-DBI-Loader-Relationship||easier relationship specification in CDBI::L|databases/p5-Class-DBI-Loader-Relationship/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI :databases/p5-Class-DBI-Loader :textproc/p5-Lingua-EN-Inflect-Number|:databases/p5-Class-DBI :databases/p5-Class-DBI-Loader :textproc/p5-Lingua-EN-Inflect-Number|any|y|y|y|y
p5-Class-DBI-Pager-0.05|databases/p5-Class-DBI-Pager||pager utility for Class::DBI|databases/p5-Class-DBI-Pager/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI :databases/p5-Data-Page|:databases/p5-Class-DBI :databases/p5-Data-Page|any|y|y|y|y
p5-Class-DBI-Plugin-RetrieveAll-1|databases/p5-Class-DBI-Plugin-RetrieveAll||more complex retrieve_all() for Class::DBI|databases/p5-Class-DBI-Plugin-RetrieveAll/pkg/DESCR|Sam Smith <[email protected]>|databases perl5|||:databases/p5-Class-DBI :databases/p5-SQL-Abstract|any|y|y|y|y
p5-Class-DBI-Plugin-Type-0.02|databases/p5-Class-DBI-Plugin-Type||determine type information for columns |databases/p5-Class-DBI-Plugin-Type/pkg/DESCR|Sam Smith <[email protected]>|databases perl5|||:databases/p5-Class-DBI|any|y|y|y|y
p5-Class-DBI-SQLite-0.04|databases/p5-Class-DBI-SQLite||extensions to Class::DBI for SQLite|databases/p5-Class-DBI-SQLite/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI :databases/p5-DBD-SQLite :databases/p5-SQL-Statement|:databases/p5-Class-DBI :databases/p5-DBD-SQLite :databases/p5-SQL-Statement|any|y|y|y|y
p5-Class-DBI-mysql-0.22|databases/p5-Class-DBI-mysql||extensions to Class::DBI for MySQL |databases/p5-Class-DBI-mysql/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Class-DBI :databases/p5-DBD-mysql|:databases/p5-Class-DBI :databases/p5-DBD-mysql|any|y|y|y|y
p5-Data-Page-1.01|databases/p5-Data-Page||pager utility|databases/p5-Data-Page/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||||any|y|y|y|y
p5-DBD-CSV-0.2002|databases/p5-DBD-CSV||perl DBI driver for CSV files|databases/p5-DBD-CSV/pkg/DESCR|Chris Kuethe <[email protected]>|databases perl5||:databases/p5-SQL-Statement p5-DBI->=1.08:databases/p5-DBI p5-Text-CSV_XS->0.22:textproc/p5-Text-CSV_XS|:databases/p5-SQL-Statement p5-DBI->=1.08:databases/p5-DBI p5-Text-CSV_XS->0.22:textproc/p5-Text-CSV_XS|any|y|y|y|y
p5-DBD-Pg-1.32|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|:databases/p5-DBI|!m88k vax|y|y|y|y
p5-DBD-SQLite-0.31|databases/p5-DBD-SQLite||SQLite drivers for the Perl DBI|databases/p5-DBD-SQLite/pkg/DESCR|Robert Nagy <[email protected]>|databases perl5||p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|!m88k vax|y|y|y|y
p5-DBD-Sybase-1.02p0|databases/p5-DBD-Sybase||Sybase database driver for the DBI module|databases/p5-DBD-Sybase/pkg/DESCR|Xavier Santolaria <[email protected]>|databases perl5|tds.2,sybdb.3,ct.1::databases/freetds|p5-DBI-*:databases/p5-DBI|p5-DBI-*:databases/p5-DBI|!m88k vax|y|y|y|y
p5-DBD-mysql-2.9003|databases/p5-DBD-mysql||MySQL drivers for the Perl DBI|databases/p5-DBD-mysql/pkg/DESCR|Peter Stromberg <[email protected]>|databases perl5|lib/mysql/mysqlclient.10::databases/mysql|p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|!m88k vax|y|y|y|y
p5-DBD-mysqlPP-0.04|databases/p5-DBD-mysqlPP||Pure Perl MySQL driver for the Perl DBI|databases/p5-DBD-mysqlPP/pkg/DESCR|Peter Stromberg <[email protected]>|databases perl5||p5-DBI->=1.14:databases/p5-DBI p5-Net-MySQL->=0.08:net/p5-Net-MySQL|p5-DBI->=1.14:databases/p5-DBI p5-Net-MySQL->=0.08:net/p5-Net-MySQL|any|y|y|y|y
p5-DBI-1.42|databases/p5-DBI||unified perl interface for database access|databases/p5-DBI/pkg/DESCR|Michael Coulter <[email protected]>|databases perl5||p5-PlRPC->=0.2017:net/p5-PlRPC|p5-PlRPC->=0.2017:net/p5-PlRPC|!m88k vax|y|y|y|y
p5-DBIx-ContextualFetch-1.01|databases/p5-DBIx-ContextualFetch||add contextual fetches to DBI|databases/p5-DBIx-ContextualFetch/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-DBI|:databases/p5-DBI|any|y|y|y|y
p5-DBIx-XHTML_Table-1.22|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||p5-DBI->=1.20:databases/p5-DBI|p5-DBI->=1.20:databases/p5-DBI|any|y|y|y|y
p5-Ima-DBI-0.33|databases/p5-Ima-DBI||database connection caching and organization|databases/p5-Ima-DBI/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-DBI :databases/p5-DBIx-ContextualFetch :devel/p5-Class-Data-Inheritable :devel/p5-Class-WhiteHole|:databases/p5-DBI :databases/p5-DBIx-ContextualFetch :devel/p5-Class-Data-Inheritable :devel/p5-Class-WhiteHole|any|y|y|y|y
p5-SQL-Abstract-1.15|databases/p5-SQL-Abstract||generate SQL from Perl data structures|databases/p5-SQL-Abstract/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||||any|y|y|y|y
p5-SQL-Statement-1.09|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.26|databases/p5-ldap||client interface to LDAP servers|databases/p5-ldap/pkg/DESCR|Shell Hung <[email protected]>|databases perl5||p5-Convert-ASN1->0.07:converters/p5-Convert-ASN1 p5-IO-Socket-SSL-*:security/p5-IO-Socket-SSL p5-URI->=1.08:www/p5-URI p5-XML-Parser-*:textproc/p5-XML-Parser|p5-Convert-ASN1->0.07:converters/p5-Convert-ASN1 p5-IO-Socket-SSL-*:security/p5-IO-Socket-SSL p5-URI->=1.08:www/p5-URI p5-XML-Parser-*:textproc/p5-XML-Parser|any|y|y|y|y
p5-pgsql-1.9.0|databases/p5-pgsql||access to PostgreSQL databases perl|databases/p5-pgsql/pkg/DESCR|Markus Friedl <[email protected]>|databases perl5|pq.2::databases/postgresql|||!m88k vax|y|y|y|y
p5-sybperl-2.16p0|databases/p5-sybperl||Sybase database access in Perl|databases/p5-sybperl/pkg/DESCR|Joshua Stein <[email protected]>|databases perl5|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext tds.3,sybdb.4,ct.2::databases/freetds|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|!m88k vax|y|y|y|y
postgresql-7.3.5|databases/postgresql||PostgreSQL RDBMS|databases/postgresql/pkg/DESCR|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases||:devel/gmake||any|n|y|n|y
postgresql-clients-7.3.5|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|n|y|n|y
postgresql-docs-7.3.5|databases/postgresql,-docs||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Brandon Palmer <[email protected]>, Peter Galbavy <[email protected]>|databases||:devel/gmake||any|n|y|n|y
py-ldap-2.0.0pre19-2.1|databases/py-ldap,2.1||LDAP client API for Python|databases/py-ldap/pkg/DESCR|Marc Balmer <[email protected]>|databases|ldap,lber::databases/openldap|python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|!m88k vax|y|y|y|y
py-ldap-2.0.0pre19-2.2|databases/py-ldap,2.2||LDAP client API for Python|databases/py-ldap/pkg/DESCR|Marc Balmer <[email protected]>|databases|ldap,lber::databases/openldap|python-2.2*:lang/python/2.2|python-2.2*:lang/python/2.2|!m88k vax|y|y|y|y
py-ldap-2.0.0pre19-2.3|databases/py-ldap,2.3||LDAP client API for Python|databases/py-ldap/pkg/DESCR|Marc Balmer <[email protected]>|databases|ldap,lber::databases/openldap|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-mysql-0.9.2|databases/py-mysql||python interface to MySQL|databases/py-mysql/pkg/DESCR|Shell Hung <[email protected]>|databases|lib/mysql/mysqlclient.10::databases/mysql|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-psycopg-1.1.4|databases/py-psycopg||PostgreSQL database adapter for Python|databases/py-psycopg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|pq.2::databases/postgresql|py-mxDateTime->=2.0.0-py2.1:devel/py-mxDateTime,py2.1 python-2.1*:lang/python/2.1|py-mxDateTime->=2.0.0-py2.1:devel/py-mxDateTime,py2.1 python-2.1*:lang/python/2.1|any|y|y|y|y
py-psycopg-1.1.4-zope|databases/py-psycopg,zope||PostgreSQL database adapter for Python|databases/py-psycopg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|pq.2::databases/postgresql|py-mxDateTime->=2.0.0-py2.1:devel/py-mxDateTime,py2.1 python-2.1*:lang/python/2.1 zope-*:www/zope|py-mxDateTime->=2.0.0-py2.1:devel/py-mxDateTime,py2.1 python-2.1*:lang/python/2.1 zope-*:www/zope|any|y|y|y|y
py-sqlite-0.5.0|databases/py-sqlite||SQLite adapter for Python|databases/py-sqlite/pkg/DESCR|Damien Miller <[email protected]>|databases|sqlite::databases/sqlite|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-sybase-0.36|databases/py-sybase||Python interface to the Sybase relational database system|databases/py-sybase/pkg/DESCR|Xavier Santolaria <[email protected]>|databases|tds.2,sybdb.3,ct.1::databases/freetds|python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
sqlite-2.8.12|databases/sqlite||Embedded SQL implementation|databases/sqlite/pkg/DESCR|Damien Miller <[email protected]>|databases||:devel/autoconf/2.57 :devel/gmake :devel/metaauto||any|y|y|y|y
sqsh-2.1p0|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.3,ct.2::databases/freetds|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmysql-1.10|databases/xmysql||X11 front end to the MySQL database engine|databases/xmysql/pkg/DESCR|Margarida Sequeira <[email protected]>|databases|forms.0::x11/xforms jpeg.62::graphics/jpeg lib/mysql/mysqlclient.10::databases/mysql|||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|forms.0::x11/xforms jpeg.62::graphics/jpeg lib/mysql/mysqlclient.10::databases/mysql|||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/autoconf/2.13 :devel/gmake :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
ORBit2-2.10.1|devel/ORBit2||high-performance CORBA Object Request Broker|devel/ORBit2/pkg/DESCR|Marc Matteo <[email protected]>|devel|IDL-2::devel/libIDL gmodule-2.0.0.0,gobject-2.0.0.0,gthread-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/autoconf/2.59 :devel/gmake :devel/metaauto bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig->=0.14.0:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
ald-0.1.5a|devel/ald||Assembly Language Debugger|devel/ald/pkg/DESCR|Patrick Alken <[email protected]>|devel||||i386|y|y|y|y
alex-2.0|devel/alex||lexical analyser generator for Haskell|devel/alex/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc :print/jadetex :textproc/docbook :textproc/docbook-dsssl :textproc/expat :textproc/html :textproc/iso8879 :textproc/linuxdoc :textproc/openjade :textproc/sgmlformat bzip2-*:archivers/bzip2|:lang/ghc|i386 sparc amd64|y|y|y|y
apache-ant-1.6.1|devel/apache-ant||java equivalent to make|devel/apache-ant/pkg/DESCR|Kurt Miller <[email protected]>|devel||:archivers/gtar|jdk*->=1.2:devel/jdk/1.3-linux|i386|y|y|y|y
asp2php-0.76.13|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.76.13-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.15.3|devel/astyle||indenter and formatter of C/C++/Java source files|devel/astyle/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||unzip-*:archivers/unzip||any|y|y|y|y
atk-1.4.1|devel/atk||accessibility toolkit used by gtk+|devel/atk/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0.0.0,gmodule-2.0.0.0,gobject-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|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
autoconf-2.13p0|devel/autoconf/2.13||automatically configure source code on many Un*x platforms|devel/autoconf/2.13/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
autoconf-2.52p0|devel/autoconf/2.52||automatically configure source code on many Un*x platforms|devel/autoconf/2.52/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
autoconf-2.54|devel/autoconf/2.54||automatically configure source code on many Un*x platforms|devel/autoconf/2.54/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autoconf-2.56|devel/autoconf/2.56||automatically configure source code on many Un*x platforms|devel/autoconf/2.56/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autoconf-2.57|devel/autoconf/2.57||automatically configure source code on many Un*x platforms|devel/autoconf/2.57/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autoconf-2.58|devel/autoconf/2.58||automatically configure source code on many Un*x platforms|devel/autoconf/2.58/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autoconf-2.59|devel/autoconf/2.59||automatically configure source code on many Un*x platforms|devel/autoconf/2.59/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
automake-1.4-p6p1|devel/automake||GNU Standards-compliant Makefile generator|devel/automake/pkg/DESCR|Jason Ish <[email protected]>|devel||||any|y|y|y|y
binutils-2.14|devel/binutils/stable||GNU development tools|devel/binutils/stable/pkg/DESCR|Federico G. Schwindt <[email protected]>|devel||:devel/autoconf/2.13 :devel/automake :devel/metaauto bzip2-*:archivers/bzip2||any|y|y|y|y
bison-1.35p1|devel/bison||GNU parser generator|devel/bison/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
boehm-gc-6.2|devel/boehm-gc||garbage collection and memory leak detection for C and C++|devel/boehm-gc/pkg/DESCR|Todd T. Fries <[email protected]>|devel||:devel/autoconf/2.54 :devel/metaauto||!hppa powerpc vax|y|y|y|y
c2hs-0.12.0|devel/c2hs||interface generator for Haskell to C bindings|devel/c2hs/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc|:lang/ghc|i386 sparc amd64|y|y|y|y
ccache-2.3|devel/ccache||compiler cache|devel/ccache/pkg/DESCR|Margarida Sequeira <[email protected]>|devel||||any|y|y|y|y
check-0.8.4|devel/check||unit test framework for C programs|devel/check/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel||||any|y|y|y|y
chora-1.2|devel/chora|/var/www|web-based CVS viewer module for Horde|devel/chora/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel www|||horde->=2.2.1:devel/horde|any|y|y|y|y
cook-2.21|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.5|devel/cscope||code browsing program|devel/cscope/pkg/DESCR|Matthew Kolb <[email protected]>|devel||||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.38p1|devel/cvs2cl||generate GNU-style ChangeLogs from CVS repositories|devel/cvs2cl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
cvsgraph-1.2.0|devel/cvsgraph||graphical representation of CVS repository|devel/cvsgraph/pkg/DESCR|Aleksander Piotrowski <[email protected]>|devel|gd.18::graphics/gd jpeg::graphics/jpeg png::graphics/png|||any|y|y|y|y
cvslock-0.2|devel/cvslock||safely manipulate and inspect CVS respositories|devel/cvslock/pkg/DESCR|Manuel Rodrigo Rabade Garcia <[email protected]>|devel||||any|y|y|y|y
cvsplot-1.6.5|devel/cvsplot||CVS-managed project analyzer|devel/cvsplot/pkg/DESCR|Jim Geovedi <[email protected]>|devel|||gnuplot-*:math/gnuplot p5-DateManip-*:converters/p5-DateManip p5-String-ShellQuote-*:textproc/p5-String-ShellQuote|any|y|y|y|y
cvsutils-0.2.0|devel/cvsutils||collection of useful CVS scripts|devel/cvsutils/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel||||any|y|y|y|y
cvsweb-2.0.6p0|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
darcs-0.9.20|devel/darcs||advanced revision control system written in Haskell|devel/darcs/pkg/DESCR|Don Stewart <[email protected]>|devel|curl.2::net/curl|:devel/gmake :lang/ghc|:lang/ghc|i386 sparc amd64|y|y|y|y
ddd-3.3.8|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/autoconf/2.54 :devel/gmake :devel/metaauto||any|y|y|y|y
dejagnu-1.4.3|devel/dejagnu||framework to test programs|devel/dejagnu/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|tk84::x11/tk/8.4||:lang/expect|any|y|y|y|y
doc++-3.4.10|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.5|devel/ectags||multilanguage implementation of ctags|devel/ectags/pkg/DESCR|Jesper Louis Andersen <[email protected]>|devel||||any|y|y|y|y
ffcall-1.8|devel/ffcall||foreign function call libraries|devel/ffcall/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||any|y|y|y|y
flawfinder-1.24|devel/flawfinder||C/C++ source code auditing tool|devel/flawfinder/pkg/DESCR|Jason Peel <[email protected]>|devel security|||python-2.3*:lang/python/2.3|any|y|y|y|y
fox-1.1.41|devel/fox||C++ toolkit for GUI|devel/fox/pkg/DESCR|Marc Espie <[email protected]>|devel|bz2::archivers/bzip2 jpeg::graphics/jpeg png::graphics/png tiff::graphics/tiff|||any|y|y|y|y
fribidi-0.10.4|devel/fribidi||Library implementing the Unicode Bidirectional Algorithm|devel/fribidi/pkg/DESCR|Damien Couderc <[email protected]>|devel||bzip2-*:archivers/bzip2||any|y|y|y|y
gal-0.24|devel/gal||GNOME Application Libs|devel/gal/pkg/DESCR|Marc Matteo <[email protected]>|devel x11/gnome|glib.1.2,gmodule.1.2::devel/glib 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 gnome-libs->1.4:x11/gnome/libs gnome-print->=0.25:x11/gnome/print libglade->=0.13-gnome:devel/libglade,gnome libxml1->=1.8.8:textproc/libxml1|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gal2-1.99.10|devel/gal2||GNOME Application Libs|devel/gal2/pkg/DESCR|Marc Matteo <[email protected]>|devel x11/gnome|gnomeprintui-2-2::x11/gnome/libgnomeprintui gnomeui-2::x11/gnome/libgnomeui iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gconf-1.0.9|devel/gconf||configuration database system written for GNOME|devel/gconf/pkg/DESCR|Marc Matteo <[email protected]>|devel x11/gnome|gnome.36::x11/gnome/libs oaf.::x11/gnome/oaf xml.9::textproc/libxml1|:devel/autoconf/2.13 :devel/metaauto bzip2-*:archivers/bzip2||any|y|y|y|y
gconf-editor-2.4.0|devel/gconf-editor||editor for the GConf configuration system|devel/gconf-editor/pkg/DESCR|Marc Balmer <[email protected]>|devel x11/gnome|gconf-2::devel/gconf2|:devel/gmake bzip2-*:archivers/bzip2 pkgconfig-*:devel/pkgconfig||any|y|y|y|y
gconf2-2.4.0.1|devel/gconf2||configuration database system for GNOME|devel/gconf2/pkg/DESCR|Marc Matteo <[email protected]>|devel|ORBit-2::devel/ORBit2 gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2.6::textproc/libxml|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gdb-6.0.90|devel/gdb||GNU debugger|devel/gdb/pkg/DESCR|Mark Kettenis <[email protected]>|devel||:devel/autoconf/2.13 :devel/metaauto||alpha amd64 i386 sparc sparc64|y|y|y|y
gengameng-4.1|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/libtool||any|y|y|y|y
gettext-0.10.40p1|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
getxml-1.0.4|devel/getxml||XML internationalization tool|devel/getxml/pkg/DESCR|Jim Geovedi <[email protected]>|devel|glib.1::devel/glib xml.9::textproc/libxml1|||any|y|y|y|y
gindent-2.2.8|devel/gindent||GNU utility to indent C source files|devel/gindent/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
glade-0.6.4|devel/glade||free user interface builder for GTK+ and GNOME|devel/glade/pkg/DESCR|Jim Geovedi <[email protected]>|devel|gtk.1.2,gdk.1.2::x11/gtk+|bzip2-*:archivers/bzip2 scrollkeeper->=0.3.12:textproc/scrollkeeper|:devel/metaauto autoconf->=2.13:devel/autoconf/2.13 automake->=1.4:devel/automake scrollkeeper->=0.3.12: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|Jim Geovedi <[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->=0.3.12:textproc/scrollkeeper|:devel/metaauto autoconf->=2.13:devel/autoconf/2.13 automake->=1.4:devel/automake scrollkeeper->=0.3.12: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
glib2-2.2.3|devel/glib2||general-purpose utility library|devel/glib2/pkg/DESCR|Marc Matteo <[email protected]>|devel|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig->=0.14:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
glib2-docs-2.2.3|devel/glib2,-docs||glib2 documentation|devel/glib2/pkg/DESCR-docs|Marc Matteo <[email protected]>|devel||:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
gmake-3.80|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-4.1.2|devel/gmp||library for arbitrary precision arithmetic|devel/gmp/pkg/DESCR|Christian Weisgerber <[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
gputils-0.12.0|devel/gputils||GNU PIC assembler and utilities|devel/gputils/pkg/DESCR|Andrew Dalgleish <[email protected]>|devel||:devel/autoconf/2.57 :devel/metaauto||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
guilib-1.1.1|devel/guilib||SDL C++ GUI widget library|devel/guilib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel graphics|SDL.::devel/sdl|||any|y|y|y|y
haddock-0.6|devel/haddock||documentation tool for the functional language Haskell|devel/haddock/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc :print/jadetex :textproc/docbook :textproc/docbook-dsssl :textproc/expat :textproc/html :textproc/iso8879 :textproc/linuxdoc :textproc/openjade :textproc/sgmlformat|:lang/ghc|i386 sparc amd64|y|y|y|y
happy-1.14|devel/happy||parser generator for the functional language Haskell|devel/happy/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc :print/jadetex :textproc/docbook :textproc/docbook-dsssl :textproc/expat :textproc/html :textproc/iso8879 :textproc/linuxdoc :textproc/openjade :textproc/sgmlformat bzip2-*:archivers/bzip2|:lang/ghc|i386 sparc amd64|y|y|y|y
help2man-1.29|devel/help2man||GNU help2man|devel/help2man/pkg/DESCR|Jim Geovedi <[email protected]>|devel||||any|y|y|y|y
hmake-3.08|devel/hmake||compilation manager for Haskell programs|devel/hmake/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc|:lang/ghc|i386 sparc amd64|y|y|y|y
horde-2.2.5|devel/horde|/var/www|modular framework for web-based applications|devel/horde/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel www|||:devel/pear-Log :mail/pear-Mail-Mime php4-core->=4.3.1:www/php4/core php4-domxml->=4.3.1:www/php4/extensions,-domxml php4-mcrypt->=4.3.1:www/php4/extensions,-mcrypt php4-pear->=4.3.1:www/php4/core,-pear|any|y|y|y|y
hs-ports-0.4.1|devel/hs-ports||Haskell library for concurrent and distributed programming|devel/hs-ports/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc|:lang/ghc|i386 sparc amd64|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
idoc-0.2.6|devel/idoc||minimalist documentation tool for Haskell|devel/idoc/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc|:lang/ghc|i386 sparc amd64|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||i386|n|n|n|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-linux->1.3:devel/jdk/1.3-linux|any|y|y|y|y
jam-2.4|devel/jam||build utility like make|devel/jam/pkg/DESCR|Jonathan Auer <[email protected]>|devel||||any|y|y|y|y
jdk-linux-1.3.1_11|devel/jdk/1.3-linux||Java Development Kit for Java 2 Standard Edition 1.3|devel/jdk/1.3-linux/pkg/DESCR|Christian Edward Gruber <[email protected]>|devel java||redhat_base->=6.2:emulators/redhat/base|redhat_base->=6.2:emulators/redhat/base|i386|n|n|n|n
jdk-1.3.1|devel/jdk/1.3||Java2(TM) Standard Edition Dev Kit v1.3.1|devel/jdk/1.3/pkg/DESCR|Kurt Miller <[email protected]>|devel/jdk java|Xm.2::x11/openmotif glib.1::devel/glib gtk.1.2::x11/gtk+ nspr4.1::devel/nspr|:devel/gmake gtar-*:archivers/gtar jdk-linux->=1.3.1_10:devel/jdk/1.3-linux zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|i386|n|n|n|n
jre-1.3.1|devel/jdk/1.3,-jre||Java2(TM) Standard Edition Runtime Environment v1.3.1|devel/jdk/1.3/pkg/DESCR-jre|Kurt Miller <[email protected]>|devel/jdk java|Xm.2::x11/openmotif glib.1::devel/glib gtk.1.2::x11/gtk+ nspr4.1::devel/nspr|:devel/gmake gtar-*:archivers/gtar jdk-linux->=1.3.1_10:devel/jdk/1.3-linux zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|i386|n|n|n|n
jdk-linux-1.4.1_01|devel/jdk/1.4-linux||Java Development Kit for Java 2 Standard Edition 1.4|devel/jdk/1.4-linux/pkg/DESCR|Kevin Lo <[email protected]>|devel java||redhat_base->=6.2:emulators/redhat/base|redhat_base->=6.2:emulators/redhat/base|i386|n|n|n|n
kdbg-1.2.5|devel/kdbg||graphical debugger for KDE|devel/kdbg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|kdecore.4,DCOP,kdefx,kdesu,kdeui,kio::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/autoconf/2.13 :devel/metaauto||!m88k vax|y|y|y|y
lam-6.5.9|devel/lam||great implementation of the message passing interface|devel/lam/pkg/DESCR|Todd T. Fries <[email protected]>|devel math net comms||||any|y|y|y|y
lib765-0.3.1.1|devel/lib765||library for the floppy controller emulation|devel/lib765/pkg/DESCR|Alexander Yurchenko <[email protected]>|devel|dsk.2::devel/libdsk|||any|y|y|y|y
libIDL-0.8.3|devel/libIDL||IDL parsing library|devel/libIDL/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0.0.0::devel/glib2|:devel/gmake bzip2-*:archivers/bzip2 pkgconfig-*:devel/pkgconfig||any|y|y|y|y
libaudiofile-0.2.5|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
libbio-2.0|devel/libbio||Simple buffered I/O library from Plan 9|devel/libbio/pkg/DESCR|Markus Friedl <[email protected]>|devel plan9||:devel/libfmt :devel/libutf||any|y|y|y|y
libbt-1.01|devel/libbt||c reimplementation of the BitTorrent core protocols|devel/libbt/pkg/DESCR|Jolan Luff <[email protected]>|devel net|curl.2.2::net/curl|||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
libdsk-1.0.0|devel/libdsk||library for accessing disks and disk image files|devel/libdsk/pkg/DESCR|Alexander Yurchenko <[email protected]>|devel|bz2.10::archivers/bzip2|:devel/gmake||any|y|y|y|y
libdvdplay-1.0.1|devel/libdvdplay||simple library designed for DVD navigation|devel/libdvdplay/pkg/DESCR|Jolan Luff <[email protected]>|devel|dvdread::devel/libdvdread|||any|y|y|y|y
libdvdread-0.9.4|devel/libdvdread||accessing DVD files|devel/libdvdread/pkg/DESCR|Marc Espie <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libfmt-2.0|devel/libfmt||Extensible formatted print C library|devel/libfmt/pkg/DESCR|Markus Friedl <[email protected]>|devel plan9||:devel/libutf||any|y|y|y|y
libglade-0.17|devel/libglade||library for loading GLADE interface files at runtime|devel/libglade/pkg/DESCR|Jim Geovedi <[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|Jim Geovedi <[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
libglade2-2.0.1|devel/libglade2||library for loading GLADE interface files at runtime|devel/libglade2/pkg/DESCR|Marc Matteo <[email protected]>|devel|gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2.7::textproc/libxml|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgsf-1.8.2|devel/libgsf||GNOME Structured File library|devel/libgsf/pkg/DESCR|Marc Matteo <[email protected]>|devel|bz2.10.2::archivers/bzip2 glib-2.0.0.11,gobject-2.0.0.11::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2.8.4::textproc/libxml|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig->=0.14.0:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgsf-gnome-1.8.2|devel/libgsf,-gnome||GNOME specific extensions to libgsf|devel/libgsf/pkg/DESCR-gnome|Marc Matteo <[email protected]>|devel|bz2.10.2::archivers/bzip2 glib-2.0.0.11,gobject-2.0.0.11::devel/glib2 gnomevfs-2::x11/gnome/vfs2 gsf-1::devel/libgsf iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2.8.4::textproc/libxml|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig->=0.14.0:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop-1.0.13p1|devel/libgtop||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Jim Geovedi <[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.13p1-gnome|devel/libgtop,gnome||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Jim Geovedi <[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
libgtop2-2.0.7|devel/libgtop2||portable library for obtaining system information|devel/libgtop2/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/autoconf/2.57 :devel/gmake :devel/metaauto bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libicq2000-0.3.2|devel/libicq2000||protocol icq2000/2001 library|devel/libicq2000/pkg/DESCR|Peter Valchev <[email protected]>|net|sigc::devel/libsigc++|||any|y|y|y|y
libio-0.1|devel/libio||abstraction for general data transport|devel/libio/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
libproplist-0.10.1|devel/libproplist||GNUstep/OPENSTEP property lists compatibility library|devel/libproplist/pkg/DESCR|Jason Ish <[email protected]>|devel||:devel/gmake||any|y|y|y|y
libregexp9-2.0|devel/libregexp9||Simple regular expression library from Plan 9|devel/libregexp9/pkg/DESCR|Markus Friedl <[email protected]>|devel plan9||:devel/libfmt :devel/libutf||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.9p1|devel/libslang||stack-based interpreter for terminal applications|devel/libslang/pkg/DESCR|Brad Smith <[email protected]>|devel||:devel/autoconf/2.13 :devel/metaauto||any|y|y|y|y
libsoup-1.99.26|devel/libsoup||a SOAP (Simple Object Access Protocol) implementation in C|devel/libsoup/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0.0.0::devel/glib2|:devel/autoconf/2.57 :devel/gmake :devel/metaauto bzip2-*:archivers/bzip2||any|y|y|y|y
libspectrum-0.2.1|devel/libspectrum||ZX Spectrum emulator file format library|devel/libspectrum/pkg/DESCR|Alexander Yurchenko <[email protected]>|devel|gcrypt.12::security/libgcrypt glib-2.0.0.11::devel/glib2|:devel/pkgconfig||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
libunicode-0.4|devel/libunicode||library for manipulating Unicode characters and strings|devel/libunicode/pkg/DESCR|Margarida Sequeira <[email protected]>|devel||||any|y|y|y|y
libusb-0.1.7p2|devel/libusb||USB access library|devel/libusb/pkg/DESCR|Peter Valchev <[email protected]>|devel||||any|y|y|y|y
libuta-0.4.4|devel/libuta||graphical user interface library for C++|devel/libuta/pkg/DESCR|Peter Valchev <[email protected]>|devel|SDL_mixer::devel/sdl-mixer png.2::graphics/png sigc.0.0::devel/libsigc++ smpeg.1.3::devel/smpeg ttf.1.3::print/freetype|||any|y|y|y|y
libutf-2.0|devel/libutf||UTF8 support library from Plan 9|devel/libutf/pkg/DESCR|Markus Friedl <[email protected]>|devel plan9||||any|y|y|y|y
libwnck-2.4.0.1|devel/libwnck||window navigator construction kit|devel/libwnck/pkg/DESCR|Marc Matteo <[email protected]>|devel|gdk-x11-2.0.0.10,gdk_pixbuf-2.0.0.10,gtk-x11-2.0.0.10::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext startup-notification-1::devel/startup-notification|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libzvt-2.0.1|devel/libzvt||library for handling pseudo terminals|devel/libzvt/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|art_lgpl_2.5::graphics/libart gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2|bzip2-*:archivers/bzip2 pkgconfig->=0.12.0p1:devel/pkgconfig||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
metaauto-0.1|devel/metaauto||wrapper for gnu auto*|devel/metaauto/pkg/DESCR|Marc Espie <[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
mk-2.0|devel/mk||Streamlined replacement for make|devel/mk/pkg/DESCR|Markus Friedl <[email protected]>|devel plan9||:devel/libbio :devel/libfmt :devel/libregexp9||any|y|y|y|y
mm-1.3.0|devel/mm||shared memory lib for apps with pre-forked process model|devel/mm/pkg/DESCR|Brad Smith <[email protected]>|devel||||!vax|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::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.38|devel/nasm||general-purpose multi-platform x86 assembler|devel/nasm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel lang||||i386|y|y|y|y
nspr-4.4.1|devel/nspr||Netscape Portable Runtime|devel/nspr/pkg/DESCR|Kurt Miller <[email protected]>|devel||:devel/gmake||i386|y|y|y|y
opencm-0.1.2alpha7pl1|devel/opencm||OpenCM change management system|devel/opencm/pkg/DESCR|Todd T. Fries <[email protected]>|devel|gc.1:boehm-gc->=6.2:devel/boehm-gc|:devel/autoconf/2.13 :devel/gmake :devel/metaauto teTeX_base-*:print/teTeX/base||any|y|y|y|y
opencm-docs-0.1.2alpha7pl1|devel/opencm,-docs||OpenCM Documentation|devel/opencm/pkg/DESCR-docs|Todd T. Fries <[email protected]>|devel|gc.1:boehm-gc->=6.2:devel/boehm-gc|:devel/autoconf/2.13 :devel/gmake :devel/metaauto teTeX_base-*:print/teTeX/base||any|y|y|y|y
p5-Algorithm-Diff-1.15|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||||!m88k vax|y|y|y|y
p5-Algorithm-MarkovChain-0.05|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.06|devel/p5-Algorithm-Permute||interface to handy and fast permutation|devel/p5-Algorithm-Permute/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-App-Info-0.23|devel/p5-App-Info||interface for providing metadata about installed packages|devel/p5-App-Info/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-AppConfig-1.56|devel/p5-AppConfig||Module bundle for reading and parsing config files|devel/p5-AppConfig/pkg/DESCR|Morten Liebach <[email protected]>|devel perl5||||any|y|y|y|y
p5-AppConfig-Std-1.07|devel/p5-AppConfig-Std||subclass of AppConfig that provides standard options|devel/p5-AppConfig-Std/pkg/DESCR|Sam Smith <[email protected]>|devel perl5|||:devel/p5-AppConfig|any|y|y|y|y
p5-B-Deobfuscate-0.10|devel/p5-B-Deobfuscate||Perl module for use in de-obfuscating source code|devel/p5-B-Deobfuscate/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-B-Keywords :devel/p5-YAML|:devel/p5-B-Keywords :devel/p5-YAML|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-B-Keywords-0.06|devel/p5-B-Keywords||lists of Perl keywords for use in backend modules|devel/p5-B-Keywords/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-BSD-Resource-1.24|devel/p5-BSD-Resource||BSD process resource limit and priority functions|devel/p5-BSD-Resource/pkg/DESCR|Dan Weeks <[email protected]>|devel perl5||||!m88k vax|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||p5-Data-Flow->=0.05:devel/p5-Data-Flow|p5-Data-Flow->=0.05:devel/p5-Data-Flow|any|y|y|y|y
p5-Cache-Cache-1.02|devel/p5-Cache-Cache||perl cache interface|devel/p5-Cache-Cache/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||p5-Digest-SHA1->=2.02:security/p5-Digest-SHA1 p5-Error->=0.15:devel/p5-Error p5-IPC-ShareLite->=0.09:devel/p5-IPC-ShareLite|p5-Digest-SHA1->=2.02:security/p5-Digest-SHA1 p5-Error->=0.15:devel/p5-Error p5-IPC-ShareLite->=0.09:devel/p5-IPC-ShareLite|any|y|y|y|y
p5-Carp-Datum-0.1.3|devel/p5-Carp-Datum||debugging and tracing ultimate module|devel/p5-Carp-Datum/pkg/DESCR|Andrew Dalgleish <[email protected]>|devel perl5||p5-Getargs-Long->=0.1.3:devel/p5-Getargs-Long|p5-Getargs-Long->=0.1.3:devel/p5-Getargs-Long|any|y|y|y|y
p5-Class-Accessor-0.19|devel/p5-Class-Accessor||automated accessor generation|devel/p5-Class-Accessor/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Container-0.11|devel/p5-Class-Container||validate method/function parameters|devel/p5-Class-Container/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||p5-Params-Validate->=0.58:devel/p5-Params-Validate|p5-Params-Validate->=0.58:devel/p5-Params-Validate|any|y|y|y|y
p5-Class-Data-Inheritable-0.02|devel/p5-Class-Data-Inheritable||inheritable, overridable class data|devel/p5-Class-Data-Inheritable/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Date-1.1.7|devel/p5-Class-Date||module for easy date and time manipulation|devel/p5-Class-Date/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||!m88k vax|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-2.02|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-Class-MethodMapper-1.0|devel/p5-Class-MethodMapper||Abstract class wrapper for Autoloader|devel/p5-Class-MethodMapper/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-ReturnValue-0.52|devel/p5-Class-ReturnValue||smart return-value object|devel/p5-Class-ReturnValue/pkg/DESCR|Michael Coulter <[email protected]>|devel perl5||p5-Devel-StackTrace-*:devel/p5-Devel-StackTrace||any|y|y|y|y
p5-Class-Trigger-0.08|devel/p5-Class-Trigger||add / call inheritable triggers|devel/p5-Class-Trigger/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||:devel/p5-Class-Data-Inheritable :devel/p5-IO-stringy|:devel/p5-Class-Data-Inheritable :devel/p5-IO-stringy|any|y|y|y|y
p5-Class-WhiteHole-0.04|devel/p5-Class-WhiteHole||base class to treat unhandled method calls as errors|devel/p5-Class-WhiteHole/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-IniFiles-2.38|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|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Curses-UI-0.92|devel/p5-Curses-UI||curses based user interface framework for Perl|devel/p5-Curses-UI/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Curses :devel/p5-Term-ReadKey||any|y|y|y|y
p5-CursesWidgets-1.997|devel/p5-Curses-Widgets||curses(3) based terminal widgets|devel/p5-Curses-Widgets/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||p5-Curses-*:devel/p5-Curses|p5-Curses-*:devel/p5-Curses|any|y|y|y|y
p5-Data-Flow-0.09|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.3|devel/p5-Date-Calc||date calculations for the Gregorian calendar|devel/p5-Date-Calc/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-Bit-Vector->=6.2:math/p5-Bit-Vector|p5-Bit-Vector->=6.2:math/p5-Bit-Vector|!m88k vax|y|y|y|y
p5-Date-Handler-1.0|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-Date-ICal-1.72|devel/p5-Date-ICal||Perl Extensions for ICal objects|devel/p5-Date-ICal/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||:devel/p5-Date-Leapyear|:devel/p5-Date-Leapyear|any|y|y|y|y
p5-Date-Leapyear-1.71|devel/p5-Date-Leapyear||is a particular year a leap year|devel/p5-Date-Leapyear/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Date-Simple-3.00|devel/p5-Date-Simple||Manipulate simple date objects|devel/p5-Date-Simple/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Devel-SmallProf-1.15|devel/p5-Devel-SmallProf||per-line Perl profiler|devel/p5-Devel-SmallProf/pkg/DESCR|Srebrenko Sehic <[email protected]>|devel perl5||||any|y|y|y|y
p5-Devel-StackTrace-1.11|devel/p5-Devel-StackTrace||stack trace and stack trace frame objects|devel/p5-Devel-StackTrace/pkg/DESCR|Michael Coulter <[email protected]>|devel perl5||||any|y|y|y|y
p5-Devel-Symdump-2.03|devel/p5-Devel-Symdump||module for inspecting Perl's symbol table|devel/p5-Devel-Symdump/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Error-0.15|devel/p5-Error||error/exception handling in an OO-ish way|devel/p5-Error/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||||any|y|y|y|y
p5-Exception-Class-1.19|devel/p5-Exception-Class||module to declare real exception classes in perl|devel/p5-Exception-Class/pkg/DESCR|Michael Coulter <[email protected]>|devel perl5||p5-Class-Data-Inheritable->=0.02:devel/p5-Class-Data-Inheritable p5-Devel-StackTrace->=1.11:devel/p5-Devel-StackTrace|p5-Class-Data-Inheritable->=0.02:devel/p5-Class-Data-Inheritable p5-Devel-StackTrace->=1.11:devel/p5-Devel-StackTrace|any|y|y|y|y
p5-Expect-1.15|devel/p5-Expect||talk to other applications|devel/p5-Expect/pkg/DESCR|Michael Lestinsky <[email protected]>|devel perl5|||:devel/p5-IO-Tty|any|y|y|y|y
p5-Exporter-Lite-0.01|devel/p5-Exporter-Lite||Lightwieght Exporting of variables|devel/p5-Exporter-Lite/pkg/DESCR|Peter Galbavy <[email protected]>|devel perl5||||any|y|y|y|y
ExtUtils-CBuilder-0.02|devel/p5-ExtUtils-CBuilder||compile and link C code for Perl modules|devel/p5-ExtUtils-CBuilder/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-ExtUtils-ParseXS-2.08|devel/p5-ExtUtils-ParseXS||converts Perl XS code into C code|devel/p5-ExtUtils-ParseXS/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-ExtUtils-CBuilder|:devel/p5-ExtUtils-CBuilder|any|y|y|y|y
p5-File-ReadBackwards-1.02|devel/p5-File-ReadBackwards||module to read a file starting at the end|devel/p5-File-ReadBackwards/pkg/DESCR|William Yodlowsky <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Sync-0.09|devel/p5-File-Sync||perl interface to the sync() system functions|devel/p5-File-Sync/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||||!m88k vax|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|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-FreezeThaw-0.43|devel/p5-FreezeThaw||module for converting structures to strings and back|devel/p5-FreezeThaw/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||||any|y|y|y|y
p5-Getargs-Long-0.1.3|devel/p5-Getargs-Long||parses long function arguments|devel/p5-Getargs-Long/pkg/DESCR|Andrew Dalgleish <[email protected]>|devel perl5||p5-Log-Agent->=0.105:devel/p5-Log-Agent|p5-Log-Agent->=0.105:devel/p5-Log-Agent|any|y|y|y|y
p5-IO-String-1.05|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-Tty-1.02|devel/p5-IO-Tty||provide an interface to create pseudo ttys|devel/p5-IO-Tty/pkg/DESCR|Michael Lestinsky <[email protected]>|devel perl5||||!m88k vax|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-IPC-ShareLite-0.09|devel/p5-IPC-ShareLite||simple interface to access shared memory|devel/p5-IPC-ShareLite/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Locale-PGetText-0.16|devel/p5-Locale-PGettext||perl i18n routines|devel/p5-Locale-PGettext/pkg/DESCR|Shell Hung <[email protected]>|devel||||any|y|y|y|y
p5-Log-Agent-0.305|devel/p5-Log-Agent||abstraction layer for logging and tracing|devel/p5-Log-Agent/pkg/DESCR|Andrew Dalgleish <[email protected]>|devel perl5||||any|y|y|y|y
p5-Log-Log4perl-0.41|devel/p5-Log-Log4perl||module to scan C language files|devel/p5-Log-Log4perl/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-MLDBM-2.01|devel/p5-MLDBM||store multi-level hash structure in single-level tied hash|devel/p5-MLDBM/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||p5-FreezeThaw->=0.3:devel/p5-FreezeThaw|p5-FreezeThaw->=0.3:devel/p5-FreezeThaw|any|y|y|y|y
p5-MLDBM-Sync-0.30|devel/p5-MLDBM-Sync||safe concurrent access to MLDBM databases|devel/p5-MLDBM-Sync/pkg/DESCR|Peter Galbavy <[email protected]>|devel perl5||p5-MLDBM-*:devel/p5-MLDBM|p5-MLDBM-*:devel/p5-MLDBM|any|y|y|y|y
p5-Module-Build-0.25|devel/p5-Module-Build||build and install Perl modules|devel/p5-Module-Build/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:archivers/p5-Archive-Tar :devel/p5-ExtUtils-ParseXS :devel/p5-YAML|:archivers/p5-Archive-Tar :devel/p5-ExtUtils-ParseXS :devel/p5-YAML|any|y|y|y|y
p5-Net-Server-0.87|devel/p5-Net-Server||extensible framework for Perl server engines|devel/p5-Net-Server/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel net perl5||||any|y|y|y|y
p5-Number-Compare-0.01|devel/p5-Number-Compare||Compare numbers|devel/p5-Number-Compare/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-Number-Compare-Date-0.02|devel/p5-Number-Compare-Date||Compare Dates|devel/p5-Number-Compare-Date/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||:devel/p5-Number-Compare p5-Time-TimeDate->=1.16:devel/p5-Time-TimeDate|:devel/p5-Number-Compare p5-Time-TimeDate->=1.16:devel/p5-Time-TimeDate|any|y|y|y|y
p5-Object-Realize-0.14|devel/p5-Object-Realize||perl module to implementing delay loading of object-data|devel/p5-Object-Realize/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Parallel-ForkManager-0.7.5|devel/p5-Parallel-ForkManager||simple parallel processing fork manager|devel/p5-Parallel-ForkManager/pkg/DESCR|David Krause <[email protected]>|devel perl5||||any|y|y|y|y
p5-Params-Validate-0.74|devel/p5-Params-Validate||perl module to validate function/method parameters|devel/p5-Params-Validate/pkg/DESCR|Michael Coulter <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Parse-RecDescent-1.94|devel/p5-Parse-RecDescent||perl module to generate recursive descent parsers|devel/p5-Parse-RecDescent/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Pod-Coverage-0.13|devel/p5-Pod-Coverage||checks if the documentation of a Perl module is comprehensive|devel/p5-Pod-Coverage/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Devel-Symdump :devel/p5-Module-Build|:devel/p5-Devel-Symdump|!m88k vax|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-String-CRC32-1.2|devel/p5-String-CRC32||interface for cyclic redundancy check generation|devel/p5-String-CRC32/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-String-Scanf-2.0|devel/p5-String-Scanf||Emulates the sscanf() of the C stdio library|devel/p5-String-Scanf/pkg/DESCR|Jim Geovedi <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ReadKey-2.21|devel/p5-Term-ReadKey||change terminal modes, and perform non-blocking reads|devel/p5-Term-ReadKey/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Term-ReadLine-Gnu-1.14|devel/p5-Term-ReadLine-Gnu||GNU Readline Library Wrapper Module|devel/p5-Term-ReadLine-Gnu/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Term-Screen-1.02|devel/p5-Term-Screen||positioning screen based module|devel/p5-Term-Screen/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ScreenColor-1.09|devel/p5-Term-ScreenColor||screen positioning and coloring module|devel/p5-Term-ScreenColor/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Builder-Tester-0.09|devel/p5-Test-Builder-Tester||perl module to lint Test::Builder testsuites|devel/p5-Test-Builder-Tester/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Test-Differences-0.47|devel/p5-Test-Differences||Test differences in data structures|devel/p5-Test-Differences/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:textproc/p5-Text-Diff|:textproc/p5-Text-Diff|any|y|y|y|y
p5-Time-Period-1.20|devel/p5-Time-Period||module for dealing with time periods|devel/p5-Time-Period/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-Piece-1.08|devel/p5-Time-Piece||object oriented time interface|devel/p5-Time-Piece/pkg/DESCR|Gerardo Santana Gomez Garrido <[email protected]>|devel perl5||||!m88k vax|y|y|y|y
p5-Time-TimeDate-1.16|devel/p5-Time-TimeDate||library for parsing and formatting dates and times|devel/p5-Time-TimeDate/pkg/DESCR|Margarida Sequeira <[email protected]>|devel perl5||||any|y|y|y|y
p5-Universal-exports-0.03|devel/p5-Universal-exports||lightweight, universal exporting/require of variables|devel/p5-Universal-exports/pkg/DESCR|Sam Smith <[email protected]>|devel perl5|||:devel/p5-Exporter-Lite|any|y|y|y|y
p5-Universal-moniker-0.07|devel/p5-Universal-moniker||Perl module for aliasing class names|devel/p5-Universal-moniker/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:textproc/p5-Lingua-EN-Inflect|:textproc/p5-Lingua-EN-Inflect|any|y|y|y|y
p5-YAML-0.35|devel/p5-YAML||YAML ain't a markup language|devel/p5-YAML/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5|||:textproc/p5-XML-Simple|any|y|y|y|y
pango-1.2.5|devel/pango||library for layout and rendering of text|devel/pango/pkg/DESCR|Marc Matteo <[email protected]>|devel x11|glib-2.0.0.8,gmodule-2.0.0.8,gobject-2.0.0.8::devel/glib2|:devel/gmake bzip2-*:archivers/bzip2 pkgconfig-*:devel/pkgconfig||any|y|y|y|y
pccts-1.33r33|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-4.5|devel/pcre||perl-compatible regular expression library|devel/pcre/pkg/DESCR|Jakob Schlyter <[email protected]>|devel||||any|y|y|y|y
pear-Config-1.10|devel/pear-Config|/var/www|configuration file library for PHP|devel/pear-Config/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel pear||php4-pear-4.3.*:www/php4/core,-pear|php4-pear-4.3.*:www/php4/core,-pear|any|y|y|y|y
pear-Date-1.4.1|devel/pear-Date|/var/www|date and timezone classes for PHP|devel/pear-Date/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel pear||php4-pear-4.3.*:www/php4/core,-pear|php4-pear-4.3.*:www/php4/core,-pear|any|y|y|y|y
pear-Log-1.8.4|devel/pear-Log|/var/www|logging utilities for PHP|devel/pear-Log/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel pear||php4-pear-4.3.*:www/php4/core,-pear|php4-pear-4.3.*:www/php4/core,-pear|any|y|y|y|y
pear-PHPUnit-0.6.2|devel/pear-PHPUnit|/var/www|regression testing framework for PHP|devel/pear-PHPUnit/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel pear||php4-pear-4.3.*:www/php4/core,-pear|php4-pear-4.3.*:www/php4/core,-pear|any|y|y|y|y
perltidy-20031021|devel/perltidy||tool to indent and reformat perl scripts|devel/perltidy/pkg/DESCR|Jim Razmus <[email protected]>|devel||||any|y|y|y|y
physfs-1.0.0|devel/physfs||library to provide abstract access to various archives|devel/physfs/pkg/DESCR|Jolan Luff <[email protected]>|devel||||any|y|y|y|y
pkgconfig-0.15.0|devel/pkgconfig||tool for managing library compile/link flags|devel/pkgconfig/pkg/DESCR|Marc Matteo <[email protected]>|devel||||any|y|y|y|y
popt-1.7|devel/popt||getopt(3)-like library with a number of enhancements|devel/popt/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/gmake||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.13|devel/py-Checker||python codes checker|devel/py-Checker/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
py-cheetah-0.9.15|devel/py-cheetah||Python-powered template engine and code generator|devel/py-cheetah/pkg/DESCR|Xavier Santolaria <[email protected]>|devel textproc||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
py-mxDateTime-2.0.5-py2.3|devel/py-mxDateTime,py2.3||Date and Time types for Python|devel/py-mxDateTime/pkg/DESCR|Jason Ish <[email protected]>|devel||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
py-mxDateTime-2.0.5-py2.1|devel/py-mxDateTime,py2.1||Date and Time types for Python|devel/py-mxDateTime/pkg/DESCR|Jason Ish <[email protected]>|devel||python-2.1*:lang/python/2.1|python-2.1*:lang/python/2.1|!m88k vax|y|y|y|y
py-optik-1.3|devel/py-optik||command line parsing library for Python|devel/py-optik/pkg/DESCR|Shell Hung <[email protected]>|devel||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
py-pexpect-0.99|devel/py-pexpect||pure Python Expect-like module|devel/py-pexpect/pkg/DESCR|Xavier Santolaria <[email protected]>|devel||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
py-tpg-3.0.3|devel/py-tpg||parser generator in Python|devel/py-tpg/pkg/DESCR|Xavier Santolaria <[email protected]>|devel||python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|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.3*:lang/python/2.3 python-tkinter-2.3*:lang/python/2.3,-tkinter|python-2.3*:lang/python/2.3 python-tkinter-2.3*:lang/python/2.3,-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.3*:lang/python/2.3|python-2.3*:lang/python/2.3|any|y|y|y|y
pygame-1.6|devel/pygame||set of Python modules designed for writing games|devel/pygame/pkg/DESCR|Xavier Santolaria <[email protected]>|devel games|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer SDL_ttf::devel/sdl-ttf|py-Numeric-*:math/py-Numeric python-2.3*:lang/python/2.3|python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
rats-2.1|devel/rats||source code auditing tool|devel/rats/pkg/DESCR|Jason Peel <[email protected]>|devel security|expat.2::textproc/expat|||any|y|y|y|y
ruby-ncurses-0.8|devel/ruby-ncurses||Ruby interface to ncurses|devel/ruby-ncurses/pkg/DESCR|Jim Geovedi <[email protected]>|devel|ruby.1.81::lang/ruby|bzip2-*:archivers/bzip2|:lang/ruby|any|y|y|y|y
sdl-1.2.6p0-sun|devel/sdl,sun||cross-platform multimedia library|devel/sdl/pkg/DESCR|Peter Valchev <[email protected]>|devel||:devel/autoconf/2.13 :devel/metaauto :devel/nasm||any|y|y|y|y
sdl-1.2.6p0-esd|devel/sdl,esd||cross-platform multimedia library|devel/sdl/pkg/DESCR|Peter Valchev <[email protected]>|devel|esd.2::audio/esound|:devel/autoconf/2.13 :devel/metaauto :devel/nasm||any|y|y|y|y
sdl-gfx-2.0.11|devel/sdl-gfx||primitives drawing/other support functions for SDL|devel/sdl-gfx/pkg/DESCR|Jolan Luff <[email protected]>|devel graphics x11|SDL::devel/sdl|:devel/gmake||any|y|y|y|y
sdl-image-1.2.3|devel/sdl-image||SDL image library|devel/sdl-image/pkg/DESCR|Jolan Luff <[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.5p2|devel/sdl-mixer||SDL multi-channel audio mixer library|devel/sdl-mixer/pkg/DESCR|Jolan Luff <[email protected]>|devel audio|SDL::devel/sdl smpeg.1::devel/smpeg vorbis.0,vorbisfile.1::audio/libvorbis|||any|y|y|y|y
sdl-net-1.2.5|devel/sdl-net||SDL cross-platform networking library|devel/sdl-net/pkg/DESCR|Jolan Luff <[email protected]>|devel net|SDL::devel/sdl|||any|y|y|y|y
sdl-sound-1.0.1p0|devel/sdl-sound||library that handles the decoding of sound file formats|devel/sdl-sound/pkg/DESCR|Jolan Luff <[email protected]>|devel audio|FLAC.5.2::audio/flac SDL.2.0::devel/sdl mikmod.2.4::audio/libmikmod physfs.0.0::devel/physfs smpeg.1.3::devel/smpeg speex.2.2::audio/speex vorbis.2.0,vorbisenc.2.0,vorbisfile.3.0::audio/libvorbis|||any|y|y|y|y
sdl-ttf-2.0.6|devel/sdl-ttf||SDL TrueType fonts library|devel/sdl-ttf/pkg/DESCR|Jolan Luff <[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
sfio-2002|devel/sfio||Safe/Fast I/O Library|devel/sfio/pkg/DESCR|Wilbern Cobb <[email protected]>|devel||||any|y|y|y|y
shtool-1.6.1|devel/shtool||GNU Portable Shell Tool|devel/shtool/pkg/DESCR|Brad Smith <[email protected]>|devel||||any|y|y|y|y
silc-toolkit-0.9.12|devel/silc-toolkit||toolkit for the development of SILC applications|devel/silc-toolkit/pkg/DESCR|Pedro Martelletto <[email protected]>|devel|iconv.2::converters/libiconv||libiconv-*:converters/libiconv|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
snit-0.7|devel/snit||simple object oriented framework for Tcl|devel/snit/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|||:lang/tcl/8.4|any|y|y|y|y
soup-0.7.11|devel/soup||SOAP (Simple Object Access Protocol) implementation in C|devel/soup/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib.1.2,gmodule.1.2::devel/glib popt::devel/popt xml.9.17::textproc/libxml1|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
splint-3.1.1|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
startup-notification-0.5|devel/startup-notification||library for tracking application startup|devel/startup-notification/pkg/DESCR|Marc Matteo <[email protected]>|devel x11 x11/gnome||bzip2-*:archivers/bzip2||any|y|y|y|y
swig-1.3.11|devel/swig||simplified wrapper and interface generator|devel/swig/pkg/DESCR|Kevin Lo <[email protected]>|devel||:lang/guile :lang/ruby :lang/tcl/8.4 python-2.2*:lang/python/2.2||any|y|y|y|y
swig-examples-1.3.11|devel/swig,-examples||examples for swig|devel/swig/pkg/DESCR-examples|Kevin Lo <[email protected]>|devel||:lang/guile :lang/ruby :lang/tcl/8.4 python-2.2*:lang/python/2.2||any|y|y|y|y
t1lib-5.0.0|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.0b13|devel/tclcl||Tcl/C++ interface used by ns and nam|devel/tclcl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|otcl.1::lang/otcl|||any|y|y|y|y
tcllib-1.4|devel/tcllib||useful routines for Tcl|devel/tcllib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel lang/tcl||:lang/tcl/8.4||any|y|y|y|y
tkcvs-6.0|devel/tkcvs||graphical frontend to CVS|devel/tkcvs/pkg/DESCR|Todd T. Fries <[email protected]>|devel||tk-8.4.*:x11/tk/8.4|tk-8.4.*:x11/tk/8.4|any|y|y|y|y
tmake-1.10|devel/tmake||Cross-platform makefile tool from TrollTech|devel/tmake/pkg/DESCR|Dan Weeks <[email protected]>|devel|lib/qt3/qt-mt.3::x11/qt3,mt|||any|y|y|y|y
ucpp-1.2|devel/ucpp||C preprocessor and lexer|devel/ucpp/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
uuid-1.0.0|devel/uuid||ISO-C API and CLI for generating Universally Unique Identifiers|devel/uuid/pkg/DESCR|Robert Nagy <[email protected]>|devel||||any|y|y|y|y
varconf-0.5.4|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
vtcl-1.6.0|devel/vtcl||Visual Tcl development environment|devel/vtcl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|||:x11/tk/8.4|any|y|y|y|y
vte-0.11.10|devel/vte||experimental terminal emulator|devel/vte/pkg/DESCR|Marc Matteo <[email protected]>|devel|gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2|:devel/gmake bzip2-*:archivers/bzip2 pkgconfig->=0.14.0p1:devel/pkgconfig||any|y|y|y|y
xmake-1.05|devel/xmake||powerful make utility|devel/xmake/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
abiword-2.0.2|editors/abiword||open-source, cross-platform WYSIWYG word processor|editors/abiword/pkg/DESCR|Damien Couderc <[email protected]>|editors|fribidi::devel/fribidi gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 glade-2.0.0.0::devel/libglade2 gthread-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig->=0.14.0:devel/pkgconfig|gettext->=0.10.38:devel/gettext|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.15|editors/beav||binary editor and viewer|editors/beav/pkg/DESCR|Kevin Lo <[email protected]>|editors||||any|y|y|y|y
beaver-0.2.7|editors/beaver||lightweight Gtk text editor with syntax highlighting|editors/beaver/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|y|y|y|y
bvi-1.3.2|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.7|editors/cooledit||easy to use, graphical editor|editors/cooledit/pkg/DESCR|Marc Espie <[email protected]>|editors||||any|y|y|y|y
cooledit-3.17.7-python|editors/cooledit,python||easy to use, graphical editor|editors/cooledit/pkg/DESCR|Marc Espie <[email protected]>|editors|python2.2.0.0:python-2.2*:lang/python/2.2|||any|y|y|y|y
ee-1.4.6|editors/ee||easy to use text editor|editors/ee/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|editors||||any|y|y|y|y
emacs-21.3|editors/emacs21||GNU editor: extensible, customizable, self documenting|editors/emacs21/pkg/DESCR|Rich Cannings <[email protected]>|editors|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff ungif.5::graphics/libungif|||any|y|y|y|y
emacs-el-21.3|editors/emacs21,-el||elisp sources for those who want to read/modify them|editors/emacs21/pkg/DESCR-el|Rich Cannings <[email protected]>|editors|||emacs-21.3*:editors/emacs21|any|y|y|y|y
emacs-leim-21.3|editors/emacs21,-leim||Library of Emacs Input Methods|editors/emacs21/pkg/DESCR-leim|Rich Cannings <[email protected]>|editors|||emacs-21.3*:editors/emacs21|any|y|y|y|y
emacs-21.3-no_x11|editors/emacs21,no_x11||GNU editor: extensible, customizable, self documenting|editors/emacs21/pkg/DESCR|Rich Cannings <[email protected]>|editors||||any|y|y|y|y
emacs-el-21.3|editors/emacs21,-el,no_x11||elisp sources for those who want to read/modify them|editors/emacs21/pkg/DESCR-el|Rich Cannings <[email protected]>|editors|||emacs-21.3*:editors/emacs21|any|y|y|y|y
emacs-leim-21.3|editors/emacs21,-leim,no_x11||Library of Emacs Input Methods|editors/emacs21/pkg/DESCR-leim|Rich Cannings <[email protected]>|editors|||emacs-21.3*:editors/emacs21|any|y|y|y|y
glimmer-1.2.1p2|editors/glimmer||code editor for GNOME|editors/glimmer/pkg/DESCR|Jim Geovedi <[email protected]>|editors x11|gnomeprint.16::x11/gnome/print gnomevfs.0::x11/gnome/vfs 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
hexcurse-1.54|editors/hexcurse||user-friendly ncurses-based hexeditor with many features|editors/hexcurse/pkg/DESCR|Lonny Gomes <[email protected]>|editors||||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.9.17|editors/hnb||hierarchical notebook|editors/hnb/pkg/DESCR|Kevin Lo <[email protected]>|editors||:devel/gmake||any|y|y|y|y
ht-0.7.4|editors/ht||file editor/viewer/analyzer for executables|editors/ht/pkg/DESCR|Margarida Sequeira <[email protected]>|editors||:devel/gmake||any|y|y|y|y
ht-0.7.4-no_x11|editors/ht,no_x11||file editor/viewer/analyzer for executables|editors/ht/pkg/DESCR|Margarida Sequeira <[email protected]>|editors||:devel/gmake||any|y|y|y|y
jed-0.99.16|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.16-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.9.8pre1p1|editors/joe||joe's own editor|editors/joe/pkg/DESCR|Mike Pechkin <[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-1.0.0|editors/kxmleditor||XML editor for KDE|editors/kxmleditor/pkg/DESCR|Kevin Lo <[email protected]>|editors x11 x11/kde|kdecore.4,DCOP,kdefx,kdesu,kdeui,kio,kparts,kdeprint::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/autoconf/2.57 :devel/gmake :devel/metaauto||!m88k vax|y|y|y|y
nano-1.2.3|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|:devel/autoconf/2.57 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nano-1.2.3-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|:devel/autoconf/2.57 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nedit-5.4|editors/nedit||X11/Motif GUI text editor|editors/nedit/pkg/DESCR|The OpenBSD ports mailing-list <[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
scintilla-1.54|editors/scintilla||source code editing component for GTK+|editors/scintilla/pkg/DESCR|Joerg Sonnenberger <[email protected]>|editors x11|gtk.1.2,gdk.1.2::x11/gtk+|:devel/gmake||any|n|y|n|y
scite-1.54|editors/scite||flexible and small GTK+ editor|editors/scite/pkg/DESCR|Joerg Sonnenberger <[email protected]>|editors x11|gthread.1.2::devel/glib scintilla.1,scintilla_lexers.1::editors/scintilla|:devel/gmake||any|n|y|n|y
ted-2.14|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|||!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.2.532-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.2.532-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|:editors/vim/stable,gtk gettext->=0.10.38:devel/gettext libiconv-*:converters/libiconv|any|y|y|y|y
vim-6.2.532-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.2.532-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|:editors/vim/stable,no_x11 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|The OpenBSD ports mailing-list <[email protected]>|editors|||redhat_base-*:emulators/redhat/base|i386|n|n|n|n
xemacs-21.4.12|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 jpeg.62::graphics/jpeg png.2.::graphics/png tiff.35::graphics/tiff|:devel/autoconf/2.13 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xemacs-21.4.12-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 jpeg.62::graphics/jpeg png.2.::graphics/png tiff.35::graphics/tiff|:devel/autoconf/2.13 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xemacs-sumo-21.20020919|editors/xemacs21-sumo||complete set of supported XEmacs packages|editors/xemacs21-sumo/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors||bzip2-*:archivers/bzip2||any|y|y|y|y
xemacs-sumo-21.20020919-mule|editors/xemacs21-sumo,mule||complete set of supported XEmacs packages|editors/xemacs21-sumo/pkg/DESCR|Jean-Yves Burlett <[email protected]>|editors||bzip2-*:archivers/bzip2||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
zile-1.6.2|editors/zile||zile is lossy emacs|editors/zile/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|editors||||any|y|y|y|y
drgeo-0.9.12|education/drgeo||interactive geometry program|education/drgeo/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|education math|glade-2.0.0.0::devel/libglade2 guile::lang/guile iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext xml2.6::textproc/libxml|:devel/gmake gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
drgeo-doc-1.4|education/drgeo-doc||interactive geometry program, documentation|education/drgeo-doc/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|education math||:devel/gmake||any|y|y|y|y
dvorak7min-1.6.1|education/dvorak7min||typing tutor for dvorak keyboards|education/dvorak7min/pkg/DESCR|Pieter-Augustijn Van Malleghem <[email protected]>|education||||any|y|y|y|y
edict-1.2|education/edict||commandline interface to online dictionaries|education/edict/pkg/DESCR|Kevin Lo <[email protected]>|education||||any|y|y|y|y
gtypist-2.7|education/gtypist||interactive typing tutor|education/gtypist/pkg/DESCR|Christian Weisgerber <[email protected]>|education|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
BasiliskII-0.9.1|emulators/BasiliskII||open source 68k Macintosh emulator|emulators/BasiliskII/pkg/DESCR|Alexander Yurchenko <[email protected]>|emulators|esd.2::audio/esound gtk.1.2,gdk::x11/gtk+|:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
bochs-2.1.1|emulators/bochs||x86 machine simulator|emulators/bochs/pkg/DESCR|Todd T. Fries <[email protected]>|emulators||||any|y|y|y|y
bochs-2.1.1-debug|emulators/bochs,debug||x86 machine simulator|emulators/bochs/pkg/DESCR|Todd T. Fries <[email protected]>|emulators||||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.1bp1|emulators/frodo||Commodore 64 emulator|emulators/frodo/pkg/DESCR|Marc Espie <[email protected]>|emulators games|SDL:sdl-*-!no_x11:devel/sdl||:x11/tk/8.4|any|y|y|y|y
fuse-0.6.2.1|emulators/fuse||Free Unix Spectrum Emulator|emulators/fuse/pkg/DESCR|Alexander Yurchenko <[email protected]>|emulators|765.3::devel/lib765 glib-2.0.0.8,gmodule-2.0.0.8,gobject-2.0.0.8::devel/glib2 png.3::graphics/png spectrum.3::devel/libspectrum xml2.7::textproc/libxml|:devel/pkgconfig||any|y|y|y|y
fuse-utils-0.6.2|emulators/fuse-utils||Free Unix Spectrum Emulator utilities|emulators/fuse-utils/pkg/DESCR|Alexander Yurchenko <[email protected]>|emulators|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext spectrum.3::devel/libspectrum|gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|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|||redhat_base-*: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|||redhat_base-*:emulators/redhat/base|i386|y|y|y|y
redhat_base-8.0p4|emulators/redhat/base|/usr/local/emul/redhat|Linux compatibility package based on RedHat 8.0|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.30p0|emulators/redhat/motif|/usr/local/emul/redhat|Motif toolkit Linux libraries|emulators/redhat/motif/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|emulators||rpm->=3.0.6p1:misc/rpm|:emulators/redhat/base|i386|y|y|y|y
simh-3.0-2|emulators/simh||PDP, IBM 1401, Nova and other CPUs simulator|emulators/simh/pkg/DESCR|Federico G. Schwindt <[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|||redhat_base-*: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.5|emulators/spim||MIPS R2000/R3000 simulator|emulators/spim/pkg/DESCR|Kevin Lo <[email protected]>|emulators||||any|n|n|n|n
uae-0.8.21|emulators/uae||UAE amiga emulator|emulators/uae/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|emulators x11|glib.1.2,gmodule.1.2::devel/glib 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
vgb-2.1|emulators/vgb||emulates the Nintendo Gameboy|emulators/vgb/pkg/DESCR|Aaron Campbell <[email protected]>|emulators games|||redhat_base-*: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|The OpenBSD ports mailing-list <[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|n|n|n|n
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|n|n|n|n
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|n|n|n|n
zsnes-1.36|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/2.13 :devel/metaauto :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|n|n|n|n
adom-1.1.1|games/adom||Ancient Domains of Mystery - roguelike|games/adom/pkg/DESCR|Marc Espie <[email protected]>|games|||redhat_base-*:emulators/redhat/base|i386|n|n|n|y
afternoonstalker-1.0.2|games/afternoonstalker||Night Stalker clone for X|games/afternoonstalker/pkg/DESCR|Lurene Grenier <[email protected]>|games|SDL_mixer::devel/sdl-mixer gengameng.4.1::devel/gengameng|||any|y|y|y|y
agm-1.3.1|games/agm||AnaGram search utility|games/agm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|n|n|n|n
amph-0.8.10|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|The OpenBSD ports mailing-list <[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
bass-0|games/bass||Beneath A Steel Sky|games/bass/pkg/DESCR|Jolan Luff <[email protected]>|games||unzip-*:archivers/unzip|scummvm->=0.5.1:games/scummvm|any|y|y|y|y
bombermaze-0.6.6|games/bombermaze||Bomberman clone for GNOME|games/bombermaze/pkg/DESCR|Jim Geovedi <[email protected]>|games x11|art_lgpl.4,gnome.36,gnomeui.46,gnomesupport.0::x11/gnome/libs audiofile.0::devel/libaudiofile gdk_pixbuf.2::graphics/gdk-pixbuf gif.5::graphics/libungif glib.1,gmodule.1::devel/glib iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
burgerspace-1.7.0|games/burgerspace||burgertime clone for X|games/burgerspace/pkg/DESCR|Peter Valchev <[email protected]>|games|SDL_mixer::devel/sdl-mixer gengameng.4.1::devel/gengameng|||any|y|y|y|y
bzflag-1.10.4|games/bzflag||graphical multiplayer 3-d tank war game|games/bzflag/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11||||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 SDL_net::devel/sdl-net png.2::graphics/png|||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
circuit-0.1.4|games/circuit||finish-the-cycle logic puzzle|games/circuit/pkg/DESCR|Marc Espie <[email protected]>|games|gtk.1.2,gdk.1.2::x11/gtk+|||any|y|y|y|y
connect4-3.2|games/connect4||curses version of the classic game|games/connect4/pkg/DESCR|The OpenBSD ports mailing-list <[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.3|games/cosmosmash||astrosmash clone for X|games/cosmosmash/pkg/DESCR|Sean Escriva <[email protected]>|games|SDL_mixer::devel/sdl-mixer gengameng.4.1::devel/gengameng|||any|y|y|y|y
cowsay-3.03|games/cowsay||speaking ascii cow|games/cowsay/pkg/DESCR|Sebastian Stark <[email protected]>|games||||any|y|y|y|y
crimson-0.3.8|games/crimson||tactical war game like Battle Isle|games/crimson/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_mixer::devel/sdl-mixer|||any|y|y|y|y
crossfire-client-1.4.0|games/crossfire-client||graphical networked AD&D style game|games/crossfire-client/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL.1::devel/sdl SDL_image.1::devel/sdl-image gtk.1.2,gdk.1.2::x11/gtk+ png.1::graphics/png|||any|y|y|y|y
defendguin-0.0.10|games/defendguin||clone of arcade game 'Defender' with a Linux theme|games/defendguin/pkg/DESCR|Xavier Santolaria <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|||any|y|y|y|y
dopewars-1.5.7p2|games/dopewars||game where you deal drugs on the streets of NY|games/dopewars/pkg/DESCR|Brad Smith <[email protected]>|games|atk-1.0.0.0::devel/atk gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 glib-2.0.0.0::devel/glib2 gmodule-2.0.0.0,gobject-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext pango-1.0.0.0,pangox-1.0.0.0,pangoxft-1.0.0.0::devel/pango|:devel/autoconf/2.13 :devel/gmake :devel/metaauto gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
dopewars-1.5.7p2-no_x11|games/dopewars,no_x11||game where you deal drugs on the streets of NY|games/dopewars/pkg/DESCR|Brad Smith <[email protected]>|games|glib-2.0.0.0::devel/glib2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.13 :devel/gmake :devel/metaauto gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|any|y|y|y|y
eboard-0.9.0|games/eboard||gtk+ chess board interface|games/eboard/pkg/DESCR|Federico Schwindt <[email protected]>|games x11|Imlib.19,gdk_imlib::graphics/imlib iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|:devel/autoconf/2.52 :devel/metaauto gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
eboard-extras-0.1|games/eboard-extras||eboard extra piece sets and sounds|games/eboard-extras/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|||eboard->=0.3.1:games/eboard|any|y|y|y|y
enigma-0.81|games/enigma||Oxyd/Rock'n'Roll clone|games/enigma/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|SDL_image.1::devel/sdl-image SDL_mixer.2::devel/sdl-mixer lua.5,lualib.5::lang/lua|:devel/gmake||any|y|y|y|y
falconseye-1.9.3p1|games/falconseye||NetHack derivative|games/falconseye/pkg/DESCR|Marc Espie <[email protected]>|games x11|SDL::devel/sdl|unzip-*:archivers/unzip|hackdata-*:games/hackdata|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
forcedattack-2.1.4|games/forcedattack||connect four of stones in a straight line|games/forcedattack/pkg/DESCR|Xavier Santolaria <[email protected]>|games||python-2.3*:lang/python/2.3|pygame-*:devel/pygame python-2.3*:lang/python/2.3|any|y|y|y|y
fotaq-20040316|games/fotaq||flight of the amazon queen|games/fotaq/pkg/DESCR|Jolan Luff <[email protected]>|games x11||unzip-*:archivers/unzip|scummvm->=0.6.0:games/scummvm|any|y|y|y|y
freeciv-server-1.14.1|games/freeciv||Civilization clone for X11; multiplayer; game server|games/freeciv/pkg/DESCR|Aleksander Piotrowski <[email protected]>|games|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|freeciv-share-1.14.1:games/freeciv gettext->=0.10.38:devel/gettext|any|y|y|y|y
freeciv-share-1.14.1|games/freeciv,-share||shared data files for Freeciv|games/freeciv/pkg/DESCR-share|Aleksander Piotrowski <[email protected]>|games||bzip2-*:archivers/bzip2||any|y|y|y|y
freeciv-client-1.14.1|games/freeciv,-client||Freeciv client|games/freeciv/pkg/DESCR-client|Aleksander Piotrowski <[email protected]>|games|iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|freeciv-share-1.14.1:games/freeciv gettext->=0.10.38:devel/gettext|any|y|y|y|y
freeciv-server-1.14.1|games/freeciv,gtk2||Civilization clone for X11; multiplayer; game server|games/freeciv/pkg/DESCR|Aleksander Piotrowski <[email protected]>|games|gtk-x11-2.0.0.5,gdk-x11-2.0.0.5::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|freeciv-share-1.14.1:games/freeciv gettext->=0.10.38:devel/gettext|any|y|y|y|y
freeciv-share-1.14.1|games/freeciv,-share,gtk2||shared data files for Freeciv|games/freeciv/pkg/DESCR-share|Aleksander Piotrowski <[email protected]>|games||bzip2-*:archivers/bzip2||any|y|y|y|y
freeciv-client-1.14.1-gtk2|games/freeciv,-client,gtk2||Freeciv client|games/freeciv/pkg/DESCR-client|Aleksander Piotrowski <[email protected]>|games|gtk-x11-2.0.0.5,gdk-x11-2.0.0.5::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|freeciv-share-1.14.1:games/freeciv gettext->=0.10.38:devel/gettext|any|y|y|y|y
freedroid-1.0.1|games/freedroid||clone of the commodore 64 game paradroids|games/freedroid/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|||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
glutton-0.0.5|games/glutton||Pac-Man clone|games/glutton/pkg/DESCR|Olivier Racine <[email protected]>|games|SDL::devel/sdl SDL_mixer::devel/sdl-mixer|||any|y|y|y|y
gnocatan-0.6.1|games/gnocatan||Settlers of Catan for GNOME/Gtk|games/gnocatan/pkg/DESCR|Jim Geovedi <[email protected]>|games x11/gnome|art_lgpl.4,gnome.36,gnomeui.46,gnomesupport.0::x11/gnome/libs|:devel/gmake||any|y|y|y|y
gnuchess-4.0.80|games/gnuchess||Classic Gnu Chess|games/gnuchess/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
gnugo-3.4|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|The OpenBSD ports mailing-list <[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.5.0|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.4.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.21-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
kobodeluxe-0.4pre8|games/kobodeluxe||sdl port of xkobo|games/kobodeluxe/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL_image::devel/sdl-image|||any|y|y|y|y
kobodeluxe-0.4pre8-harder|games/kobodeluxe,harder||sdl port of xkobo|games/kobodeluxe/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL_image::devel/sdl-image|||any|y|y|y|y
kslide-0.90|games/kslide||puzzle game for KDE|games/kslide/pkg/DESCR|Kevin Lo <[email protected]>|games|kdecore.4,DCOP,kdefx,kdesu,kdeui,kio::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
late-0.0.3|games/late||puzzle game resembling the arcade game Qix|games/late/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_image::devel/sdl-image|bzip2-*:archivers/bzip2||any|y|y|y|y
lbreakout2-2.2.2p0|games/lbreakout2||breakout game with many levels, powerups, good graphics|games/lbreakout2/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|SDL::devel/sdl SDL_mixer::devel/sdl-mixer png.2.0::graphics/png|:devel/autoconf/2.13 :devel/gmake :devel/metaauto||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/2.13 :devel/metaauto||any|y|y|y|y
life-1.0|games/life||SDL clone of the popular Game of Life|games/life/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|SDL::devel/sdl|bzip2-*:archivers/bzip2||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
moonlander-1.0|games/moonlander||clone of atari game|games/moonlander/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|||any|y|y|y|y
moonlander-1.0-no_sound|games/moonlander,no_sound||clone of atari game|games/moonlander/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|||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.4.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.4.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.4.1-qt|games/nethack,qt||dungeon explorin', hackin', game. Piece of cake|games/nethack/pkg/DESCR|Marc Espie <[email protected]>|games|lib/qt3/qt-mt.3::x11/qt3,mt||hackdata-*:games/hackdata|any|y|y|y|y
netris-0.52|games/netris||network head-to-head version of T*tris|games/netris/pkg/DESCR|The OpenBSD ports mailing-list <[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
oilwar-1.2.1p0|games/oilwar||sdl shoot 'em up; stop evil army from getting your oil|games/oilwar/pkg/DESCR|George W. Bush <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|||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
pathological-1.1.3|games/pathological||enriched clone of the game Logical by Rainbow Arts|games/pathological/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||netpbm-*:graphics/netpbm|pygame-*:devel/pygame python-2.3*:lang/python/2.3|any|y|y|y|y
prboom-2.2.4|games/prboom||enhanced clone of Id Software's Doom game; multiplayer|games/prboom/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_mixer.::devel/sdl-mixer SDL_net.::devel/sdl-net|||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|The OpenBSD ports mailing-list <[email protected]>|games|SDL::devel/sdl|:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server,sdl||Quake world server|games/quake/pkg/DESCR-server|The OpenBSD ports mailing-list <[email protected]>|games||:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
quake-20000101-ggi|games/quake,ggi||Quake/Quake-world client|games/quake/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|ggi.::graphics/ggi|:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server,ggi||Quake world server|games/quake/pkg/DESCR-server|The OpenBSD ports mailing-list <[email protected]>|games||:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
quake-20000101|games/quake||Quake/Quake-world client|games/quake/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
quakeworld-server-20000101|games/quake,-server||Quake world server|games/quake/pkg/DESCR-server|The OpenBSD ports mailing-list <[email protected]>|games||:devel/autoconf/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
rocksndiamonds-3.0.8|games/rocksndiamonds||maze game resembling boulderdash|games/rocksndiamonds/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL_image::devel/sdl-image SDL_mixer::devel/sdl-mixer|: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
scummvm-0.6.0|games/scummvm||play games built around LucasArts' SCUMM|games/scummvm/pkg/DESCR|Jolan Luff <[email protected]>|games x11 emulators|SDL::devel/sdl mad.2::audio/libmad vorbis.0,vorbisfile.1::audio/libvorbis|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
scummvm-tools-0.5.0|games/scummvm-tools||collection of various tools for scummvm|games/scummvm-tools/pkg/DESCR|Jolan Luff <[email protected]>|games||:devel/gmake|:audio/lame :audio/vorbis-tools|any|y|y|y|y
sdlroids-1.3.4|games/sdlroids||essentially an Asteroids clone|games/sdlroids/pkg/DESCR|The OpenBSD ports mailing-list <[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-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
slash-em-3.3.1.6e4f8|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.6e4f8-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
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|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
taxipilot-0.7.2|games/taxipilot||silly little game based on Spacetaxi for the C64|games/taxipilot/pkg/DESCR|Kevin Lo <[email protected]>|games|kdecore.4,DCOP,kdecore,kdefx,kdesu,kdeui,kio::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/gmake||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_mixer::devel/sdl-mixer|:devel/autoconf/2.13 :devel/metaauto||any|y|y|y|y
tornado-1.3|games/tornado||Ouranos (Weather War) clone; multiplayer|games/tornado/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games|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
tutris-1.0.1|games/tutris||graphical tetris clone|games/tutris/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL_image::devel/sdl-image|||any|y|y|y|y
uqm-0.3|games/uqm||ur-quan masters: sdl port of star control 2|games/uqm/pkg/DESCR|Jolan Luff <[email protected]>|games x11|SDL_image::devel/sdl-image vorbis.0,vorbisfile.1::audio/libvorbis|:devel/gmake||i386 powerpc|n|n|n|n
vectoroids-1.1.0|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
wanderer-3.2|games/wanderer||Rogue like adventure game|games/wanderer/pkg/DESCR|Marina Brown <[email protected]>|games||||any|y|y|y|y
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
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.1.2|games/xbl||3D block-dropping game|games/xbl/pkg/DESCR|The OpenBSD ports mailing-list <[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.7|games/xboard||X11 frontend for GNU Chess and the Internet Chess Server|games/xboard/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11||||any|y|y|y|y
xboing-2.4|games/xboing||blockout style game for X11|games/xboing/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xbreaky-0.0.5|games/xbreaky||breakout game for the X Window System|games/xbreaky/pkg/DESCR|Kevin Lo <[email protected]>|games x11||||any|y|y|y|y
xbubble-0.2|games/xbubble||x bust a move clone|games/xbubble/pkg/DESCR|Lurene Grenier <[email protected]>|games x11|png.2::graphics/png|:devel/gmake||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|The OpenBSD ports mailing-list <[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||||!alpha amd64 sparc64|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|The OpenBSD ports mailing-list <[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.6.1|games/xmahjongg||colorful solitaire 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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[email protected]>|x11 games||||any|y|y|y|y
xonix-1.4p1|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.04p1|games/xpat2||X11 solitaire with 14 variations|games/xpat2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||||any|y|y|y|y
xpilot-4.5.4|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-4.0|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.96p1|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.2|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|y|y|y|y
xwelltris-1.0.1|games/xwelltris||2.5 dimensional tetris-like game|games/xwelltris/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11|SDL_image::devel/sdl-image|||any|y|y|y|y
xwelltris-1.0.1-no_sdl|games/xwelltris,no_sdl||2.5 dimensional tetris-like game|games/xwelltris/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games x11||||any|y|y|y|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/2.13 :devel/automake :devel/gmake :devel/metaauto||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/2.13 :devel/automake :devel/gmake :devel/metaauto||any|y|y|y|y
zoom-1.0.1|games/zoom||Z-code interpreter for X11|games/zoom/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|games||:devel/gmake||any|y|y|y|y
ImageMagick-5.2.9p0|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|||redhat_base-*:emulators/redhat/base|i386|n|n|n|n
cadubi-1.3|graphics/cadubi||ASCII drawing utility|graphics/cadubi/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics editors|||:devel/p5-Term-ReadKey|any|y|y|y|y
compface-1.0|graphics/compface||programs and library for the 'X-face' mail and news header|graphics/compface/pkg/DESCR|Hans-Guenter Weigand <[email protected]>|graphics||||any|n|y|n|y
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.92.2|graphics/dia||technical diagrams drawing tool|graphics/dia/pkg/DESCR|Margarida Sequeira <[email protected]>|graphics|art_lgpl_2.5::graphics/libart gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 popt::devel/popt unicode.0::devel/libunicode xml2.6::textproc/libxml xslt.1::textproc/libxslt|:devel/autoconf/2.57 :devel/gmake :devel/metaauto pkgconfig-*:devel/pkgconfig||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
ffmpeg-0.4.8p1|graphics/ffmpeg||audio/video converter and streamer with bktr(4) support|graphics/ffmpeg/pkg/DESCR|Jolan Luff <[email protected]>|graphics x11|SDL.2.0::devel/sdl a52::audio/liba52 mp3lame.0.1::audio/lame vorbis.3.0,vorbisenc.2.0::audio/libvorbis|:devel/gmake||any|y|y|n|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|mp3encode-*:audio/mp3encode mpeg_encode->=1.5:graphics/mpeg_encode mpg321-*:audio/mpg321 mplex->=1.1:graphics/mplex sox->=12.12:audio/sox|i386 macppc|n|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
gdk-pixbuf-0.22.0|graphics/gdk-pixbuf||GdkPixbuf graphics library|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|:devel/autoconf/2.52 :devel/metaauto||any|y|y|y|y
gdk-pixbuf-gnome-0.22.0|graphics/gdk-pixbuf,-gnome||GdkPixbuf graphics library (GNOME Canvas)|graphics/gdk-pixbuf/pkg/DESCR-gnome|Tom Knienieder <[email protected]>|graphics|gdk_pixbuf.2::graphics/gdk-pixbuf 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|:devel/autoconf/2.52 :devel/metaauto||any|y|y|y|y
libggi-2.0.4|graphics/ggi||Generic Graphics Library|graphics/ggi/pkg/DESCR|Todd T. Fries <[email protected]>|graphics|gii.0.8::graphics/gii|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
gif2png-2.5.1|graphics/gif2png||converts GIF images to the PNG format|graphics/gif2png/pkg/DESCR|The OpenBSD ports mailing-list <[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|y|y|y|y
libgii-0.8.4|graphics/gii||General Input Library (used by libggi)|graphics/gii/pkg/DESCR|Todd T. Fries <[email protected]>|graphics||:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
gimp-1.2.5|graphics/gimp/stable||GNU Image Manipulation Program|graphics/gimp/stable/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
gle-3.0.4|graphics/gle||OpenGL Extrusion library|graphics/gle/pkg/DESCR|David Lebel <[email protected]>|graphics devel|glut.3::graphics/glut|||any|n|n|y|y
glut-3.7|graphics/glut||OpenGL Utility Toolkit|graphics/glut/pkg/DESCR|Dan Weeks <[email protected]>|graphics devel||||any|n|n|n|n
gphoto-0.4.3|graphics/gphoto||universal digital camera picture control tool|graphics/gphoto/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics|Imlib.19,gdk_imlib::graphics/imlib|||any|y|y|y|y
gphoto-2.1.4|graphics/gphoto2||digital camera command-line interface|graphics/gphoto2/pkg/DESCR|Marc Espie <[email protected]>, Arnaud Launay <[email protected]>|graphics|gphoto2,gphoto2_port::graphics/libgphoto2 jpeg::graphics/jpeg popt::devel/popt|:devel/autoconf/2.57 :devel/metaauto||any|y|y|y|y
gqview-1.4.3|graphics/gqview||Gtk-based graphic file viewer|graphics/gqview/pkg/DESCR|Margarida Sequeira <[email protected]>|graphics|gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2 iconv.2::converters/libiconv intl.1:gettext->=0.10.38:devel/gettext png.2::graphics/png|gettext->=0.10.38:devel/gettext pkgconfig-*:devel/pkgconfig|gettext->=0.10.38:devel/gettext|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
gthumb-0.13p1|graphics/gthumb||Image viewer and browser for GNOME|graphics/gthumb/pkg/DESCR|Jim Geovedi <[email protected]>|graphics x11|bonobo,bonobox::x11/gnome/bonobo glade-gnome.4,glade.4::devel/libglade,gnome gnomeprint.::x11/gnome/print gnomevfs.::x11/gnome/vfs|||any|y|y|y|y
gtkam-0.1.10|graphics/gtkam||digital camera frontend|graphics/gtkam/pkg/DESCR|Srebrenko Sehic <[email protected]>|graphics|gdk_pixbuf-2.0.0.11,gdk-x11-2.0.0.11,gtk-x11-2.0.0.11::x11/gtk+2 gphoto2,gphoto2_port::graphics/libgphoto2 iconv.2::converters/libiconv|pkgconfig->=0.9.0:devel/pkgconfig|libiconv-*:converters/libiconv|any|y|y|y|y
gtksee-0.5.0|graphics/gtksee||image viewer similar to ACDSee for Windows|graphics/gtksee/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics|gtk.1.2,gdk.1.2::x11/gtk+ jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff||bzip-*:archivers/bzip bzip2-*:archivers/bzip2|any|y|y|y|y
gwenview-1.0.1|graphics/gwenview||image viewer for KDE|graphics/gwenview/pkg/DESCR|Brad Smith <[email protected]>|graphics x11 x11/kde|kdecore.6,DCOP,kdefx,kdeprint,kdesu,kparts,kdeui,kio::x11/kde/libs3 lib/qt3/qt-mt.3::x11/qt3,mt|:devel/gmake bzip2-*:archivers/bzip2||!m88k vax|y|y|y|y
imlib-1.9.14p2|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 gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
imlib2-1.1.0|graphics/imlib2||image manipulation library|graphics/imlib2/pkg/DESCR|Francois Briere <[email protected]>|graphics|png.2::graphics/png tiff.35::graphics/tiff ungif.5::graphics/libungif|pkgconfig-*:devel/pkgconfig||any|y|y|y|y
indexpage-1.0.3|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|:devel/autoconf/2.13 :devel/metaauto||any|y|y|y|y
jasper-1.701.0|graphics/jasper||software-based reference implementation of the JPEG-2000 codec|graphics/jasper/pkg/DESCR|Brad Smith <[email protected]>|graphics||unzip-*:archivers/unzip||any|y|y|y|y
jbigkit-1.5|graphics/jbigkit||lossless image compression library|graphics/jbigkit/pkg/DESCR|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
jhead-2.1|graphics/jhead||Exif Jpeg camera setting parser and thumbnail remover|graphics/jhead/pkg/DESCR|Xavier Santolaria <[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
jpeg2ps-1.9|graphics/jpeg2ps||convert jpeg to compressed PostScript|graphics/jpeg2ps/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics||||any|n|y|n|y
lcms-1.12|graphics/lcms||color management library|graphics/lcms/pkg/DESCR|Brad Smith <[email protected]>|graphics|jpeg::graphics/jpeg tiff::graphics/tiff|||any|y|y|y|y
libart-2.3.16|graphics/libart||high-performance 2D graphics library|graphics/libart/pkg/DESCR|Marc Matteo <[email protected]>|graphics||||any|y|y|y|y
libcaca-0.9|graphics/libcaca||color ascii art library|graphics/libcaca/pkg/DESCR|Robert Nagy <[email protected]>|graphics|Imlib2.1::graphics/imlib2|||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|n|y|n|y
libdvbpsi-0.1.4|graphics/libdvbpsi||library for decoding/generating MPEG TS/DVB PSI tables|graphics/libdvbpsi/pkg/DESCR|Jolan Luff <[email protected]>|devel||||any|y|y|y|y
libexif-0.5.9|graphics/libexif||extract digital camera info tags from JPEG images|graphics/libexif/pkg/DESCR|Chris Kuethe <[email protected]>|graphics|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
libgphoto-2.1.4|graphics/libgphoto2||digital camera library|graphics/libgphoto2/pkg/DESCR|Marc Espie <[email protected]>, Arnaud Launay <[email protected]>|graphics devel|exif::graphics/libexif jpeg::graphics/jpeg usb::devel/libusb|:devel/autoconf/2.57 :devel/metaauto :devel/pkgconfig||any|y|y|y|y
libmng-1.0.5p1|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
libmpeg2-0.4.0b|graphics/libmpeg2||free MPEG-2 video stream decoder|graphics/libmpeg2/pkg/DESCR|Jolan Luff <[email protected]>|graphics x11||pkgconfig->=0.12.0p1:devel/pkgconfig||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/2.13 :devel/metaauto bzip2-*:archivers/bzip2||any|y|y|y|y
libwmf-0.2.6|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|:devel/autoconf/2.54 :devel/metaauto||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-1.5b|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|y|n|y
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|Wilbern Cobb <[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.24p1|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|n|y
hpcdtoppm-9.24p1|graphics/netpbm,-hpcd||convert photo CD images into ppm format|graphics/netpbm/pkg/DESCR-hpcd|Brad Smith <[email protected]>|graphics|pbm.1,pgm.1,ppm.1::graphics/netpbm|:devel/gmake||any|n|y|n|y
p5-GD-1.41p1|graphics/p5-GD||module to interface with the GD graphics library|graphics/p5-GD/pkg/DESCR|Jim Geovedi <[email protected]>|graphics perl5|gd.18::graphics/gd|||!m88k vax|y|y|y|y
p5-GD-Barcode-1.13|graphics/p5-GD-Barcode||create barcode image with GD|graphics/p5-GD-Barcode/pkg/DESCR|Jim Geovedi <[email protected]>|graphics perl5||p5-GD->=1.18:graphics/p5-GD|p5-GD->=1.18:graphics/p5-GD|any|y|y|y|y
p5-GD-Graph-1.35|graphics/p5-GD-Graph||module for graph plotting|graphics/p5-GD-Graph/pkg/DESCR|Kevin Lo <[email protected]>|graphics perl5||p5-GD->=1.18:graphics/p5-GD p5-GD-TextUtil-*:graphics/p5-GD-TextUtil|p5-GD->=1.18:graphics/p5-GD p5-GD-TextUtil-*:graphics/p5-GD-TextUtil|any|y|y|y|y
p5-GD-Graph3d-0.61|graphics/p5-GD-Graph3d||module for 3D graph plotting|graphics/p5-GD-Graph3d/pkg/DESCR|Jim Geovedi <[email protected]>|graphics perl5||p5-GD-Graph->=1.30:graphics/p5-GD-Graph|p5-GD-Graph->=1.30:graphics/p5-GD-Graph|any|y|y|y|y
p5-GD-TextUtil-0.83|graphics/p5-GD-TextUtil||text utilities for use with GD drawing package|graphics/p5-GD-TextUtil/pkg/DESCR|Kevin Lo <[email protected]>|graphics perl5||p5-GD-*:graphics/p5-GD|p5-GD-*:graphics/p5-GD|any|y|y|y|y
p5-Graphics-ColorNames-0.31|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-EXIF-0.98.6|graphics/p5-Image-EXIF||interface to read EXIF tags in JPEG images|graphics/p5-Image-EXIF/pkg/DESCR|Dan Weeks <[email protected]>|graphics perl5|exif.8::graphics/libexif|||any|y|y|y|y
p5-Image-Info-1.11|graphics/p5-Image-Info||perl module for getting image information|graphics/p5-Image-Info/pkg/DESCR|Shell Hung <[email protected]>|graphics perl5||p5-IO-String->=1:devel/p5-IO-String|p5-IO-String->=1:devel/p5-IO-String|any|y|y|y|y
p5-Image-Size-2.991|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||!m88k vax|y|y|y|y
p5-PerlMagick-5.2.9p1|graphics/p5-PerlMagick||object-oriented Perl interface to ImageMagick|graphics/p5-PerlMagick/pkg/DESCR|Dan Brosemer <[email protected]>|graphics devel|Magick.5::graphics/ImageMagick|ImageMagick-5.2.9:graphics/ImageMagick|ImageMagick-5.2.9:graphics/ImageMagick|!m88k vax|y|y|y|y
png-1.2.5p3|graphics/png||library for manipulating PNG images|graphics/png/pkg/DESCR|Brad Smith <[email protected]>|graphics||||any|y|y|y|y
png2ico-20021208|graphics/png2ico||Convert PNG images to Windows .ico files|graphics/png2ico/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics www|png.3::graphics/png|||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
pornview-0.2.0pre1|graphics/pornview||image viewer/manager|graphics/pornview/pkg/DESCR|Xavier Santolaria <[email protected]>|graphics|gdk_pixbuf.2::graphics/gdk-pixbuf|||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.4|graphics/py-Imaging||python imaging library|graphics/py-Imaging/pkg/DESCR|Aleksander Piotrowski <[email protected]>|graphics|jpeg.62::graphics/jpeg tk84::x11/tk/8.4|python-2.3*:lang/python/2.3 python-tkinter-2.3*:lang/python/2.3,-tkinter|python-2.3*:lang/python/2.3 python-tkinter-2.3*:lang/python/2.3,-tkinter|!m88k vax|y|y|y|y
py-Imaging-examples-1.1.4|graphics/py-Imaging,-examples||examples for python imaging library|graphics/py-Imaging/pkg/DESCR-examples|Aleksander Piotrowski <[email protected]>|graphics||py-Imaging-*:graphics/py-Imaging python-2.3*:lang/python/2.3|py-Imaging-*:graphics/py-Imaging python-2.3*:lang/python/2.3|!m88k vax|y|y|y|y
qiv-1.8|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
ruby-gdk-imlib-0.34|graphics/ruby-gdk-imlib||Ruby binding to Gdk-imlib|graphics/ruby-gdk-imlib/pkg/DESCR|Jim Geovedi <[email protected]>|graphics devel|gdk_imlib.19::graphics/imlib ruby.1.81::lang/ruby||:lang/ruby ruby-gtk->=0.31:x11/ruby-gtk|any|y|y|y|y
ruby-gdk-pixbuf-0.34|graphics/ruby-gdk-pixbuf||Ruby binding to Gdk-pixbuf|graphics/ruby-gdk-pixbuf/pkg/DESCR|Jim Geovedi <[email protected]>|graphics|gdk_pixbuf.2::graphics/gdk-pixbuf ruby.1.81::lang/ruby||:lang/ruby ruby-gtk->=0.34:x11/ruby-gtk|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.5|graphics/smpeg-xmms||MPEG and VCD video playback in XMMS|graphics/smpeg-xmms/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics|smpeg.1.3::devel/smpeg xmms.2::audio/xmms|||any|y|y|y|y
sng-1.0.1|graphics/sng||PNG to ASCII compiler and decompiler|graphics/sng/pkg/DESCR|Thorsten Glaser <[email protected]>|graphics|png::graphics/png|:devel/gmake||any|y|y|y|y
swfdec-0.2.2|graphics/swfdec||flash rendering library|graphics/swfdec/pkg/DESCR|Jolan Luff <[email protected]>|graphics www/mozilla|SDL::devel/sdl art_lgpl_2.5::graphics/libart gdk-x11-2.0.0.11,gdk_pixbuf-2.0.0.11,gtk-x11-2.0.0.11::x11/gtk+2 mad.2::audio/libmad|pkgconfig->=0.12.0p1:devel/pkgconfig||any|y|y|y|y
synaesthesia-2.1-esd|graphics/synaesthesia,esd||visual sound representation|graphics/synaesthesia/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|graphics x11|SDL.::devel/sdl esd.2::audio/esound|:devel/gmake||any|y|y|y|y
tgif-4.1.43|graphics/tgif||two-dimensional drawing tool and hyper-object browser|graphics/tgif/pkg/DESCR|Nikolay Sturm <[email protected]>|graphics|||:graphics/netpbm|any|y|y|y|y
tiff-3.6.1p1|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
vcdimager-0.6.2|graphics/vcdimager||(S)VCD authoring software|graphics/vcdimager/pkg/DESCR|Jakob Schlyter <[email protected]>|graphics||||any|y|y|y|y
vid-1.0.1p1|graphics/vid||get images from USB cameras using the OV511(+) chipsets|graphics/vid/pkg/DESCR|Chris Kuethe <[email protected]>|graphics|pbm,pnm::graphics/netpbm|||any|y|y|y|y
videod-1.2|graphics/videod||Video capture daemon for bktr driver|graphics/videod/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics|jpeg.62::graphics/jpeg|||i386 macppc|y|y|y|y
win32-codecs-0.90p2|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.1p0|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.4|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/transfig :textproc/xpdf|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
xmms-kj-0.95|graphics/xmms-kj||XMMS visualization plugin, to display Kjofol skins|graphics/xmms-kj/pkg/DESCR|Wilbern Cobb <[email protected]>|graphics|png.3::graphics/png xmms.2::audio/xmms|||!m88k vax|y|y|y|y
xpaint-2.6.2|graphics/xpaint||simple paint program|graphics/xpaint/pkg/DESCR|Margarida Sequeira <[email protected]>|graphics x11|jpeg.62::graphics/jpeg png.2::graphics/png tiff.35::graphics/tiff|||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.2p0|japanese/Wnn||Japanese input method|japanese/Wnn/pkg/DESCR|Marc Espie <[email protected]>|japanese||ja-groff-*:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ja-Wnndict-4.2p0|japanese/Wnn,-dict|/var/dict/Wnn|dictionaries for Japanese Wnn|japanese/Wnn/pkg/DESCR-dict|Marc Espie <[email protected]>|japanese||ja-groff-*:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
zh-Wnn-4.2p0|japanese/Wnn,-zh||Chinese input method|japanese/Wnn/pkg/DESCR-zh|Marc Espie <[email protected]>|chinese||ja-groff-*:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
zh-Wnndict-4.2p0|japanese/Wnn,-zhdict|/var/dict/Wnn|dictionaries for Chinese Wnn|japanese/Wnn/pkg/DESCR-zhdict|Marc Espie <[email protected]>|chinese||ja-groff-*:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ko-Wnn-4.2p0|japanese/Wnn,-ko||Korean input method|japanese/Wnn/pkg/DESCR-ko|Marc Espie <[email protected]>|korean||ja-groff-*:japanese/groff|:japanese/Wnn,-data|any|y|y|y|y
ko-Wnndict-4.2p0|japanese/Wnn,-kodict|/var/dict/Wnn|dictionaries for Korean Wnn|japanese/Wnn/pkg/DESCR-kodict|Marc Espie <[email protected]>|korean||ja-groff-*: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||ja-groff-*: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||ja-groff-*: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||ja-groff-*: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||ja-groff-*:japanese/groff||any|n|y|n|y
cannaserver-3.5b2p1|japanese/canna,-server||canna (kana-kanji converter) server|japanese/canna/pkg/DESCR-server|Marc Espie <[email protected]>|japanese||ja-groff-*: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|n|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|n|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|n|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|n|y|y|y
ja-kterm-6.2.0p1|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.0p1-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.92|japanese/nkf||Network Kanji code conversion Filter|japanese/nkf/pkg/DESCR|Marc Espie <[email protected]>|japanese textproc||||!m88k vax|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|n|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|n|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.8.1|java/junit||regression testing utility for use with the Java language|java/junit/pkg/DESCR|Kevin Lo <[email protected]>|java||unzip-*:archivers/unzip|jdk-linux->1.3:devel/jdk/1.3-linux|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|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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-4.0.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
clisp-2.33|lang/clisp||ANSI Common Lisp compiler|lang/clisp/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang|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|i386|y|y|y|y
gcc-3.3.2|lang/egcs/stable||GNU compiler collection: core C compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2||alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
g++-3.3.2|lang/egcs/stable,-c++||GNU compiler collection: C++ compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot :lang/egcs/snapshot,-estdc|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
libstdc++-3.3.2|lang/egcs/stable,-estdc||GNU compiler collection: C++ compiler library|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2||alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
g77-3.3.2|lang/egcs/stable,-g77||GNU compiler collection: f77 compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
gobjc-3.3.2|lang/egcs/stable,-objc||GNU compiler collection: obj C compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
gcj-3.3.2|lang/egcs/stable,-java||GNU compiler collection: java compiler|lang/egcs/stable/pkg/DESCR|Marc Espie <[email protected]>|lang|gc::devel/boehm-gc|:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
gcc-3.3.2|lang/egcs/snapshot||GNU compiler collection: core C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2||alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
g++-3.3.2|lang/egcs/snapshot,-c++||GNU compiler collection: C++ compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot :lang/egcs/snapshot,-estdc|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
libstdc++-3.3.2|lang/egcs/snapshot,-estdc||GNU compiler collection: C++ compiler library|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2||alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
g77-3.3.2|lang/egcs/snapshot,-g77||GNU compiler collection: f77 compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
gobjc-3.3.2|lang/egcs/snapshot,-objc||GNU compiler collection: obj C compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang||:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
gcj-3.3.2|lang/egcs/snapshot,-java||GNU compiler collection: java compiler|lang/egcs/snapshot/pkg/DESCR|Marc Espie <[email protected]>|lang|gc::devel/boehm-gc|:devel/autoconf/2.13 :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2|:lang/egcs/snapshot|alpha i386 m68k sparc sparc64 powerpc vax|y|y|y|y
eltclsh-1.5|lang/eltclsh||Libedit interface to Tcl/Tk interpreters|lang/eltclsh/pkg/DESCR|Matthieu Herrb <[email protected]>|lang x11|tcl84::lang/tcl/8.4 tk84::x11/tk/8.4|:devel/gmake||any|y|y|y|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/2.13 :devel/gmake :devel/metaauto||any|y|y|y|y
expect-5.39.0|lang/expect||sophisticated scripter based on Tcl/Tk|lang/expect/pkg/DESCR|Jolan Luff <[email protected]>|lang|tcl84::lang/tcl/8.4 tk84::x11/tk/8.4|||any|y|y|y|y
expect-5.39.0-no_tk|lang/expect,no_tk||sophisticated scripter based on Tcl/Tk|lang/expect/pkg/DESCR|Jolan Luff <[email protected]>|lang|tcl84::lang/tcl/8.4|||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.3|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
ghc-6.2.1|lang/ghc||compiler for the functional language Haskell|lang/ghc/pkg/DESCR|Don Stewart <[email protected]>|lang|gmp::devel/gmp|:devel/gmake bzip2-*:archivers/bzip2||i386 sparc amd64|y|y|y|y
ghc-doc-6.2.1|lang/ghc,-doc||documentation for the functional language Haskell|lang/ghc/pkg/DESCR-doc|Don Stewart <[email protected]>|lang|gmp::devel/gmp|:devel/gmake bzip2-*:archivers/bzip2||i386 sparc amd64|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
hugs98-Nov2003|lang/hugs||Haskell 98 interpreter|lang/hugs/pkg/DESCR|Don Stewart <[email protected]>|lang||bzip2-*:archivers/bzip2||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
icon-book-9.3|lang/icon/book||Icon programming language reference book|lang/icon/book/pkg/DESCR|Marc Espie <[email protected]>|books lang||||any|y|y|y|y
icon-book-two_sided-9.3|lang/icon/book,two_sided||Icon programming language reference book|lang/icon/book/pkg/DESCR|Marc Espie <[email protected]>|books lang||||any|y|y|y|y
implementation-of-icon-6|lang/icon/devel-book||Icon language implemention reference book|lang/icon/devel-book/pkg/DESCR|Marc Espie <[email protected]>|books lang||||any|y|y|y|y
implementation-of-icon-two_sided-6|lang/icon/devel-book,two_sided||Icon language implemention reference book|lang/icon/devel-book/pkg/DESCR|Marc Espie <[email protected]>|books lang||||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|The OpenBSD ports mailing-list <[email protected]>|lang||||any|y|y|y|y
jikes-1.18|lang/jikes||compile Java source into .class files (quickly!)|lang/jikes/pkg/DESCR|Ian Darwin <[email protected]>|lang|iconv::converters/libiconv|bzip2-*:archivers/bzip2||any|n|y|n|y
js-0.2.5|lang/js||command line JavaScript interpreter|lang/js/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang||:devel/gmake||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.16.2|lang/librep||Emacs Lisp-like runtime library|lang/librep/pkg/DESCR|Margarida Sequeira <[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|!m88k vax|y|y|y|y
lua-5.0.2|lang/lua||powerful, light-weight programming language|lang/lua/pkg/DESCR|Pedro Martelletto <[email protected]>|lang||||any|y|y|y|y
mawk-1.3.3|lang/mawk||new POSIX awk|lang/mawk/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang||||any|y|y|y|y
nhc98-1.16|lang/nhc98||portable Haskell compiler|lang/nhc98/pkg/DESCR|Don Stewart <[email protected]>|lang||:devel/gmake :lang/ghc bzip2-*:archivers/bzip2|:lang/ghc|i386 sparc amd64|y|y|y|y
ocaml-3.07pl2|lang/ocaml||ML language based on complete class-based objective system|lang/ocaml/pkg/DESCR|Nikolay Sturm <[email protected]>|lang|tcl84::lang/tcl/8.4 tk84::x11/tk/8.4|:devel/gmake||any|y|y|y|y
otcl-1.0a8|lang/otcl||MIT Object Tcl|lang/otcl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|lang|tk83.1:tk->=8.3,<8.4: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.1.3p2|lang/python/2.1||interpreted object-oriented programming language|lang/python/2.1/pkg/DESCR|Aleksander Piotrowski <[email protected]>|lang||:databases/gdbm :devel/autoconf/2.13 :devel/gmp :devel/metaauto :textproc/expat :x11/tk/8.4||any|y|y|y|y
python-tests-2.1.3p2|lang/python/2.1,-tests||Python test suite|lang/python/2.1/pkg/DESCR-tests|Aleksander Piotrowski <[email protected]>|lang||:databases/gdbm :devel/autoconf/2.13 :devel/gmp :devel/metaauto :textproc/expat :x11/tk/8.4|:lang/python/2.1|any|y|y|y|y