-
Notifications
You must be signed in to change notification settings - Fork 1
/
INDEX
4060 lines (4060 loc) · 1000 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.21op0|archivers/arc||create & extract files from DOS .ARC files|archivers/arc/pkg/DESCR|Will Maier <[email protected]>|archivers||||any|y|y|y|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.3|archivers/bzip2||block-sorting file compressor, unencumbered|archivers/bzip2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||||any|y|y|y|y
cabextract-1.1|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.6|archivers/gcpio||GNU copy-in/out (cpio)|archivers/gcpio/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|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.16.1|archivers/gtar||GNU version of the traditional tar archiver|archivers/gtar/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.10.38:devel/gettext|any|y|y|y|y
gtar-1.16.1-static|archivers/gtar,static||GNU version of the traditional tar archiver|archivers/gtar/pkg/DESCR|Christian Weisgerber <[email protected]>|archivers||bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|bzip2-*:archivers/bzip2|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.ac20050924|archivers/lha||archive files using LZW compression (.lzh files)|archivers/lha/pkg/DESCR|Yozo Toda <[email protected]>|archivers||||any|n|y|n|y
libmspack-20040308a|archivers/libmspack||library for handling microsoft compression formats|archivers/libmspack/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers||:devel/libtool||any|y|y|y|y
lxsplit-1.0pre|archivers/lxsplit||file joiner/splitter|archivers/lxsplit/pkg/DESCR|Jolan Luff <[email protected]>|archivers||||any|y|y|y|y
lzma-4.32.0beta2|archivers/lzma||LZMA utils - make usage of LZMA compression easy|archivers/lzma/pkg/DESCR|Steven Mestdagh <[email protected]>|archivers||:devel/libtool||any|y|y|y|y
lzo-1.08p1|archivers/lzo||portable speedy lossless data compression library|archivers/lzo/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers devel||:devel/libtool||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.0b3p0|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.30|archivers/p5-Archive-Tar||perl interface to tar archives|archivers/p5-Archive-Tar/pkg/DESCR|Kevin Lo <[email protected]>|archivers perl5||p5-IO-String->=1.05:devel/p5-IO-String p5-IO-Zlib->=1.01:archivers/p5-IO-Zlib p5-Text-Diff-*:textproc/p5-Text-Diff|p5-IO-String->=1.05:devel/p5-IO-String p5-IO-Zlib->=1.01:archivers/p5-IO-Zlib p5-Text-Diff-*:textproc/p5-Text-Diff|any|y|y|y|y
p5-Archive-Zip-1.18|archivers/p5-Archive-Zip||perl interface to ZIP files|archivers/p5-Archive-Zip/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers perl5|||:archivers/p5-Compress-Zlib|any|y|y|y|y
p5-Compress-LZO-1.08p0|archivers/p5-Compress-LZO||interface to lzo compression library|archivers/p5-Compress-LZO/pkg/DESCR|Dan Harnett <[email protected]>|archivers perl5|lzo.>=1::archivers/lzo|||any|y|y|y|y
p5-Compress-Zlib-1.42|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||||any|y|y|y|y
p5-IO-Zlib-1.04p0|archivers/p5-IO-Zlib||IO:: style interface to Compress::Zlib|archivers/p5-IO-Zlib/pkg/DESCR|Kevin Lo <[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
p5-PerlIO-gzip-0.18|archivers/p5-PerlIO-gzip||PerlIO layer to gzip/gunzip|archivers/p5-PerlIO-gzip/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|archivers perl5||||any|y|y|y|y
par1cmdline-1.1p0|archivers/par1cmdline||command line implementation of the PAR v1.0 specification|archivers/par1cmdline/pkg/DESCR|Jolan Luff <[email protected]>|archivers||||any|y|y|y|y
par2cmdline-0.4|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
rzip-2.0p0|archivers/rzip||file compressor with a high compression ratio|archivers/rzip/pkg/DESCR|Lawrence Teo <[email protected]>|archivers|bz2::archivers/bzip2|||any|y|y|y|y
star-1.4.3p0|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.3p0-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.03p0|archivers/ucl||portable lossless data compression library|archivers/ucl/pkg/DESCR|Wilbern Cobb <[email protected]>|archivers devel||:devel/libtool nasm-*:devel/nasm||any|y|y|y|y
unace-1.2bp0|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.68|archivers/unrar||extract, list, and test RAR archives|archivers/unrar/pkg/DESCR|Rui Reis <[email protected]>|archivers||||any|n|n|n|y
unshield-0.5p1|archivers/unshield||extract files from InstallShield CAB archives|archivers/unshield/pkg/DESCR|Jonathan Gray <[email protected]>|archivers||:devel/libtool||any|y|y|y|y
unzip-5.52|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.32|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
zipios++-0.1.5.9p0|archivers/zipios||java-like zip interface|archivers/zipios/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel archivers||:devel/libtool||any|y|y|y|y
zoo-2.10.1p1|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.35|astro/dgpsip||Differential GPS over IP communication device|astro/dgpsip/pkg/DESCR|Wolfgang Rupprecht <[email protected]>|astro||||any|y|y|y|y
jday-2.4|astro/jday||astronomical julian date calculator|astro/jday/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|astro||:devel/libtool||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-20050629|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.12p0|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.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
sattrack-3.1.6p0|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.50pre1p2|astro/sunclock,-main||display the phase of the Sun on a map of the Earth|astro/sunclock/pkg/DESCR-main|Nick Nauwelaerts <[email protected]>|astro|jpeg.>=62::graphics/jpeg|||any|y|y|y|y
wmglobe-1.3p0|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.27p0|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.04p0|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.03p0|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.3.0|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.1p0|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
akode-2.0|audio/akode||Decoding Library for KDE Multimedia|audio/akode/pkg/DESCR|David Love <[email protected]>|audio multimedia x11/kde|OggFLAC,FLAC::audio/flac ltdl::devel/libtool,-ltdl mad::audio/libmad speex::audio/speex vorbis,vorbisfile::audio/libvorbis|:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
amarok-1.4.4|audio/amarok||music player for kde|audio/amarok/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio x11 x11/kde|gpod::audio/libgpod kdecore.>=6,DCOP,khtml,kwalletclient,kdefx,kdeprint,kutils,kdeui,kparts,kio,kdesu,kjs,knewstuff,kdnssd::x11/kde/libs3 konqsidebarplugin::x11/kde/base3 lib/qt3/qt-mt.>=3.33::x11/qt3,mt lib/qt3/qt-mt.>=3::x11/qt3 ruby::lang/ruby sqlite3::databases/sqlite3 tag.>=5.0:taglib->=1.4:audio/taglib xine::multimedia/xine-lib|:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59 bzip2-*:archivers/bzip2||any|y|y|y|y
ascd-0.13.2p0|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
audacity-1.3.2|audio/audacity||free audio editor|audio/audacity/pkg/DESCR|Antoine Jacoutot <[email protected]>|audio|FLAC.>=7,FLAC++.>=6::audio/flac expat.>=6::textproc/expat id3tag.>=2::audio/libid3tag mad.>=2::audio/libmad samplerate.>=1::audio/libsamplerate sndfile.>=1::audio/libsndfile vorbis.>=5,vorbisfile.>=4,vorbisenc.>=2::audio/libvorbis wx_base_xml,wx_base_odbc,wx_gtk2_html,wx_gtk2_adv,wx_gtk2_xrc,wx_base_net,wx_gtk2_dbgrid,wx_gtk2_qa,wx_base,wx_gtk2_core:wxWidgets-gtk2->=2.6.3:x11/wxWidgets|:archivers/zip :devel/gmake :devel/libtool||any|y|y|y|y
aumix-2.8p3|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|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|The OpenBSD ports mailing-list <[email protected]>|audio||||any|n|y|n|y
bmp-0.9.7p9|audio/bmp,-main||gtk+2 media player based on XMMS|audio/bmp/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|audio|esd.>=2.34::audio/esound gdk_pixbuf-2.0.>=400.3,gdk-x11-2.0.>=400.3,gtk-x11-2.0.>=0.5::x11/gtk+2 glade-2.0.>=0.4::devel/libglade2 glib-2.0.>=400.2,gthread-2.0.>=400.2::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2.>=9.0::textproc/libxml|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
bmp-mp3-0.9.7p8|audio/bmp,-mp3||MP3 input plugin for bmp|audio/bmp/pkg/DESCR-mp3|The OpenBSD ports mailing-list <[email protected]>|audio|beep::audio/bmp gdk_pixbuf-2.0.>=400.3,gdk-x11-2.0.>=400.3,gtk-x11-2.0.>=0.5::x11/gtk+2 glib-2.0.>=400.2,gthread-2.0.>=400.2::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
bmp-vorbis-0.9.7p8|audio/bmp,-vorbis||Ogg Vorbis input plugin for bmp|audio/bmp/pkg/DESCR-vorbis|The OpenBSD ports mailing-list <[email protected]>|audio|gdk_pixbuf-2.0.>=400.3,gdk-x11-2.0.>=400.3,gtk-x11-2.0.>=0.5::x11/gtk+2 glib-2.0.>=400.2,gthread-2.0.>=400.2::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext vorbisfile.>=4.0,vorbis::audio/libvorbis|:devel/libtool gettext->=0.14.6:devel/gettext|:audio/bmp|any|y|y|y|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.8p0|audio/cdparanoia||CDDA reading utility with extra data verification features|audio/cdparanoia/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/metaauto autoconf-2.52:devel/autoconf/2.52||any|y|y|y|y
cmt-1.15p0|audio/cmt||computer music toolkit|audio/cmt/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio devel||:audio/ladspa||any|y|y|y|y
cplay-1.49p1|audio/cplay||curses front-end for various audio players|audio/cplay/pkg/DESCR|Victor Sahlstedt <[email protected]>|audio|||python-2.4*:lang/python/2.4|any|y|y|y|y
daapd-0.2.4b|audio/daapd||server for the DAA protocol|audio/daapd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio net|howl::net/howl id3tag.>=3.0::audio/libid3tag mp4v2::audio/faad|:devel/gmake||any|y|y|y|y
disc-cover-1.5.2p1|audio/disc-cover||creates cover for audio cds using cddb and latex|audio/disc-cover/pkg/DESCR|The OpenBSD ports mailing-list <[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.>=4::converters/libiconv id3.>=3.8::audio/id3lib intl.>=3:gettext->=0.10.38:devel/gettext vorbis.>=1,vorbisfile.>=1::audio/libvorbis|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext help2man-*:devel/help2man|gettext->=0.10.38:devel/gettext|any|y|y|y|y
esound-0.2.34p0|audio/esound||sound library for Enlightenment|audio/esound/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|audiofile::devel/libaudiofile|:devel/libtool :devel/metaauto autoconf-2.13:devel/autoconf/2.13||any|y|y|y|y
faac-1.24|audio/faac||MPEG-2 and MPEG-4 AAC encoder|audio/faac/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|mp4v2.>=1::audio/faad|:devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59 automake-1.4.*:devel/automake/1.4||any|n|y|n|y
faad-2.0p5|audio/faad,-main||MPEG2 and MPEG-4 AAC decoder|audio/faad/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|audio||:audio/id3lib :devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59 automake-1.4.*:devel/automake/1.4||any|n|y|n|y
faad-xmms-2.0p3|audio/faad,-xmms||XMMS input plugin for AAC files|audio/faad/pkg/DESCR-xmms|The OpenBSD ports mailing-list <[email protected]>|audio|faad,mp4v2::audio/faad xmms.>=3::audio/xmms|:audio/id3lib :devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59 automake-1.4.*:devel/automake/1.4|:audio/xmms|any|n|y|n|y
festvox_cmu_us_awb_arctic_hts-20040804|audio/festival/arctic/festvox_cmu_us_awb_arctic_hts||Scottish English make speaker (AWB)|audio/festival/arctic/festvox_cmu_us_awb_arctic_hts/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_cmu_us_bdl_arctic_hts-20040804|audio/festival/arctic/festvox_cmu_us_bdl_arctic_hts||American English male speaker (BDL)|audio/festival/arctic/festvox_cmu_us_bdl_arctic_hts/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_cmu_us_jmk_arctic_hts-20040804|audio/festival/arctic/festvox_cmu_us_jmk_arctic_hts||Canadian English male speaker (JMK)|audio/festival/arctic/festvox_cmu_us_jmk_arctic_hts/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_cmu_us_slt_arctic_hts-20040804|audio/festival/arctic/festvox_cmu_us_slt_arctic_hts||American English female speaker (SLT)|audio/festival/arctic/festvox_cmu_us_slt_arctic_hts/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_cstr_us_awb_arctic_multisyn-1.0p0|audio/festival/arctic/festvox_cstr_us_awb_arctic_multisyn||Scottish English male speaker (AWB, cstr|audio/festival/arctic/festvox_cstr_us_awb_arctic_multisyn/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|n|y|y
festvox_cstr_us_jmk_arctic_multisyn-1.0p0|audio/festival/arctic/festvox_cstr_us_jmk_arctic_multisyn||Canadian English male speaker (JMK), cstr|audio/festival/arctic/festvox_cstr_us_jmk_arctic_multisyn/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|n|y|y
festival-1.95betap1|audio/festival/core||general multi-lingual speech synthesis system|audio/festival/core/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||any|y|y|y|y
festival-1.95betap1-ogi|audio/festival/core,ogi||general multi-lingual speech synthesis system|audio/festival/core/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||any|n|y|n|y
festlex_CMU-20040804|audio/festival/festlex/festlex_CMU||CMU dictionary in festival form|audio/festival/festlex/festlex_CMU/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/core|any|y|y|y|y
festlex_OALD-20040804|audio/festival/festlex/festlex_OALD||oxford advanced learners' dictiction of current english|audio/festival/festlex/festlex_OALD/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/core|any|n|y|n|y
festlex_POSLEX-20040804|audio/festival/festlex/festlex_POSLEX||part of speech lexicons and ngram from English|audio/festival/festlex/festlex_POSLEX/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/core|any|y|y|y|y
festvox_don-20040804|audio/festival/festvox/festvox_don||British English RP male speaker (DON)|audio/festival/festvox/festvox_don/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_OALD :audio/festival/festlex/festlex_POSLEX|any|n|y|n|y
festvox_ellpc11k-20040804|audio/festival/festvox/festvox_ellpc11k||Castilian Spanish male speaker (EL)|audio/festival/festvox/festvox_ellpc11k/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/core|any|n|y|n|y
festvox_kallpc16k-20040804|audio/festival/festvox/festvox_kallpc16k||American English male speaker (KAL) at 16KHz sampling|audio/festival/festvox/festvox_kallpc16k/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_kedlpc16k-20040804|audio/festival/festvox/festvox_kedlpc16k||American English male speaker (KED) at 16KHz sampling|audio/festival/festvox/festvox_kedlpc16k/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_CMU :audio/festival/festlex/festlex_POSLEX|any|y|y|y|y
festvox_rablpc16k-20040804|audio/festival/festvox/festvox_rablpc16k||British English RP male speaker (RAB) at 16KHz sampling|audio/festival/festvox/festvox_rablpc16k/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_OALD :audio/festival/festlex/festlex_POSLEX|any|n|y|n|y
OGIlexicon-2.1|audio/festival/ogi/OGIlexicon||American English lexicon compiled from Moby and CMU lexicons|audio/festival/ogi/OGIlexicon/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/core,ogi|any|n|y|n|y
voice_aec_di-2.0|audio/festival/ogi/voice_aec_di||american male voice (AEC)|audio/festival/ogi/voice_aec_di/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_POSLEX :audio/festival/ogi/OGIlexicon|any|n|y|n|y
voice_jph_di-2.0|audio/festival/ogi/voice_jph_di||american male voice (JPH)|audio/festival/ogi/voice_jph_di/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_POSLEX :audio/festival/ogi/OGIlexicon|any|n|y|n|y
voice_mwm_di-2.0|audio/festival/ogi/voice_mwm_di||american male voice (MWM)|audio/festival/ogi/voice_mwm_di/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_POSLEX :audio/festival/ogi/OGIlexicon|any|n|y|n|y
voice_tll_di-2.0|audio/festival/ogi/voice_tll_di||american female voice (TLL)|audio/festival/ogi/voice_tll_di/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||:audio/festival/festlex/festlex_POSLEX :audio/festival/ogi/OGIlexicon|any|n|y|n|y
flac-1.1.2p1|audio/flac||free lossless audio codec|audio/flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio archivers|iconv.>=2::converters/libiconv ogg.>=5::audio/libogg|:devel/libtool :devel/nasm|libiconv-*:converters/libiconv|any|y|y|y|y
flite-1.2p0|audio/flite||text to speech utility|audio/flite/pkg/DESCR|Jason L. Wright <[email protected]>|audio||:devel/gmake||any|n|n|y|y
freealut-1.1.0|audio/freealut||OpenAL Utility Toolkit|audio/freealut/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|openal.>=1.0::audio/openal|:devel/libtool||any|y|y|y|y
gmpc-0.13.0|audio/gmpc||gnome music player client|audio/gmpc/pkg/DESCR|Pierre-Yves Ritschard <[email protected]>|audio|glade-2.0::devel/libglade2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mpd.>=0::audio/libmpd|:devel/libtool :textproc/p5-XML-Parser gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gogo-2.26a|audio/gogo||686 class CPU optimized mp3 encoder|audio/gogo/pkg/DESCR|Bob Beck <[email protected]>|audio||:devel/gmake :devel/nasm||i386|n|y|n|y
gqmpeg-0.20.0|audio/gqmpeg||front-end to various audio players|audio/gqmpeg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|gdk_pixbuf.>=2::graphics/gdk-pixbuf iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext mpg321-*:audio/mpg321|any|y|y|y|y
grip-3.2.0p2|audio/grip||front-end to external cd audio rippers and mp3 encoders|audio/grip/pkg/DESCR|Steve Shockley <[email protected]>|audio|cdda_interface,cdda_paranoia::audio/cdparanoia curl.>=3::net/curl gnomeui-2::x11/gnome/libgnomeui iconv.>=4::converters/libiconv id3.>=3.8::audio/id3lib intl.>=3:gettext->=0.10.38:devel/gettext vte.>=8::devel/vte|gettext->=0.14.6:devel/gettext|:audio/vorbis-tools :x11/gnome/yelp gettext->=0.10.38:devel/gettext|any|y|y|y|y
gsm-1.0.10p0|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
gtkpod-0.99.8p0|audio/gtkpod||GTK+2 program to synchronize an Apple iPod|audio/gtkpod/pkg/DESCR|Chris Kuethe <[email protected]>|audio x11|atk-1.0.>=800.0::devel/atk gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2 glade-2.0.>=0.4::devel/libglade2 glib-2.0,gmodule-2.0,gobject-2.0,gthread-2.0::devel/glib2 gpod.>=400.0::audio/libgpod iconv.>=4::converters/libiconv id3tag.>=2::audio/libid3tag intl.>=3:gettext->=0.10.38:devel/gettext mp4v2::audio/faad pango-1.0,pangoft2-1.0,pangocairo-1.0::devel/pango|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
herrie-1.1|audio/herrie||minimalistic console-based audio player|audio/herrie/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|curl.>=4::net/curl glib-2.0.>=1000.0,gthread-2.0.>=1000.0::devel/glib2 iconv.>=4::converters/libiconv id3tag.>=3::audio/libid3tag intl.>=3:gettext->=0.10.38:devel/gettext mad.>=2::audio/libmad sndfile.>=1::audio/libsndfile vorbis.>=5,vorbisfile.>=4::audio/libvorbis|:devel/gmake gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
hydrogen-0.9.3p0|audio/hydrogen||software drum machine|audio/hydrogen/pkg/DESCR|Alexander Yurchenko <[email protected]>|audio|FLAC.>=7,FLAC++.>=6::audio/flac lib/qt3/qt-mt.>=3::x11/qt3 sndfile.>=1::audio/libsndfile|||any|y|y|y|y
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.3p1|audio/id3lib||library for manipulating ID3v1 and ID3v2 tags|audio/id3lib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake :devel/libtool||any|y|y|y|y
ifp-line-0.2.4.6|audio/ifp-line||command line interface to iRiver music players|audio/ifp-line/pkg/DESCR|Aleksander Piotrowski <[email protected]>|audio|usb.>=8::devel/libusb|||any|y|y|y|y
ksmp3play-0.5.1p1|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
ladspa-1.12p0|audio/ladspa||linux audio developer simple plugin API|audio/ladspa/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio devel||:devel/gmake||any|y|y|y|y
lame-3.96.1p1|audio/lame||lame ain't an MP3 encoder|audio/lame/pkg/DESCR|Jakob Schlyter <[email protected]>|audio|gtk.>=1.2,gdk.>=1.2::x11/gtk+|:devel/gmake :devel/libtool :devel/nasm||any|n|y|n|y
lame-3.96.1p1-no_x11|audio/lame,no_x11||lame ain't an MP3 encoder|audio/lame/pkg/DESCR|Jakob Schlyter <[email protected]>|audio||:devel/gmake :devel/libtool :devel/nasm||any|n|y|n|y
liba52-0.7.4p2|audio/liba52||AC-3 decoding library|audio/liba52/pkg/DESCR|Marc Espie <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libao-0.8.5p3|audio/libao,-main||portable audio output library|audio/libao/pkg/DESCR-main|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libao-esd-0.8.5p3|audio/libao,-esd||ESounD module for portable audio output library|audio/libao/pkg/DESCR-esd|Christian Weisgerber <[email protected]>|audio|esd.>=2::audio/esound|:devel/libtool|libao-0.8.5:audio/libao|any|y|y|y|y
libcdaudio-0.99.6p0|audio/libcdaudio||multi-platform cd player development library|audio/libcdaudio/pkg/DESCR|Kevin Lo <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libgpod-0.4.0|audio/libgpod||library to access the contents of an iPod|audio/libgpod/pkg/DESCR|Chris Kuethe <[email protected]>|audio|gdk_pixbuf-2.0::x11/gtk+2 glib-2.0,gmodule-2.0,gobject-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext p5-XML-Parser-*:textproc/p5-XML-Parser|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libid3tag-0.15.1bp0|audio/libid3tag||library for reading ID3 tags|audio/libid3tag/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libmad-0.15.1bp1|audio/libmad||high-quality MPEG audio decoder|audio/libmad/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libmikmod-3.1.10p4|audio/libmikmod||mikmod sound library|audio/libmikmod/pkg/DESCR|Peter Valchev <[email protected]>|audio devel||:devel/libtool||any|y|y|y|y
libmikmod-3.1.10p4-esd|audio/libmikmod,esd||mikmod sound library|audio/libmikmod/pkg/DESCR|Peter Valchev <[email protected]>|audio devel|esd.>=2::audio/esound|:devel/libtool||any|y|y|y|y
libmpcdec-1.2.2p0|audio/libmpcdec||musepack, high quality audio compression format|audio/libmpcdec/pkg/DESCR|David Love <[email protected]>|audio||:devel/libtool bzip2-*:archivers/bzip2||any|y|y|y|y
libmpd-0.12.0|audio/libmpd||mpd client library|audio/libmpd/pkg/DESCR|Pierre-Yves Ritschard <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libogg-1.1.3|audio/libogg||Ogg bitstream library|audio/libogg/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libsamplerate-0.1.2p0|audio/libsamplerate||audio sample rate conversion library|audio/libsamplerate/pkg/DESCR|Antoine Jacoutot <[email protected]>|audio|sndfile.>=1::audio/libsndfile|:devel/libtool||any|y|y|y|y
libsidplay-1.36.57p1|audio/libsidplay||C64 music player and SID chip emulator library|audio/libsidplay/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libsndfile-1.0.11p0|audio/libsndfile||library to handle various audio file formats|audio/libsndfile/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:devel/libtool||any|y|y|y|y
libvorbis-1.1.2p0|audio/libvorbis||audio compression codec library|audio/libvorbis/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ogg.>=5::audio/libogg|:devel/libtool||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.2|audio/lopster||full featured GTK Napster client|audio/lopster/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|FLAC.>=5::audio/flac gthread.>=1.2::devel/glib gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext ogg.>=4::audio/libogg|:devel/gmake gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
madplay-0.15.2b|audio/madplay||command-line MPEG audio decoder and player|audio/madplay/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|iconv.>=4::converters/libiconv id3tag.>=3::audio/libid3tag intl.>=3:gettext->=0.10.38:devel/gettext mad.>=2::audio/libmad|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
midish-0.2.2|audio/midish||command line MIDI sequencer and filter|audio/midish/pkg/DESCR|Alexandre Ratchov <[email protected]>|audio||||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.4|audio/morseplayer||morse player|audio/morseplayer/pkg/DESCR|Jason Wright <[email protected]>|audio||||any|y|y|y|y
mp3blaster-3.2.1|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|The OpenBSD ports mailing-list <[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
mp3gain-1.4.6|audio/mp3gain||audio file volume normalizer|audio/mp3gain/pkg/DESCR|Chris Kuethe <[email protected]>|audio||:devel/gmake unzip-*:archivers/unzip||any|y|y|y|y
mp3info-0.8.5a|audio/mp3info||MP3 technical info viewer and ID3 1.x tag editor|audio/mp3info/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|gtk-x11-2.0,gdk-x11-2.0,gdk_pixbuf-2.0::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mp3info-0.8.5a-no_x11|audio/mp3info,no_x11||MP3 technical info viewer and ID3 1.x tag editor|audio/mp3info/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||any|y|y|y|y
mp3splt-2.1c|audio/mp3splt||split mp3/ogg files without decoding|audio/mp3splt/pkg/DESCR|Armin Wolfermann <[email protected]>|audio|mad.>=2::audio/libmad vorbis.>=3,vorbisfile.>=4::audio/libvorbis|||any|y|y|y|y
mpc-0.11.2|audio/mpc||command line client for mpd|audio/mpc/pkg/DESCR|Tobias Ulmer <[email protected]>|audio|iconv.>=2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
mpd-0.12.1|audio/mpd||music player daemon|audio/mpd/pkg/DESCR|Tobias Ulmer <[email protected]>|audio|OggFLAC.>=3,FLAC.>=7::audio/flac ao.>=3::audio/libao audiofile::devel/libaudiofile faad::audio/faad iconv.>=2::converters/libiconv id3tag.>=3::audio/libid3tag mad.>=2::audio/libmad mikmod.>=2::audio/libmikmod mpcdec.>=1::audio/libmpcdec ogg.>=5::audio/libogg shout.>=5::net/libshout speex.>=4::audio/speex vorbis,vorbisfile,vorbisenc::audio/libvorbis|:devel/libtool|libiconv-*:converters/libiconv|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.59rp4|audio/mpg123||mpeg audio 1/2 layer 1, 2 and 3 player|audio/mpg123/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||||!arm|n|y|n|y
mpg123-0.59rp4-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|||!arm|n|y|n|y
mpg321-0.2.10p0|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 sh vax|y|y|y|y
mppenc-1.16|audio/mppenc||musepack StreamVersion7 encoder|audio/mppenc/pkg/DESCR|Steven Mestdagh <[email protected]>|audio||:devel/cmake bzip2-*:archivers/bzip2||any|y|y|y|y
mt-daapd-0.2.4|audio/mt-daapd||multi-threaded DAAP server|audio/mt-daapd/pkg/DESCR|Arnaud Bergeron <[email protected]>|audio net|gdbm.>=3::databases/gdbm id3tag.>=3::audio/libid3tag|||any|y|y|y|y
nap-1.5.3p0|audio/nap||gnu curses-based napster client|audio/nap/pkg/DESCR|Peter Valchev <[email protected]>|audio||||any|y|y|y|y
ncmpc-0.11.1|audio/ncmpc||curses based frontend for mpd|audio/ncmpc/pkg/DESCR|Tobias Ulmer <[email protected]>|audio|glib-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|!mips64|y|y|y|y
normalize-0.7.4p1|audio/normalize||audio file volume normalizer|audio/normalize/pkg/DESCR|Jason Ish <[email protected]>|audio|audiofile::devel/libaudiofile iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mad.>=2::audio/libmad|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
nosefart-2.3|audio/nosefart||nsf (Nintendo sound) file player|audio/nosefart/pkg/DESCR|Matt Jibson <[email protected]>|audio||:devel/gmake bzip2-*:archivers/bzip2||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
oggtag-1.0|audio/oggtag||command-line editor for tags in Ogg Vorbis files|audio/oggtag/pkg/DESCR|Julian Leyh <[email protected]>|audio|ogg.>=5::audio/libogg vorbis.>=3::audio/libvorbis|||any|y|y|y|y
openal-0.0.8|audio/openal||cross-platform 3D audio API|audio/openal/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake :devel/libtool||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|||any|y|y|y|y
p5-Audio-FLAC-Header-1.4|audio/p5-Audio-FLAC-Header||interface to FLAC header metadata|audio/p5-Audio-FLAC-Header/pkg/DESCR|Andreas Bihlmaier <[email protected]>|audio perl5|FLAC.>=7::audio/flac|||any|y|y|y|y
Audio-MPD-0.12.3p0|audio/p5-Audio-MPD||module for communicating with MPD servers|audio/p5-Audio-MPD/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|audio perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Audio-Musepack-0.02|audio/p5-Audio-Musepack||object-oriented interface to Musepack/APE file information|audio/p5-Audio-Musepack/pkg/DESCR|Andreas Bihlmaier <[email protected]>|devel perl5||||any|y|y|y|y
p5-Audio-WMA-0.7|audio/p5-Audio-WMA||read WMA/ASF metadata|audio/p5-Audio-WMA/pkg/DESCR|Andreas Bihlmaier <[email protected]>|audio perl5||||any|y|y|y|y
p5-CDDB_get-2.27|audio/p5-CDDB_get||perl interface to query for cddb-information|audio/p5-CDDB_get/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio perl5||||any|y|y|y|y
p5-MP3-ID3v1Tag-1.11p0|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.13p0|audio/p5-MP3-Info||Perl5 module for reading MPEG1-Layer3 tags|audio/p5-MP3-Info/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio perl5||||any|y|y|y|y
p5-MP3-Tag-0.9708|audio/p5-MP3-Tag||read tags of MP3 audio files|audio/p5-MP3-Tag/pkg/DESCR|Andreas Bihlmaier <[email protected]>|audio perl5||||any|y|y|y|y
p5-MP4-Info-1.11|audio/p5-MP4-Info||fetch info from MPEG-4 files|audio/p5-MP4-Info/pkg/DESCR|Andreas Bihlmaier <[email protected]>|audio perl5||||any|y|y|y|y
p5-Ogg-Vorbis-Header-0.03|audio/p5-Ogg-Vorbis-Header||object-oriented interface to Ogg Vorbis information|audio/p5-Ogg-Vorbis-Header/pkg/DESCR|Andreas Bihlmaier <[email protected]>|audio perl5|vorbis.>=5,vorbisfile.>=4::audio/libvorbis|:devel/p5-Inline||any|y|y|y|y
p5-CDDB-1.17|audio/p5-cddb||Perl5 module for CDDB|audio/p5-cddb/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|audio perl5||||any|y|y|y|y
p5-libvorbis-0.05|audio/p5-libvorbis||Perl extension for Ogg Vorbis streams|audio/p5-libvorbis/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio perl5|vorbis.>=1,vorbisfile.>=2::audio/libvorbis|||any|y|y|y|y
pacpl-3.2.5|audio/pacpl,-main||PAC (Perl Audio Converter)|audio/pacpl/pkg/DESCR-main|Andreas Bihlmaier <[email protected]>|audio converters perl5|||:audio/bonk :audio/faac :audio/lame :audio/mpg321 :audio/p5-Audio-FLAC-Header :audio/p5-Audio-Musepack :audio/p5-Audio-WMA :audio/p5-CDDB_get :audio/p5-MP3-ID3v1Tag :audio/p5-MP3-Tag :audio/p5-MP4-Info :audio/p5-Ogg-Vorbis-Header :audio/sox :audio/vorbis-tools :graphics/ffmpeg :x11/mplayer|any|y|y|y|y
pacpl-konqueror-3.2.5|audio/pacpl,-konqueror||PAC Konqueror service menu & mime types|audio/pacpl/pkg/DESCR-konqueror|Andreas Bihlmaier <[email protected]>|audio converters perl5|||:audio/pacpl :x11/kde/base3|any|y|y|y|y
pacpl-amarok-3.2.5|audio/pacpl,-amarok||PAC Amarok plugin|audio/pacpl/pkg/DESCR-amarok|Andreas Bihlmaier <[email protected]>|audio converters perl5|||:audio/amarok :audio/pacpl|any|y|y|y|y
py-ao-0.82p1|audio/py-ao||Python wrapper module for the ao library|audio/py-ao/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|ao.>=3::audio/libao|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|!m88k sh vax|y|y|y|y
py-cddb-1.4p0|audio/py-cddb||CDDB audio CD track info access in Python|audio/py-cddb/pkg/DESCR|Xavier Santolaria <[email protected]>|audio||python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|!m88k sh vax|y|y|y|y
py-id3-1.2p0|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.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-ogg-1.3p1|audio/py-ogg||Python wrapper for the Ogg libraries|audio/py-ogg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|ogg.>=5.2::audio/libogg|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|!m88k sh vax|y|y|y|y
py-tagger-0.5|audio/py-tagger||Python ID3 tag reader/writer module|audio/py-tagger/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||bzip2-*:archivers/bzip2 python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-xmms-1.06p0|audio/py-xmms||Python interface to XMMS|audio/py-xmms/pkg/DESCR|Xavier Santolaria <[email protected]>|audio|xmms.>=3::audio/xmms|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|!m88k sh vax|y|y|y|y
pympd-0.07|audio/pympd||frontend to mpd written in Python|audio/pympd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio x11||:x11/py-gtk2 python-2.4*:lang/python/2.4|:x11/py-gtk2 python-2.4*:lang/python/2.4|any|y|y|y|y
rhythmbox-0.8.8p1|audio/rhythmbox||Music Management Application|audio/rhythmbox/pkg/DESCR|Marc Matteo <[email protected]>|audio|gnomeui-2::x11/gnome/libgnomeui gstgconf-0.8::devel/gstreamer-plugins iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext gstreamer-gnome-*:devel/gstreamer-plugins,-gnome p5-XML-Parser-*:textproc/p5-XML-Parser scrollkeeper-*:textproc/scrollkeeper|gettext->=0.10.38:devel/gettext gstreamer-flac-*:devel/gstreamer-plugins,-flac gstreamer-gnome-*:devel/gstreamer-plugins,-gnome gstreamer-mad-*:devel/gstreamer-plugins,-mad gstreamer-ogg-*:devel/gstreamer-plugins,-ogg gstreamer-vorbis-*:devel/gstreamer-plugins,-vorbis scrollkeeper-*:textproc/scrollkeeper|any|y|y|y|y
rio500-0.7p0|audio/rio500||Diamond Rio 500 utilities|audio/rio500/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|glib.>=1.2::devel/glib|:devel/gmake||i386|y|y|y|y
rioutil-1.4.4p0|audio/rioutil||utility for Rio mp3 players|audio/rioutil/pkg/DESCR|Michael Coulter <[email protected]>|audio|usb.>=7.0::devel/libusb|:devel/libtool||any|y|y|y|y
rplay-3.3.2p1|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/metaauto autoconf-2.13:devel/autoconf/2.13||any|n|n|n|n
rtunes-0.4|audio/rtunes||Streams audio to Apple AirPort Express device|audio/rtunes/pkg/DESCR|Marcus Glocker <[email protected]>|audio net||||any|y|y|y|y
scmpc-0.2.2|audio/scmpc||client for MPD to submit tracks to Audioscrobbler|audio/scmpc/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|argtable2.>=1::devel/argtable confuse.>=0::devel/libconfuse curl.>=5::net/curl daemon.>=2::devel/libdaemon iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
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.6p0|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.52:devel/autoconf/2.52 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
soundtracker-0.6.6p0-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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.52:devel/autoconf/2.52 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
soundtracker-0.6.6p0-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,gnomeui.>=46,art_lgpl.>=4::x11/gnome/libs gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.52:devel/autoconf/2.52 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
sox-12.18.2|audio/sox||SOund eXchange - universal sound sample translator|audio/sox/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||||any|n|y|n|y
sox-12.18.2-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::audio/lame vorbis.>=3,vorbisenc.>=2,vorbisfile.>=4::audio/libvorbis|||any|n|y|n|y
speex-1.0.5p0|audio/speex||patent-free speech codec|audio/speex/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|ogg.>=5::audio/libogg|:devel/libtool||any|y|y|y|y
streamripper-1.61.11p3|audio/streamripper||rip shoutcast streams to local mp3s|audio/streamripper/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|iconv.>=2::converters/libiconv mad.>=2::audio/libmad ogg.>=5.2::audio/libogg vorbis.>=3.0::audio/libvorbis||libiconv-*:converters/libiconv|any|y|y|y|y
taglib-1.4p1|audio/taglib||managing meta-data of audio formats|audio/taglib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio devel||:devel/libtool||any|y|y|y|y
tagtool-0.12.2|audio/tagtool||Ogg Vorbis and MP3 files tagger|audio/tagtool/pkg/DESCR|Vlad Glagolev <[email protected]>|audio|glade-2.0.>=0.3::devel/libglade2 gtk-x11-2.0.>=0.14,gdk-x11-2.0.>=0.14,gdk_pixbuf-2.0.>=0.14::x11/gtk+2 iconv.>=4::converters/libiconv id3.>=3.8::audio/id3lib intl.>=3:gettext->=0.10.38:devel/gettext vorbis.>=5.0::audio/libvorbis vorbisfile.>=4::audio/libvorbis xml2.>=9::textproc/libxml|:devel/gmake gettext->=0.14.6:devel/gettext p5-XML-Parser-*:textproc/p5-XML-Parser|gettext->=0.10.38:devel/gettext|any|y|y|y|y
teknap-1.3gp0|audio/teknap||console napster client|audio/teknap/pkg/DESCR|Jason Ish <[email protected]>|audio||||any|y|y|y|y
tempest-1.0.5p2|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-2.13.2p0|audio/timidity||MIDI to WAV renderer and player|audio/timidity/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||any|n|n|n|n
toolame-0.2lp1|audio/toolame||optimized mpeg 1/2 layer 2 audio encoder|audio/toolame/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/gmake||any|y|y|y|y
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.3p0|audio/tracker||MOD player|audio/tracker/pkg/DESCR|Marc Espie <[email protected]>|audio||||any|y|y|y|y
tremor-20050411p0|audio/tremor||integer-only, fully Ogg Vorbis compliant decoder library|audio/tremor/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio||:devel/autoconf/2.59 :devel/automake/1.4 :devel/gmake :devel/libtool :devel/metaauto||any|y|y|y|y
tremor-tools-1.0p1|audio/tremor-tools||integer-only ogg vorbis command-line player|audio/tremor-tools/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|ao.>=3::audio/libao curl.>=2::net/curl iconv.>=2::converters/libiconv ogg.>=5::audio/libogg vorbisidec.>=1::audio/tremor|:devel/autoconf/2.59 :devel/automake/1.4 :devel/gmake :devel/libtool :devel/metaauto||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.1.1p0|audio/vorbis-tools||play, encode, and manage Ogg Vorbis files|audio/vorbis-tools/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|FLAC.>=7,OggFLAC.>=3::audio/flac ao.>=3::audio/libao curl.>=3::net/curl iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext speex.>=4::audio/speex vorbis.>=4,vorbisenc.>=2,vorbisfile.>=4::audio/libvorbis|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
vorbisgain-0.36p0|audio/vorbisgain||add tags to Ogg Vorbis files to adjust the volume|audio/vorbisgain/pkg/DESCR|Moritz Grimm <[email protected]>|audio|vorbis.>=4,vorbisfile.>=4::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||||amd64 arm 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
WMmp-0.10.0|audio/wmmp||wm-dockapp to control MPD|audio/wmmp/pkg/DESCR|Jasper Lievisse Adriaanse <[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.3ap0|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
xcd-1.7p0|audio/xcd||Tcl/Tk CD player|audio/xcd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|||tk-8.4.*: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.3p4|audio/xhippo||generic playlist manager for UNIX|audio/xhippo/pkg/DESCR|Kevin Lo <[email protected]>|audio|gdk_pixbuf-2.0,gdk-x11-2.0,gtk-x11-2.0::x11/gtk+2 iconv.>=4::converters/libiconv id3tag.>=2::audio/libid3tag intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xmcd-2.6p3|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|The OpenBSD ports mailing-list <[email protected]>|audio|Xm.>=2::x11/openmotif|||any|y|y|y|y
xmms-1.2.10p8|audio/xmms,-main||Multimedia player for the X Window System|audio/xmms/pkg/DESCR-main|Robert Nagy <[email protected]>|audio|gthread.>=1.2::devel/glib gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext unzip-*:archivers/unzip|any|y|y|y|y
xmms-esd-1.2.10p5|audio/xmms,-esd||Esound output plugin for XMMS|audio/xmms/pkg/DESCR-esd|Robert Nagy <[email protected]>|audio|esd.>=2::audio/esound gthread.>=1.2::devel/glib gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext|:audio/xmms|any|y|y|y|y
xmms-vorbis-1.2.10p5|audio/xmms,-vorbis||Ogg Vorbis input plugin for XMMS|audio/xmms/pkg/DESCR-vorbis|Robert Nagy <[email protected]>|audio|gthread.>=1.2::devel/glib gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext vorbis,vorbisfile.>=1::audio/libvorbis|:devel/metaauto autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext|:audio/xmms|any|y|y|y|y
xmms-mikmod-1.2.10p5|audio/xmms,-mikmod||Mikmod input plugin for XMMS|audio/xmms/pkg/DESCR-mikmod|Robert Nagy <[email protected]>|audio|gthread.>=1.2::devel/glib gtk.>=1.2,gdk.>=1.2::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mikmod::audio/libmikmod|:devel/metaauto autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext|:audio/xmms|any|y|y|y|y
xmms-mp3-1.2.10p6|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xmms.>=4:xmms-1.2.10*:audio/xmms|:devel/metaauto autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext unzip-*:archivers/unzip|any|n|y|y|y
xmms-bonk-0.12p0|audio/xmms-bonk||XMMS input plugin to play bonk files|audio/xmms-bonk/pkg/DESCR|Christian Weisgerber <[email protected]>|audio||:audio/xmms|:audio/xmms|any|y|y|y|y
xmms-flac-1.1.2|audio/xmms-flac||XMMS input plugin for playing FLAC files|audio/xmms-flac/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|FLAC.>=7::audio/flac xmms.>=4::audio/xmms|:devel/libtool||any|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|||any|y|y|y|y
xmms-mad-0.8|audio/xmms-mad||XMMS input plugin for MP3 files|audio/xmms-mad/pkg/DESCR|Robert Nagy <[email protected]>|audio|id3tag.>=3::audio/libid3tag mad.>=2::audio/libmad xmms.>=4::audio/xmms|||any|y|y|y|y
xmms-shn-2.4.0p1|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|:audio/xmms :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-sid-0.7.4p1|audio/xmms-sid||XMMS input plugin for playing SID files|audio/xmms-sid/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|sidplay.>=1::audio/libsidplay|:audio/xmms :devel/libtool|:audio/xmms|any|y|y|y|y
xmms-tremor-1.0|audio/xmms-tremor||Ogg Vorbis input plugin for XMMS using tremor|audio/xmms-tremor/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|audio|vorbisidec.>=1::audio/tremor xmms.>=4::audio/xmms|:devel/libtool bzip2-*:archivers/bzip2||any|y|y|y|y
xmms-xf86audio-0.4.3|audio/xmms-xf86audio||XF86Audio multimedia-key support for XMMS|audio/xmms-xf86audio/pkg/DESCR|Christian Weisgerber <[email protected]>|audio|xmms.>=4::audio/xmms|||any|y|y|y|y
xmp-2.0.4p3|audio/xmp,-main||extended module player|audio/xmp/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|audio|esd.>=2::audio/esound|:devel/gmake||any|y|y|y|y
xmms-xmp-2.0.4p1|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|The OpenBSD ports mailing-list <[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.3p0|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.6|benchmarks/pear-Benchmark|/var/www|framework to benchmark PHP scripts or function calls|benchmarks/pear-Benchmark/pkg/DESCR|Marc Balmer <[email protected]>|benchmarks pear||php5-pear-*:www/php5/core,-pear|php5-pear-*:www/php5/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
smtp-benchmark-1.0.4|benchmarks/smtp-benchmark||SMTP benchmark to measure throughput of an MTA|benchmarks/smtp-benchmark/pkg/DESCR|Marc Balmer <[email protected]>|bechmark mail||||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
AcePerl-1.87|biology/AcePerl||perl interface to the ACEDB database|biology/AcePerl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|biology perl5 databases||||any|y|y|y|y
AcePerl-1.87-opt|biology/AcePerl,opt||perl interface to the ACEDB database|biology/AcePerl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|biology perl5 databases||||any|y|y|y|y
bioperl-1.5.0p0|biology/bioperl||perl tools for bioinformatics|biology/bioperl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|biology perl5|||AcePerl-*:biology/AcePerl p5-Class-AutoClass-*:devel/p5-Class-AutoClass p5-Clone-*:devel/p5-Clone p5-DBD-mysql-*:databases/p5-DBD-mysql p5-GD-*:graphics/p5-GD p5-GD-SVG-*:graphics/p5-GD-SVG p5-Graph-*:devel/p5-Graph p5-HTML-Parser-*:www/p5-HTML-Parser p5-IO-String-*:devel/p5-IO-String p5-IO-stringy-*:devel/p5-IO-stringy p5-Libxml-*:textproc/p5-Libxml p5-SOAP-Lite-*:www/p5-SOAP-Lite p5-SVG-*:graphics/p5-SVG p5-XML-Parser-*:textproc/p5-XML-Parser p5-XML-SAX-*:textproc/p5-XML-SAX p5-XML-Twig-*:textproc/p5-XML-Twig p5-XML-Writer-*:textproc/p5-XML-Writer p5-libwww-*:www/p5-libwww|any|y|y|y|y
nut-12.0|biology/nutdb||record what you eat and analyze your meals for nutrient composition|biology/nutdb/pkg/DESCR|Jon Trembley <[email protected]>|biology||:devel/gmake||any|y|y|y|y
py-biopython-1.41p0|biology/py-biopython||Python tools for computational molecular biology|biology/py-biopython/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|biology||:math/py-Numeric python-2.4*:lang/python/2.4 python-expat-2.4*:lang/python/2.4,-expat|py-Numeric-*:math/py-Numeric py-mxDateTime-*:devel/py-mxDateTime py-reportlab-*:print/py-reportlab/reportlab python-2.4*:lang/python/2.4 python-expat-2.4*:lang/python/2.4,-expat|any|y|y|y|y
JLS-2.0|books/JLS||Sun's official Java Language Specification|books/JLS/pkg/DESCR|Ian Darwin <[email protected]>|books||||any|n|n|n|n
autobook-1.5|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
diveintopython-5.4|books/diveintopython||book about Python for experienced programmers|books/diveintopython/pkg/DESCR|Aleksander Piotrowski <[email protected]>|books||unzip-*:archivers/unzip||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.0p0|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
vol3ol-1.0|books/vol3ol||O'Reilly Volume 3: Users Guide, Open Look|books/vol3ol/pkg/DESCR|Ian Darwin <[email protected]>|books||||any|y|y|y|y
vol6a-2.0|books/vol6a||O'Reilly Volume 6a: Motif Programming Manual|books/vol6a/pkg/DESCR|Ian Darwin <[email protected]>|books||||any|y|y|y|y
zopebook-2.6|books/zopebook||Zope documentation|books/zopebook/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|books||||any|y|y|y|y
chipmunk-1.57p0|cad/chipmunk||electronic CAD system|cad/chipmunk/pkg/DESCR|Peter Valchev <[email protected]>|cad||||any|y|y|y|y
klogic-1.6p0|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|:devel/gmake :devel/libtool||any|y|y|y|y
qcad-1.5.4p0|cad/qcad||Qt-based 2D CAD system|cad/qcad/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|cad x11|lib/qt3/qt-mt.>=3::x11/qt3|||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
xcircuit-3.4.26|cad/xcircuit||circuit drawing and schematic capture|cad/xcircuit/pkg/DESCR|Zvezdan Petkovic <[email protected]>|cad|tk84:tk->=8.4:x11/tk/8.4|:devel/gmake :devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
zh-fonts-arphicttf-2.11p0|chinese/arphicttf||chinese big5/gb truetype fonts|chinese/arphicttf/pkg/DESCR|Kevin Lo <[email protected]>|chinese x11||||any|y|y|y|y
zh-bg5pdf-1.0.0p2|chinese/bg5pdf||convert Big5 encoded files to PDF|chinese/bg5pdf/pkg/DESCR|Kevin Lo <[email protected]>|chinese print|pdf.>=2::print/pdflib|python-2.4*:lang/python/2.4|:chinese/taipeifonts python-2.4*:lang/python/2.4|any|n|y|n|y
zh-bg5ps-1.3.0p1|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.4*:lang/python/2.4|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.6p0|chinese/libtabe||library for Chinese language processing|chinese/libtabe/pkg/DESCR|Kevin Lo <[email protected]>|chinese|lib/db/db.=3:db-3.*:databases/db/v3|:devel/libtool||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.0p0|chinese/py-zhCodecs||Python Unicode codecs for Chinese charsets|chinese/py-zhCodecs/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|chinese devel||python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
zh-rxvt-big5-2.7.8p2|chinese/rxvt-big5|/usr/local/emul/fedora|color terminal emulator Linux binary|chinese/rxvt-big5/pkg/DESCR|Kevin Lo <[email protected]>|chinese||rpm->=3.0.6p1:misc/rpm|:chinese/taipeifonts :emulators/fedora/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.04p0|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.3p1|chinese/xcin25|/usr/local/emul/fedora|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.1p0|comms/birda||Bohlin's IrDA utilities|comms/birda/pkg/DESCR|The OpenBSD ports mailing-list <[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-8.1.11|comms/conserver||manage remote serial consoles via TCP/IP|comms/conserver/pkg/DESCR|Peter Valchev <[email protected]>|comms||:devel/metaauto autoconf-2.59:devel/autoconf/2.59||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
gnokii-0.6.14|comms/gnokii||tools to talk to GSM cellular phones|comms/gnokii/pkg/DESCR|Robert Nagy <[email protected]>|comms x11|gtk-x11-2.0.>=400.13,gdk-x11-2.0.>=400.13,gdk_pixbuf-2.0.>=400.13::x11/gtk+2 usb.>=8::devel/libusb|:devel/gmake :devel/libtool||any|y|y|y|y
gnokii-0.6.14-no_x11|comms/gnokii,no_x11||tools to talk to GSM cellular phones|comms/gnokii/pkg/DESCR|Robert Nagy <[email protected]>|comms x11||:devel/gmake :devel/libtool||any|y|y|y|y
hylafax-4.1.5p7|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.5p7-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.9|comms/jpilot||desktop organizer software for the palm pilot|comms/jpilot/pkg/DESCR|Antoine Jacoutot <[email protected]>|comms palm|gtk-x11-2.0.>=400.13,gdk-x11-2.0.>=400.13,gdk_pixbuf-2.0.>=400.13::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext pisock.>=9::comms/pilot-link|:devel/libtool gettext->=0.14.6: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
libmal-0.43|comms/libmal||MAL convenience library|comms/libmal/pkg/DESCR|Antoine Jacoutot <[email protected]>|comms palm|pisock.>=9::comms/pilot-link|:devel/libtool||any|y|y|y|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
mgetty+sendfax-1.1.35p4|comms/mgetty+sendfax||handle external logins, send and receive faxes|comms/mgetty+sendfax/pkg/DESCR|Antoine Jacoutot <[email protected]>|comms|||:graphics/netpbm :print/ghostscript/gnu|any|y|y|y|y
minicom-2.00.0p2|comms/minicom||MS-DOS Telix-like serial communication program|comms/minicom/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/metaauto autoconf-2.13:devel/autoconf/2.13 gettext->=0.14.6:devel/gettext|:comms/kermit :comms/lrzsz gettext->=0.10.38:devel/gettext|any|y|y|y|y
obexftp-0.10.4p1|comms/obexftp||file copying over the OBEX protocol|comms/obexftp/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|openobex.>=1::comms/openobex|:devel/libtool||any|y|y|y|y
openobex-1.0.1p2|comms/openobex||OBEX protocol implementation|comms/openobex/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms||:devel/gmake :devel/libtool||any|y|y|y|y
p5-Device-Gsm-1.36|comms/p5-Device-Gsm||Perl extension to interface GSM cellulars / modems|comms/p5-Device-Gsm/pkg/DESCR|Matteo Cantoni <[email protected]>|comms perl5||:comms/p5-Device-Modem|:comms/p5-Device-Modem|any|y|y|y|y
p5-Device-Modem-1.43|comms/p5-Device-Modem||talk to modem devices connected via serial port|comms/p5-Device-Modem/pkg/DESCR|Todd T. Fries <[email protected]>|comms perl5||:devel/gmake p5-Device-SerialPort->=1:comms/p5-Device-SerialPort||any|y|y|y|y
p5-Device-SerialPort-1.000002|comms/p5-Device-SerialPort||talk to modem devices connected via serial port|comms/p5-Device-SerialPort/pkg/DESCR|Todd T. Fries <[email protected]>|graphics perl5||:devel/gmake||any|y|y|y|y
p5-SendPage-0.9.14p1|comms/p5-SendPage||SNPP, TAP, email notification application|comms/p5-SendPage/pkg/DESCR|Todd T. Fries <[email protected]>|comms||:comms/p5-Device-SerialPort :mail/p5-Mail-Tools :net/p5-Net-SNPP|:comms/p5-Device-SerialPort :mail/p5-Mail-Tools :net/p5-Net-SNPP|any|y|y|y|y
pilot-link-0.12.1|comms/pilot-link||tools to connect your PalmOS® compatible handheld|comms/pilot-link/pkg/DESCR|Antoine Jacoutot <[email protected]>|comms|iconv.>=2::converters/libiconv png.>=4::graphics/png popt::devel/popt|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2|libiconv-*:converters/libiconv|any|y|y|y|y
qpage-3.3p0|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.8.0|comms/scmxx||data exchange utility for Siemens mobile phones|comms/scmxx/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|comms|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|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
sredird-2.2.2|comms/sredird||RFC 2217 compliant serial port redirector|comms/sredird/pkg/DESCR|Alexey E. Suslikov <[email protected]>|comms||||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.2p2|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|The OpenBSD ports mailing-list <[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.3p2|converters/libdvd||descramble scrambled DVDs using ACSS|converters/libdvd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters||:devel/libtool||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||:devel/libtool||any|n|y|y|y
libiconv-1.9.2p3|converters/libiconv||character set conversion library|converters/libiconv/pkg/DESCR|Brad Smith <[email protected]>|converters devel||:devel/libtool :devel/metaauto autoconf-2.57:devel/autoconf/2.57||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-Calendar-Simple-1.17|converters/p5-Calendar-Simple||simple calendar month|converters/p5-Calendar-Simple/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Catalyst-Plugin-Charsets-Japanese-0.06|converters/p5-Catalyst-Plugin-Charsets-Japanese||jcode interface for catalyst|converters/p5-Catalyst-Plugin-Charsets-Japanese/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters www perl5|||:converters/p5-Jcode :www/p5-Catalyst-Runtime|any|y|y|y|y
p5-Convert-ASCII-Armour-1.4|converters/p5-Convert-ASCII-Armour||convert binary octets into ASCII armoured messages|converters/p5-Convert-ASCII-Armour/pkg/DESCR|Nikolay Sturm <[email protected]>|converters security perl5|||:archivers/p5-Compress-Zlib|any|y|y|y|y
p5-Convert-ASN1-0.20p0|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.3101p0|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-BinHex-1.119p1|converters/p5-Convert-BinHex||module to extract data from Macintosh BinHex files|converters/p5-Convert-BinHex/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5||||any|y|y|y|y
p5-Convert-PEM-0.07|converters/p5-Convert-PEM||read/write access to ASN.1-encoded PEM files|converters/p5-Convert-PEM/pkg/DESCR|Nikolay Sturm <[email protected]>|converters security perl5||:converters/p5-Convert-ASN1 :devel/p5-Class-ErrorHandler :security/p5-Crypt-DES-EDE3|:converters/p5-Convert-ASN1 :devel/p5-Class-ErrorHandler :security/p5-Crypt-DES-EDE3|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.52p0|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|n
p5-Convert-UUlib-1.051p0|converters/p5-Convert-UUlib||interface to the uulib library|converters/p5-Convert-UUlib/pkg/DESCR|Ibrahim Khalifa <[email protected]>|converters perl5||||any|y|y|y|y
p5-Date-Tolkien-Shire-1.13p0|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.44|converters/p5-DateManip||manipulate dates in perl|converters/p5-DateManip/pkg/DESCR|Marc Espie <[email protected]>|converters perl5||||any|y|y|y|y
p5-Finance-Currency-Convert-XE-0.11|converters/p5-Finance-Currency-Convert-XE||currency conversion|converters/p5-Finance-Currency-Convert-XE/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5|||:www/p5-HTML-Parser :www/p5-WWW-Mechanize|any|y|y|y|y
p5-IDNA-Punycode-0.03|converters/p5-IDNA-Punycode||encodes Unicode strings in Punycode|converters/p5-IDNA-Punycode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters perl5 perl5||||any|y|y|y|y
p5-JSON-1.07p0|converters/p5-JSON||parse and convert to JSON (JavaScript Object Notation)|converters/p5-JSON/pkg/DESCR|Genadijus Paleckis <[email protected]>|converters perl5|||:www/p5-libwww|any|y|y|y|y
p5-Jcode-2.06|converters/p5-Jcode||handles various Japanese charsets|converters/p5-Jcode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters japanese perl5||||any|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.4|converters/p5-Text-Iconv||interface to iconv() codeset conversion function|converters/p5-Text-Iconv/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5|iconv.>=2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
p5-Unicode-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||||any|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|any|y|y|y|y
p5-Unicode-MapUTF8-1.11p0|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|any|y|y|y|y
p5-Unicode-String-2.09|converters/p5-Unicode-String||modules to handle various Unicode issues|converters/p5-Unicode-String/pkg/DESCR|Kevin Lo <[email protected]>|converters perl5||||any|y|y|y|y
pflogx-0.86|converters/pflogx||parse pf logs to XML|converters/pflogx/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|converters|expat.>=6::textproc/expat|||any|y|y|y|y
ppmtoTbmp-1.1p0|converters/ppmtoTbmp||PPM to Pilot bitmap converter|converters/ppmtoTbmp/pkg/DESCR|Josh Rivel <[email protected]>|converters graphics|netpbm::graphics/netpbm|||any|y|y|y|y
py-cjkcodecs-1.1.1p0|converters/py-cjkcodecs||Python unicode codecs for Chinese, Japanese and Korean|converters/py-cjkcodecs/pkg/DESCR|Kevin Lo <[email protected]>|converters||python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|!m88k sh vax|y|y|y|y
py-iconvcodec-1.1.2p0|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.4*:lang/python/2.4|libiconv-*:converters/libiconv python-2.4*:lang/python/2.4|any|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/metaauto autoconf-2.13:devel/autoconf/2.13||any|y|y|y|y
recode-3.6p3|converters/recode||convert files between character sets and usages|converters/recode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters textproc|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6: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.20p0|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.3|converters/wv2||library providing routines to access Microsoft Word/Excel files|converters/wv2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|converters|bz2::archivers/bzip2 glib-2.0::devel/glib2 gsf-1::devel/libgsf,no_gnome iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2::textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
xlhtml-0.2.9.8p1|converters/xlhtml||convert Excel and PowerPoint to HTML|converters/xlhtml/pkg/DESCR|Anil Madhavapeddy <[email protected]>|converters||:devel/libtool||any|y|y|y|y
db-3.1.17p8|databases/db/v3,-main||Berkeley DB package, revision 3|databases/db/v3/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool tcl-8.4.*:lang/tcl/8.4||!m88k sh vax|y|y|y|y
db-tcl-3.1.17p3|databases/db/v3,-tcl||TCL bindings for Berkeley DB, revision 3|databases/db/v3/pkg/DESCR-tcl|The OpenBSD ports mailing-list <[email protected]>|databases|tcl84:tcl-8.4.*:lang/tcl/8.4|:devel/libtool tcl-8.4.*:lang/tcl/8.4|db-3.*:databases/db/v3 tcl-8.4.*:lang/tcl/8.4|!m88k sh vax|y|y|y|y
db-java-4.2.52p2|databases/db/v4,-java||Java bindings for Berkeley DB, revision 4|databases/db/v4/pkg/DESCR-java|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool jdk-1.5.0:devel/jdk/1.5 tcl-8.4.*:lang/tcl/8.4|db-4.*:databases/db/v4 jdk-1.3.1*|jre-1.3.1*|jdk->=1.4.2p9|jre->=1.4.2p9|kaffe-*|jamvm-*|jdk-linux-1.3.1*:devel/jdk/1.3|arm i386 powerpc sparc|y|y|y|y
db-4.2.52p11|databases/db/v4,-main||Berkeley DB package, revision 4|databases/db/v4/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool jdk-1.5.0:devel/jdk/1.5 tcl-8.4.*:lang/tcl/8.4||arm i386 powerpc sparc|y|y|y|y
db-tcl-4.2.52p3|databases/db/v4,-tcl||TCL bindings for Berkeley DB, revision 4|databases/db/v4/pkg/DESCR-tcl|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool jdk-1.5.0:devel/jdk/1.5 tcl-8.4.*:lang/tcl/8.4|db-4.*:databases/db/v4 tcl-8.4.*:lang/tcl/8.4|arm i386 powerpc sparc|y|y|y|y
db-4.2.52p11|databases/db/v4,-main||Berkeley DB package, revision 4|databases/db/v4/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool tcl-8.4.*:lang/tcl/8.4||!m88k sh vax|y|y|y|y
db-tcl-4.2.52p3|databases/db/v4,-tcl||TCL bindings for Berkeley DB, revision 4|databases/db/v4/pkg/DESCR-tcl|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool tcl-8.4.*:lang/tcl/8.4|db-4.*:databases/db/v4 tcl-8.4.*:lang/tcl/8.4|!m88k sh vax|y|y|y|y
dbh-1.0.24p0|databases/dbh||library to create disk based hashtables|databases/dbh/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool||any|y|y|y|y
directoryassistant-2.0p0|databases/directoryassistant||small application for managing a LDAP address book|databases/directoryassistant/pkg/DESCR|Joerg Zinke <[email protected]>|databases|||py-gtk2-*:x11/py-gtk2 py-ldap-*:databases/py-ldap python-2.4*:lang/python/2.4|any|y|y|y|y
evolution-data-server-1.2.3p1|databases/evolution-data-server||data backends for the Evolution mail/PIM suite|databases/evolution-data-server/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|gnome-2::x11/gnome/libgnome iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext soup-2.2.>=7.0::devel/libsoup|:devel/gmake :devel/libtool bison-*:devel/bison bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext libgnomeui-*:x11/gnome/libgnomeui openldap-client-*:databases/openldap p5-XML-Parser-*:textproc/p5-XML-Parser|gettext->=0.10.38:devel/gettext|any|y|y|y|y
freetds-0.63p1|databases/freetds||project to document and implement the TDS protocol|databases/freetds/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|iconv.>=2::converters/libiconv|:devel/libtool|libiconv-*:converters/libiconv|any|y|y|y|y
freetds-0.63p1-msdblib|databases/freetds,msdblib||project to document and implement the TDS protocol|databases/freetds/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|iconv.>=2::converters/libiconv|:devel/libtool|libiconv-*:converters/libiconv|any|y|y|y|y
gdbm-1.8.3p0|databases/gdbm||GNU dbm|databases/gdbm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool||any|y|y|y|y
gnats-3.113.1p4|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-1.0beta1p4|databases/gq||GTK-based LDAP client|databases/gq/pkg/DESCR|Marc Balmer <[email protected]>|databases|gtk-x11-2.0,gdk-x11-2.0,gdk_pixbuf-2.0::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext ldap.>=7,lber.>=7::databases/openldap xml2::textproc/libxml|:devel/metaauto autoconf-2.57:devel/autoconf/2.57 cyrus-sasl-*:security/cyrus-sasl2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
iodbc-3.52.4|databases/iodbc||ODBC 3.x driver manager|databases/iodbc/pkg/DESCR|Andrew Dalgleish <[email protected]>|databases||:devel/libtool||any|y|y|y|y
libpqxx-2.5.3p0|databases/libpqxx||C++ client API for PostgreSQL|databases/libpqxx/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|pq.>=4:postgresql-client-*:databases/postgresql|:devel/libtool||any|y|y|y|y
luasqlite3-0.4.1|databases/luasqlite3||binding of sqlite3 for lua|databases/luasqlite3/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases lang/lua|sqlite3.>=8::databases/sqlite3|:devel/gmake lua->=5.1:lang/lua|:devel/gmake lua->=5.1:lang/lua|any|y|y|y|y
mdbtools-20060425p0|databases/mdbtools/snapshot,-main||read microsoft Access MDB|databases/mdbtools/snapshot/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|databases converters|glib-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/bison :devel/libtool :lang/gawk gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gmdb-20060425p0|databases/mdbtools/snapshot,-gmdb||graphical interface to MDB tools|databases/mdbtools/snapshot/pkg/DESCR-gmdb|The OpenBSD ports mailing-list <[email protected]>|databases converters|glib-2.0::devel/glib2 gnomeui-2::x11/gnome/libgnomeui iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mdb,mdbsql::databases/mdbtools/snapshot|:devel/bison :devel/libtool :lang/gawk gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
mnemo-h3-2.1.1p0|databases/mnemo|/var/www|memo application|databases/mnemo/pkg/DESCR|Marc Balmer <[email protected]>|databases|||horde->=3.0:devel/horde php5-imap-*:www/php5/extensions,-imap|any|y|y|y|y
mysql-client-5.0.27p1|databases/mysql,-main||multithreaded SQL database (client)|databases/mysql/pkg/DESCR-main|Brad Smith <[email protected]>|databases||:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
mysql-server-5.0.27p0|databases/mysql,-server||multithreaded SQL database (server)|databases/mysql/pkg/DESCR-server|Brad Smith <[email protected]>|databases|mysqlclient:mysql-client-5.0.*:databases/mysql|:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59|mysql-client-5.0.*:databases/mysql p5-DBD-mysql-*:databases/p5-DBD-mysql|any|y|y|y|y
mysql-tests-5.0.27|databases/mysql,-tests||multithreaded SQL database (regression test suite)|databases/mysql/pkg/DESCR-tests|Brad Smith <[email protected]>|databases||:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
mysql-administrator-1.2.4|databases/mysql-administrator||visual administration console for MySQL|databases/mysql-administrator/pkg/DESCR|Peter Stromberg <[email protected]>|databases|glade-2.0::devel/libglade2 glib-2.0,gmodule-2.0,gobject-2.0:glib2->=2.6.2:devel/glib2 gtkmm-2.4::x11/gtk2mm iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mysqlclient_r::databases/mysql pcre::devel/pcre xml2.>=6:libxml->=2.6.2:textproc/libxml|:devel/gmake gettext->=0.14.6:devel/gettext mysql-gui-common->=5:devel/mysql-gui-common|gettext->=0.10.38:devel/gettext mysql-gui-common->=5:devel/mysql-gui-common|any|y|y|y|y
mysql-query-browser-1.2.4|databases/mysql-query-browser||visual query tool for MySQL|databases/mysql-query-browser/pkg/DESCR|Peter Stromberg <[email protected]>|databases|glade-2.0::devel/libglade2 glib-2.0,gmodule-2.0,gobject-2.0,gthread-2.0:glib2->=2.6.2:devel/glib2 gtkhtml-3.6:gtkhtml3-3.6.*:www/gtkhtml3 gtkmm-2.4::x11/gtk2mm iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mysqlclient_r::databases/mysql pcre::devel/pcre xml2.>=6:libxml->=2.6.2:textproc/libxml|:devel/gmake :devel/libtool :devel/metaauto :textproc/p5-XML-Parser autoconf-2.59:devel/autoconf/2.59 gettext->=0.14.6:devel/gettext mysql-gui-common->=5:devel/mysql-gui-common|gettext->=0.10.38:devel/gettext mysql-gui-common->=5:devel/mysql-gui-common|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
mysqlcc-0.9.4p2|databases/mysqlcc||GUI client for MySQL|databases/mysqlcc/pkg/DESCR|Peter Stromberg <[email protected]>|databases|lib/mysql/mysqlclient.>=10::databases/mysql lib/qt3/qt-mt.>=3::x11/qt3|||any|y|y|y|y
mytop-1.4|databases/mytop||top clone for MySQL|databases/mytop/pkg/DESCR|Dave Steinberg <[email protected]>|databases perl5||p5-DBD-mysql->=2.9004:databases/p5-DBD-mysql p5-Term-ReadKey->=2.30:devel/p5-Term-ReadKey|p5-DBD-mysql->=2.9004:databases/p5-DBD-mysql p5-Term-ReadKey->=2.30:devel/p5-Term-ReadKey|any|y|y|y|y
ocaml-postgresql-1.4.6|databases/ocaml-postgresql||Objective Caml bindings for PostgreSQL|databases/ocaml-postgresql/pkg/DESCR|Anil Madhavapeddy <[email protected]>|databases|pq.>=3:postgresql-client-*:databases/postgresql|:devel/gmake :lang/ocaml||any|y|y|y|y
ocaml-sqlite3-0.2.0p1|databases/ocaml-sqlite3||Objective Caml bindings for SQLite3|databases/ocaml-sqlite3/pkg/DESCR|Anil Madhavapeddy <[email protected]>|databases|sqlite3.>=8::databases/sqlite3|:devel/gmake :devel/metaauto :lang/ocaml :sysutils/findlib autoconf-2.59:devel/autoconf/2.59 bzip2-*:archivers/bzip2|:sysutils/findlib|any|y|y|y|y
openldap-client-2.3.27p1|databases/openldap,-main||Open source LDAP software (client)|databases/openldap/pkg/DESCR-main|Marc Balmer <[email protected]>|databases net|sasl2::security/cyrus-sasl2|:devel/libtool||any|y|y|y|y
openldap-server-2.3.27p1|databases/openldap,-server||Open source LDAP software (server)|databases/openldap/pkg/DESCR-server|Marc Balmer <[email protected]>|databases net|sasl2::security/cyrus-sasl2|:devel/libtool|openldap-client-2.3.27p1:databases/openldap|any|y|y|y|y
p5-AsciiDB-TagFile-1.06p0|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-BerkeleyDB-0.27p0|databases/p5-BerkeleyDB||Berkeley DB module|databases/p5-BerkeleyDB/pkg/DESCR|Jakob Schlyter <[email protected]>|databases perl5|lib/db4/db.=4:db-4.*:databases/db/v4|||any|y|y|y|y
p5-Catalyst-Model-CDBI-0.11|databases/p5-Catalyst-Model-CDBI||catalyst model for Class::DBI|databases/p5-Catalyst-Model-CDBI/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases www perl5|||:databases/p5-Class-DBI-Loader :www/p5-Catalyst-Runtime|any|y|y|y|y
p5-Catalyst-Model-DBIC-Schema-0.18|databases/p5-Catalyst-Model-DBIC-Schema||model class for catalyst|databases/p5-Catalyst-Model-DBIC-Schema/pkg/DESCR|Simon Dassow <[email protected]>|databases perl5||:devel/p5-Module-Build|:databases/p5-DBIx-Class-Schema-Loader :www/p5-Catalyst-Devel|any|y|y|y|y
p5-Class-DBI-3.0.14|databases/p5-Class-DBI||simple database abstraction|databases/p5-Class-DBI/pkg/DESCR|Sam Smith <[email protected]>|databases perl5||:databases/p5-Ima-DBI :devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-Trigger :devel/p5-Clone :devel/p5-Universal-moniker :devel/p5-version|:databases/p5-Ima-DBI :devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-Trigger :devel/p5-Clone :devel/p5-Universal-moniker :devel/p5-version|any|y|y|y|y
p5-Class-DBI-AbstractSearch-0.07|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-Limit|any|y|y|y|y
p5-Class-DBI-AsForm-2.42|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-Plugin-Type :www/p5-HTML-Tree|any|y|y|y|y
p5-Class-DBI-FromCGI-1.00|databases/p5-Class-DBI-FromCGI||update Class::DBI objects through CGI::Untaint|databases/p5-Class-DBI-FromCGI/pkg/DESCR|Sam Smith <[email protected]>|databases www perl5|||:databases/p5-Class-DBI :www/p5-CGI-Untaint|any|y|y|y|y
p5-Class-DBI-FromForm-0.04|databases/p5-Class-DBI-FromForm||update Class:DBI data from html forms|databases/p5-Class-DBI-FromForm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|www databases perl5|||:databases/p5-Class-DBI|any|y|y|y|y
p5-Class-DBI-Loader-0.32|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|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|any|y|y|y|y
p5-Class-DBI-Pager-0.08|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 :devel/p5-Exporter-Lite|any|y|y|y|y
p5-Class-DBI-Plugin-RetrieveAll-1.04|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|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.11|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|any|y|y|y|y
p5-Class-DBI-mysql-1.00|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|any|y|y|y|y
p5-DBD-CSV-0.21p0|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|any|y|y|y|y
p5-DBD-LDAP-0.09|databases/p5-DBD-LDAP||DBI driver for LDAP databases|databases/p5-DBD-LDAP/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5 perl5||:databases/p5-DBI :databases/p5-ldap|:databases/p5-DBI :databases/p5-ldap|any|y|y|y|y
p5-DBD-Pg-1.47|databases/p5-DBD-Pg||access to PostgreSQL databases through the DBI|databases/p5-DBD-Pg/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|databases perl5|pq.>=2:postgresql-client-*:databases/postgresql|:databases/p5-DBI|:databases/p5-DBI|!m88k sh vax|y|y|y|y
p5-DBD-SQLite-1.12v0|databases/p5-DBD-SQLite||SQLite drivers for the Perl DBI|databases/p5-DBD-SQLite/pkg/DESCR|Robert Nagy <[email protected]>|databases perl5 perl5|sqlite3::databases/sqlite3|p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|any|y|y|y|y
p5-DBD-SQLite2-0.33p0|databases/p5-DBD-SQLite2||SQLite2 drivers for the Perl DBI|databases/p5-DBD-SQLite2/pkg/DESCR|Robert Nagy <[email protected]>|databases perl5||p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|any|y|y|y|y
p5-DBD-Sybase-1.04p1|databases/p5-DBD-Sybase||Sybase database driver for the DBI module|databases/p5-DBD-Sybase/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|ct.>=3::databases/freetds iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.10.38:devel/gettext gettext->=0.14.6:devel/gettext p5-DBI-*:databases/p5-DBI|gettext->=0.10.38:devel/gettext p5-DBI-*:databases/p5-DBI|!m88k sh vax|y|y|y|y
p5-DBD-mysql-3.0008|databases/p5-DBD-mysql||MySQL drivers for the Perl DBI|databases/p5-DBD-mysql/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|lib/mysql/mysqlclient.>=10::databases/mysql|p5-DBI->=1.08:databases/p5-DBI|p5-DBI->=1.08:databases/p5-DBI|any|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.52p0|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|any|y|y|y|y
p5-DBIx-Class-0.07003p0|databases/p5-DBIx-Class||object-oriented database access|databases/p5-DBIx-Class/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5||:databases/p5-DBI :databases/p5-SQL-Abstract :databases/p5-SQL-Abstract-Limit :devel/p5-Carp-Clan :devel/p5-Class-Data-Accessor :devel/p5-Module-Build p5-Class-C3->=0.13:devel/p5-Class-C3 p5-Data-Page->=2.00:databases/p5-Data-Page|:databases/p5-DBI :databases/p5-SQL-Abstract :databases/p5-SQL-Abstract-Limit :devel/p5-Carp-Clan :devel/p5-Class-Data-Accessor p5-Class-C3->=0.13:devel/p5-Class-C3 p5-Data-Page->=2.00:databases/p5-Data-Page|any|y|y|y|y
p5-DBIx-Class-HTMLWidget-0.07|databases/p5-DBIx-Class-HTMLWidget||publish DBIx::Class on the web|databases/p5-DBIx-Class-HTMLWidget/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases www perl5|||:databases/p5-DBIx-Class :www/p5-HTML-Widget|any|y|y|y|y
p5-DBIx-Class-Schema-Loader-0.03009p0|databases/p5-DBIx-Class-Schema-Loader||dynamic definition of a DBIx::Class::Schema|databases/p5-DBIx-Class-Schema-Loader/pkg/DESCR|Simon Dassow <[email protected]>|databases perl5||:devel/p5-Module-Build|:databases/p5-DBIx-Class :textproc/p5-Lingua-EN-Inflect :textproc/p5-Lingua-EN-Inflect-Number p5-Universal-exports-<0.05|p5-Universal-require-*:devel/p5-Universal-require|any|y|y|y|y
p5-DBIx-Class-UUIDColumns-0.01000|databases/p5-DBIx-Class-UUIDColumns||unique identifiers as columns in DBIx::Class|databases/p5-DBIx-Class-UUIDColumns/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5||:devel/p5-Module-Build|:databases/p5-DBIx-Class :devel/p5-Data-UUID|any|y|y|y|y
p5-DBIx-Class-Validation-0.01001|databases/p5-DBIx-Class-Validation||data validation for DBIx::Class|databases/p5-DBIx-Class-Validation/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5||:devel/p5-Module-Build|:databases/p5-DBIx-Class :devel/p5-FormValidator-Simple|any|y|y|y|y
p5-DBIx-ContextualFetch-1.03|databases/p5-DBIx-ContextualFetch||add contextual fetches to DBI|databases/p5-DBIx-ContextualFetch/pkg/DESCR|Sam Smith <[email protected]>|databases perl5|||p5-DBI->=1.35:databases/p5-DBI|any|y|y|y|y
p5-DBIx-DBSchema-0.31|databases/p5-DBIx-DBSchema||database-independent schema objects|databases/p5-DBIx-DBSchema/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|databases perl5|||:devel/p5-FreezeThaw|any|y|y|y|y
p5-DBIx-SearchBuilder-1.45|databases/p5-DBIx-SearchBuilder||encapsulate SQL queries and rows in simple perl objects|databases/p5-DBIx-SearchBuilder/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|databases perl5||:databases/p5-DBD-SQLite :databases/p5-DBIx-DBSchema :devel/p5-Cache-Simple-TimedExpiry :devel/p5-Class-Accessor :devel/p5-Class-ReturnValue :devel/p5-Clone :devel/p5-Want :devel/p5-capitalization|:databases/p5-DBD-SQLite :databases/p5-DBIx-DBSchema :devel/p5-Cache-Simple-TimedExpiry :devel/p5-Class-Accessor :devel/p5-Class-ReturnValue :devel/p5-Clone :devel/p5-Want :devel/p5-capitalization|any|y|y|y|y
p5-DBIx-XHTML_Table-1.36|databases/p5-DBIx-XHTML_Table||create HTML table from sql queries|databases/p5-DBIx-XHTML_Table/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases www perl5|||p5-DBI->=1.20:databases/p5-DBI|any|y|y|y|y
p5-Data-Page-2.00|databases/p5-Data-Page||pager utility|databases/p5-Data-Page/pkg/DESCR|Sean Comeau <[email protected]>|databases perl5|||:devel/p5-Class-Accessor-Chained :devel/p5-Test-Exception|any|y|y|y|y
p5-GDBM_File-1.08|databases/p5-GDBM_File||perl interface to gdbm|databases/p5-GDBM_File/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|gdbm::databases/gdbm|bzip2-*:archivers/bzip2||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|any|y|y|y|y
p5-Jifty-DBI-0.25p0|databases/p5-Jifty-DBI||database OO schema for Jifty|databases/p5-Jifty-DBI/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases www perl5|||:databases/p5-DBI :databases/p5-DBIx-DBSchema :databases/p5-Data-Page :devel/p5-Cache-Memcached :devel/p5-Cache-Simple-TimedExpiry :devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-ReturnValue :devel/p5-Clone :devel/p5-DateTime :devel/p5-DateTime-Format-ISO8601 :devel/p5-DateTime-Format-Strptime :devel/p5-Exporter-Lite :devel/p5-Universal-require :textproc/p5-Lingua-EN-Inflect|any|y|y|y|y
p5-Rose-DateTime-0.532|databases/p5-Rose-DateTime||datetime helper functions for Rose|databases/p5-Rose-DateTime/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5|||:devel/p5-DateTime|any|y|y|y|y
p5-Rose-DB-0.731|databases/p5-Rose-DB||DBI wrapper and abstraction layer|databases/p5-Rose-DB/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|||:databases/p5-DBI :databases/p5-Rose-DateTime :databases/p5-Rose-Object :databases/p5-SQL-ReservedWords :devel/p5-Clone :devel/p5-DateTime-Format-MySQL :devel/p5-DateTime-Format-Pg :devel/p5-Time-Clock :math/p5-Bit-Vector|any|y|y|y|y
p5-Rose-DB-Object-0.758|databases/p5-Rose-DB-Object||object-oriented database mapper|databases/p5-Rose-DB-Object/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|||:databases/p5-Rose-DB :devel/p5-Clone|any|y|y|y|y
p5-Rose-Object-0.821|databases/p5-Rose-Object||object oriented DBMS for perl|databases/p5-Rose-Object/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5|||:databases/p5-Rose-DateTime|any|y|y|y|y
p5-SQL-Abstract-1.21|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-Abstract-Limit-0.12|databases/p5-SQL-Abstract-Limit||portability layer for LIMIT emulation|databases/p5-SQL-Abstract-Limit/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|||:databases/p5-DBI :databases/p5-SQL-Abstract|any|y|y|y|y
p5-SQL-ReservedWords-0.7|databases/p5-SQL-ReservedWords||reserved words in SQL and specific databases|databases/p5-SQL-ReservedWords/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5||:devel/p5-Module-Build|:devel/p5-Sub-Exporter|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-SQL-Translator-0.07|databases/p5-SQL-Translator||database schema manipulation|databases/p5-SQL-Translator/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases devel perl5||:devel/p5-Module-Build|:devel/p5-Class-Base :devel/p5-Class-Data-Inheritable :devel/p5-Class-MakeMethods :devel/p5-Log-Log4perl :devel/p5-Parse-RecDescent :textproc/p5-Template|any|y|y|y|y
p5-Tie-DBI-0.91p0|databases/p5-Tie-DBI||Tie hashes to DBI relational databases|databases/p5-Tie-DBI/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5||||any|y|y|y|y
p5-ldap-0.3202p2|databases/p5-ldap||client interface to LDAP servers|databases/p5-ldap/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5||p5-Authen-SASL->=2:security/p5-Authen-SASL 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-Authen-SASL->=2:security/p5-Authen-SASL 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.>=3:postgresql-client-*:databases/postgresql|||any|y|y|y|y
sybperl-2.18p2|databases/p5-sybperl||Sybase database access in Perl|databases/p5-sybperl/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext tds.>=4,sybdb.>=5,ct.>=3::databases/freetds|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
p5-Tangram-2.10|databases/p5-Tangram||object-oriented DBMS|databases/p5-Tangram/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases perl5|||:databases/p5-DBI :devel/p5-Class-Date :devel/p5-Data-Lazy :devel/p5-Set-Object|any|y|y|y|y
pear-DB-1.7.6|databases/pear-DB|/var/www|database abstraction layer for PHP|databases/pear-DB/pkg/DESCR|Marc Balmer <[email protected]>|net pear||php5-pear-*:www/php5/core,-pear|php5-pear-*:www/php5/core,-pear|any|y|y|y|y
pgadmin3-1.4.3|databases/pgadmin3||administration and development platform for PostgreSQL|databases/pgadmin3/pkg/DESCR|Alexandre Anriot <[email protected]>|databases devel|pq.>=4::databases/postgresql wx_base_xml,wx_base_odbc,wx_gtk2_html,wx_gtk2_stc,wx_gtk2_ogl,wx_gtk2_adv,wx_gtk2_xrc,wx_base_net,wx_gtk2_dbgrid,wx_gtk2_qa,wx_base,wx_gtk2_core:wxWidgets-gtk2->=2.6.3:x11/wxWidgets|||any|y|y|y|y
postgresql-docs-8.1.5|databases/postgresql,-docs||PostgreSQL RDBMS documentation|databases/postgresql/pkg/DESCR-docs|Marc Balmer <[email protected]>|databases||:devel/gmake||!m88k sh vax|y|y|y|y
postgresql-client-8.1.5p1|databases/postgresql,-main||PostgreSQL RDBMS (client)|databases/postgresql/pkg/DESCR-main|Marc Balmer <[email protected]>|databases||:devel/gmake||!m88k sh vax|y|y|y|y
postgresql-server-8.1.5p4|databases/postgresql,-server||PostgreSQL RDBMS (server)|databases/postgresql/pkg/DESCR-server|Marc Balmer <[email protected]>|databases|pq.>=4:postgresql-client-8.1.5:databases/postgresql|:devel/gmake||!m88k sh vax|y|y|y|y
py-cdb-0.32p0|databases/py-cdb||Python extension module for accessing cdb databases|databases/py-cdb/pkg/DESCR|Lars Hansson <[email protected]>|databases||python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
python-ldap-2.2.0|databases/py-ldap||LDAP client API for Python|databases/py-ldap/pkg/DESCR|Marc Balmer <[email protected]>|databases|ldap_r.>=7,lber.>=7::databases/openldap sasl2.>=2::security/cyrus-sasl2|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-mysql-1.2.0p1|databases/py-mysql||Python interface to MySQL|databases/py-mysql/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|lib/mysql/mysqlclient_r.>=14::databases/mysql|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-psycopg-1.1.21p3|databases/py-psycopg,-main||PostgreSQL database adapter for Python|databases/py-psycopg/pkg/DESCR-main|Aleksander Piotrowski <[email protected]>|databases||postgresql-server-*:databases/postgresql,-server py-mxDateTime->=2.0.0:devel/py-mxDateTime python-2.4*:lang/python/2.4|postgresql-client-*:databases/postgresql py-mxDateTime->=2.0.0:devel/py-mxDateTime python-2.4*:lang/python/2.4|any|y|y|y|y
py-psycopg-zope-1.1.21p0|databases/py-psycopg,-zope||database adapter for Zope|databases/py-psycopg/pkg/DESCR-zope|Aleksander Piotrowski <[email protected]>|databases||postgresql-server-*:databases/postgresql,-server py-mxDateTime->=2.0.0:devel/py-mxDateTime python-2.4*:lang/python/2.4|py-psycopg-1.1.21*:databases/py-psycopg python-2.4*:lang/python/2.4 zope-*:www/zope|any|y|y|y|y
py-sqlite-1.0p1|databases/py-sqlite||SQLite adapter for Python|databases/py-sqlite/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|sqlite.>=8.6::databases/sqlite|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-sqlite2-2.2.2p0|databases/py-sqlite2||SQLite3 adapter for Python|databases/py-sqlite2/pkg/DESCR|Eric Faurot <[email protected]>|databases devel|sqlite3.>=8.6::databases/sqlite3|python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
py-sybase-0.36p1|databases/py-sybase||Python interface to the Sybase relational database system|databases/py-sybase/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases|ct.>=1::databases/freetds iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext python-2.4*:lang/python/2.4|gettext->=0.10.38:devel/gettext python-2.4*:lang/python/2.4|any|y|y|y|y
qdbm-1.8.74|databases/qdbm||high performance embedded database library|databases/qdbm/pkg/DESCR|Bernd Ahlers <[email protected]>|databases|iconv.>=2::converters/libiconv||libiconv-*:converters/libiconv|any|y|y|y|y
ruby-activerecord-1.14.4p1|databases/ruby-activerecord||object relation model implementation for ruby|databases/ruby-activerecord/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|databases||:devel/ruby-gems :lang/ruby ruby-activesupport-1.3.1:devel/ruby-activesupport|:devel/ruby-gems :lang/ruby ruby-activesupport-1.3.1:devel/ruby-activesupport|any|y|y|y|y
ruby-bdb-0.5.9p0|databases/ruby-bdb||ruby interface to Berkeley DB|databases/ruby-bdb/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases ruby|lib/db4/db.>=4.2:db-4.*:databases/db/v4 ruby.>=1::lang/ruby|:lang/ruby|:lang/ruby|any|y|y|y|y
ruby-postgres-0.7.1.2006.04.06p1|databases/ruby-postgres||access a PostgreSQL database from ruby|databases/ruby-postgres/pkg/DESCR|Markus Friedl <[email protected]>|databases|pq.>=2::databases/postgresql ruby.>=1::lang/ruby|:devel/ruby-gems :lang/ruby|:devel/ruby-gems :lang/ruby|any|y|y|y|y
ruby-sqlite3-1.1.0|databases/ruby-sqlite3||access a SQLite3 database from ruby|databases/ruby-sqlite3/pkg/DESCR|Bernd Ahlers <[email protected]>|databases|ruby.>=1::lang/ruby sqlite3.>=8:sqlite3->=3.3.4:databases/sqlite3|:devel/ruby-gems :devel/swig :lang/ruby|:devel/ruby-gems :lang/ruby|any|y|y|y|y
sqlite-2.8.17p1|databases/sqlite||Embedded SQL implementation|databases/sqlite/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/gmake :devel/libtool :devel/metaauto :lang/tcl/8.4 autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
sqlite3-3.3.7p0|databases/sqlite3,-main||Embedded SQL implementation|databases/sqlite3/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|databases||:devel/libtool||any|y|y|y|y
sqlite3-tcl-3.3.7|databases/sqlite3,-tcl||TCL bindings for Sqlite3|databases/sqlite3/pkg/DESCR-tcl|The OpenBSD ports mailing-list <[email protected]>|databases|sqlite3.>=8.6::databases/sqlite3 tcl84.>=1.0:tcl-8.4.*:lang/tcl/8.4|:devel/libtool||any|y|y|y|y
sqlitebrowser-1.3|databases/sqlitebrowser||graphical interface to sqlite databases|databases/sqlitebrowser/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases x11|lib/qt3/qt-mt.>=3::x11/qt3 sqlite3::databases/sqlite3|||any|y|y|y|y
sqlports-0.5|databases/sqlports||sqlite database of ports|databases/sqlports/pkg/DESCR|Marc Espie <[email protected]>|databases||:databases/p5-DBD-SQLite||any|y|y|y|y
sqsh-2.1p1|databases/sqsh||SQL shell|databases/sqsh/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|databases shells|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext tds.>=3,ct.>=2::databases/freetds|gettext->=0.14.6: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|The OpenBSD ports mailing-list <[email protected]>|databases|forms::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.13p2|devel/ORBit||high-performance CORBA ORB with support for the C language|devel/ORBit/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib.>=1.2,gmodule.>=1.2::devel/glib popt::devel/popt|:devel/gmake :devel/libtool :devel/metaauto autoconf-2.13:devel/autoconf/2.13||any|y|y|y|y
ORBit2-2.13.3|devel/ORBit2||high-performance CORBA Object Request Broker|devel/ORBit2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|IDL-2::devel/libIDL glib-2.0,gmodule-2.0,gobject-2.0,gthread-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/gmake :devel/libtool :devel/metaauto autoconf-2.59:devel/autoconf/2.59 bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
ald-0.1.7|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|:lang/ghc|i386 amd64|y|y|y|y
apache-ant-1.6.5p5|devel/apache-ant||java replacement for make|devel/apache-ant/pkg/DESCR|Kurt Miller <[email protected]>|devel||:archivers/gtar|:java/javaPathHelper jdk-1.3.1*|jdk->=1.4.2p9|kaffe-*|jdk-linux-1.3.1*:devel/jdk/1.3|arm i386 powerpc sparc|y|y|y|y
apr-1.2.7|devel/apr||Apache Portable Runtime|devel/apr/pkg/DESCR|Aleksander Piotrowski <[email protected]>|devel||:devel/libtool||any|y|y|y|y
apr-util-1.2.7|devel/apr-util||companion library to APR|devel/apr-util/pkg/DESCR|Aleksander Piotrowski <[email protected]>|devel|apr-1.=2:apr-1.2.7:devel/apr expat.>=4:expat->=1.95.6:textproc/expat iconv.>=2::converters/libiconv lib/db4/db.=4:db-4.*:databases/db/v4|:devel/libtool|libiconv-*:converters/libiconv|any|y|y|y|y
argtable-2.6p0|devel/argtable||ANSI C command line parser|devel/argtable/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel||:devel/libtool||any|y|y|y|y
asp2php-0.76.13|devel/asp2php||convert ASP code to PHP code|devel/asp2php/pkg/DESCR|The OpenBSD ports mailing-list <[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|The OpenBSD ports mailing-list <[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.10.3p1|devel/atk||accessibility toolkit used by gtk+|devel/atk/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0.>=600.0,gmodule-2.0.>=600.0,gobject-2.0.>=600.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
atlas-0.4.3.1p1|devel/atlas||C++ reference implementation of the Atlas protocol|devel/atlas/pkg/DESCR|Peter Valchev <[email protected]>|devel||:devel/libtool||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.52p1|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.54p1|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.56p0|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.57p0|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.58p1|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.59p1|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
autoconf-2.60p0|devel/autoconf/2.60||automatically configure source code on many Un*x platforms|devel/autoconf/2.60/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autoconf-2.61|devel/autoconf/2.61||automatically configure source code on many Un*x platforms|devel/autoconf/2.61/pkg/DESCR|Marc Espie <[email protected]>|devel||help2man-*:devel/help2man||any|y|y|y|y
autogen-5.8.7p0|devel/autogen||automatic text creation from templates|devel/autogen/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|guile,guile-ltdl::lang/guile iconv.>=2::converters/libiconv xml2::textproc/libxml|:devel/libtool|libiconv-*:converters/libiconv|any|y|y|y|y
automake-1.4.6|devel/automake/1.4||GNU Standards-compliant Makefile generator|devel/automake/1.4/pkg/DESCR|Jason Ish <[email protected]>|devel||||any|y|y|y|y
automake-1.8.5p1|devel/automake/1.8||GNU standards-compliant Makefile generator|devel/automake/1.8/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/metaauto|:devel/metaauto autoconf-2.59:devel/autoconf/2.59|any|y|y|y|y
automake-1.9.6p1|devel/automake/1.9||GNU standards-compliant Makefile generator|devel/automake/1.9/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/metaauto|:devel/metaauto autoconf-2.59:devel/autoconf/2.59|any|y|y|y|y
avr-binutils-2.15|devel/avr/binutils||Atmel AVR 8-bit RISC microcontrollers' GNU binutils|devel/avr/binutils/pkg/DESCR|Martin Reindl <[email protected]> Alexandre Anriot <[email protected]>|devel||bzip2-*:archivers/bzip2||any|y|y|y|y
avr-libc-1.4.4p0|devel/avr/libc||Atmel AVR 8-bit RISC microcontrollers' libc|devel/avr/libc/pkg/DESCR|Martin Reindl <[email protected]> Alexandre Anriot <[email protected]>|devel||:devel/avr/binutils :devel/avr/gcc :devel/gmake bzip2-*:archivers/bzip2|:devel/avr/binutils :devel/avr/gcc|any|y|y|y|y
avr-gcc-3.4.5p2|devel/avr/gcc||Atmel AVR 8-bit RISC microcontrollers' XGCC|devel/avr/gcc/pkg/DESCR|Martin Reindl <[email protected]> Alexandre Anriot <[email protected]>|devel||:devel/autoconf/2.13 :devel/avr/binutils :devel/gmake :devel/metaauto bison-*:devel/bison bzip2-*:archivers/bzip2||any|y|y|y|y
avr-gdb-6.3p0|devel/avr/gdb||Atmel AVR 8-bit RISC microcontrollers' GNU gdb|devel/avr/gdb/pkg/DESCR|Martin Reindl <[email protected]> Alexandre Anriot <[email protected]>|devel||||any|y|y|y|y
bison-2.1p0|devel/bison||GNU parser generator|devel/bison/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/m4 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
blame-1.1|devel/blame||RCS equivalent of CVS's annotate command|devel/blame/pkg/DESCR|Alan Post <[email protected]>|devel||||any|y|y|y|y
bluetooth-libs-20050716|devel/bluetooth-libs||bluetooth network libraries|devel/bluetooth-libs/pkg/DESCR|Alexander Yurchenko <[email protected]>|devel net||||any|y|y|y|y
boehm-gc-6.2p1|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/libtool :devel/metaauto autoconf-2.54:devel/autoconf/2.54||!hppa powerpc vax|y|y|y|y
boost-headers-1.33.1p1|devel/boost,-main||free peer-reviewed portable C++ source libraries (headers)|devel/boost/pkg/DESCR-main|Deanna Phillips <[email protected]>|devel||||any|y|y|y|y
boost-libs-1.33.1p0|devel/boost,-libs||free peer-reviewed portable C++ source libraries (libraries)|devel/boost/pkg/DESCR-libs|Deanna Phillips <[email protected]>|devel||||any|y|y|y|y
c2hs-0.13.6|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 amd64|y|y|y|y
catalyst-1.90|devel/catalyst||catalyst development bundle|devel/catalyst/pkg/DESCR|Sean Comeau <[email protected]>|devel www perl5|||:databases/p5-Catalyst-Model-DBIC-Schema :databases/p5-DBD-SQLite :devel/p5-Catalyst-Plugin-StackTrace :devel/p5-Date-Calc :devel/p5-Params-Validate :devel/p5-Test-WWW-Mechanize-Catalyst :security/p5-Catalyst-Plugin-Authentication :security/p5-Catalyst-Plugin-Authentication-Store-DBIC :security/p5-Catalyst-Plugin-Authentication-Store-Htpasswd :security/p5-Catalyst-Plugin-Authorization-ACL :security/p5-Catalyst-Plugin-Authorization-Roles :textproc/p5-Catalyst-View-TT :www/p5-CGI-Simple :www/p5-Catalyst-Action-RenderView :www/p5-Catalyst-Devel :www/p5-Catalyst-Log-Log4perl :www/p5-Catalyst-Plugin-ConfigLoader :www/p5-Catalyst-Plugin-DefaultEnd :www/p5-Catalyst-Plugin-HTML-Widget :www/p5-Catalyst-Plugin-I18N :www/p5-Catalyst-Plugin-Pluggable :www/p5-Catalyst-Plugin-Prototype :www/p5-Catalyst-Plugin-Session :www/p5-Catalyst-Plugin-Session-State-Cookie :www/p5-Catalyst-Plugin-Session-State-URI :www/p5-Catalyst-Plugin-Session-Store-File :www/p5-Catalyst-Plugin-Singleton :www/p5-Catalyst-Plugin-SubRequest :www/p5-Catalyst-Plugin-XMLRPC :www/p5-Catalyst-Runtime|any|y|y|y|y
catalyst-tutorial-0.02p1v0|devel/catalyst-tutorial||catalyst packages for the tutorial|devel/catalyst-tutorial/pkg/DESCR|Marc Espie <[email protected]>|devel www perl5|||:databases/p5-Catalyst-Model-DBIC-Schema :databases/p5-DBD-SQLite :databases/p5-DBIx-Class :databases/p5-DBIx-Class-HTMLWidget :devel/p5-Catalyst-Manual :devel/p5-Catalyst-Plugin-StackTrace :security/p5-Catalyst-Plugin-Authentication :security/p5-Catalyst-Plugin-Authentication-Store-DBIC :security/p5-Catalyst-Plugin-Authorization-ACL :security/p5-Catalyst-Plugin-Authorization-Roles :textproc/p5-Catalyst-View-TT :www/p5-Catalyst-Devel :www/p5-Catalyst-Plugin-ConfigLoader :www/p5-Catalyst-Plugin-HTML-Widget :www/p5-Catalyst-Plugin-Session :www/p5-Catalyst-Plugin-Session-State-Cookie :www/p5-Catalyst-Plugin-Session-Store-FastMmap :www/p5-Catalyst-Plugin-Static-Simple :www/p5-Catalyst-Runtime|any|y|y|y|y
ccache-2.4p0|devel/ccache||compiler cache|devel/ccache/pkg/DESCR|Ben Lovett <[email protected]>|devel||||any|y|y|y|y
cflow-1.1|devel/cflow||analyze C source files and print a call graph|devel/cflow/pkg/DESCR|Louis Bertrand <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|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
chmlib-0.38p0|devel/chmlib||handling CHM files|devel/chmlib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel textproc||:devel/gmake :devel/libtool||any|y|y|y|y
chora-1.2.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
cil-1.3.5|devel/cil||framework for analysis and transformation of C|devel/cil/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel lang||:devel/gmake :devel/metaauto :lang/ocaml autoconf-2.52:devel/autoconf/2.52||i386 amd64 macppc|y|y|y|y
cmake-2.4.5|devel/cmake||portable build system|devel/cmake/pkg/DESCR|Marc Espie <[email protected]>|devel|curl::net/curl expat::textproc/expat xmlrpc,xmlrpc_client,xmlrpc_util,xmlrpc_xmlparse,xmlrpc_xmltok::net/xmlrpc-c|||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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
cpphs-1.0|devel/cpphs||liberalised reimplementation of cpp in Haskell|devel/cpphs/pkg/DESCR|Don Stewart <[email protected]>|devel||:lang/ghc|:lang/ghc|i386 amd64|y|y|y|y
cppunit-1.10.2|devel/cppunit||c++ unit testing framework|devel/cppunit/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/gmake :devel/libtool||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
cvs20hg-20060714|devel/cvs20hg||fast, incremental CVS to Mercurial conversion|devel/cvs20hg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|::devel/py-rcsparse|:devel/gmake bzip2-*:archivers/bzip2 python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
cvs2cl-2.58|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.5.1p1|devel/cvsgraph||graphical representation of CVS repository|devel/cvsgraph/pkg/DESCR|Aleksander Piotrowski <[email protected]>|devel|gd.>=18::graphics/gd iconv.>=2::converters/libiconv||libiconv-*:converters/libiconv|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
cvsps-2.1|devel/cvsps||generate patchsets from CVS repositories|devel/cvsps/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/gmake||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.6p3|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-1.0.8|devel/darcs||advanced revision control system written in Haskell|devel/darcs/pkg/DESCR|Jon Olsson <[email protected]>|devel|curl.>=2::net/curl gmp::devel/gmp|:devel/gmake :lang/ghc||i386 amd64|y|y|y|y
ddd-3.3.11|devel/ddd||Data Display Debugger, graphical front-end for GDB, etc|devel/ddd/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|Xm.>=2::x11/openmotif|:devel/gmake :devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
dejagnu-1.4.3p4|devel/dejagnu||framework to test programs|devel/dejagnu/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||tcl-8.4.*:lang/tcl/8.4|expect-*:lang/expect,no_tk tcl-8.4.*:lang/tcl/8.4|any|y|y|y|y
desktop-file-utils-0.10p1|devel/desktop-file-utils||utilities for 'desktop' entries|devel/desktop-file-utils/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext popt.>=0.3::devel/popt|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
doc++-3.4.10p0|devel/doc++||documentation system for C, C++, IDL and Java|devel/doc++/pkg/DESCR|Kevin Lo <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext ghostscript-*:print/ghostscript/gnu teTeX_base-*:print/teTeX/base|any|y|y|y|y
doxygen-1.4.7p0|devel/doxygen,-main||documentation system for C++/C/Java/Objective-C/IDL and others|devel/doxygen/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|devel textproc|png.>=4::graphics/png|||any|y|y|y|y
eclipse-sdk-3.2.1|devel/eclipse/sdk,-main||general-purpose, extensible IDE for Java & other langs|devel/eclipse/sdk/pkg/DESCR-main|Kurt Miller <[email protected]>|devel/eclipse java|gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2|:devel/gmake apache-ant->=1.6.1:devel/apache-ant gettext->=0.14.6:devel/gettext jdk-1.5.0:devel/jdk/1.5 mozilla-devel->=1.7.13p2:www/mozilla,-devel unzip-*:archivers/unzip|:java/javaPathHelper jdk->=1.5.0:devel/jdk/1.5 swt-3.2.1:devel/eclipse/sdk,-swt|amd64 i386|n|y|n|y
swt-3.2.1|devel/eclipse/sdk,-swt||widget toolkit for Java|devel/eclipse/sdk/pkg/DESCR-swt|Kurt Miller <[email protected]>|devel/eclipse java|gtk-x11-2.0::x11/gtk+2|:devel/gmake apache-ant->=1.6.1:devel/apache-ant gettext->=0.14.6:devel/gettext jdk-1.5.0:devel/jdk/1.5 mozilla-devel->=1.7.13p2:www/mozilla,-devel unzip-*:archivers/unzip|gettext->=0.10.38:devel/gettext jdk->=1.5.0:devel/jdk/1.5|amd64 i386|n|y|n|y
swt-gnome-3.2.1|devel/eclipse/sdk,-gnome||gnome integration library for swt/eclipse|devel/eclipse/sdk/pkg/DESCR-gnome|Kurt Miller <[email protected]>|devel/eclipse java|gnomeui-2::x11/gnome/libgnomeui|:devel/gmake apache-ant->=1.6.1:devel/apache-ant gettext->=0.14.6:devel/gettext jdk-1.5.0:devel/jdk/1.5 mozilla-devel->=1.7.13p2:www/mozilla,-devel unzip-*:archivers/unzip|swt-3.2.1:devel/eclipse/sdk,-swt|amd64 i386|n|y|n|y
swt-browser-3.2.1|devel/eclipse/sdk,-browser||HTML Browser Widget library for swt/eclipse|devel/eclipse/sdk/pkg/DESCR-browser|Kurt Miller <[email protected]>|devel/eclipse java|mozilla/gtkembedmoz,mozilla/xpcom:mozilla->=1.7.13p2:www/mozilla|:devel/gmake apache-ant->=1.6.1:devel/apache-ant gettext->=0.14.6:devel/gettext jdk-1.5.0:devel/jdk/1.5 mozilla-devel->=1.7.13p2:www/mozilla,-devel unzip-*:archivers/unzip|swt-3.2.1:devel/eclipse/sdk,-swt|amd64 i386|n|y|n|y
eclipse-plugin-emf-sdk-2.2.0|devel/eclipse/plugins/emf||Eclipse Modeling Framework (EMF)|devel/eclipse/plugins/emf/pkg/DESCR|Kurt Miller <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-sdk->=3.2:devel/eclipse/sdk|amd64 i386|n|y|n|y
eclipse-plugin-epic-0.4.0|devel/eclipse/plugins/epic||Perl plugin for Eclipse IDE|devel/eclipse/plugins/epic/pkg/DESCR|Carlos Valiente <[email protected]>|devel/eclipse/plugins perl||unzip-*:archivers/unzip|eclipse-sdk->=3.1:devel/eclipse/sdk|amd64 i386|n|y|n|y
eclipse-plugin-gef-sdk-3.2|devel/eclipse/plugins/gef||graphical editing environment for eclipse|devel/eclipse/plugins/gef/pkg/DESCR|Kurt Miller <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-sdk->=3.2:devel/eclipse/sdk|amd64 i386|n|y|n|y
eclipse-plugin-ivyde-1.1.0|devel/eclipse/plugins/ivyde||IVY plug-in for Eclipse IDE|devel/eclipse/plugins/ivyde/pkg/DESCR|Matthias Kilian <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-sdk-*:devel/eclipse/sdk|amd64 i386|y|y|y|y
eclipse-plugin-jem-sdk-1.2|devel/eclipse/plugins/jem||java EMF model runtime for Eclipse|devel/eclipse/plugins/jem/pkg/DESCR|Ian Darwin <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-sdk->=3.2:devel/eclipse/sdk|amd64 i386|n|y|n|y
eclipse-plugin-rdt-0.8.0|devel/eclipse/plugins/rdt||Ruby Development Tools for Eclipse IDE|devel/eclipse/plugins/rdt/pkg/DESCR|Carlos Valiente <[email protected]>|devel/eclipse/plugins ruby||unzip-*:archivers/unzip|eclipse-sdk->=3.1:devel/eclipse/sdk ruby-*:lang/ruby|amd64 i386|n|y|n|y
eclipse-plugin-subclipse-1.0.3|devel/eclipse/plugins/subclipse||SubVersion (CVS replacement) plug-in for Eclipse IDE|devel/eclipse/plugins/subclipse/pkg/DESCR|Ian Darwin <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-sdk-*:devel/eclipse/sdk|amd64 i386|n|y|n|y
eclipse-plugin-uml2-sdk-2.0.0|devel/eclipse/plugins/uml2||UML diagram framework for Eclipse|devel/eclipse/plugins/uml2/pkg/DESCR|Kurt Miller <[email protected]>|devel/eclipse/plugins java||unzip-*:archivers/unzip|eclipse-plugin-emf-sdk->=2.2:devel/eclipse/plugins/emf|amd64 i386|n|y|n|y
eclipse-plugin-wtp-sdk-1.5.0p0|devel/eclipse/plugins/wtp||Web Tools Platform for Eclipse|devel/eclipse/plugins/wtp/pkg/DESCR|Ian Darwin <[email protected]>|devel/eclipse/plugins java||gtar-*:archivers/gtar unzip-*:archivers/unzip|eclipse-plugin-emf-sdk->=2.2.0:devel/eclipse/plugins/emf eclipse-plugin-gef-sdk->=3.2:devel/eclipse/plugins/gef eclipse-plugin-jem-sdk->=1.2:devel/eclipse/plugins/jem|amd64 i386|n|y|n|y
ectags-5.6|devel/ectags||multilanguage implementation of ctags|devel/ectags/pkg/DESCR|Jesper Louis Andersen <[email protected]>|devel||||any|y|y|y|y
ffcall-1.9p0|devel/ffcall||foreign function call libraries|devel/ffcall/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
flawfinder-1.26p0|devel/flawfinder||C/C++ source code auditing tool|devel/flawfinder/pkg/DESCR|Jason Peel <[email protected]>|devel security|||python-2.4*:lang/python/2.4|any|y|y|y|y
fox-1.4.17p0|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|:devel/libtool||any|y|y|y|y
fribidi-0.10.4p0|devel/fribidi||library implementing the Unicode Bidirectional Algorithm|devel/fribidi/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool bzip2-*:archivers/bzip2||any|y|y|y|y
g-wrap-1.3.4p3|devel/g-wrap||provides scheme wrappers|devel/g-wrap/pkg/DESCR|Todd T. Fries <[email protected]>|x11/gnome databases|glib.>=1.2::devel/glib guile.>=9,guile-ltdl.>=1::lang/guile|:devel/gmake :devel/libtool :devel/slib||any|y|y|y|y
gal-0.24p2|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool :graphics/gdk-pixbuf,-gnome bzip2-*:archivers/bzip2 gettext->=0.14.6: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-2.4.3p3|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext p5-XML-Parser-*:textproc/p5-XML-Parser|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gconf-1.0.9p1|devel/gconf||configuration database system written for GNOME|devel/gconf/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel x11/gnome|gtk.>=1,gdk.>=1::x11/gtk+ iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext oaf.::x11/gnome/oaf xml.>=9::textproc/libxml1|:devel/libtool :devel/metaauto autoconf-2.52:devel/autoconf/2.52 bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gconf-editor-2.10.0p3|devel/gconf-editor||editor for the GConf configuration system|devel/gconf-editor/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel x11/gnome|gconf-2::devel/gconf2 gnomeui-2::x11/gnome/libgnomeui iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext p5-XML-Parser-*:textproc/p5-XML-Parser scrollkeeper-*:textproc/scrollkeeper|gettext->=0.10.38:devel/gettext scrollkeeper-*:textproc/scrollkeeper|any|y|y|y|y
gconf2-2.10.1p2|devel/gconf2||configuration database system for GNOME|devel/gconf2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|ORBit-2::devel/ORBit2 gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2.>=6::textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
geany-0.10|devel/geany||small and lightweight IDE|devel/geany/pkg/DESCR|Vlad Glagolev <[email protected]>|devel|gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2|:devel/gmake bzip2-*:archivers/bzip2||any|y|y|y|y
gengameng-4.1p3|devel/gengameng||X11 game engine library|devel/gengameng/pkg/DESCR|Peter Valchev <[email protected]>|devel x11|SDL::devel/sdl|:devel/libtool :devel/sdl-image|:devel/sdl-image|any|y|y|y|y
gettext-0.14.6|devel/gettext||GNU gettext|devel/gettext/pkg/DESCR|Christian Weisgerber <[email protected]>|devel|expat.>=4::textproc/expat iconv.>=2::converters/libiconv|:devel/libtool|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
giblib-1.2.4p2|devel/giblib||utility library including a imlib2 wrapper|devel/giblib/pkg/DESCR|Victor Sahlstedt <[email protected]>|devel|Imlib2.>=1::graphics/imlib2|:devel/libtool||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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
git-1.4.4.1|devel/git||GIT - Tree History Storage Tool|devel/git/pkg/DESCR|[email protected]|devel|curl.>=3::net/curl expat.>=4::textproc/expat iconv.>=2::converters/libiconv|:archivers/gtar :devel/gmake :devel/p5-Error|:lang/python/2.4 :net/rsync :x11/tk/8.4 libiconv-*:converters/libiconv|any|y|y|y|y
glade-0.6.4p0|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/1.4 scrollkeeper->=0.3.12:textproc/scrollkeeper|any|y|y|y|y
glade-0.6.4p0-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,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/1.4 scrollkeeper->=0.3.12:textproc/scrollkeeper|any|y|y|y|y
glib-1.2.10p1|devel/glib||useful routines for C programming|devel/glib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||any|y|y|y|y
glib2-2.10.3p0|devel/glib2,-main||general-purpose utility library|devel/glib2/pkg/DESCR-main|The OpenBSD ports mailing-list <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
glib2-docs-2.10.3|devel/glib2,-docs||glib2 documentation|devel/glib2/pkg/DESCR-docs|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext||any|y|y|y|y
glib2mm-2.10.7p0|devel/glib2mm,-main||C++ interface for glib2|devel/glib2mm/pkg/DESCR-main|Peter Stromberg <[email protected]>|devel|glib-2.0,gmodule-2.0,gobject-2.0:glib2->=2.9:devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext sigc-2.0:libsigc++-2.*:devel/libsigc++-2|:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
glib2mm-docs-2.10.7|devel/glib2mm,-docs||C++ interface for glib2 documentation|devel/glib2mm/pkg/DESCR-docs|Peter Stromberg <[email protected]>|devel||:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext||any|y|y|y|y
gmake-3.80p1|devel/gmake||GNU make|devel/gmake/pkg/DESCR|Todd T. Fries <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gmp-4.2.1|devel/gmp||library for arbitrary precision arithmetic|devel/gmp/pkg/DESCR|Christian Weisgerber <[email protected]>|devel math||:devel/libtool||any|y|y|y|y
goopy-0.1p1|devel/goopy||Google utilities written in Python|devel/goopy/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
gperf-3.0.1|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/metaauto autoconf-2.57:devel/autoconf/2.57||any|y|y|y|y
grcs-5.7p0|devel/grcs||GNU versions of the rcs utilities|devel/grcs/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
gsl-1.8|devel/gsl||GNU Scientific Library|devel/gsl/pkg/DESCR|Can Erkin Acar <[email protected]>|devel||:devel/libtool||any|y|y|y|y
gstreamer-0.8.11p1|devel/gstreamer||GStreamer streaming media framework runtime|devel/gstreamer/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib-2.0.>=200.0,gmodule-2.0.>=200.0,gobject-2.0.>=200.0,gthread-2.0.>=200.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext popt.>=0.3::devel/popt xml2.>=6::textproc/libxml|:devel/gmake :devel/libtool bison-*:devel/bison bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
gstreamer-plugins-0.8.11p10|devel/gstreamer-plugins,-main||GStreamer Streaming-media framework plug-ins.|devel/gstreamer-plugins/pkg/DESCR-main|Marc Matteo <[email protected]>|devel|gconf-2::devel/gconf2 gstcontrol-0.8.>=5.0::devel/gstreamer gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-arts-0.8.11p9|devel/gstreamer-plugins,-arts||GStreamer plugin for interfacing with KDE arts|devel/gstreamer-plugins/pkg/DESCR-arts|Marc Matteo <[email protected]>|devel|artsflow,mcop,artsflow_idl,artsc::x11/kde/arts3 gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-audiofile-0.8.11p9|devel/gstreamer-plugins,-audiofile||GStreamer plugin for using the Audiofile library|devel/gstreamer-plugins/pkg/DESCR-audiofile|Marc Matteo <[email protected]>|devel|audiofile::devel/libaudiofile gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-cdda-0.8.11p9|devel/gstreamer-plugins,-cdda||GStreamer plugin for reading audio from CDs|devel/gstreamer-plugins/pkg/DESCR-cdda|Marc Matteo <[email protected]>|devel|cdda_interface,cdda_paranoia::audio/cdparanoia gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-dvdnav-0.8.11p9|devel/gstreamer-plugins,-dvdnav||GStreamer plugin for DVD playback with menus|devel/gstreamer-plugins/pkg/DESCR-dvdnav|Marc Matteo <[email protected]>|devel|dvdnav::multimedia/libdvdnav dvdread::devel/libdvdread gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-dvdread-0.8.11p9|devel/gstreamer-plugins,-dvdread||GStreamer plugin for DVD playback|devel/gstreamer-plugins/pkg/DESCR-dvdread|Marc Matteo <[email protected]>|devel|dvdread::devel/libdvdread gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-esd-0.8.11p9|devel/gstreamer-plugins,-esd||GStreamer plugin for outputting to esd|devel/gstreamer-plugins/pkg/DESCR-esd|Marc Matteo <[email protected]>|devel|esd.>=2::audio/esound gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-faad-0.8.11p9|devel/gstreamer-plugins,-faad||GStreamer plugin for decoding AAC files|devel/gstreamer-plugins/pkg/DESCR-faad|Marc Matteo <[email protected]>|devel|faad::audio/faad gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-flac-0.8.11p9|devel/gstreamer-plugins,-flac||GStreamer plugin for encoding/decoding FLAC files|devel/gstreamer-plugins/pkg/DESCR-flac|Marc Matteo <[email protected]>|devel|FLAC::audio/flac gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-gnome-0.8.11p9|devel/gstreamer-plugins,-gnome||GStreamer plugin supporting GNOME VFS|devel/gstreamer-plugins/pkg/DESCR-gnome|Marc Matteo <[email protected]>|devel|gnomevfs-2::x11/gnome/vfs2 gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-gsm-0.8.11p9|devel/gstreamer-plugins,-gsm||GStreamer plugin for using gsm|devel/gstreamer-plugins/pkg/DESCR-gsm|Marc Matteo <[email protected]>|devel|gsm::audio/gsm gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-jpeg-0.8.11p9|devel/gstreamer-plugins,-jpeg||GStreamer plugin for handling JPEG files|devel/gstreamer-plugins/pkg/DESCR-jpeg|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext jpeg::graphics/jpeg|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-lame-0.8.11p9|devel/gstreamer-plugins,-lame||GStreamer plugin for encoding mp3 files using LAME|devel/gstreamer-plugins/pkg/DESCR-lame|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mp3lame:lame-*:audio/lame,no_x11|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|n|y|n|y
gstreamer-mad-0.8.11p9|devel/gstreamer-plugins,-mad||GStreamer plugin for decoding mp3 files using MAD|devel/gstreamer-plugins/pkg/DESCR-mad|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv id3tag::audio/libid3tag intl.>=3:gettext->=0.10.38:devel/gettext mad::audio/libmad|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-mikmod-0.8.11p9|devel/gstreamer-plugins,-mikmod||GStreamer plugin for using the Mikmod library|devel/gstreamer-plugins/pkg/DESCR-mikmod|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mikmod::audio/libmikmod|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-mpeg2-0.8.11p9|devel/gstreamer-plugins,-mpeg2||GStreamer plugin for playing and encoding MPEG video files|devel/gstreamer-plugins/pkg/DESCR-mpeg2|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mpeg2::graphics/libmpeg2|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-musepack-0.8.11p9|devel/gstreamer-plugins,-musepack||GStreamer plugin for playing musepack sound files|devel/gstreamer-plugins/pkg/DESCR-musepack|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext mpcdec::audio/libmpcdec|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-ogg-0.8.11p9|devel/gstreamer-plugins,-ogg||GStreamer plugin for demuxing Ogg streams|devel/gstreamer-plugins/pkg/DESCR-ogg|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext ogg::audio/libogg|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-sdl-0.8.11p9|devel/gstreamer-plugins,-sdl||GStreamer plugin for using SDL to diplay video|devel/gstreamer-plugins/pkg/DESCR-sdl|Marc Matteo <[email protected]>|devel|SDL::devel/sdl gstinterfaces-0.8.>=1.0::devel/gstreamer-plugins gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-sidplay-0.8.11p9|devel/gstreamer-plugins,-sidplay||GStreamer plugin for playing SID files|devel/gstreamer-plugins/pkg/DESCR-sidplay|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext sidplay::audio/libsidplay|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-sndfile-0.8.11p9|devel/gstreamer-plugins,-sndfile||GStreamer plugin for using sndfile|devel/gstreamer-plugins/pkg/DESCR-sndfile|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext sndfile::audio/libsndfile|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-speex-0.8.11p9|devel/gstreamer-plugins,-speex||GStreamer plugin for speex|devel/gstreamer-plugins/pkg/DESCR-speex|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext speex.>=4:speex->=1.0.5:audio/speex|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-theora-0.8.11p9|devel/gstreamer-plugins,-theora||GStreamer plugin for theora|devel/gstreamer-plugins/pkg/DESCR-theora|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext ogg::audio/libogg theora::multimedia/libtheora|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-tremor-0.8.11p9|devel/gstreamer-plugins,-tremor||GStreamer plugin for Vorbis audio files, integer|devel/gstreamer-plugins/pkg/DESCR-tremor|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext vorbisidec::audio/tremor|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-vorbis-0.8.11p9|devel/gstreamer-plugins,-vorbis||GStreamer plugin for Vorbis audio files|devel/gstreamer-plugins/pkg/DESCR-vorbis|Marc Matteo <[email protected]>|devel|gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext vorbis,vorbisenc::audio/libvorbis|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
gstreamer-a52-0.8.11p9|devel/gstreamer-plugins,-a52||GStreamer plugin for decoding A/52 audio streams|devel/gstreamer-plugins/pkg/DESCR-a52|Marc Matteo <[email protected]>|devel|a52::audio/liba52 gstreamer-0.8.>=5.0::devel/gstreamer iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|n|y
guilib-1.1.1p3|devel/guilib||SDL C++ GUI widget library|devel/guilib/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel graphics|SDL.::devel/sdl|:devel/libtool||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 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 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.10|devel/hmake||compilation manager for Haskell programs|devel/hmake/pkg/DESCR|Don Stewart <[email protected]>|devel||:devel/gmake :lang/ghc|:lang/ghc|i386 amd64|y|y|y|y
horde-3.1.3p1|devel/horde|/var/www|modular framework for web-based applications|devel/horde/pkg/DESCR|Marc Balmer <[email protected]>|devel www|||pear-DB-*:databases/pear-DB pear-Log-*:devel/pear-Log pear-Services-Weather-*:net/pear-Services-Weather php5-core-*:www/php5/core php5-gd-*:www/php5/extensions,-gd php5-mbstring-*:www/php5/extensions,-mbstring php5-mcrypt-*:www/php5/extensions,-mcrypt php5-pear-*:www/php5/core,-pear php5-pgsql-*:www/php5/extensions,-pgsql|any|y|y|y|y
hs-ports-0.4.3|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 amd64|y|y|y|y
id-utils-3.2dp0|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|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|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 amd64|y|y|y|y
ipython-0.7.3|devel/ipython||enhanced interactive Python shell|devel/ipython/pkg/DESCR|Will Maier <[email protected]>|devel||python-2.4*:lang/python/2.4|:devel/py-pexpect python-2.4*:lang/python/2.4|any|y|y|y|y
itcl-3.3p0|devel/itcl||object-oriented extensions to Tcl|devel/itcl/pkg/DESCR|Nikns Siankin <[email protected]>|devel lang/tcl||tcl-8.4.*:lang/tcl/8.4|tcl-8.4.*:lang/tcl/8.4|any|y|y|y|y
ivy-1.4p0|devel/ivy||dependency manager for Java|devel/ivy/pkg/DESCR|Matthias Kilian <[email protected]>|devel java||unzip-*:archivers/unzip|:java/javaPathHelper jdk-1.3.1*|jre-1.3.1*|jdk->=1.4.2p9|jre->=1.4.2p9|kaffe-*|jamvm-*|jdk-linux-1.3.1*:devel/jdk/1.3|arm i386 powerpc sparc|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.4p2|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-1.3.1*|jdk->=1.4.2p9|kaffe-*|jdk-linux-1.3.1*:devel/jdk/1.3|arm i386 powerpc sparc|y|y|y|y
jam-2.5|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_16p1|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||fedora_base->=4.0p2:emulators/fedora/base|fedora_base->=4.0p2:emulators/fedora/base|i386|n|n|n|n
jdk-1.3.1p9|devel/jdk/1.3,-main||Java2(TM) Standard Edition Dev Kit v1.3.1|devel/jdk/1.3/pkg/DESCR-main|Kurt Miller <[email protected]>|devel/jdk java|Xm.>=2::x11/openmotif|:archivers/unzip :devel/gmake gtar-*:archivers/gtar zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|arm i386 powerpc sparc|n|n|n|n
jre-1.3.1p9|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|:archivers/unzip :devel/gmake gtar-*:archivers/gtar zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|arm i386 powerpc sparc|n|n|n|n
jdk-1.4.2p11|devel/jdk/1.4,-main||Java2(TM) Standard Edition Dev Kit v1.4.2|devel/jdk/1.4/pkg/DESCR-main|Kurt Miller <[email protected]>|devel/jdk java|Xm.>=2::x11/openmotif iodbc.>=2::databases/iodbc|:devel/gmake gtar-*:archivers/gtar jdk-linux->=1.3.1_10:devel/jdk/1.3-linux nspr-*:devel/nspr unzip-*:archivers/unzip zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|i386|n|n|n|n
jre-1.4.2p11|devel/jdk/1.4,-jre||Java2(TM) Standard Edition Runtime Environment v1.4.2|devel/jdk/1.4/pkg/DESCR-jre|Kurt Miller <[email protected]>|devel/jdk java|Xm.>=2::x11/openmotif iodbc.>=2::databases/iodbc|:devel/gmake gtar-*:archivers/gtar jdk-linux->=1.3.1_10:devel/jdk/1.3-linux nspr-*:devel/nspr unzip-*:archivers/unzip zip-*:archivers/zip|ghostscript-fonts-*:print/ghostscript/gnu-fonts zip-*:archivers/zip|i386|n|n|n|n
jdk-1.5.0p24|devel/jdk/1.5,-main||Java2(TM) Standard Edition Dev Kit v1.5.0|devel/jdk/1.5/pkg/DESCR-main|Kurt Miller <[email protected]>|devel/jdk java|Xm.>=2::x11/openmotif iconv.>=2::converters/libiconv|:devel/gmake :lang/jikes bzip2-*:archivers/bzip2 gtar-*:archivers/gtar kaffe->=1.1.7p1:lang/kaffe mozilla-devel-*:www/mozilla,-devel unzip-*:archivers/unzip zip-*:archivers/zip|libiconv-*:converters/libiconv zip-*:archivers/zip|amd64 i386|n|n|n|n
jre-1.5.0p24|devel/jdk/1.5,-jre||Java2(TM) Standard Edition Runtime Environment v1.5.0|devel/jdk/1.5/pkg/DESCR-jre|Kurt Miller <[email protected]>|devel/jdk java|Xm.>=2::x11/openmotif iconv.>=2::converters/libiconv|:devel/gmake :lang/jikes bzip2-*:archivers/bzip2 gtar-*:archivers/gtar kaffe->=1.1.7p1:lang/kaffe mozilla-devel-*:www/mozilla,-devel unzip-*:archivers/unzip zip-*:archivers/zip|libiconv-*:converters/libiconv zip-*:archivers/zip|amd64 i386|n|n|n|n
kdbg-1.2.5p0|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,kwalletclient::x11/kde/libs3 lib/qt3/qt-mt.>=3::x11/qt3|:devel/libtool :devel/metaauto autoconf-2.13:devel/autoconf/2.13||any|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.1p1|devel/lib765||library for the floppy controller emulation|devel/lib765/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|dsk.>=2::devel/libdsk|:devel/libtool||any|y|y|y|y
libIDL-0.8.7|devel/libIDL||IDL parsing library|devel/libIDL/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libJudy-1.0.3|devel/libJudy||general purpose dynamic array|devel/libJudy/pkg/DESCR|Marc Balmer <[email protected]>|devel||:devel/gmake :devel/libtool||any|y|y|y|y
libassetml-1.2.1|devel/libassetml||library to share image and audio files between projects|devel/libassetml/pkg/DESCR|Antoine Jacoutot <[email protected]>|devel|glib-2.0.>=0.8,gobject-2.0.>=0.8::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext popt::devel/popt xml2.>=9::textproc/libxml|:devel/gmake :devel/libtool :textproc/texi2html gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libast-0.7p2|devel/libast||library of assorted spiffy things|devel/libast/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|Imlib2.>=2::graphics/imlib2|:devel/libtool||any|y|y|y|y
libaudiofile-0.2.6p0|devel/libaudiofile||SGI audiofile library clone|devel/libaudiofile/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel audio||:devel/libtool||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.03p0|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
libconfuse-2.5p0|devel/libconfuse||configuration file parser library|devel/libconfuse/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libdaemon-0.10|devel/libdaemon||lightweight C library that eases the writing of daemons|devel/libdaemon/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libdockapp-0.4.0p0|devel/libdockapp||dockapp-making standard library for Window Maker|devel/libdockapp/pkg/DESCR|Peter Stromberg <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libdsk-1.0.0p1|devel/libdsk||library for accessing disks and disk image files|devel/libdsk/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|bz2.>=10::archivers/bzip2|:devel/gmake :devel/libtool||any|y|y|y|y
libdvdplay-1.0.1p0|devel/libdvdplay||simple library designed for DVD navigation|devel/libdvdplay/pkg/DESCR|Jolan Luff <[email protected]>|devel|dvdread::devel/libdvdread|:devel/libtool||any|y|y|y|y
libdvdread-0.9.7|devel/libdvdread||accessing DVD files|devel/libdvdread/pkg/DESCR|Marc Espie <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libelf-0.8.6|devel/libelf||read, modify, create ELF files on any arch|devel/libelf/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/metaauto autoconf-2.13:devel/autoconf/2.13||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.17p0|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml.>=9::textproc/libxml1|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libglade-0.17p1-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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml.>=9::textproc/libxml1|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libglade2-2.5.1p5|devel/libglade2||library for loading GLADE interface files at runtime|devel/libglade2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2.>=7:libxml->=2.6.16p6:textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libglademm-2.6.3p0|devel/libglademm,-main||C++ bindings for libglade|devel/libglademm/pkg/DESCR-main|Antoine Jacoutot <[email protected]>|devel|gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0:gtk+2->=2.8:x11/gtk+2 glade-2.0::devel/libglade2 gtkmm-2.4.>=3,gdkmm-2.4.>=3,atkmm-1.6.>=3,pangomm-1.4.>=3::x11/gtk2mm iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libglademm-docs-2.6.3|devel/libglademm,-docs||C++ bindings for libglade documentation|devel/libglademm/pkg/DESCR-docs|Antoine Jacoutot <[email protected]>|devel||:devel/gmake :devel/libtool gettext->=0.14.6:devel/gettext||any|y|y|y|y
libgsf-1.11.1p3|devel/libgsf,-main||GNOME Structured File library|devel/libgsf/pkg/DESCR-main|Marc Matteo <[email protected]>|devel|bz2.>=10.2::archivers/bzip2 glib-2.0.>=0.11,gobject-2.0.>=0.11::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2.>=8.4::textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgsf-gnome-1.11.1p3|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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext xml2.>=8.4::textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop-1.0.13p4|devel/libgtop||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Jim Geovedi <[email protected]>|devel|glib.>=1.2::devel/glib iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop-1.0.13p4-gnome|devel/libgtop,gnome||portable library for obtaining system information|devel/libgtop/pkg/DESCR|Jim Geovedi <[email protected]>|devel|glib.>=1.2::devel/glib gnomesupport::x11/gnome/libs iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libgtop2-2.10.1p2|devel/libgtop2||portable library for obtaining system information|devel/libgtop2/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext popt::devel/popt|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libicq2000-0.3.2p1|devel/libicq2000||protocol icq2000/2001 library|devel/libicq2000/pkg/DESCR|Peter Valchev <[email protected]>|net|sigc:libsigc++-1.*:devel/libsigc++|:devel/libtool||any|y|y|y|y
libidn-0.6.1|devel/libidn||internationalized string handling|devel/libidn/pkg/DESCR|Bernd Ahlers <[email protected]>|devel|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|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
libmagic-4.17|devel/libmagic||library to determine file type|devel/libmagic/pkg/DESCR|Rui Reis <[email protected]>|sysutils||||any|y|y|y|y
liboil-0.3.10|devel/liboil||library of optimized inner loops|devel/liboil/pkg/DESCR|Deanna Phillips <[email protected]>|devel||:devel/libtool||any|y|y|y|y
liboop-1.0|devel/liboop||low-level event loop management library|devel/liboop/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libproplist-0.10.1p1|devel/libproplist||GNUstep/OPENSTEP property lists compatibility library|devel/libproplist/pkg/DESCR|Jason Ish <[email protected]>|devel||:devel/gmake :devel/libtool||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.4p2|devel/libsigc++||callback framework for C++|devel/libsigc++/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libsigc++-2.0.17p0|devel/libsigc++-2,-main||callback framework for C++|devel/libsigc++-2/pkg/DESCR-main|Peter Stromberg <[email protected]>|devel||:devel/gmake :devel/libtool||any|y|y|y|y
libsigc++-docs-2.0.17|devel/libsigc++-2,-docs||callback framework for C++ documentation|devel/libsigc++-2/pkg/DESCR-docs|Peter Stromberg <[email protected]>|devel||:devel/gmake :devel/libtool||any|y|y|y|y
libslang-1.4.9p3|devel/libslang||stack-based interpreter for terminal applications|devel/libslang/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/metaauto autoconf-2.13:devel/autoconf/2.13||any|y|y|y|y
libsoup-2.2.5|devel/libsoup||a SOAP implementation in C|devel/libsoup/pkg/DESCR|Marc Matteo <[email protected]>|devel|glib-2.0,gobject-2.0,gthread-2.0::devel/glib2 xml2.>=7::textproc/libxml|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2||any|y|y|y|y
libspectrum-0.2.2|devel/libspectrum||ZX Spectrum emulator file format library|devel/libspectrum/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|bz2.>=10::archivers/bzip2 gcrypt.>=12::security/libgcrypt glib-2.0.>=0.11::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libtool-1.5.22p7|devel/libtool,-main||generic shared library support script|devel/libtool/pkg/DESCR-main|Brad Smith <[email protected]>|devel||:devel/metaauto autoconf-2.59:devel/autoconf/2.59|:devel/libtool,-ltdl|any|y|y|y|y
libltdl-1.5.22p1|devel/libtool,-ltdl||GNU libtool system independent dlopen wrapper|devel/libtool/pkg/DESCR-ltdl|Brad Smith <[email protected]>|devel||:devel/metaauto autoconf-2.59:devel/autoconf/2.59||any|y|y|y|y
libunicode-0.4p1|devel/libunicode||library for manipulating Unicode characters and strings|devel/libunicode/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libusb-0.1.12|devel/libusb||USB access library|devel/libusb/pkg/DESCR|Peter Valchev <[email protected]>|devel||:devel/libtool||any|y|y|y|y
libuta-0.4.4p3|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:libsigc++-1.*:devel/libsigc++ smpeg.>=1.3::devel/smpeg ttf.>=1.3::print/freetype|:devel/libtool||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.10.0p4|devel/libwnck||window navigator construction kit|devel/libwnck/pkg/DESCR|The OpenBSD ports mailing-list <[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.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext startup-notification-1::devel/startup-notification|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libxfce4util-4.2.3.2|devel/libxfce4util||basic utility library for xfce4|devel/libxfce4util/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel|glib-2.0.>=400.8,gobject-2.0.>=400.8::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
libzvt-2.0.1p3|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,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/libtool bzip2-*:archivers/bzip2 gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
lincvs-0.4.90p0|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
luaalarm-20030709p1|devel/luaalarm||alarm library for the lua language|devel/luaalarm/pkg/DESCR|Pedro Martelletto <[email protected]>|devel||:lang/lua|:lang/lua|!m88k sh vax|y|y|y|y
luabitlib-20|devel/luabitlib||library for bitwise operations in lua|devel/luabitlib/pkg/DESCR|Pedro Martelletto <[email protected]>|devel||:lang/lua unzip-*:archivers/unzip|:lang/lua|any|y|y|y|y
luacopas-1.1.0|devel/luacopas||coroutine oriented portable asynchronous services for lua|devel/luacopas/pkg/DESCR|Pedro Martelletto <[email protected]>|devel|||:lang/lua :net/luasocket|any|y|y|y|y
luafs-1.2p1|devel/luafs||file system library for the lua language|devel/luafs/pkg/DESCR|Pedro Martelletto <[email protected]>|devel||:lang/lua|:lang/lua|any|y|y|y|y
luapack-20061124|devel/luapack||library for packing and unpacking binary data|devel/luapack/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:lang/lua|:lang/lua|any|y|y|y|y
luaposix-20060408|devel/luaposix||posix library for the lua language|devel/luaposix/pkg/DESCR|Pedro Martelletto <[email protected]>|devel||:lang/lua|:lang/lua|any|y|y|y|y
m4-1.4.4|devel/m4||GNU m4|devel/m4/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||||any|y|y|y|y
maven-2.0p1|devel/maven||software project management and comprehension tool|devel/maven/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:archivers/gtar|:java/javaPathHelper jdk->=1.4.2p9|kaffe-*:devel/jdk/1.4|i386|y|y|y|y
mercurial-0.9.3|devel/mercurial||fast, lightweight source control management|devel/mercurial/pkg/DESCR|Will Maier <[email protected]>|devel||:devel/gmake python-2.4*:lang/python/2.4|python-2.4*:lang/python/2.4|any|y|y|y|y
metaauto-0.6|devel/metaauto||wrapper for gnu auto*|devel/metaauto/pkg/DESCR|Marc Espie <[email protected]>|devel||||any|y|y|y|y
mico-2.3.6p1|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 :devel/libutf||any|y|y|y|y
mm-1.3.1p0|devel/mm||shared memory lib for apps with pre-forked process model|devel/mm/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel||:devel/libtool||!vax|y|y|y|y
mpfr-2.2.0p0|devel/mpfr||library for multiple-precision floating-point computations|devel/mpfr/pkg/DESCR|Christian Weisgerber <[email protected]>|devel math|gmp:gmp->=4.1.0:devel/gmp|:devel/libtool gmp->=4.1.0:devel/gmp||any|y|y|y|y
mysql++-2.0.6p3|devel/mysql++,-main||C++ API for MySQL|devel/mysql++/pkg/DESCR-main|Peter Stromberg <[email protected]>|devel|lib/mysql/mysqlclient.>=10::databases/mysql|:devel/libtool||any|y|y|y|y
mysql++-docs-2.0.6|devel/mysql++,-docs||C++ API for MySQL documentation|devel/mysql++/pkg/DESCR-docs|Peter Stromberg <[email protected]>|devel||:devel/libtool||any|y|y|y|y
mysql-gui-common-5.0.6.1|devel/mysql-gui-common||common libraries and data for the MySQL GUI Suites|devel/mysql-gui-common/pkg/DESCR|Peter Stromberg <[email protected]>|devel||:databases/mysql :devel/gettext :devel/gmake :devel/libglade2 :devel/libtool :devel/pcre :x11/gtk2mm glib2->=2.6.2:devel/glib2 libxml->=2.6.2:textproc/libxml||any|y|y|y|y
nasm-0.98.38p0|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.6.4p1|devel/nspr,-main||Netscape Portable Runtime|devel/nspr/pkg/DESCR-main|Antoine Jacoutot <[email protected]>|devel||:devel/gmake :devel/metaauto autoconf-2.13:devel/autoconf/2.13||alpha amd64 arm i386 powerpc sparc sparc64|y|y|y|y
nspr-docs-4.6.4|devel/nspr,-docs||HTML Documentation for NSPR|devel/nspr/pkg/DESCR-docs|Antoine Jacoutot <[email protected]>|devel||:devel/gmake :devel/metaauto autoconf-2.13:devel/autoconf/2.13||alpha amd64 arm i386 powerpc sparc sparc64|y|y|y|y
ocaml-calendar-1.09.5|devel/ocaml-calendar||Objective Caml bindings for calendar functions|devel/ocaml-calendar/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel||:devel/gmake :lang/ocaml||any|y|y|y|y
omake-0.9.6.9pl1p0|devel/omake||build system designed for scalability and portability|devel/omake/pkg/DESCR|Anil Madhavapeddy <[email protected]>|devel||:lang/ocaml||any|y|y|y|y
opencm-0.1.2alpha8|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/gmake :devel/metaauto autoconf-2.13:devel/autoconf/2.13||any|y|y|y|y
p5-Algorithm-Annotate-0.10p0|devel/p5-Algorithm-Annotate||represent a series of changes in annotate form|devel/p5-Algorithm-Annotate/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-Algorithm-Diff->=1.1901:devel/p5-Algorithm-Diff|p5-Algorithm-Diff->=1.1901:devel/p5-Algorithm-Diff|any|y|y|y|y
p5-Algorithm-C3-0.05|devel/p5-Algorithm-C3||module for merging hierarchies using the C3 algorithm|devel/p5-Algorithm-C3/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-Dependency-1.102p0|devel/p5-Algorithm-Dependency||base class for implementing various dependency trees|devel/p5-Algorithm-Dependency/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Params-Util :devel/p5-Test-ClassAPI|:devel/p5-Params-Util :devel/p5-Test-ClassAPI|any|y|y|y|y
p5-Algorithm-Diff-1.1902|devel/p5-Algorithm-Diff||interface to compute differences between two objects|devel/p5-Algorithm-Diff/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-MDiff-0.94|devel/p5-Algorithm-MDiff||interface to calculate m-difference between two objects|devel/p5-Algorithm-MDiff/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Algorithm-MarkovChain-0.06p0|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||||any|y|y|y|y
p5-App-CLI-0.06|devel/p5-App-CLI||dispatcher for command line interface programs|devel/p5-App-CLI/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|www devel perl5|||:devel/p5-Locale-Maketext-Simple|any|y|y|y|y
p5-App-Info-0.49|devel/p5-App-Info||interface for providing metadata about installed packages|devel/p5-App-Info/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-AppConfig-1.63|devel/p5-AppConfig||Module bundle for reading and parsing config files|devel/p5-AppConfig/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||:devel/p5-File-HomeDir|:devel/p5-File-HomeDir|any|y|y|y|y
p5-AppConfig-Std-1.07p0|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-Array-Compare-1.13|devel/p5-Array-Compare||Perl module for comparing arrays|devel/p5-Array-Compare/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-B-Deobfuscate-0.16|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.51p0|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-1.05|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 perl5||||any|y|y|y|y
p5-BFD-0.31p0|devel/p5-BFD||impromptu dumping of data structures for debugging purposes|devel/p5-BFD/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-BSD-Resource-1.28|devel/p5-BSD-Resource||BSD process resource limit and priority functions|devel/p5-BSD-Resource/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-BSD-stat-1.21|devel/p5-BSD-stat||stat() with BSD 4.4 extentions|devel/p5-BSD-stat/pkg/DESCR|Alexander Bluhm <[email protected]>|devel perl5||||any|y|y|y|y
p5-Bit-Vector-Minimal-1.3|devel/p5-Bit-Vector-Minimal||object-oriented wrapper around vec()|devel/p5-Bit-Vector-Minimal/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-C-Scan-0.74p0|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.04p0|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-Cache-FastMmap-1.14|devel/p5-Cache-FastMmap||fast shared data cache using memory mapped files|devel/p5-Cache-FastMmap/pkg/DESCR|Srebrenko Sehic <[email protected]>|devel perl5||||any|y|y|y|y
p5-Cache-Memcached-1.18|devel/p5-Cache-Memcached||pure perl client interface to memcached|devel/p5-Cache-Memcached/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-String-CRC32|any|y|y|y|y
p5-Cache-Mmap-0.09p0|devel/p5-Cache-Mmap||shared data cache using memory mapped files|devel/p5-Cache-Mmap/pkg/DESCR|Nikolay Sturm <[email protected]>|devel perl5||||any|y|y|y|y
p5-Cache-Simple-TimedExpiry-0.27|devel/p5-Cache-Simple-TimedExpiry||a lightweight cache with timed expiration|devel/p5-Cache-Simple-TimedExpiry/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Carp-Assert-0.18|devel/p5-Carp-Assert||Perl module implementing assertions|devel/p5-Carp-Assert/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Carp-Assert-More-1.12|devel/p5-Carp-Assert-More||convenience wrappers around Carp::Assert|devel/p5-Carp-Assert-More/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Carp-Assert|:devel/p5-Carp-Assert|any|y|y|y|y
p5-Carp-Clan-5.3p1|devel/p5-Carp-Clan||report errors from perspective of caller of a clan of modules|devel/p5-Carp-Clan/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Carp-Datum-0.1.3p0|devel/p5-Carp-Datum||debugging and tracing ultimate module|devel/p5-Carp-Datum/pkg/DESCR|Andrew Dalgleish <[email protected]>|devel perl5 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-Catalyst-Manual-5.700401|devel/p5-Catalyst-Manual||catalyst documentation|devel/p5-Catalyst-Manual/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Catalyst-Plugin-StackTrace-0.06|devel/p5-Catalyst-Plugin-StackTrace||stack trace for catalyst|devel/p5-Catalyst-Plugin-StackTrace/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-Devel-StackTrace :www/p5-Catalyst-Runtime|any|y|y|y|y
p5-Class-Accessor-0.27|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-Accessor-Chained-0.01|devel/p5-Class-Accessor-Chained||make chained accessors|devel/p5-Class-Accessor-Chained/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||:devel/p5-Class-Accessor|:devel/p5-Class-Accessor|any|y|y|y|y
p5-Class-AutoClass-0.093|devel/p5-Class-AutoClass||auto getters/setters for perl|devel/p5-Class-AutoClass/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||:devel/p5-IO-stringy|:devel/p5-IO-stringy|any|y|y|y|y
p5-Class-Autouse-1.27|devel/p5-Class-Autouse||run-time class loading on first method call|devel/p5-Class-Autouse/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Base-0.03|devel/p5-Class-Base||abstract class for constructing hashes|devel/p5-Class-Base/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-C3-0.14p0|devel/p5-Class-C3||pragma to use the C3 method resolution order algorithm|devel/p5-Class-C3/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-Test-Exception p5-Algorithm-C3->=0.05:devel/p5-Algorithm-C3|:devel/p5-Test-Exception p5-Algorithm-C3->=0.05:devel/p5-Algorithm-C3|any|y|y|y|y
p5-Class-Classless-1.35|devel/p5-Class-Classless||perl object without classes|devel/p5-Class-Classless/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Container-0.12|devel/p5-Class-Container||validate method/function parameters|devel/p5-Class-Container/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||p5-Params-Validate->=0.23:devel/p5-Params-Validate|p5-Params-Validate->=0.23:devel/p5-Params-Validate|any|y|y|y|y
p5-Class-Data-Accessor-0.03|devel/p5-Class-Data-Accessor||class and instance data accessor creation|devel/p5-Class-Data-Accessor/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Class-Data-Inheritable-0.06|devel/p5-Class-Data-Inheritable||inheritable, overridable class data|devel/p5-Class-Data-Inheritable/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Date-1.1.9|devel/p5-Class-Date||module for easy date and time manipulation|devel/p5-Class-Date/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-ErrorHandler-0.01|devel/p5-Class-ErrorHandler||base class for error handling|devel/p5-Class-ErrorHandler/pkg/DESCR|Nikolay Sturm <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Factory-1.02|devel/p5-Class-Factory||automates the Factory design pattern|devel/p5-Class-Factory/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Factory-Util-1.6|devel/p5-Class-Factory-Util||simple framework for Factories|devel/p5-Class-Factory-Util/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-InsideOut-1.03p0|devel/p5-Class-InsideOut||alternative object layout in perl|devel/p5-Class-InsideOut/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Class-Inspector-1.16|devel/p5-Class-Inspector||get information about a class and its structure|devel/p5-Class-Inspector/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Loader-2.03|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-MakeMethods-1.01|devel/p5-Class-MakeMethods||framework for generating methods|devel/p5-Class-MakeMethods/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-MethodMaker-2.08|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.0p0|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.53p0|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|p5-Devel-StackTrace-*:devel/p5-Devel-StackTrace|any|y|y|y|y
p5-Class-Singleton-1.03|devel/p5-Class-Singleton||perl singleton pattern|devel/p5-Class-Singleton/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Std-0.0.8p0|devel/p5-Class-Std||inside-out object scaffolding|devel/p5-Class-Std/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-version|:devel/p5-version|any|y|y|y|y
p5-Class-Std-Utils-0.0.2p0|devel/p5-Class-Std-Utils||utilities functions to build inside-out objects|devel/p5-Class-Std-Utils/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-version|:devel/p5-version|any|y|y|y|y
p5-Class-Throwable-0.10|devel/p5-Class-Throwable||lightweight exception class|devel/p5-Class-Throwable/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-Class-Trigger-0.10|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-Class-XPath-1.4|devel/p5-Class-XPath||xpath matching for object trees|devel/p5-Class-XPath/pkg/DESCR|Sam Smith <[email protected]>|devel textproc perl5||||any|y|y|y|y
p5-Clone-0.20|devel/p5-Clone||recursively copy Perl datatypes|devel/p5-Clone/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-Any-0.04|devel/p5-Config-Any||load various configuration file formats|devel/p5-Config-Any/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-version|any|y|y|y|y
p5-Config-General-2.31|devel/p5-Config-General||generic configuration parser, inspired by apache|devel/p5-Config-General/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-Grammar-1.02|devel/p5-Config-Grammar||grammar-based, user-friendly config parser|devel/p5-Config-Grammar/pkg/DESCR|Bernd Ahlers <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-IniFiles-2.39p0|devel/p5-Config-IniFiles||module for reading .ini-style configuration files|devel/p5-Config-IniFiles/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Config-Tiny-2.10|devel/p5-Config-Tiny||simple methods to Read/Write .ini style files|devel/p5-Config-Tiny/pkg/DESCR|The OpenBSD ports mailing-list <[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||||any|y|y|y|y
p5-Curses-UI-0.93p0|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.997p1|devel/p5-Curses-Widgets||curses(3) based terminal widgets|devel/p5-Curses-Widgets/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||p5-Curses-*:devel/p5-Curses|p5-Curses-*:devel/p5-Curses|any|y|y|y|y
p5-Data-Buffer-0.04|devel/p5-Data-Buffer||Perl module for creating read/write buffers|devel/p5-Data-Buffer/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Data-Dump-1.06|devel/p5-Data-Dump||pretty printing of data structures|devel/p5-Data-Dump/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-Data-Flow-0.09p0|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-FormValidator-4.40|devel/p5-Data-FormValidator||validate user input from a constraint object|devel/p5-Data-FormValidator/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5 perl5||:devel/p5-Module-Build|:devel/p5-Date-Calc :graphics/p5-Image-Size :mail/p5-MIME-Types :misc/p5-File-MMagic :textproc/p5-Regexp-Common|any|y|y|y|y
p5-Data-Hierarchy-0.31p0|devel/p5-Data-Hierarchy||handle data in a hierarchical structure|devel/p5-Data-Hierarchy/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-Clone->=0.15:devel/p5-Clone p5-Test-Exception->=0.21:devel/p5-Test-Exception|p5-Clone->=0.15:devel/p5-Clone p5-Test-Exception->=0.21:devel/p5-Test-Exception|any|y|y|y|y
p5-Data-Lazy-0.6|devel/p5-Data-Lazy||lazy variables|devel/p5-Data-Lazy/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Data-OptList-0.101|devel/p5-Data-OptList||parse and validate simple name/value option pairs|devel/p5-Data-OptList/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Params-Util :devel/p5-Sub-Install|any|y|y|y|y
p5-Data-Random-0.05|devel/p5-Data-Random||perl module to generate random data|devel/p5-Data-Random/pkg/DESCR|Alexander Bluhm <[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-Data-UUID-0.145|devel/p5-Data-UUID||extension for generating GUIDs/UUIDs|devel/p5-Data-UUID/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Data-Visitor-0.05|devel/p5-Data-Visitor||visitor-style traversal of Perl data structures|devel/p5-Data-Visitor/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-Class-Accessor|any|y|y|y|y
p5-Date-Calc-5.4|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-Carp-Clan->=5.3:devel/p5-Carp-Clan|p5-Bit-Vector->=6.2:math/p5-Bit-Vector p5-Carp-Clan->=5.3:devel/p5-Carp-Clan|any|y|y|y|y
p5-Date-Handler-1.2p0|devel/p5-Date-Handler||perl module for calculates time differences|devel/p5-Date-Handler/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Date-ICal-1.72p0|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.71p0|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.02|devel/p5-Date-Simple||Manipulate simple date objects|devel/p5-Date-Simple/pkg/DESCR|Sam Smith <[email protected]>|devel perl5||||any|y|y|y|y
p5-DateTime-0.34|devel/p5-DateTime||perl objected oriented Date Time|devel/p5-DateTime/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-DateTime-Locale :devel/p5-DateTime-TimeZone|any|y|y|y|y
p5-DateTime-Cron-Simple-0.2|devel/p5-DateTime-Cron-Simple||parse a cron entry and check against current time|devel/p5-DateTime-Cron-Simple/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-DateTime-Format-Builder-0.7807|devel/p5-DateTime-Format-Builder||create DateTime parser classes and objects|devel/p5-DateTime-Format-Builder/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-Class-Factory-Util :devel/p5-DateTime-Format-Strptime :devel/p5-Params-Validate|any|y|y|y|y
p5-DateTime-Format-HTTP-0.37|devel/p5-DateTime-Format-HTTP||DateTime::Format extension to HTTP formats|devel/p5-DateTime-Format-HTTP/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel www perl5||:devel/p5-Module-Build|:devel/p5-DateTime :www/p5-libwww|any|y|y|y|y
p5-DateTime-Format-ISO8601-0.0403|devel/p5-DateTime-Format-ISO8601||DateTime parser for ISO8601 date formats|devel/p5-DateTime-Format-ISO8601/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-DateTime-Format-Builder|any|y|y|y|y
p5-DateTime-Format-Mail-0.30|devel/p5-DateTime-Format-Mail||parsesr Email dates into DateTime|devel/p5-DateTime-Format-Mail/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel converters perl5||:devel/p5-Module-Build|:devel/p5-DateTime :devel/p5-Params-Validate|any|y|y|y|y
p5-DateTime-Format-MySQL-0.04|devel/p5-DateTime-Format-MySQL||parse and create MySQL date objects|devel/p5-DateTime-Format-MySQL/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel converters perl5||:devel/p5-Module-Build|:devel/p5-DateTime-Format-Builder|any|y|y|y|y
p5-DateTime-Format-Pg-0.13|devel/p5-DateTime-Format-Pg||parse and create PostGresql date objects|devel/p5-DateTime-Format-Pg/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel converters perl5|||:devel/p5-DateTime-Format-Builder|any|y|y|y|y
p5-DateTime-Format-Strptime-1.0700|devel/p5-DateTime-Format-Strptime||parse and format strp and strf time patterns|devel/p5-DateTime-Format-Strptime/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-DateTime :devel/p5-DateTime-Locale :devel/p5-DateTime-TimeZone :devel/p5-Params-Validate|:devel/p5-DateTime :devel/p5-DateTime-Locale :devel/p5-DateTime-TimeZone :devel/p5-Params-Validate|any|y|y|y|y
p5-DateTime-Format-W3CDTF-0.04|devel/p5-DateTime-Format-W3CDTF||parse and format W3CDTF datetime strings|devel/p5-DateTime-Format-W3CDTF/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel converters perl5||:devel/p5-DateTime|:devel/p5-DateTime|any|y|y|y|y
p5-DateTime-Locale-0.22|devel/p5-DateTime-Locale||localization data for perl DateTime.pm|devel/p5-DateTime-Locale/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-Params-Validate|:devel/p5-Params-Validate|any|y|y|y|y
p5-DateTime-TimeZone-0.49|devel/p5-DateTime-TimeZone||perl DateTime submodule for TZ|devel/p5-DateTime-TimeZone/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Class-Singleton :devel/p5-Module-Build :devel/p5-Params-Validate|:devel/p5-Class-Singleton :devel/p5-Params-Validate|any|y|y|y|y
p5-Devel-Cycle-1.07|devel/p5-Devel-Cycle||find memory cycles in objects|devel/p5-Devel-Cycle/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Devel-Size-0.64|devel/p5-Devel-Size||finding memory usage of perl variables|devel/p5-Devel-Size/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Devel-SmallProf-1.15p0|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.12|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.0604|devel/p5-Devel-Symdump||module for inspecting Perl's symbol table|devel/p5-Devel-Symdump/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Devel-ptkdb-1.1091p0|devel/p5-Devel-ptkdb||perl debugger built with a PerlTk GUI|devel/p5-Devel-ptkdb/pkg/DESCR|Alexandre Anriot <[email protected]>|devel perl5|||:x11/p5-Tk :x11/tk/8.4|any|y|y|y|y
p5-Error-0.16|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-Event-1.08|devel/p5-Event||event loop processing|devel/p5-Event/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Event-Lib-1.00|devel/p5-Event-Lib||Perl extensions for event-based programming|devel/p5-Event-Lib/pkg/DESCR|Okan Demirmen <[email protected]>|devel perl5||||any|y|y|y|y
p5-Exception-Class-1.22|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.12:devel/p5-Devel-StackTrace|p5-Class-Data-Inheritable->=0.02:devel/p5-Class-Data-Inheritable p5-Devel-StackTrace->=1.12:devel/p5-Devel-StackTrace|any|y|y|y|y
p5-Expect-1.15p0|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.01p0|devel/p5-Exporter-Lite||Lightweight Exporting of variables|devel/p5-Exporter-Lite/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-ExtUtils-CBuilder-0.18|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-Depends-0.205|devel/p5-ExtUtils-Depends||Easily build XS extensions that depend on XS extensions|devel/p5-ExtUtils-Depends/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-ExtUtils-ParseXS-2.17|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-ExtUtils-PkgConfig-1.07p1|devel/p5-ExtUtils-PkgConfig||simplistic perl interface to pkg-config|devel/p5-ExtUtils-PkgConfig/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Copy-Recursive-0.29|devel/p5-File-Copy-Recursive||recursive copy of files and directories|devel/p5-File-Copy-Recursive/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Find-Rule-0.28|devel/p5-File-Find-Rule||alternative interface to File::Find|devel/p5-File-Find-Rule/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||p5-Number-Compare-*:devel/p5-Number-Compare p5-Text-Glob-*:textproc/p5-Text-Glob|p5-Number-Compare-*:devel/p5-Number-Compare p5-Text-Glob-*:textproc/p5-Text-Glob|any|y|y|y|y
p5-File-Find-Rule-Filesys-Virtual-1.21|devel/p5-File-Find-Rule-Filesys-Virtual||File::Find::Rule adapted to Filesys::Virtual|devel/p5-File-Find-Rule-Filesys-Virtual/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|net perl5||p5-File-Find-Rule-*:devel/p5-File-Find-Rule p5-Filesys-Virtual-Plain-*:sysutils/p5-Filesys-Virtual-Plain|p5-File-Find-Rule-*:devel/p5-File-Find-Rule p5-Filesys-Virtual-Plain-*:sysutils/p5-Filesys-Virtual-Plain|any|y|y|y|y
p5-File-Flat-0.96|devel/p5-File-Flat||implements a flat filesystem|devel/p5-File-Flat/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-File-NCopy :devel/p5-File-Remove :devel/p5-File-Slurp :devel/p5-prefork|:devel/p5-File-NCopy :devel/p5-File-Remove :devel/p5-File-Slurp :devel/p5-prefork|any|y|y|y|y
p5-File-HomeDir-0.58|devel/p5-File-HomeDir||retrieve home directory location|devel/p5-File-HomeDir/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Modified-0.07|devel/p5-File-Modified||checks intelligently if files have changed|devel/p5-File-Modified/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-NCopy-0.32|devel/p5-File-NCopy||copy files and directories with perl|devel/p5-File-NCopy/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Path-Expand-1.02|devel/p5-File-Path-Expand||expands user directories in paths|devel/p5-File-Path-Expand/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-File-ReadBackwards-1.04|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-Remove-0.34|devel/p5-File-Remove||remove files and directories with perl|devel/p5-File-Remove/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-ShareDir-0.05|devel/p5-File-ShareDir||locate install data per-module|devel/p5-File-ShareDir/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Class-Inspector :devel/p5-Params-Util|any|y|y|y|y
p5-File-Slurp-9999.12|devel/p5-File-Slurp||efficient reading/writing of complete files|devel/p5-File-Slurp/pkg/DESCR|Mathieu Sauve-Frankel <[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||||any|y|y|y|y
p5-File-Tail-0.99.3|devel/p5-File-Tail||library for reading from continuously updated files|devel/p5-File-Tail/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-Type-0.22p0|devel/p5-File-Type||determine file type using magic|devel/p5-File-Type/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-File-chdir-0.06p0|devel/p5-File-chdir||more sensible way to change directories|devel/p5-File-chdir/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-FormValidator-Simple-0.19|devel/p5-FormValidator-Simple||validate user input through a chain of constraints|devel/p5-FormValidator-Simple/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Class-Accessor :devel/p5-Class-Data-Inheritable :devel/p5-Class-Inspector :devel/p5-Date-Calc :devel/p5-DateTime-Format-Strptime :devel/p5-List-MoreUtils :devel/p5-Tie-IxHash :devel/p5-Universal-require :devel/p5-YAML :mail/p5-Email-Valid :mail/p5-Email-Valid-Loose :mail/p5-Mail-Tools p5-Class-Data-Accessor->=0.03:devel/p5-Class-Data-Accessor|any|y|y|y|y
p5-Fortran-Format-0.90|devel/p5-Fortran-Format||read/write data according to a standard Fortran 77 FORMAT|devel/p5-Fortran-Format/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-FreezeThaw-0.43p0|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-1.1001|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-Glib2-1.120|devel/p5-Glib2||perl interface to the Glib libraries|devel/p5-Glib2/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|x11 devel perl5|glib-2.0,gobject-2.0::devel/glib2 iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|:devel/gmake :devel/p5-ExtUtils-Depends :devel/p5-ExtUtils-PkgConfig gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
p5-Graph-0.80|devel/p5-Graph||graph data structures in perl|devel/p5-Graph/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|perl5 perl5||p5-Heap-*:devel/p5-Heap|p5-Heap-*:devel/p5-Heap|any|y|y|y|y
p5-Hash-Merge-0.08p0|devel/p5-Hash-Merge||merge associative arrays|devel/p5-Hash-Merge/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Clone|any|y|y|y|y
p5-Heap-0.71|devel/p5-Heap||heap data structure in perl|devel/p5-Heap/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|perl5 perl5||||any|y|y|y|y
p5-Hook-LexWrap-0.20|devel/p5-Hook-LexWrap||lexically scoped subroutine wrappers|devel/p5-Hook-LexWrap/pkg/DESCR|Deanna Phillips <[email protected]>|devel perl5||||any|y|y|y|y
p5-I18N-LangTags-0.35|devel/p5-I18N-LangTags||perl support to RFC 3066 language tags|devel/p5-I18N-LangTags/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-All-0.36|devel/p5-IO-All||universal io to everything|devel/p5-IO-All/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-IO-String|any|y|y|y|y
p5-IO-Capture-0.05p0|devel/p5-IO-Capture||module for capturing output|devel/p5-IO-Capture/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-Digest-0.10p0|devel/p5-IO-Digest||module for computing digests while reading or writing|devel/p5-IO-Digest/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-PerlIO-via-dynamic->=0.11:devel/p5-PerlIO-via-dynamic|p5-PerlIO-via-dynamic->=0.11:devel/p5-PerlIO-via-dynamic|any|y|y|y|y
p5-IO-KQueue-0.31|devel/p5-IO-KQueue||perl interface to the BSD kqueue system call|devel/p5-IO-KQueue/pkg/DESCR|Srebrenko Sehic <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-LockedFile-0.23|devel/p5-IO-LockedFile||object methods for locking files|devel/p5-IO-LockedFile/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-Multiplex-1.08p0|devel/p5-IO-Multiplex||handle multiple file handles|devel/p5-IO-Multiplex/pkg/DESCR|Jakob Schlyter <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-Pager-0.06p0|devel/p5-IO-Pager||select a pager if destination is a TTY|devel/p5-IO-Pager/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-String-1.08p0|devel/p5-IO-String||emulate IO::File interface for in-core strings|devel/p5-IO-String/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-IO-Tee-0.64|devel/p5-IO-Tee||multiplex output to multiple handles|devel/p5-IO-Tee/pkg/DESCR|The OpenBSD ports mailing-list <[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||||any|y|y|y|y
p5-IO-stringy-2.110|devel/p5-IO-stringy||in-core objects like strings and arrays for I/O|devel/p5-IO-stringy/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-IPC-Run-0.80|devel/p5-IPC-Run||run a subprocess|devel/p5-IPC-Run/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-IPC-Run3-0.036|devel/p5-IPC-Run3||run a subprocess in batch mode|devel/p5-IPC-Run3/pkg/DESCR|Kevin Lo <[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||||any|y|y|y|y
p5-Inline-0.44|devel/p5-Inline||write Perl subroutines in other programming languages|devel/p5-Inline/pkg/DESCR|Andreas Bihlmaier <[email protected]>|devel perl5|||:devel/p5-Parse-RecDescent|any|y|y|y|y
p5-Lchown-1.00|devel/p5-Lchown||Perl interface to the lchown(2) system call|devel/p5-Lchown/pkg/DESCR|Alexander Bluhm <[email protected]>|devel perl5||||any|y|y|y|y
p5-List-MoreUtils-0.19|devel/p5-List-MoreUtils||perl5 extra list utilities|devel/p5-List-MoreUtils/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Locale-Maketext-Fuzzy-0.02|devel/p5-Locale-Maketext-Fuzzy||Maketext from already interpolated strings|devel/p5-Locale-Maketext-Fuzzy/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|converters perl5||||any|y|y|y|y
p5-Locale-Maketext-Gettext-1.17|devel/p5-Locale-Maketext-Gettext||joins the gettext and maketext frameworks|devel/p5-Locale-Maketext-Gettext/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|converters perl5||||any|y|y|y|y
p5-Locale-Maketext-Lexicon-0.47|devel/p5-Locale-Maketext-Lexicon||use other catalog formats in Locale::Maketext|devel/p5-Locale-Maketext-Lexicon/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Locale-Maketext-Simple-0.18|devel/p5-Locale-Maketext-Simple||simple interface to Locale::Maketext::Lexicon|devel/p5-Locale-Maketext-Simple/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Locale-PGetText-0.16p0|devel/p5-Locale-PGettext||perl i18n routines|devel/p5-Locale-PGettext/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Locale-gettext-1.05|devel/p5-Locale-gettext||interface to gettext() internationalization function|devel/p5-Locale-gettext/pkg/DESCR|Antoine Jacoutot <[email protected]>|converters perl5|iconv.>=4::converters/libiconv intl.>=3:gettext->=0.10.38:devel/gettext|gettext->=0.14.6:devel/gettext|gettext->=0.10.38:devel/gettext|any|y|y|y|y
p5-Log-Agent-0.307|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-Dispatch-2.13|devel/p5-Log-Dispatch||dispatches messages to one or more outputs|devel/p5-Log-Dispatch/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-Params-Validate|:devel/p5-Params-Validate|any|y|y|y|y
p5-Log-Log4perl-1.08|devel/p5-Log-Log4perl||Log4j implementation for Perl|devel/p5-Log-Log4perl/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-MLDBM-2.01p0|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.30p0|devel/p5-MLDBM-Sync||safe concurrent access to MLDBM databases|devel/p5-MLDBM-Sync/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||p5-MLDBM-*:devel/p5-MLDBM|p5-MLDBM-*:devel/p5-MLDBM|any|y|y|y|y
p5-Module-Build-0.2806|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-Module-CoreList-2.09|devel/p5-Module-CoreList||see what modules shipped with versions of Perl|devel/p5-Module-CoreList/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5|||:devel/p5-version|any|y|y|y|y
p5-Module-Find-0.05|devel/p5-Module-Find||find and use installed modules in a (sub)category|devel/p5-Module-Find/pkg/DESCR|Sean Comeau <[email protected]>|devel perl5||||any|y|y|y|y
p5-Module-Install-0.64|devel/p5-Module-Install||standalone extensible Perl module installer|devel/p5-Module-Install/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5 perl5|||:archivers/p5-Archive-Tar :devel/p5-ExtUtils-ParseXS :devel/p5-Module-Build :devel/p5-Module-CoreList :devel/p5-Module-ScanDeps :devel/p5-PAR-Dist|any|y|y|y|y
p5-Module-Load-0.10|devel/p5-Module-Load||runtime require of both modules and files|devel/p5-Module-Load/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Module-Pluggable-3.1|devel/p5-Module-Pluggable||turn search paths into subclasses/plugins|devel/p5-Module-Pluggable/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5|||:devel/p5-Class-Inspector|any|y|y|y|y
p5-Module-Pluggable-Fast-0.18|devel/p5-Module-Pluggable-Fast||instantiate plugins as they're found|devel/p5-Module-Pluggable-Fast/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5|||p5-Universal-exports-<=0.05|p5-Universal-require-*:devel/p5-Universal-require|any|y|y|y|y
p5-Module-Refresh-0.09|devel/p5-Module-Refresh||refresh perl %INC files when updated on disk|devel/p5-Module-Refresh/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Module-ScanDeps-0.68|devel/p5-Module-ScanDeps||recursively scan Perl code for dependencies|devel/p5-Module-ScanDeps/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-Module-Versions-Report-1.02|devel/p5-Module-Versions-Report||report versions of all perl modules in memory|devel/p5-Module-Versions-Report/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Net-Server-0.90|devel/p5-Net-Server||extensible framework for Perl server engines|devel/p5-Net-Server/pkg/DESCR|Nick Nauwelaerts <[email protected]>|devel net perl5||||any|y|y|y|y
p5-Number-Compare-0.01p0|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.02p0|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-OLE-Storage_Lite-0.14|devel/p5-OLE-Storage_Lite||simple class for OLE document interface|devel/p5-OLE-Storage_Lite/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Object-Declare-0.13|devel/p5-Object-Declare||declarative object constructor|devel/p5-Object-Declare/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|www perl5 perl5|||:devel/p5-Sub-Override|any|y|y|y|y
p5-Object-Realize-0.15p0|devel/p5-Object-Realize||perl module to implementing delay loading of object-data|devel/p5-Object-Realize/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Object-Signature-1.05|devel/p5-Object-Signature||cryptographic signatures for objects|devel/p5-Object-Signature/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-PAR-Dist-0.21|devel/p5-PAR-Dist||create and manipulate PAR distributions|devel/p5-PAR-Dist/pkg/DESCR|Simon Dassow <[email protected]>|devel archivers perl5||||any|y|y|y|y
p5-POE-0.38|devel/p5-POE||portable multitasking and networking framework for perl|devel/p5-POE/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5|||:www/p5-libwww|any|y|y|y|y
p5-PadWalker-1.2|devel/p5-PadWalker||peek at lexical variables|devel/p5-PadWalker/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Parallel-ForkManager-0.7.5p0|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-CallbackRequest-1.13|devel/p5-Params-CallbackRequest||functional and object-oriented callback architecture|devel/p5-Params-CallbackRequest/pkg/DESCR|Nikolay Sturm <[email protected]>|devel perl5||:devel/p5-Exception-Class :devel/p5-Module-Build :devel/p5-Params-Validate|:devel/p5-Exception-Class :devel/p5-Params-Validate|any|y|y|y|y
p5-Params-Util-0.21|devel/p5-Params-Util||utility to make parameter checking easier|devel/p5-Params-Util/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Params-Validate-0.78|devel/p5-Params-Validate||perl module to validate function/method parameters|devel/p5-Params-Validate/pkg/DESCR|Michael Coulter <[email protected]>|devel perl5||||any|y|y|y|y
p5-Parse-RecDescent-1.94p0|devel/p5-Parse-RecDescent||perl module to generate recursive descent parsers|devel/p5-Parse-RecDescent/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Path-Class-0.15|devel/p5-Path-Class||cross-platform path manipulation|devel/p5-Path-Class/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Perl-Critic-0.21|devel/p5-Perl-Critic||sprintf-like string formatting|devel/p5-Perl-Critic/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Config-Tiny :devel/p5-Module-Build :devel/p5-Module-Pluggable :devel/p5-Set-Scalar :devel/p5-String-Format :textproc/p5-PPI|:devel/p5-Config-Tiny :devel/p5-Module-Pluggable :devel/p5-Set-Scalar :devel/p5-String-Format :textproc/p5-PPI|any|y|y|y|y
p5-PerlIO-eol-0.13|devel/p5-PerlIO-eol||PerlIO layer for normalizing line endings|devel/p5-PerlIO-eol/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-PerlIO-via-dynamic-0.12|devel/p5-PerlIO-via-dynamic||create dynamic PerlIO layers|devel/p5-PerlIO-via-dynamic/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-PerlIO-via-symlink-0.05p0|devel/p5-PerlIO-via-symlink||create symlink from IO handle|devel/p5-PerlIO-via-symlink/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Pod-Coverage-0.18|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|any|y|y|y|y
p5-Proc-Background-1.08|devel/p5-Proc-Background||peek at lexical variables|devel/p5-Proc-Background/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Proc-Daemon-0.03|devel/p5-Proc-Daemon||run perl program as a daemon process|devel/p5-Proc-Daemon/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Proc-Simple-1.21|devel/p5-Proc-Simple||module to launch and control background processes|devel/p5-Proc-Simple/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Readonly-1.03p0|devel/p5-Readonly||create readonly variables|devel/p5-Readonly/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Readonly-XS-1.04|devel/p5-Readonly-XS||create readonly variables faster|devel/p5-Readonly-XS/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Readonly|any|y|y|y|y
p5-Regexp-Shellish-0.93p0|devel/p5-Regexp-Shellish||module for shell-like regular expressions|devel/p5-Regexp-Shellish/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Return-Value-1.301|devel/p5-Return-Value||polymorphic return values|devel/p5-Return-Value/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-SVN-Mirror-0.70p0|devel/p5-SVN-Mirror||subversion repository mirroring tool|devel/p5-SVN-Mirror/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-Class-Accessor->=0.19:devel/p5-Class-Accessor p5-Data-UUID->=0.11:devel/p5-Data-UUID p5-File-chdir->=0.06:devel/p5-File-chdir p5-SVN-Simple->=0.27:devel/p5-SVN-Simple p5-Sort-Versions->=1.5:textproc/p5-Sort-Versions p5-Term-ReadKey->=2.21:devel/p5-Term-ReadKey p5-Time-TimeDate->=1.16:devel/p5-Time-TimeDate p5-URI->=1.30:www/p5-URI p5-VCP-autrijus->=0.9:devel/p5-VCP-autrijus|p5-Class-Accessor->=0.19:devel/p5-Class-Accessor p5-Data-UUID->=0.11:devel/p5-Data-UUID p5-File-chdir->=0.06:devel/p5-File-chdir p5-SVN-Simple->=0.27:devel/p5-SVN-Simple p5-Sort-Versions->=1.5:textproc/p5-Sort-Versions p5-Term-ReadKey->=2.21:devel/p5-Term-ReadKey p5-Time-TimeDate->=1.16:devel/p5-Time-TimeDate p5-URI->=1.30:www/p5-URI p5-VCP-autrijus->=0.9:devel/p5-VCP-autrijus|any|y|y|y|y
p5-SVN-Notify-2.64|devel/p5-SVN-Notify||subversion activity notification|devel/p5-SVN-Notify/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/subversion,-perl :www/p5-HTML-Parser|:devel/subversion,-perl :www/p5-HTML-Parser|any|y|y|y|y
p5-SVN-Simple-0.27p0|devel/p5-SVN-Simple||simple interface to subversion's editor interface|devel/p5-SVN-Simple/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-SVN->=1.1.1:devel/subversion,-perl|p5-SVN->=1.1.1:devel/subversion,-perl|any|y|y|y|y
p5-SVN-Web-0.48|devel/p5-SVN-Web||subversion repository web frontend|devel/p5-SVN-Web/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||:devel/p5-Cache-Cache :devel/p5-Exception-Class :devel/p5-Locale-Maketext-Lexicon :devel/p5-Locale-Maketext-Simple :devel/p5-Module-Build :devel/p5-Test-WWW-Mechanize :devel/p5-Time-TimeDate :devel/p5-YAML :devel/subversion,-perl :textproc/p5-Template-Plugin-Number-Format :textproc/p5-Text-Diff-HTML :textproc/p5-XML-RSS-Parser|:devel/p5-Cache-Cache :devel/p5-Exception-Class :devel/p5-Locale-Maketext-Lexicon :devel/p5-Locale-Maketext-Simple :devel/p5-Test-WWW-Mechanize :devel/p5-Time-TimeDate :devel/p5-YAML :devel/subversion,-perl :textproc/p5-Template-Plugin-Number-Format :textproc/p5-Text-Diff-HTML :textproc/p5-XML-RSS-Parser|any|y|y|y|y
p5-Scalar-Defer-0.07|devel/p5-Scalar-Defer||deferred and lazy evaluation|devel/p5-Scalar-Defer/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Class-InsideOut :devel/p5-Exporter-Lite|any|y|y|y|y
p5-Set-IntRange-5.1|devel/p5-Set-IntRange||set of integers|devel/p5-Set-IntRange/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:math/p5-Bit-Vector|any|y|y|y|y
p5-Set-Object-1.18|devel/p5-Set-Object||set of objects and strings|devel/p5-Set-Object/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-Set-Scalar-1.20p0|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-Shell-Command-1.12|devel/p5-Shell-Command||simple Unix commands in perl|devel/p5-Shell-Command/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Smart-Comments-1.0.2p0|devel/p5-Smart-Comments||debugging aid based on comments|devel/p5-Smart-Comments/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build :devel/p5-version|:devel/p5-version|any|y|y|y|y
p5-Spiffy-0.30|devel/p5-Spiffy||object-oriented framework|devel/p5-Spiffy/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-String-CRC32-1.3|devel/p5-String-CRC32||interface for cyclic redundancy check generation|devel/p5-String-CRC32/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-String-Format-1.14p0|devel/p5-String-Format||perl printf extensions|devel/p5-String-Format/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-String-Scanf-2.1|devel/p5-String-Scanf||Emulates the sscanf() of the C stdio library|devel/p5-String-Scanf/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Sub-Exporter-0.972|devel/p5-Sub-Exporter||exporter on steroids|devel/p5-Sub-Exporter/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Data-OptList :devel/p5-Sub-Install|any|y|y|y|y
p5-Sub-Name-0.02|devel/p5-Sub-Name||(re)name a sub|devel/p5-Sub-Name/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Sub-Install-0.924|devel/p5-Sub-Install||helper for installing code into packages|devel/p5-Sub-Install/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Sub-Override-0.08|devel/p5-Sub-Override||extension for easily overriding subroutines|devel/p5-Sub-Override/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Sub-Uplevel-0.14|devel/p5-Sub-Uplevel||Perl library for manipulating frame stack|devel/p5-Sub-Uplevel/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Taint-Runtime-0.02|devel/p5-Taint-Runtime||runtime enable taint checking|devel/p5-Taint-Runtime/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-Task-Weaken-0.99|devel/p5-Task-Weaken||ensure that a platform has weaken support|devel/p5-Task-Weaken/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Term-Prompt-1.03|devel/p5-Term-Prompt||handles various forms of terminal input|devel/p5-Term-Prompt/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Term-ReadKey|any|y|y|y|y
p5-Term-ReadKey-2.30p0|devel/p5-Term-ReadKey||change terminal modes, and perform non-blocking reads|devel/p5-Term-ReadKey/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ReadLine-Gnu-1.16|devel/p5-Term-ReadLine-Gnu||GNU Readline Library Wrapper Module|devel/p5-Term-ReadLine-Gnu/pkg/DESCR|Peter Stromberg <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ReadPassword-0.07p0|devel/p5-Term-ReadPassword||ask passwords from perl|devel/p5-Term-ReadPassword/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-Screen-1.03|devel/p5-Term-Screen||positioning screen based module|devel/p5-Term-Screen/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-ScreenColor-1.09p0|devel/p5-Term-ScreenColor||screen positioning and coloring module|devel/p5-Term-ScreenColor/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Term-Shell-0.01p0|devel/p5-Term-Shell||simple command-line shell framework|devel/p5-Term-Shell/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Base-0.52|devel/p5-Test-Base||data driven test framework|devel/p5-Test-Base/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Spiffy|any|y|y|y|y
p5-Test-Class-0.22|devel/p5-Test-Class||easily create test classes in an xUnit style|devel/p5-Test-Class/pkg/DESCR|Nikolay Sturm <[email protected]>|devel perl5||:devel/p5-Devel-Symdump :devel/p5-Test-Differences :devel/p5-Test-Exception|:devel/p5-Devel-Symdump :devel/p5-Test-Differences :devel/p5-Test-Exception|any|y|y|y|y
p5-Test-ClassAPI-1.02|devel/p5-Test-ClassAPI||basic first-pass API testing for large class trees|devel/p5-Test-ClassAPI/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Class-Inspector :devel/p5-Config-Tiny|:devel/p5-Class-Inspector :devel/p5-Config-Tiny|any|y|y|y|y
p5-Test-Deep-0.096|devel/p5-Test-Deep||flexible deep comparison|devel/p5-Test-Deep/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5|||:devel/p5-Test-NoWarnings|any|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-Test-Exception-0.24|devel/p5-Test-Exception||test functions for exception based code|devel/p5-Test-Exception/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Sub-Uplevel|:devel/p5-Sub-Uplevel|any|y|y|y|y
p5-Test-File-Contents-0.03p0|devel/p5-Test-File-Contents||perl test framework for file contents|devel/p5-Test-File-Contents/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Test-Inline-2.105|devel/p5-Test-Inline||inlining your tests next to the code being tested|devel/p5-Test-Inline/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Algorithm-Dependency :devel/p5-Class-Autouse :devel/p5-Config-Tiny :devel/p5-File-Find-Rule :devel/p5-File-Flat :textproc/p5-Pod-Tests|:devel/p5-Algorithm-Dependency :devel/p5-Class-Autouse :devel/p5-Config-Tiny :devel/p5-File-Find-Rule :devel/p5-File-Flat :textproc/p5-Pod-Tests|any|y|y|y|y
p5-Test-LongString-0.11|devel/p5-Test-LongString||tests strings for equality|devel/p5-Test-LongString/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Manifest-1.14|devel/p5-Test-Manifest||interact with a t/test_manifest file|devel/p5-Test-Manifest/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Memory-Cycle-1.04|devel/p5-Test-Memory-Cycle||perl extension for emulating troublesome interfaces|devel/p5-Test-Memory-Cycle/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Devel-Cycle|:devel/p5-Devel-Cycle|any|y|y|y|y
p5-Test-MockModule-0.05|devel/p5-Test-MockModule||override subroutines in a module for unit testing|devel/p5-Test-MockModule/pkg/DESCR|Nikolay Sturm <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-MockObject-1.07|devel/p5-Test-MockObject||perl extension for emulating troublesome interfaces|devel/p5-Test-MockObject/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-Universal-can :devel/p5-Universal-isa|any|y|y|y|y
p5-Test-NoWarnings-0.082|devel/p5-Test-NoWarnings||forbids warnings while testing|devel/p5-Test-NoWarnings/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5|||:devel/p5-Test-Tester|any|y|y|y|y
p5-Test-Object-0.07|devel/p5-Test-Object||thoroughly testing objects via registered handlers|devel/p5-Test-Object/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Output-0.10|devel/p5-Test-Output||test output of other modules|devel/p5-Test-Output/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Sub-Exporter|any|y|y|y|y
p5-Test-Perl-Critic-0.08|devel/p5-Test-Perl-Critic||test framework to run Perl::Critic|devel/p5-Test-Perl-Critic/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build|:devel/p5-Perl-Critic|any|y|y|y|y
p5-Test-Pod-1.26|devel/p5-Test-Pod||check for POD errors in files|devel/p5-Test-Pod/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:textproc/p5-Pod-Simple|:textproc/p5-Pod-Simple|any|y|y|y|y
p5-Test-Pod-Coverage-1.08|devel/p5-Test-Pod-Coverage||check for pod coverage in your distribution|devel/p5-Test-Pod-Coverage/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Pod-Coverage|:devel/p5-Pod-Coverage|any|y|y|y|y
p5-Test-Reporter-1.27|devel/p5-Test-Reporter||sends test results to [email protected]|devel/p5-Test-Reporter/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Taint-1.04p0|devel/p5-Test-Taint||tools to test taintedness|devel/p5-Test-Taint/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-Tester-0.103|devel/p5-Test-Tester||run tests built with Test::Builder|devel/p5-Test-Tester/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||||any|y|y|y|y
p5-Test-WWW-Mechanize-1.12|devel/p5-Test-WWW-Mechanize||test suite using WWW::Mechanize|devel/p5-Test-WWW-Mechanize/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|www perl5||:devel/p5-Carp-Assert-More :devel/p5-Test-LongString :www/p5-HTTP-Server-Simple :www/p5-WWW-Mechanize|:devel/p5-Carp-Assert-More :devel/p5-Test-LongString :www/p5-HTTP-Server-Simple :www/p5-WWW-Mechanize|any|y|y|y|y
p5-Test-WWW-Mechanize-Catalyst-0.37|devel/p5-Test-WWW-Mechanize-Catalyst||Test-WWW-Mechanize extension for catalyst|devel/p5-Test-WWW-Mechanize-Catalyst/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel www perl5||:devel/p5-Module-Build|:devel/p5-Test-WWW-Mechanize :www/p5-Catalyst-Runtime|any|y|y|y|y
p5-Test-Warn-0.08|devel/p5-Test-Warn||Perl extension to test methods for warnings|devel/p5-Test-Warn/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Array-Compare :devel/p5-Test-Exception :devel/p5-Tree-DAG_Node|:devel/p5-Array-Compare :devel/p5-Test-Exception :devel/p5-Tree-DAG_Node|any|y|y|y|y
p5-Test-use-ok-0.02|devel/p5-Test-use-ok||alternative to Test::More|devel/p5-Test-use-ok/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5 perl5||||any|y|y|y|y
p5-Tie-Array-Sorted-1.41|devel/p5-Tie-Array-Sorted||an array which is kept ordered|devel/p5-Tie-Array-Sorted/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Tie-CPHash-1.02|devel/p5-Tie-CPHash||case preserving but case insensitive hash table|devel/p5-Tie-CPHash/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Tie-IxHash-1.21|devel/p5-Tie-IxHash||ordered associative arrays for Perl|devel/p5-Tie-IxHash/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-Clock-0.11|devel/p5-Time-Clock||simple 24 hours clock object|devel/p5-Time-Clock/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-Period-1.20p0|devel/p5-Time-Period||module for dealing with time periods|devel/p5-Time-Period/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-Piece-1.08p0|devel/p5-Time-Piece||object oriented time interface|devel/p5-Time-Piece/pkg/DESCR|Gerardo Santana Gomez Garrido <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-Piece-MySQL-0.05|devel/p5-Time-Piece-MySQL||mysql representations for Time::Piece objects|devel/p5-Time-Piece-MySQL/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5|||:devel/p5-Time-Piece|any|y|y|y|y
p5-Time-TimeDate-1.16p0|devel/p5-Time-TimeDate||library for parsing and formatting dates and times|devel/p5-Time-TimeDate/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-Time-modules-2006.0814|devel/p5-Time-modules||object oriented time interface|devel/p5-Time-modules/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Tree-DAG_Node-1.05|devel/p5-Tree-DAG_Node||superclass for representing nodes in a tree|devel/p5-Tree-DAG_Node/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||||any|y|y|y|y
p5-Tree-Simple-1.17|devel/p5-Tree-Simple||A simple tree object|devel/p5-Tree-Simple/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Tree-Simple-VisitorFactory-0.10|devel/p5-Tree-Simple-VisitorFactory||factory for Tree::Simple visitor objects|devel/p5-Tree-Simple-VisitorFactory/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5|||:devel/p5-Tree-Simple|any|y|y|y|y
p5-Universal-can-1.12|devel/p5-Universal-can||calling UNIVERSAL::can as a function|devel/p5-Universal-can/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Universal-exports-0.05|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-isa-0.06|devel/p5-Universal-isa||calling UNIVERSAL::isa as a function|devel/p5-Universal-isa/pkg/DESCR|Simon Dassow <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
p5-Universal-moniker-0.08|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-Universal-require-0.10p0|devel/p5-Universal-require||extends require to work on variables|devel/p5-Universal-require/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel perl5||||any|y|y|y|y
p5-VCP-autrijus-0.9p0|devel/p5-VCP-autrijus||tool for copying resources between repositories|devel/p5-VCP-autrijus/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||p5-IPC-Run3->=0.01:devel/p5-IPC-Run3 p5-PodToHTML->=0.05:www/p5-PodToHTML p5-Regexp-Shellish->=0.93:devel/p5-Regexp-Shellish p5-Text-Diff->=0.35:textproc/p5-Text-Diff p5-XML-AutoWriter->=0.38:textproc/p5-XML-AutoWriter p5-XML-Parser->=2.31:textproc/p5-XML-Parser|p5-IPC-Run3->=0.01:devel/p5-IPC-Run3 p5-PodToHTML->=0.05:www/p5-PodToHTML p5-Regexp-Shellish->=0.93:devel/p5-Regexp-Shellish p5-Text-Diff->=0.35:textproc/p5-Text-Diff p5-XML-AutoWriter->=0.38:textproc/p5-XML-AutoWriter p5-XML-Parser->=2.31:textproc/p5-XML-Parser|any|y|y|y|y
p5-Want-0.12|devel/p5-Want||implementation of the want command|devel/p5-Want/pkg/DESCR|Jasper Lievisse Adriaanse <[email protected]>|devel perl5||||any|y|y|y|y
p5-YAML-0.62|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
p5-capitalization-0.03|devel/p5-capitalization||use familiar style on method naming|devel/p5-capitalization/pkg/DESCR|Mathieu Sauve-Frankel <[email protected]>|perl5 perl5||:devel/p5-Devel-Symdump|:devel/p5-Devel-Symdump|any|y|y|y|y
p5-prefork-1.01|devel/p5-prefork||optimized module loading for forking or non-forking processes|devel/p5-prefork/pkg/DESCR|Kevin Lo <[email protected]>|devel perl5||||any|y|y|y|y
p5-version-0.68|devel/p5-version||perl extension for version objects|devel/p5-version/pkg/DESCR|Steven Mestdagh <[email protected]>|devel perl5||:devel/p5-Module-Build||any|y|y|y|y
pango-1.12.3|devel/pango||library for layout and rendering of text|devel/pango/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel x11|cairo.>=3::graphics/cairo glib-2.0.>=1000.0,gmodule-2.0.>=1000.0,gobject-2.0.>=1000.0::devel/glib2|:devel/gmake :devel/libtool bzip2-*:archivers/bzip2||any|y|y|y|y
pccts-1.33r33|devel/pccts||Purdue Compiler Construction Tool Set|devel/pccts/pkg/DESCR|The OpenBSD ports mailing-list <[email protected]>|devel lang||unzip-*:archivers/unzip||any|y|y|y|y
pcre-6.4p1|devel/pcre||perl-compatible regular expression library|devel/pcre/pkg/DESCR|Jakob Schlyter <[email protected]>|devel||:devel/libtool||any|y|y|y|y
pcre++-0.9.5p1|devel/pcre++||wrapper class around the pcre library|devel/pcre++/pkg/DESCR|Tomasz Bak <[email protected]>|devel|pcre::devel/pcre|:devel/gmake :devel/libtool||any|y|y|y|y
pear-Cache-1.5.4p0|devel/pear-Cache|/var/www|Framework for caching of arbitrary data for PHP|devel/pear-Cache/pkg/DESCR|Marc Balmer <[email protected]>|devel pear||pear-HTTP-Request-*:net/pear-HTTP-Request php5-pear-*:www/php5/core,-pear|pear-HTTP-Request-*:net/pear-HTTP-Request php5-pear-*:www/php5/core,-pear|any|y|y|y|y
pear-Config-1.10.7|devel/pear-Config|/var/www|configuration file library for PHP|devel/pear-Config/pkg/DESCR|Marc Balmer <[email protected]>|devel pear||pear-XML-Parser-*:textproc/pear-XML-Parser pear-XML-Util-*:textproc/pear-XML-Util php5-pear-*:www/php5/core,-pear|pear-XML-Parser-*:textproc/pear-XML-Parser pear-XML-Util-*:textproc/pear-XML-Util php5-pear-*:www/php5/core,-pear|any|y|y|y|y
pear-Date-1.4.6|devel/pear-Date|/var/www|date and timezone classes for PHP|devel/pear-Date/pkg/DESCR|Marc Balmer <[email protected]>|devel pear||php5-pear-*:www/php5/core,-pear|php5-pear-*:www/php5/core,-pear|any|y|y|y|y
pear-Log-1.9.9|devel/pear-Log|/var/www|logging utilities for PHP|devel/pear-Log/pkg/DESCR|Marc Balmer <[email protected]>|devel pear||php5-pear-*:www/php5/core,-pear|php5-pear-*:www/php5/core,-pear|any|y|y|y|y
pear-PHPUnit2-2.1.6p0|devel/pear-PHPUnit2|/var/www|regression testing framework for PHP 5|devel/pear-PHPUnit2/pkg/DESCR|Aleksander Piotrowski <[email protected]>|devel pear||:benchmarks/pear-Benchmark php5-pear-*:www/php5/core,-pear|:benchmarks/pear-Benchmark php5-pear-*:www/php5/core,-pear|any|y|y|y|y