-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy path200412.html
1125 lines (1125 loc) · 48.2 KB
/
200412.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>OpenBSD ports changes - December 2004</title>
<link rev="made" href="mailto:[email protected]">
<meta name="resource-type" content="document">
<meta name="description" content="OpenBSD-ports changes">
<meta name="keywords" content="openbsd,ports,changes">
<meta name="distribution" content="global">
<meta name="copyright" content="This document copyright 2001-2005 by OpenBSD.">
</head>
<body bgcolor="#ffffff" text="#000000" link="#23238e">
<img alt="[OpenBSD]" height=30 width=141 src="../images/smalltitle.gif">
<p>
<h2><font color="#e00000">Changes made to the ports collection in 2004</font>
</h2>
<p>
This page lists changes to the OpenBSD <a href="../ports.html">ports</a>
collection made in 2004.
<p>
<big>
<b><a href="200411.html">For ports changes in November 2004, click
here</a>.</b><br>
<b><a href="200410.html">For ports changes in October 2004, click
here</a>.</b><br>
<b><a href="200409.html">For ports changes in September 2004, click
here</a>.</b><br>
<b><a href="200408.html">For ports changes in August 2004, click
here</a>.</b><br>
<b><a href="200407.html">For ports changes in July 2004, click
here</a>.</b><br>
<b><a href="200406.html">For ports changes in June 2004, click
here</a>.</b><br>
<b><a href="200405.html">For ports changes in May 2004, click
here</a>.</b><br>
<b><a href="200404.html">For ports changes in April 2004, click
here</a>.</b><br>
<b><a href="200403.html">For ports changes in March 2004, click
here</a>.</b><br>
<b><a href="200402.html">For ports changes in February 2004, click
here</a>.</b><br>
<b><a href="200401.html">For ports changes in January 2004, click
here</a>.</b>
</big>
<p>
<hr>
<p>
<h3><font color="#0000e0">December 2004</font></h3>
<ul>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Lingua-Stem/"
>textproc/p5-Lingua-Stem</a></b><br>
Stemming of words<br>
Marked p5-Lingua-Stem broken <i>[msf 2004-12-31]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/icecast/"
>net/icecast</a></b><br>
Server for streaming Ogg Vorbis and MP3<br>
Updated icecast to version 2.2.0 <i>[sturm 2004-12-31]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/kde/office3/"
>x11/kde/office3</a></b><br>
Office suite for KDE<br>
Updated kde-office3 to version 1.3.5 <i>[espie 2004-12-30]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/graphics/ImageMagick/"
>graphics/ImageMagick</a></b><br>
Image processing tools<br>
<font color="#e00000"><strong>SECURITY FIX: Updated ImageMagick with image
vulnerability fixes</strong></font> <i>[sturm 2004-12-30]</i><br>
<a href="../ports.html#stable"><font color="#00b000">[Applied to
ports-stable]</font></a>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Lingua-Stem/"
>textproc/p5-Lingua-Stem</a></b><br>
Stemming of words<br>
Added p5-Lingua-Stem-0.81; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
textproc/p5-Lingua-Stem-Snowball-Se/"
>textproc/p5-Lingua-Stem-Snowball-Se</a></b><br>
Porters stemming algorithm for Sweden<br>
Added p5-Lingua-Stem-Snowball-Se-1.01; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
textproc/p5-Lingua-Stem-Snowball-No/"
>textproc/p5-Lingua-Stem-Snowball-No</a></b><br>
Porters stemming algorithm for Denmark<br>
Added p5-Lingua-Stem-Snowball-No-1.0; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
textproc/p5-Lingua-Stem-Snowball-Da/"
>textproc/p5-Lingua-Stem-Snowball-Da</a></b><br>
Porters stemming algorithm for Denmark<br>
Added p5-Lingua-Stem-Snowball-Da-1.01; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Tie-Array-Sorted/"
>devel/p5-Tie-Array-Sorted</a></b><br>
An array which is kept ordered<br>
Added p5-Tie-Array-Sorted-1.3; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Lingua-Stem-Ru/"
>textproc/p5-Lingua-Stem-Ru</a></b><br>
Russian language stemming<br>
Added p5-Lingua-Stem-Ru-0.01; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Lingua-Stem-It/"
>textproc/p5-Lingua-Stem-It</a></b><br>
Itialian language stemming<br>
Added p5-Lingua-Stem-It-0.01; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Lingua-Stem-Fr/"
>textproc/p5-Lingua-Stem-Fr</a></b><br>
French language stemming<br>
Added p5-Lingua-Stem-Fr-0.02; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/
p5-Lingua-PT-Stemmer/">textproc/p5-Lingua-PT-Stemmer</a></b><br>
Portuguese language stemming<br>
Added p5-Lingua-PT-Stemmer-0.01; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-File-Slurp/"
>devel/p5-File-Slurp</a></b><br>
Efficient reading/writing of complete files<br>
Added p5-File-Slurp-9999.06; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Bit-Vector-Minimal/"
>devel/p5-Bit-Vector-Minimal</a></b><br>
Object-oriented wrapper around vec()<br>
Added p5-Bit-Vector-Minimal-1.1; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/kmplayer/"
>x11/kmplayer</a></b><br>
Front-end/embeddable kpart for mplayer<br>
Marked kmplayer broken <i>[espie 2004-12-29]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Date-Simple/"
>devel/p5-Date-Simple</a></b><br>
Manipulate simple date objects<br>
Updated p5-Date-Simple to version 3.02 <i>[msf 2004-12-29]</i>
<li><b>misc/pi-address</b><br>
Removed pi-address <i>[pvalchev 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/comms/malsync/"
>comms/malsync</a></b><br>
Command line tool to synchronize Palm pilot to AvantGo<br>
Updated malsync to version 2.1.1 <i>[pvalchev 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/p5-URI/"
>www/p5-URI</a></b><br>
Library to parse Uniform Resource Identifiers<br>
Updated p5-URI to version 1.35 <i>[kevlo 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Devel-Size/"
>devel/p5-Devel-Size</a></b><br>
Finding memory usage of perl variables<br>
Added p5-Devel-Size-0.59; unmaintained <i>[espie 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/p5-Mail-SpamAssassin/"
>mail/p5-Mail-SpamAssassin</a></b><br>
Mailfilter to identify and mark spam<br>
Updated p5-Mail-SpamAssassin to version 3.0.2 <i>[sturm 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/freedt/"
>sysutils/freedt</a></b><br>
Reimplementation of Dan Bernstein's daemontools<br>
Updated freedt to version 0.20 <i>[sturm 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/postfix/snapshot/"
>mail/postfix/snapshot</a></b><br>
Fast, secure sendmail replacement<br>
Updated postfix-snapshot to version 2.2.20041221 <i>[jakob 2004-12-28]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/mozilla-thunderbird/"
>mail/mozilla-thunderbird</a></b><br>
Redesign of the integrated Mozilla App-Suite mail component<br>
Updated mozilla-thunderbird to version 1.0p0 <i>[wilfried 2004-12-27]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/security/stunnel/"
>security/stunnel</a></b><br>
SSL encryption wrapper for standard network daemons<br>
Updated stunnel to version 4.07 <i>[jakob 2004-12-27]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/gtk-gnutella/"
>net/gtk-gnutella</a></b><br>
Gtk-based GUI client for the Gnutella Network<br>
Updated gtk-gnutella to version 0.95 <i>[sturm 2004-12-26]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/getmail/"
>mail/getmail</a></b><br>
POP3 mail retriever<br>
Updated getmail to version 4.2.6 <i>[sturm 2004-12-26]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/databases/dbh/"
>databases/dbh</a></b><br>
Library to create Disk Based Hashtables on POSIX systems<br>
Updated dbh to version 1.0.20 <i>[jolan 2004-12-25]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/print/teTeX/base/"
>print/teTeX/base</a></b><br>
TeX distribution, executables<br>
<font color="#e00000"><strong>SECURITY FIX: Updated teTeX-base to version
2.0.2p2</strong></font> <i>[sturm 2004-12-25]</i><br>
<a href="../ports.html#stable"><font color="#00b000">[Applied to
ports-stable]</font></a>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/biology/nutdb/"
>biology/nutdb</a></b><br>
Record what you eat and analyze your meals for nutrient composition<br>
Updated nutdb to version 10.12 <i>[sturm 2004-12-25]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/jdk/1.3-linux/"
>devel/jdk/1.3-linux</a></b><br>
Java Development Kit for Java 2 Standard Edition 1.3<br>
Updated jdk-1.3-linux to version 1.3.1_15 <i>[sturm 2004-12-25]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/hot-babe/"
>sysutils/hot-babe</a></b><br>
Small utility which displays system activity.<br>
Added hot-babe-0.2.2; maintained by <a
href="mailto:[email protected]">Jan Lindblom</a> <i>[alek 2004-12-25]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/moodle/"
>www/moodle</a></b><br>
Learning management system<br>
Added moodle-1.4.3; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/misc/py-imdb/"
>misc/py-imdb</a></b><br>
Python package to retrieve data of the IMDb movie database<br>
Updated py-imdb to version 1.6 <i>[xsa 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/graphics/p5-Image-Info/"
>graphics/p5-Image-Info</a></b><br>
Perl module for getting image information<br>
Updated p5-Image-Info to version 1.16 <i>[kevlo 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Date-Handler/"
>devel/p5-Date-Handler</a></b><br>
Perl module for calculates time differences<br>
Updated p5-Date-Handler to version 1.2 <i>[kevlo 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/p5-Mail-POP3Client/"
>mail/p5-Mail-POP3Client</a></b><br>
Perl module to talk to a POP3 (RFC1081) server<br>
Updated p5-Mail-POP3Client to version 2.16 <i>[kevlo 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/phpldapadmin/"
>www/phpldapadmin</a></b><br>
Web-based LDAP browser to manage LDAP servers<br>
Added phpldapadmin-0.9.5; maintained by <a
href="mailto:[email protected]">AJ Nelson</a> <i>[mbalmer 2004-12-24]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/pmk/"
>devel/pmk</a></b><br>
Dependency configuration tool<br>
Added pmk-0.9.0p0; maintained by <a
href="mailto:[email protected]">Damien Couderc</a> <i>[couderc
2004-12-23]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-SVN-Mirror/"
>devel/p5-SVN-Mirror</a></b><br>
Subversion repository mirroring tool<br>
Updated p5-SVN-Mirror to version 0.51 <i>[kevlo 2004-12-22]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/mplayer/"
>x11/mplayer</a></b><br>
Movie player supporting MPEG, DivX, AVI, ASF, MOV & more<br>
<font color="#e00000"><strong>SECURITY FIX: Updated mplayer to version
1.0pre5try2</strong></font> <i>[biorn 2004-12-22]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/print/acroread/"
>print/acroread</a></b><br>
View, distribute and print PDF documents<br>
<font color="#e00000"><strong>SECURITY FIX: Updated acroread to version
5.010</strong></font> <i>[sturm 2004-12-22]</i><br>
<a href="../ports.html#stable"><font color="#00b000">[Applied to
ports-stable]</font></a>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/xpdf/"
>textproc/xpdf</a></b><br>
PDF viewer for X<br>
<font color="#e00000"><strong>SECURITY FIX: Updated xpdf to version
3.00p2</strong></font> <i>[robert 2004-12-22]</i><br>
<a href="../ports.html#stable"><font color="#00b000">[Applied to
ports-stable]</font></a>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/py-openbsd/"
>devel/py-openbsd</a></b><br>
Specific Python bindings for OpenBSD<br>
Added py-openbsd-0.1.2; maintained by <a
href="mailto:[email protected]">Aldo Cortesi</a> <i>[xsa 2004-12-22]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/mediawiki/"
>www/mediawiki</a></b><br>
Web-based collaborative editing environment<br>
Added mediawiki-1.3.9; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-22]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/audio/rhythmbox/"
>audio/rhythmbox</a></b><br>
Music Management Application<br>
Added rhythmbox-0.8.7; maintained by <a
href="mailto:[email protected]">Marc Matteo</a> <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/gstreamer-plugins/"
>devel/gstreamer-plugins</a></b><br>
GStreamer Streaming-media framework plug-ins.<br>
Added gstreamer-plugins-0.8.6p0; maintained by <a
href="mailto:[email protected]">Marc Matteo</a> <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/gstreamer/"
>devel/gstreamer</a></b><br>
GStreamer streaming media framework runtime<br>
Added gstreamer-0.8.7; maintained by <a
href="mailto:[email protected]">Marc Matteo</a> <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/gpdf/"
>textproc/gpdf</a></b><br>
PDF viewer for GNOME<br>
Updated gpdf to version 2.8.1 <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/math/gnumeric/"
>math/gnumeric</a></b><br>
Spreadsheet application for GNOME<br>
Updated gnumeric to version 1.4.1 <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/graphics/dia/"
>graphics/dia</a></b><br>
Technical diagrams drawing tool<br>
Updated dia to version 0.94 <i>[marcm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Text-Wrapper/"
>textproc/p5-Text-Wrapper</a></b><br>
Simple word wrapping routine<br>
Added p5-Text-Wrapper-1.000; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Text-Quoted/"
>textproc/p5-Text-Quoted</a></b><br>
Extract the structure of a quoted mail message<br>
Added p5-Text-Quoted-1.8; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Regexp-Common/"
>textproc/p5-Regexp-Common</a></b><br>
Use other catalog formats in Locale::Maketext<br>
Added p5-Regexp-Common-2.118; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Tree-Simple/"
>devel/p5-Tree-Simple</a></b><br>
A simple tree object<br>
Added p5-Tree-Simple-1.14; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b>devel/jdk/1.4-linux</b><br>
Removed jdk-1.4-linux <i>[kurt 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-SVN-Notify/"
>devel/p5-SVN-Notify</a></b><br>
Subversion activity notification<br>
Added p5-SVN-Notify-2.43; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-SVN-Web/"
>devel/p5-SVN-Web</a></b><br>
Subversion repository web frontend<br>
Added p5-SVN-Web-0.38; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/cue/"
>mail/cue</a></b><br>
Mh-e like mail user agent<br>
Updated cue to version 20041220 <i>[naddy 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/
p5-XML-RSS-TimingBot/">textproc/p5-XML-RSS-TimingBot</a></b><br>
Efficiently fetch RSS feeds<br>
Added p5-XML-RSS-TimingBot-2.03; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-XML-RSS-Timing/"
>textproc/p5-XML-RSS-Timing</a></b><br>
Figure out when to fetch RSS Feeds<br>
Added p5-XML-RSS-Timing-1.07; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-XML-RAI/"
>textproc/p5-XML-RAI</a></b><br>
RSS Abstraction Interface<br>
Added p5-XML-RAI-0.51; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-XML-RSS-Parser/"
>textproc/p5-XML-RSS-Parser</a></b><br>
Liberal object-oriented parser for RSS feeds<br>
Added p5-XML-RSS-Parser-2.15; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
www/p5-LWP-UserAgent-Determined/">www/p5-LWP-UserAgent-Determined</a></b><br>
Virtual browser that retries on errors<br>
Added p5-LWP-UserAgent-Determined-1.03; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Class-XPath/"
>devel/p5-Class-XPath</a></b><br>
Xpath matching for object trees<br>
Added p5-Class-XPath-1.4; maintained by <a
href="mailto:[email protected]">Sam Smith</a> <i>[sturm 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/math/gnuplot/"
>math/gnuplot</a></b><br>
Command-driven interactive function plotting program<br>
Updated gnuplot to version 4.0.0 <i>[danh 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/safecat/"
>sysutils/safecat</a></b><br>
Copy stdin to a qmail-style maildir<br>
Updated safecat to version 1.12 <i>[danh 2004-12-21]</i>
<li><b>www/jserv</b><br>
Removed jserv <i>[kurt 2004-12-21]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/lftp/"
>net/lftp</a></b><br>
Shell-like command line ftp and sftp client<br>
Updated lftp to version 3.0.13 <i>[kevlo 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/jdk/1.4/"
>devel/jdk/1.4</a></b><br>
Java2(TM) Standard Edition Dev Kit v1.4.2<br>
Added jdk-1.4.2; maintained by <a
href="mailto:[email protected]">Kurt Miller</a> <i>[kurt 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Module-Refresh/"
>devel/p5-Module-Refresh</a></b><br>
Refresh perl %INC files when updated on disk<br>
Added p5-Module-Refresh-0.05; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Module-Versions-Report/">devel/p5-Module-Versions-Report</a></b><br>
Report versions of all perl modules in memory<br>
Added p5-Module-Versions-Report-1.02; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
databases/p5-DBIx-SearchBuilder/">databases/p5-DBIx-SearchBuilder</a></b><br>
Encapsulate SQL queries and rows in simple perl objects<br>
Added p5-DBIx-SearchBuilder-1.16; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Cache-Simple-TimedExpiry/"
>devel/p5-Cache-Simple-TimedExpiry</a></b><br>
A lightweight cache with timed expiration<br>
Added p5-Cache-Simple-TimedExpiry-0.22; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Want/"
>devel/p5-Want</a></b><br>
Implementation of the want command<br>
Added p5-Want-0.08; unmaintained <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-ExtUtils-CBuilder/"
>devel/p5-ExtUtils-CBuilder</a></b><br>
Compile and link C code for Perl modules<br>
Updated p5-ExtUtils-CBuilder to version 0.05 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Locale-Maketext-Lexicon/">devel/p5-Locale-Maketext-Lexicon</a></b><br>
Use other catalog formats in Locale::Maketext<br>
Updated p5-Locale-Maketext-Lexicon to version 0.46 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Test-MockObject/"
>devel/p5-Test-MockObject</a></b><br>
Perl extension for emulating troublesome interfaces<br>
Updated p5-Test-MockObject to version 0.20 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Test-Taint/"
>devel/p5-Test-Taint</a></b><br>
Tools to test taintedness<br>
Updated p5-Test-Taint to version 1.04 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Array-Compare/"
>devel/p5-Array-Compare</a></b><br>
Perl module for comparing arrays<br>
Updated p5-Array-Compare to version 1.11 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Test-Exception/"
>devel/p5-Test-Exception</a></b><br>
Test functions for exception based code<br>
Updated p5-Test-Exception to version 0.20 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Pod-Coverage/"
>devel/p5-Pod-Coverage</a></b><br>
Checks if the documentation of a Perl module is comprehensive<br>
Updated p5-Pod-Coverage to version 0.17 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Test-Pod-Coverage/"
>devel/p5-Test-Pod-Coverage</a></b><br>
Check for pod coverage in your distribution<br>
Updated p5-Test-Pod-Coverage to version 1.06 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Params-Validate/"
>devel/p5-Params-Validate</a></b><br>
Perl module to validate function/method parameters<br>
Updated p5-Params-Validate to version 0.76 <i>[mjc 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Module-Build/"
>devel/p5-Module-Build</a></b><br>
Build and install Perl modules<br>
Updated p5-Module-Build to version 0.2607 <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/security/tinyca/"
>security/tinyca</a></b><br>
GUI to manage a certification authority<br>
Added tinyca-0.6.7; maintained by <a
href="mailto:[email protected]">Waldemar Brodkorb</a> <i>[msf 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/php5/core/"
>www/php5/core</a></b><br>
Server-side HTML-embedded scripting language<br>
<font color="#e00000"><strong>SECURITY FIX: Updated php5-core to version
5.0.3</strong></font> <i>[robert 2004-12-20]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/opera/"
>www/opera</a></b><br>
Fast and customizable WWW browser<br>
<font color="#e00000"><strong>SECURITY FIX: Updated opera to version
7.54u1</strong></font> <i>[sturm 2004-12-19]</i><br>
<a href="../ports.html#stable"><font color="#00b000">[Applied to
ports-stable]</font></a>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/audio/bmp/"
>audio/bmp</a></b><br>
Gtk+2 media player based on XMMS<br>
Added bmp-0.9.7p1; unmaintained <i>[jolan 2004-12-19]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/bchunk/"
>sysutils/bchunk</a></b><br>
.bin/.cue to .iso CD image converter<br>
Updated bchunk to version 1.2.0 <i>[naddy 2004-12-18]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/databases/py-ldap/"
>databases/py-ldap</a></b><br>
LDAP client API for Python<br>
Updated py-ldap to version 2.0.6 <i>[mbalmer 2004-12-18]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/php4/core/"
>www/php4/core</a></b><br>
Server-side HTML-embedded scripting language<br>
<font color="#e00000"><strong>SECURITY FIX: Updated php4-core to version
4.3.10p1</strong></font> <i>[robert 2004-12-18]</i>
<li><b>net/oproute</b><br>
Removed oproute <i>[pvalchev 2004-12-17]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/luaposix/"
>devel/luaposix</a></b><br>
Posix library for the lua language<br>
Added luaposix-20041216; maintained by <a
href="mailto:[email protected]">Pedro Martelletto</a> <i>[pedro 2004-12-16]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/audio/gtkpod/"
>audio/gtkpod</a></b><br>
GTK+2 program to synchronize an Apple iPod<br>
Added gtkpod-0.85.0; maintained by <a
href="mailto:[email protected]">joshua stein</a> <i>[jcs 2004-12-16]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/luasocket/"
>net/luasocket</a></b><br>
Network support for the lua language<br>
Added luasocket-2.0beta2; maintained by <a
href="mailto:[email protected]">Pedro Martelletto</a> <i>[pedro 2004-12-16]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/vlc/"
>x11/vlc</a></b><br>
Videolan client; multimedia player<br>
Updated vlc to version 0.8.1p0 <i>[jolan 2004-12-16]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/multimedia/libdvdnav/"
>multimedia/libdvdnav</a></b><br>
Library for developers of multimedia applications<br>
Added libdvdnav-0.1.9; unmaintained <i>[jolan 2004-12-16]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/cue/"
>mail/cue</a></b><br>
Mh-e like mail user agent<br>
Updated cue to version 20041213 <i>[naddy 2004-12-15]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/pork/"
>net/pork</a></b><br>
Programmable ncurses-based AIM client<br>
Updated pork to version 0.99.7 <i>[jolan 2004-12-15]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/ots/"
>textproc/ots</a></b><br>
Open source tool for summarizing texts<br>
Added ots-0.4.2; unmaintained <i>[jolan 2004-12-15]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/graphics/p5-GD-Graph/"
>graphics/p5-GD-Graph</a></b><br>
Module for graph plotting<br>
Updated p5-GD-Graph to version 1.43 <i>[kevlo 2004-12-14]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/graphics/p5-GD-TextUtil/"
>graphics/p5-GD-TextUtil</a></b><br>
Text utilities for use with GD drawing package<br>
Updated p5-GD-TextUtil to version 0.86 <i>[kevlo 2004-12-14]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/security/py-paramiko/"
>security/py-paramiko</a></b><br>
Python module that implements the SSH2 protocol<br>
Updated py-paramiko to version 1.1 <i>[xsa 2004-12-14]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-XML-Parser/"
>textproc/p5-XML-Parser</a></b><br>
Perl module for parsing XML documents<br>
Updated p5-XML-Parser to version 2.34 <i>[kevlo 2004-12-13]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/mtr/"
>net/mtr</a></b><br>
Matt's traceroute - network diagnostic tool<br>
Updated mtr to version 00.67 <i>[jakob 2004-12-13]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/liboil/"
>devel/liboil</a></b><br>
Library of optimized inner loops<br>
Added liboil-0.2.2p0; unmaintained <i>[jolan 2004-12-12]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/nostromo/"
>www/nostromo</a></b><br>
Nostromo Hypertext Transfer Protocol<br>
Updated nostromo to version 1.4p0 <i>[jolan 2004-12-12]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/kde/"
>x11/kde</a></b><br>
K Desktop Environment<br>
Updated kde to version 3.3.2 <i>[espie 2004-12-11]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/lighttpd/"
>www/lighttpd</a></b><br>
Secure, fast, compliant, and very flexible web-server<br>
Updated lighttpd to version 1.3.7 <i>[brad 2004-12-11]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/libgtop2/"
>devel/libgtop2</a></b><br>
Portable library for obtaining system information<br>
Updated libgtop2 to version 2.8.2 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/gnome-spell/"
>textproc/gnome-spell</a></b><br>
A Gnome/Bonobo component for spell checking<br>
Added gnome-spell-1.0.5; maintained by <a
href="mailto:[email protected]">Marc Matteo</a> <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/gal2/"
>devel/gal2</a></b><br>
GNOME Application Libs<br>
Updated gal2 to version 2.2.4 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
databases/evolution-data-server/">databases/evolution-data-server</a></b><br>
Data backends for the Evolution mail/PIM suite<br>
Updated evolution-data-server to version 1.0.3 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/autossh/"
>sysutils/autossh</a></b><br>
SSH monitoring<br>
Updated autossh to version 1.2g <i>[pvalchev 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/comms/pilot-link/"
>comms/pilot-link</a></b><br>
Tools to connect your PalmOS® compatible handheld<br>
Updated pilot-link to version 0.11.8 <i>[pvalchev 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/gnome/users-guide/"
>x11/gnome/users-guide</a></b><br>
General GNOME User Documentation<br>
Updated gnome-users-guide to version 2.8.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/gaim/"
>net/gaim</a></b><br>
Gtk AIM, ICQ, IRC, Jabber, MSN, Yahoo, SILC and Zephyr client<br>
Updated gaim to version 1.1.1 <i>[fgsch 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/math/gnumeric/"
>math/gnumeric</a></b><br>
Spreadsheet application for GNOME<br>
Updated gnumeric to version 1.4.0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/gtksourceview/"
>x11/gtksourceview</a></b><br>
Text widget that extends GTK2's GtkTextView widget<br>
Updated gtksourceview to version 1.1.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/gnome/"
>x11/gnome</a></b><br>
Components for the GNOME desktop<br>
Updated gnome to version 2.8.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/startup-notification/"
>devel/startup-notification</a></b><br>
Library for tracking application startup<br>
Updated startup-notification to version 0.7 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/pango/"
>devel/pango</a></b><br>
Library for layout and rendering of text<br>
Updated pango to version 1.6.0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/libwnck/"
>devel/libwnck</a></b><br>
Window navigator construction kit<br>
Updated libwnck to version 2.8.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/libgtop2/"
>devel/libgtop2</a></b><br>
Portable library for obtaining system information<br>
Updated libgtop2 to version 2.8.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/libgsf/"
>devel/libgsf</a></b><br>
GNOME Structured File library<br>
Updated libgsf to version 1.11.1 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/libIDL/"
>devel/libIDL</a></b><br>
IDL parsing library<br>
Updated libIDL to version 0.8.4 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/gconf2/"
>devel/gconf2</a></b><br>
Configuration database system for GNOME<br>
Updated gconf2 to version 2.8.1p0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/gconf-editor/"
>devel/gconf-editor</a></b><br>
Editor for the GConf configuration system<br>
Updated gconf-editor to version 2.8.2p0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/atk/"
>devel/atk</a></b><br>
Accessibility toolkit used by gtk+<br>
Updated atk to version 1.8.0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/ORBit2/"
>devel/ORBit2</a></b><br>
High-performance CORBA Object Request Broker<br>
Updated ORBit2 to version 2.12.0 <i>[marcm 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/postgrey/"
>mail/postgrey</a></b><br>
Postfix greylist daemon<br>
Added postgrey-1.16; maintained by <a
href="mailto:[email protected]">Jakob Schlyter</a> <i>[jakob 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/databases/p5-BerkeleyDB/"
>databases/p5-BerkeleyDB</a></b><br>
Berkeley DB module<br>
Added p5-BerkeleyDB-0.26; maintained by <a
href="mailto:[email protected]">Jakob Schlyter</a> <i>[jakob 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-IO-Multiplex/"
>devel/p5-IO-Multiplex</a></b><br>
Handle multiple file handles<br>
Added p5-IO-Multiplex-1.08; maintained by <a
href="mailto:[email protected]">Jakob Schlyter</a> <i>[jakob 2004-12-10]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/p5-HTML-Format/"
>www/p5-HTML-Format</a></b><br>
HTML text formating class<br>
Updated p5-HTML-Format to version 2.04 <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-PerlIO-via-symlink/"
>devel/p5-PerlIO-via-symlink</a></b><br>
Create symlink from IO handle<br>
Added p5-PerlIO-via-symlink-0.03; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-PerlIO-eol/"
>devel/p5-PerlIO-eol</a></b><br>
PerlIO layer for normalizing line endings<br>
Added p5-PerlIO-eol-0.13; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-PerlIO-via-dynamic/"
>devel/p5-PerlIO-via-dynamic</a></b><br>
Create dynamic PerlIO layers<br>
Added p5-PerlIO-via-dynamic-0.11; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-IO-Digest/"
>devel/p5-IO-Digest</a></b><br>
Module for computing digests while reading or writing<br>
Added p5-IO-Digest-0.10; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-SVN-Mirror/"
>devel/p5-SVN-Mirror</a></b><br>
Subversion repository mirroring tool<br>
Added p5-SVN-Mirror-0.51; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Locale-Maketext-Simple/">devel/p5-Locale-Maketext-Simple</a></b><br>
Simple interface to Locale::Maketext::Lexicon<br>
Added p5-Locale-Maketext-Simple-0.12; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/gkrellm/plugins/
bgchg/">sysutils/gkrellm/plugins/bgchg</a></b><br>
Change Background Image with GkrellM2<br>
Updated gkrellm-plugins-bgchg to version 0.1.2 <i>[fgsch 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/offlineimap/"
>mail/offlineimap</a></b><br>
Powerful IMAP/Maildir synchronization and reader support<br>
Updated offlineimap to version 4.0.8 <i>[xsa 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-VCP-autrijus/"
>devel/p5-VCP-autrijus</a></b><br>
Tool for copying resources between repositories<br>
Added p5-VCP-autrijus-0.9; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Regexp-Shellish/"
>devel/p5-Regexp-Shellish</a></b><br>
Module for shell-like regular expressions<br>
Added p5-Regexp-Shellish-0.93; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/www/p5-PodToHTML/"
>www/p5-PodToHTML</a></b><br>
Generate HTML from files containing POD documentation<br>
Added p5-PodToHTML-0.05; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Text-Table/"
>textproc/p5-Text-Table</a></b><br>
Organize data in tables<br>
Added p5-Text-Table-1.107; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Text-Aligner/"
>textproc/p5-Text-Aligner</a></b><br>
Justify strings to various alignment styles<br>
Added p5-Text-Aligner-0.03; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-09]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-BFD/"
>devel/p5-BFD</a></b><br>
Impromptu dumping of data structures for debugging purposes<br>
Added p5-BFD-0.31; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-IPC-Run3/"
>devel/p5-IPC-Run3</a></b><br>
Run a subprocess in batch mode<br>
Added p5-IPC-Run3-0.01; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-XML-AutoWriter/"
>textproc/p5-XML-AutoWriter</a></b><br>
Module for DOCTYPE based XML output<br>
Added p5-XML-AutoWriter-0.38; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Data-UUID/"
>devel/p5-Data-UUID</a></b><br>
Extension for generating GUIDs/UUIDs<br>
Added p5-Data-UUID-0.11; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-SVN-Simple/"
>devel/p5-SVN-Simple</a></b><br>
Simple interface to subversion's editor interface<br>
Added p5-SVN-Simple-0.26; maintained by <a
href="mailto:[email protected]">Kevin Lo</a> <i>[kevlo 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Test-Pod/"
>devel/p5-Test-Pod</a></b><br>
Check for POD errors in files<br>
Updated p5-Test-Pod to version 1.20 <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/sysutils/multitail/"
>sysutils/multitail</a></b><br>
Multi-window tail(1) utility<br>
Updated multitail to version 3.4.2 <i>[naddy 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Locale-gettext/"
>devel/p5-Locale-gettext</a></b><br>
Interface to gettext() internationalization function<br>
Added p5-Locale-gettext-1.03; maintained by <a
href="mailto:[email protected]">Waldemar Brodkorb</a> <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Locale-Maketext-Lexicon/">devel/p5-Locale-Maketext-Lexicon</a></b><br>
Use other catalog formats in Locale::Maketext<br>
Added p5-Locale-Maketext-Lexicon-0.46; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/
devel/p5-Locale-Maketext-Gettext/">devel/p5-Locale-Maketext-Gettext</a></b><br>
Joins the gettext and maketext frameworks<br>
Added p5-Locale-Maketext-Gettext-1.10; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/
p5-Locale-Maketext-Fuzzy/">devel/p5-Locale-Maketext-Fuzzy</a></b><br>
Maketext from already interpolated strings<br>
Added p5-Locale-Maketext-Fuzzy-0.02; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/textproc/p5-Text-Template/"
>textproc/p5-Text-Template</a></b><br>
Expand template text with embedded perl<br>
Updated p5-Text-Template to version 1.44 <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Module-CoreList/"
>devel/p5-Module-CoreList</a></b><br>
See what modules shipped with versions of Perl<br>
Added p5-Module-CoreList-1.97; unmaintained <i>[xsa 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/
p5-Test-Builder-Tester/">devel/p5-Test-Builder-Tester</a></b><br>
Perl module to lint Test::Builder testsuites<br>
Updated p5-Test-Builder-Tester to version 1.01 <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/p5-Net-BGP/"
>net/p5-Net-BGP</a></b><br>
Border Gateway Protocol version 4 speaker/listener library<br>
Updated p5-Net-BGP to version 0.08 <i>[msf 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/cnupm/"
>net/cnupm</a></b><br>
IPv4/IPv6 traffic collector<br>
Updated cnupm to version 3.7.1 <i>[grange 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/emulators/mips64emul/"
>emulators/mips64emul</a></b><br>
MIPS machine emulator<br>
Updated mips64emul to version 0.2.3 <i>[grange 2004-12-08]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/databases/p5-ldap/"
>databases/p5-ldap</a></b><br>
Client interface to LDAP servers<br>
Updated p5-ldap to version 0.3202p0 <i>[msf 2004-12-07]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/p5-Log-Dispatch/"
>devel/p5-Log-Dispatch</a></b><br>
Dispatches messages to one or more outputs<br>
Added p5-Log-Dispatch-2.10; maintained by <a
href="mailto:[email protected]">Mathieu Sauve-Frankel</a> <i>[msf 2004-12-07]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/coccinella/"
>net/coccinella</a></b><br>
Jabber client with whiteboard communication<br>
Added coccinella-0.95.1; maintained by <a
href="mailto:[email protected]">Marc Bruenink</a> <i>[alek 2004-12-07]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/gtk+2/"
>x11/gtk+2</a></b><br>
Multi-platform graphical toolkit<br>
Updated gtk+2 to version 2.4.14 <i>[marcm 2004-12-06]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/devel/glib2/"
>devel/glib2</a></b><br>
General-purpose utility library<br>
Updated glib2 to version 2.4.8 <i>[marcm 2004-12-06]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/lftp/"
>net/lftp</a></b><br>
Shell-like command line ftp and sftp client<br>
Updated lftp to version 3.0.13 <i>[kevlo 2004-12-06]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/mail/maildrop/"
>mail/maildrop</a></b><br>
Local mail delivery agent with filtering abilities<br>
Updated maildrop to version 1.7.0 <i>[mbalmer 2004-12-06]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/x11/mlterm/"
>x11/mlterm</a></b><br>
Color terminal emulator with transparency and unicode support<br>
Updated mlterm to version 2.9.0 <i>[naddy 2004-12-06]</i>
<li><b><a
href="http://www.openbsd.org/cgi-bin/cvsweb/ports/net/nicotine/"
>net/nicotine</a></b><br>