summaryrefslogtreecommitdiff
blob: 69b40491d78c89f756dfb54007b57777b769615b (plain)
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
# ChangeLog for dev-php/mod_php
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/mod_php/ChangeLog,v 1.209 2005/03/13 22:19:13 stuart Exp $

*mod_php-5.0.3-r2 (13 Mar 2005)

  13 Mar 2005; Stuart Herbert <stuart@gentoo.org> +files/php5-prefork.patch,
  +mod_php-5.0.3-r2.ebuild:
  Updated to work w/ the unstable apache, & to allow mixed php4/php5
  installations

  06 Mar 2005; Michael Hanselmann <hansmi@gentoo.org>
  mod_php-5.0.3-r1.ebuild:
  Added to ~ppc.

  21 Feb 2005; Hardave Riar <hardave@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on mips

  11 Feb 2005; Mike Frysinger <vapier@gentoo.org>
  +files/mod_php-5.0.3-missing-arches.patch, mod_php-5.0.3-r1.ebuild,
  mod_php-5.0.3.ebuild:
  Add fix for ia64/s390.

  01 Feb 2005; Marcus D. Hanwell <cryos@gentoo.org> mod_php-5.0.3.ebuild:
  Marked ~amd64 too, -r1 is currently masked.

  01 Feb 2005; Marcus D. Hanwell <cryos@gentoo.org> mod_php-5.0.3-r1.ebuild:
  Marked ~amd64 as the c-client issues should now be resolved in the latest
  c-client/uw-imap ebuilds.

  25 Jan 2005; Marcus D. Hanwell <cryos@gentoo.org> mod_php-5.0.3-r1.ebuild:
  Removing ~amd64 from KEYWORDS until problems with c-client are resolved.

  23 Jan 2005; Christian Parpart <trapni@gentoo.org>
  mod_php-4.3.10-r1.ebuild, mod_php-5.0.3-r1.ebuild:
  -m added ~amd64 keywords

  14 Jan 2005; Christian Parpart <trapni@gentoo.org>
  +files/4.3.10-r1/70_mod_php.conf, +files/5.0.2-r1/70_mod_php5.conf:
  added missing config files for mod_php >= 4.3.10-r1 and >= 5.0.2-r1

  13 Jan 2005; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on hppa.

*mod_php-5.0.2-r1 (13 Jan 2005)

  13 Jan 2005; Christian Parpart <trapni@gentoo.org>
  +mod_php-4.3.10-r1.ebuild, +mod_php-5.0.2-r1.ebuild,
  +mod_php-5.0.3-r1.ebuild:
  apache herd package refresh

  09 Jan 2005; Jason Wever <weeve@gentoo.org> mod_php-5.0.3.ebuild:
  Added ~sparc keyword.

  30 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  18 Dec 2004; Michael Hanselmann <hansmi@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on ppc.

  17 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on alpha, bug 74547.

  16 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> +files/stdint.diff,
  mod_php-4.3.10.ebuild:
  Stable on sparc wrt #74547, solves #74627

  16 Dec 2004; Dylan Carlson <absinthe@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on amd64.

  16 Dec 2004; Markus Rothe <corsair@gentoo.org> mod_php-4.3.10.ebuild:
  Stable on ppc64

*mod_php-4.3.10 (15 Dec 2004)
*mod_php-5.0.3 (15 Dec 2004)

  15 Dec 2004; Robin H. Johnson <robbat2@gentoo.org> +mod_php-4.3.10.ebuild,
  +mod_php-5.0.3.ebuild:
  New version, solves bugs #73698, 73525, 72752, 72735.

  21 Nov 2004; Jeremy Huddleston <eradicator@gentoo.org>
  mod_php-5.0.2.ebuild:
  Removing amd64 keyword as it's not quite ready yet...

  07 Nov 2004; Markus Rothe <corsair@gentoo.org> mod_php-5.0.2.ebuild:
  Marked ~ppc64

  03 Nov 2004; Bret Curtis <psi29a@gentoo.org> mod_php-4.3.9.ebuild:
  marked as ~mips for testing

  26 Oct 2004; Tom Gall <tgall@gentoo.org> mod_php-4.3.9.ebuild:
  stable on ppc64, bug #66968

  09 Oct 2004; Tom Gall <tgall@gentoo.org> mod_php-4.3.8.ebuild:
  stable on ppc64, bug #66752

  28 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.9.ebuild:
  Stable on x86.

  27 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> mod_php-4.3.9.ebuild:
  Stable on alpha, bug 64223.

  27 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> mod_php-4.3.9.ebuild:
  Stable on sparc wrt #64223

*mod_php-5.0.2 (24 Sep 2004)

  24 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> +mod_php-4.3.9.ebuild,
  +mod_php-5.0.2.ebuild:
  Bug #65180, version bump.

  14 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> files/70_mod_php.conf,
  files/70_mod_php5.conf:
  Fix bug #63702, remove the old workaround.

  12 Sep 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-5.0.0-r1.ebuild,
  mod_php-5.0.0.ebuild, mod_php-5.0.1.ebuild:
  Bug #61910 fixed. No version bump.

  26 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-5.0.1.ebuild:
  better warning message.

  14 Aug 2004; David Holm <dholm@gentoo.org> mod_php-5.0.1.ebuild:
  Added to ~ppc.

*mod_php-5.0.1 (13 Aug 2004)

  13 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> +mod_php-5.0.1.ebuild:
  Version bump, many upstream fixes. Bug #60216.

  13 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> :
  update apache depend.

  12 Aug 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-5.0.0-r1.ebuild:
  Roll out 5.0.0-r1 to ~x86 ONLY. Other interested arches need to keyword the
  required dependancies first. Create virtual/httpd-php.

*mod_php-4.3.9_rc1 (12 Aug 2004)

  12 Aug 2004; Robin H. Johnson <robbat2@gentoo.org>
  +mod_php-4.3.9_rc1.ebuild:
  Roll out 4.3.9rc1 in ~arch, to fix 4.3.8 problems. Create virtual/httpd-php.

  08 Aug 2004; Robin H. Johnson <robbat2@gentoo.org>
  +files/php-5.0.0-httpauthfix.patch:
  bug #59755.

  05 Aug 2004; Robin H. Johnson <robbat2@gentoo.org>
  -files/mod_php-4.3.4-r3.diff, -mod_php-4.3.4-r4.ebuild,
  -mod_php-4.3.5.ebuild, -mod_php-4.3.6-r1.ebuild, -mod_php-4.3.6-r2.ebuild,
  -mod_php-4.3.6.ebuild, -mod_php-4.3.6_rc2.ebuild, -mod_php-4.3.7-r1.ebuild,
  -mod_php-4.3.7.ebuild, -files/pear_config.diff:
  The Great PHP ebuild cleanup.

  03 Aug 2004; <agriffis@gentoo.org> mod_php-4.3.8.ebuild:
  stable on ia64 for bug 56295

  29 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org> mod_php-4.3.8.ebuild:
  Stable on hppa

  22 Jul 2004; Stuart Herbert <stuart@gentoo.org> mod_php-5.0.0.ebuild:
  Added missing PROVIDE

  15 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> mod_php-4.3.8.ebuild:
  Stable on alpha, see bug #56985.

  14 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.8.ebuild:
  stable on x86, security.

  15 Jul 2004; Christian Birchinger <joker@gentoo.org> mod_php-4.3.8.ebuild:
  Added sparc stable keyword

  14 Jul 2004; Luca Barbato <lu_zero@gentoo.org> mod_php-4.3.8.ebuild:
  Marked ppc for security reason (bug #56985)

  14 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> :
  add hardendephp support for 4.3.8

  14 Jul 2004; Stuart Herbert <stuart@gentoo.org> mod_php-5.0.0.ebuild:
  Updated to use PHP 5 final release.

*mod_php-4.3.8 (13 Jul 2004)

  13 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.8.ebuild:
  new version, security reasons.

*mod_php-5.0.0 (10 Jul 2004)

  10 Jul 2004; Stuart Herbert <stuart@gentoo.org> +files/70_mod_php5.conf,
  +files/php5_soap_persistence_session.diff, +mod_php-5.0.0.ebuild:
  Added ebuild for mod_php5; thanks to nickyk <nickyk@gmx.net> for the SOAP
  persistence patch

  07 Jul 2004; Jason Wever <weeve@gentoo.org> mod_php-4.3.7-r1.ebuild:
  Stable on sparc.

  07 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> mod_php-4.3.7-r1.ebuild:
  Stable on alpha.

  06 Jul 2004; Michael Hanselmann <hansmi@gentoo.org> mod_php-4.3.7-r1.ebuild:
  Stable on ppc.

  04 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.4-r4.ebuild,
  mod_php-4.3.5.ebuild, mod_php-4.3.6-r1.ebuild, mod_php-4.3.6-r2.ebuild,
  mod_php-4.3.6.ebuild, mod_php-4.3.6_rc2.ebuild, mod_php-4.3.7-r1.ebuild,
  mod_php-4.3.7.ebuild:
  fix bug #55634.

  04 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.7-r1.ebuild:
  stable on x86.

  04 Jul 2004; Bryan Østergaard <kloeri@gentoo.org> mod_php-4.3.6-r2.ebuild:
  Stable on alpha.

*mod_php-4.3.7-r1 (27 Jun 2004)

  27 Jun 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.7-r1.ebuild,
  files/70_mod_php.conf:
  fix bugs 55150, 52165, 52912 and 55129

  23 Jun 2004; Stuart Herbert <stuart@gentoo.org> :
  Added support for hardenedphp into mod_php 4.3.7

  18 Jun 2004; Robin H. Johnson <robbat2@gentoo.org> files/70_mod_php.conf:
  fix bug #49020 and bug #54086.

  11 Jun 2004; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.6-r2.ebuild:
  Marked stable on hppa.

  06 Jun 2004; Aron Griffis <agriffis@gentoo.org> mod_php-4.3.7.ebuild:
  Fix use invocation

*mod_php-4.3.7 (05 Jun 2004)

  05 Jun 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.7.ebuild:
  put 4.3.7 in, but it doesn't work yet, so hardmasked

  03 Jun 2004; Aron Griffis <agriffis@gentoo.org> mod_php-4.3.4-r4.ebuild,
  mod_php-4.3.5.ebuild, mod_php-4.3.6-r1.ebuild, mod_php-4.3.6-r2.ebuild,
  mod_php-4.3.6.ebuild, mod_php-4.3.6_rc2.ebuild:
  Fix use invocation

*mod_php-4.3.6-r2 (28 May 2004)

  28 May 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.6-r2.ebuild:
  fixed bugs 50991, 49420 in php-sapi eclass, so bump ebuilds.

  18 May 2004; Stuart Herbert <stuart@gentoo.org> :
  Added digest for hardened-php patch

  13 May 2004; Michael McCabe <randy@gentoo.org> mod_php-4.3.6-r1.ebuild:
  Added s390 keywords

  09 May 2004; Jason Wever <weeve@gentoo.org> mod_php-4.3.6-r1.ebuild:
  Stable on sparc.

  04 May 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.6-r1.ebuild:
  stable on x86

*mod_php-4.3.6-r1 (20 Apr 2004)

  20 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.6-r1.ebuild:
  pcre fix bug #47498

*mod_php-4.3.6 (16 Apr 2004)

  16 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.6.ebuild:
  new version.

  14 Apr 2004; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.6_rc2.ebuild:
  Marked stable on hppa.

  13 Apr 2004; Jason Wever <weeve@gentoo.org> mod_php-4.3.6_rc2.ebuild:
  Stable on sparc.

  08 Apr 2004; Stuart Herbert <stuart@gentoo.org> mod_php-4.3.6_rc2.ebuild:
  Marked as stable, because 4.3.5 has issues

  06 Apr 2004; Jon Portnoy <avenj@gentoo.org> mod_php-4.3.6_rc2.ebuild :
  Fix typo in epatch statement for amd64, bug #46939

*mod_php-4.3.6_rc2 (05 Apr 2004)

  05 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.6_rc2.ebuild:
  bump to new rc as 4.3.5 has issues

  31 Mar 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild,
  mod_php-4.3.2-r2.ebuild, mod_php-4.3.2-r3.ebuild, mod_php-4.3.2-r4.ebuild,
  mod_php-4.3.2-r5.ebuild, mod_php-4.3.2.ebuild, mod_php-4.3.3-r1.ebuild,
  mod_php-4.3.3-r2.ebuild, mod_php-4.3.3-r3.ebuild, mod_php-4.3.3.ebuild,
  mod_php-4.3.3_rc3.ebuild, mod_php-4.3.4-r1.ebuild, mod_php-4.3.4-r2.ebuild,
  mod_php-4.3.4-r3.ebuild, mod_php-4.3.4-r4.ebuild, mod_php-4.3.4.ebuild,
  mod_php-4.3.5.ebuild:
  remove all old php ebuilds before 4.3.4-r4. fix bug #46309.

  31 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> mod_php-4.3.5.ebuild:
  Fixed amd64 patch, closing #46260.

  29 Mar 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.5.ebuild:
  need a second revision for an apache1 fix

  29 Mar 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.5.ebuild:
  fix bug #46048 for new php

*mod_php-4.3.5 (29 Mar 2004)

  29 Mar 2004; Stuart Herbert <stuart@gentoo.org> mod_php-4.3.5.ebuild:
  Version bump

  09 Mar 2004; <agriffis@gentoo.org> mod_php-4.3.4-r4.ebuild:
  stable on alpha and ia64

  16 Feb 2004; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.4-r4.ebuild:
  Marked stable on hppa.

  07 Feb 2004; Christian Birchinger <joker@gentoo.org>
  mod_php-4.3.4-r4.ebuild:
  Added sparc stable keyword

*mod_php-4.3.4-r4 (07 Feb 2004)

  07 Feb 2004; <plasmaroo@gentoo.org> mod_php-4.3.4-r4.ebuild:
  Bump and stable on X86 for GLSA 200402-01.

  06 Feb 2004; Lars Weiler <pylon@gentoo.org> mod_php-4.3.4-r3.ebuild:
  stable on ppc

  05 Feb 2004; Mike Frysinger <vapier@gentoo.org> :
  Add amd64 patch #35956 by Ryan C. Gordon.

  31 Jan 2004; Stuart Herbert <stuart@gentoo.org> files/mod_php-4.3.4-r3.diff:
  Additional holes added to the patch

*mod_php-4.3.4-r3 (31 Jan 2004)

  31 Jan 2004; Stuart Herbert <stuart@gentoo.org> mod_php-4.3.3-r1.ebuild,
  mod_php-4.3.3-r2.ebuild, mod_php-4.3.3-r3.ebuild, mod_php-4.3.4-r1.ebuild,
  mod_php-4.3.4-r2.ebuild, mod_php-4.3.4-r3.ebuild, mod_php-4.3.4.ebuild,
  files/mod_php-4.3.4-r3.diff:
  Removed amd64 from the ARCH list until it passes a 'repoman full' scan.

  31 Jan 2004; Stuart Herbert <stuart@gentoo.org> mod_php-4.3.4-r3.ebuild,
  files/mod_php-4.3.4-r3.diff:
  Added patch for bug #39952 - GLSA to follow from plasmaroo

  24 Jan 2004; <gustavoz@gentoo.org> mod_php-4.3.4-r2.ebuild:
  marked stable on sparc

  12 Jan 2003; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.4-r2.ebuild :
  Marked stable on hppa.

  10 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.4-r2.ebuild:
  Undo brad_mssw's broken fixup and fix it properly, it's a bug in portage for
  the moment.

  10 Jan 2004; Brad House <brad_mssw@gentoo.org> mod_php-4.3.4-r2.ebuild:
  reverse change made by robbat2, as it messed up stable x86

  10 Jan 2004; Aron Griffis <agriffis@gentoo.org> mod_php-4.3.3-r3.ebuild,
  mod_php-4.3.4-r2.ebuild:
  stable on alpha and ia64

  10 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.4-r2.ebuild:
  add a little debug data for #37721.

*mod_php-4.3.4-r2 (07 Jan 2004)

  07 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild,
  mod_php-4.3.2-r2.ebuild, mod_php-4.3.2-r3.ebuild, mod_php-4.3.2-r4.ebuild,
  mod_php-4.3.2-r5.ebuild, mod_php-4.3.2.ebuild, mod_php-4.3.3-r1.ebuild,
  mod_php-4.3.3-r2.ebuild, mod_php-4.3.3-r3.ebuild, mod_php-4.3.3.ebuild,
  mod_php-4.3.4-r1.ebuild, mod_php-4.3.4-r2.ebuild, mod_php-4.3.4.ebuild:
  remove ~mips and ~arm KEYWORDS due to lack of support, ready for new repoman.

  07 Jan 2004; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild,
  mod_php-4.3.2-r2.ebuild, mod_php-4.3.2-r3.ebuild, mod_php-4.3.2-r4.ebuild,
  mod_php-4.3.2-r5.ebuild, mod_php-4.3.2.ebuild, mod_php-4.3.3-r1.ebuild,
  mod_php-4.3.3-r2.ebuild, mod_php-4.3.3-r3.ebuild, mod_php-4.3.3.ebuild,
  mod_php-4.3.3_rc3.ebuild, mod_php-4.3.4-r1.ebuild:
  fix copyright headers and add new mod_php build

  19 Dec 2003; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.3-r3.ebuild:
  Marked stable on hppa.

  15 Dec 2003; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.3-r1.ebuild:
  Marked stable on hppa.

  23 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r2.ebuild,
  mod_php-4.3.3-r3.ebuild, mod_php-4.3.4-r1.ebuild, mod_php-4.3.4.ebuild:
  remove obsolete findutils deps

  23 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r2.ebuild,
  mod_php-4.3.3-r3.ebuild, mod_php-4.3.4-r1.ebuild, mod_php-4.3.4.ebuild:
  cleanup whitespace

*mod_php-4.3.4-r1 (16 Nov 2003)

  16 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.4-r1.ebuild:
  add new split-up php

*mod_php-4.3.4 (07 Nov 2003)

  07 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.4.ebuild:
  bug #32962, new version

  07 Nov 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r3.ebuild:
  change postinst comment slightly

  05 Nov 2003; Christian Birchinger <joker@gentoo.org>
  mod_php-4.3.3-r3.ebuild:
  Added sparc stable keyword

*mod_php-4.3.3-r3 (25 Oct 2003)

  25 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild,
  mod_php-4.3.2-r2.ebuild, mod_php-4.3.2-r3.ebuild, mod_php-4.3.2-r4.ebuild,
  mod_php-4.3.2-r5.ebuild, mod_php-4.3.2.ebuild, mod_php-4.3.3-r1.ebuild,
  mod_php-4.3.3-r2.ebuild, mod_php-4.3.3-r3.ebuild, mod_php-4.3.3.ebuild,
  mod_php-4.3.3_rc3.ebuild:
  large cleanups of xargs usage per bug #31794, and a bump to force it in with
  the new eclass

*mod_php-4.3.3-r2 (22 Oct 2003)

  22 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r2.ebuild:
  cleanup ebuild and version bump for eclass changes

  10 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r1.ebuild:
  message cleanup thanks to bug #30833

  05 Oct 2003; Brad House <brad_mssw@gentoo.org> mod_php-4.3.3-r1.ebuild:
  add ~amd64 flag

*mod_php-4.3.3-r1 (01 Oct 2003)

  01 Oct 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3-r1.ebuild:
  bump rev on ebuild for eclass changes, and move to stable

  29 Aug 2003; Robin Johnson,,604-339-5621,604-298-8414 <robbat2@gentoo.org>
  mod_php-4.3.2-r1.ebuild, mod_php-4.3.2-r2.ebuild, mod_php-4.3.2-r3.ebuild,
  mod_php-4.3.2-r4.ebuild, mod_php-4.3.2-r5.ebuild, mod_php-4.3.2.ebuild,
  mod_php-4.3.3.ebuild, mod_php-4.3.3_rc3.ebuild:
  fix bug #27524, just for good measure, even tho it doesn't affect much

*mod_php-4.3.3 (28 Aug 2003)

  28 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3.ebuild:
  version bump

  20 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> metadata.xml:
  add metadata.xml

*mod_php-4.3.3_rc3 (11 Aug 2003)

  11 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.3_rc3.ebuild:
  add an rc build of php to try and fix #16825

  11 Aug 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r5.ebuild:
  Make mod_php actually depend on apache if it isn't installed...

*mod_php-4.3.2-r5 (30 Jul 2003)

  30 Jul 2003; Tal Peer <coredumb@gentoo.org> mod_php-4.3.2-r5.ebuild:
  Dropped cjk from IUSE. Now mbstring and mbregex are always enabled.

*mod_php-4.3.2-r4 (21 Jul 2003)

  04 Aug 2003; Guy Martin <gmsoft@gentoo.org> mod-php-4.3.2-r4.ebuild :
  Marked stable on hppa.

  22 Jul 2003; Christian Birchinger <joker@gentoo.org>
  mod_php-4.3.2-r4.ebuild:
  Added sparc stable keyword

  21 Jul 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r4.ebuild,
  files/digest-mod_php-4.3.2-r4:
  Add in URL fopen security fix.

*mod_php-4.3.2-r3 (30 Jun 2003)

  12 Jul 2003; Donny Davies <woodchip@gentoo.org> mod_php-4.3.2-r3.ebuild:
  Marked `x86' keyword.

  1 July 2003; 30 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r3.ebuild:
  Fix a typo in the ebuild sed script that updates the apache[2] config file.

  1 July 2003; 30 June 2003; Robin H. Johnson <robbat2@gentoo.org>
  files/70_mod_php.conf: 
  Fix typo in Apache2 conf file.

  30 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r3.ebuild,
  files/digest-mod_php-4.3.2-r3:
  Commited new version to ~x86 with hopefully all of the fixes required for
  Apache1 and Apache2 required longterm. Uses new PHPSAPI and configuration
  style. Apache2 enbling variable has CHANGED to PHP4, this is a breakage
  compared to previously.
  
  30 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild,
  mod_php-4.3.2-r2.ebuild, mod_php-4.3.2.ebuild, files/70_mod_php.conf:
  Updated for new PHPSAPI variable. Moved configuration files to new style
  cleanly (/etc/php/${PHPSAPI}-php${PHPMAJORVERSION}/php.ini).
  
  24 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.2.3-r2.ebuild,
  mod_php-4.3.0-r2.ebuild, mod_php-4.3.1-r1.ebuild, mod_php-4.3.1-r2.ebuild,
  mod_php-4.3.1-r3.ebuild, mod_php-4.3.1.ebuild,
  files/digest-mod_php-4.2.3-r2, files/digest-mod_php-4.3.0-r2,
  files/digest-mod_php-4.3.1, files/digest-mod_php-4.3.1-r1,
  files/digest-mod_php-4.3.1-r2, files/digest-mod_php-4.3.1-r3:
  Removed old ebuilds as per GLSA 200306-02.

*mod_php-4.3.2-r2 (10 Jun 2003)

  24 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r2.ebuild:
  Fix bug #23200

  21 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r2.ebuild:
  Cleanup some of the magic, hopefully make it work better.

  12 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r2.ebuild:
  syntax errors are bad.

  10 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r2.ebuild:
  This is an extension of the fixes in 4.3.2-r1, but I'm uncertain if some of
  this magic is valid, so it is in a sepearate ebulid for now.
  A special note on the change of behavior depending on the Apache(s) you have installed:
  Apache1 ONLY: uses apache1 version
  Apache2 ONLY: uses apache2 version (no USE="apache2" needed)
  Apache1 AND Apache2: Use apache1 version unless the USE flag is in place.

*mod_php-4.3.2-r1 (10 Jun 2003)

  10 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2-r1.ebuild:
  Try to fix bug #22352. mod_php is now SLOTed by the major version of Apache
  that you are building it for. This SHOULD enable you to have mod_php
  installed on both at the same time, but is is experimental at this time.

*mod_php-4.3.2 (31 May 2003)

  05 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2.ebuild:
  Fix DEPEND for apache2. This is the ONLY method that works properly with
  repoman afaik.

  31 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.2.ebuild,
  files/digest-mod_php-4.3.2:
  Version bump.
  BerkDB is disabled due to DB4 issues and changes in PHP 4.3.2 presently.
  If you need BerkDB support, please do NOT upgrade at this time.

*mod_php-4.3.1-r3 (23 Apr 2003)

  27 May 2003; Paul de Vrieze <pauldv@gentoo.org> mod_php-4.3.1-r3.ebuild:
  Fix apache dependency when the apache2 useflag is not set.

  26 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild:
  Added DB4 fix in eclass. Cleaned up the config section. Fix digest.
  Correctly postinst slightly with regards to conf.d/apache* directives.

  17 May 2003; Robin H. Johnson <robbat2@gentoo.org> files/70_mod_php.conf:
  Fixed bug #18445 properly. Apache2 doesn't like shell wildcarding in it's
  config files.

  15 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild:
  Released to all archs on unstable.

  14 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild:
  Fix symlink for /etc/php4/lib under Apache2. Thanks to Bluesman
  <bluesman@byteme.no> on IRC. Fixed ACCEPT_KEYWORDS and RDEPEND.
  Ensure ZTS is used for some Apache2 MPMs.
  ./files/70_mod_php.conf updated to fix bug #18445

  13 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild:
  More cleanups, nearly ready for ~x86.
 
  24 Apr 2003; Tal Peer <coredumb@gentoo.org> mod_php-4.3.1-r2.ebuild,
  mod_php-4.3.1-r3.ebuild:
  Fixed bug #18551

  23 Apr 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1-r3.ebuild:
  New version utilizing PHP eclass
  Masked still, very untested

*mod_php-4.3.1-r2 (21 Apr 2003)

  08 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1-r2.ebuild: 
  Fixed bug #20603, #15622

  22 Apr 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1-r2.ebuild:
  Re-added -r2 (Mar 02 copy had been deleted).  Fixed world readable files bug by patching pear/PEAR/Config.php (bug# 16325)

*mod_php-4.3.1-r2 (04 Mar 2003)
	
  04 Mar 2003; Troy Dack <tad@gentoo.org. mod_php-4.3.1-r2.ebuild:
  Fix to incorrect DEPENDS= entry

*mod_php-4.3.1-r1 (24 Feb 2003)
  
  12 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1-r1.ebuild:
  fixed world writable files bug (#20706)

  08 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1-r1.ebuild: 
  Fixed bug #20603

  17 Mar 2003; Masatomo Nakano <nakano@gentoo.org> mod_php-4.3.1-r1.ebuild,
    mod_php-4.3.1.ebuild:
  Fixed bug #16910

  03 Mar 2003; Seemant Kulleen <seemant@gentoo.org> mod_php-4.3.1-r1.ebuild,
  mod_php-4.3.1.ebuild:
  qt fixes and spell support added

  25 Feb 2003; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.1-r1.ebuild :
  Added ~hppa to keywords.

  24 feb 2003; ryan phillips <rphillips@gentoo.org> mod_php-4.3.1-r1.ebuild :
  Added logic to install rest of needed files for phpize
  Added permission change to /usr/bin/pear to 755

*mod_php-4.3.1 (18 Feb 2003)

  02 June 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1.ebuild:
  Improve my java-config again.

  31 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1.ebuild:
  Improve the slight java fix with java-config.

  22 May 2003; Robin H. Johnson <robbat2@gentoo.org> mod_php-4.3.1.ebuild:
  Slight fix to the java stuff to forestall problems for the moment.
  Bump version requirements on Sabltron for bug #21229.

  12 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1.ebuild :
  fixed world writable files bug (#20706)

  08 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.1.ebuild: 
  Fixed bug #20603

  25 Feb 2003; Guy Martin <gmsoft@gentoo.org> mod_php-4.3.1.ebuild :
  Added hppa to keywords.

  24 Feb 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.1.ebuild :
  removed subshell from ebuild. Fixes #16211

  18 Feb 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.1.ebuild :
  Security Fix

*mod_php-4.3.0-r2 (10 Jan 2003)

  08 May 2003; Todd Heim <heim@gentoo.org> mod_php-4.3.0-r2.ebuild: 
  Fixed bug #20603

  07 Feb 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r2.ebuild :
  Fix bug #15277, #14067, #14068, #14330, #14364

  24 Jan 2003; Ryan Phillips <rphillips@gentoo.org> files/70_mod_php.conf :
  added php-source (.phps) support to the available types

  13 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r2.ebuild :
  Added Quequero tweaks. Fixes #13721

  13 Jan 2003; Daniel Ahlberg <aliz@genoto.org> mod_php-4.3.0-r2.ebuild :
  Added ppc and alpha keyword becuse this is a security update.

  10 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r2.ebuild :
  Added third party helper scripts to the install. (phpize, php-config, and phpextdist)
  Fixes #13525

*mod_php-4.3.0-r1 (06 Jan 2003)

  08 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r1.ebuild :
  Changed ebuild to reflect truetype use var instead of freetype
  
  08 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r1.ebuild :
  Use internal GD support
  
  08 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r1.ebuild :
  fixed dependencies

  06 Jan 2003; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0-r1.ebuild :
  added Roman Weber's patches:
  - reverting PEAR patch in /image [DONE]
  - added EXIF Handling [DONE]
  - Removed register_globals patch (PHP Scipts should now be safe) Bug #10302 [DONE]
  - #11714 IMAP thing...already Fixed? [should be DONE]


*mod_php-4.3.0 (30 Dec 2002)

  31 Dec 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.3.0.ebuild :
  Fixed sandbox violation with snmp
 
  30 Dec 2002; Ryan Phillips <rphillips@gentoo.org> :
  Tweaked sed... maybe this will fix the sandbox issues

  30 Dec 2002; Ryan Phillips <rphillips@gentoo.org> : Version bump.
  Added sed statement to fix the PEAR installer.

*mod_php-4.2.3-r2 (13 Dec 2002)

  25 Mar 2003; Seemant Kulleen <seemant@gentoo.org> mod_php-4.2.3-r2.ebuild:
  freetype USE to truetype USE, which ACTUALLY EXISTS, Sheesh

  27 Dec 2002; Ryan Phillips <rphillips@gentoo.org> : included mbregex in the cjk use var.

  22 Dec 2002; Donny Davies <woodchip@gentoo.org> mod_php-4.2.3-r2.ebuild :
  #12582 fix apache2 DEPEND.

  16 Dec 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3-r2.ebuild :
  Unmasked -r2 for production. Should fix many bugs in the bug tracker.

*mod_php-4.2.3-r2 (13 Dec 2002)

  15 Dec 2002; Bjoern Brauel <bjb@gentoo.org> mod_php-4.2.3-r2.ebuild :
  Add alpha to KEYWORDS

  13 Dec 2002; Donny Davies <woodchip@gentoo.org> : Added --enable-sockets
  and --enable-wddx per received requests; thanks Verwilst and Heiko.

*mod_php-4.2.3-r1 (10 Dec 2002)

  10 Dec 2002; Donny Davies <woodchip@gentoo.org> : Added Apache2 support.
  Please put 'apache2' in your USE variable, then emerge mod_php.  After
  it installs, simply edit /etc/conf.d/apache2 and add '-D PHP'.  Then
  restart apache2.  You're done :)
  
  Autoupdate keywords (12-6-02)
  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  02 Sep 2002; Daniel Robbins <drobbins@gentoo.org> mod_php-4.2.2-r1.ebuild :
  rphillips' gmp fix broke the ebuild, fixing... (no rev bump)

  02 Sep 2002; Brandon Low <lostlogic@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Test your ebuilds, you can't just comment in the middle like that, then
  the next thing becomes a separate funky command.

*mod_php-4.2.3 (10 Sep 2002)

  05 Dec 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3.ebuild :
  Do not include libpng if pdflib is included. Fixes #5444

  19 Nov 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3.ebuild :
  Tweaked deps...

  27 Oct 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3.ebuild :
  Fixed QT dep

  12 Sep 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3.ebuild :
  Added xmlrpc to 'xml' use flag. Fixes #7811

  10 Sep 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.3.ebuild :
  New version. Fixes #7716

*mod_php-4.2.2-r1 (18 Aug 2002)

  27 Oct 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Fixed QT dep

  19 Oct 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Is pdflib playing nice now?  Moved the image formats out of the pdflib
  'if' statement

  03 Sep 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Users have had issues compiling php with java support.  It works fine
  on my two computers. I'm not sure if it is user error or config file
  problems.  I've disabled it for now.

  01 Sep 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Users have had trouble compiling with gmp support... Disabled for now

  30 Aug 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Fixed xml dependency bug

  26 Aug 2002; Donny Davies <woodchip@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Clarified/cleaned pkg_postinst, cosmetic-only fix.

  26 Aug 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Added support for multibyte strings. Fixes #6747 Submitted by Ryan Shaw

  18 Aug 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.2-r1.ebuild :
  Should fix pdflib/jpeg/tiff/java bug... #2708

*mod_php-4.2.2 (22 Jul 2002)
  
  22 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> Security update, no other
  changes.

*mod_php-4.2.1-r5 (12 Jul 2002)

  26 Aug 2002; Ryan Phillips <rphillips@gentoo.org> Added --enable-exif

  15 Jul 2002; Owen Stampflee <owen@gentoo.org> Added KEYWORDS="x86 ppc" for
  all versions of the mod_php ebuild

  27 Apr 2002; Ryan Phillips <rphillips@gentoo.org> : There is a compilation
  problem with the --with-gettext variable being passed to configure from
  within portage.

  25 Apr 2002; Donny Davies <woodchip@gentoo.org> : Clarify the pkg_postinst()
  message.

  16 Apr 2002; Seemant Kulleen <seemant@gentoo.org> : I caused the gettext bug.
  The configure options do not like --with-gettext set.  They only like
  --without-gettext set.  Who knew?  Hmm, and I did not edit the ChangeLog for
  some reason to say that the mhash and mcrypt flags are encapsulated by the
  crypt flag now.

  16 Jul 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.1-r5.ebuild :
  Added libwww depedency to xml use var

  16 Jul 2002; Ryan Phillips <rphillips@gentoo.org> mod_php-4.2.1-r5.ebuild :
  Now provides virtual support

  12 Jul 2002; Roman Weber <gentoo@gonzo.ch> mod_php-4.2.1-r5.ebuild : Fixed
  compile error with sablotron 0.95 Fixed weird uname bug. (Bug #4913)   
		
*mod_php-4.2.1-r4 (09 Jul 2002)

  09 Jul 2002; Roman Weber <gentoo@gonzo.ch> Changed dependency from
  >=net-www/apache-1.3.24-r1 to >=net-www/apache-1.3.26-r2 (Apache 1.3.26
  >includes a fix for the "chunked encoding" issue). Closes bug #4677.  added
  >oci8 use variable to support Oracle databases

*mod_php-4.2.1-r3 (02 Jul 2002) 

  02 Jul 2002; Owen Stampflee <owen@gentoo.org> Fixed syntax errors in use vars
  freetype, jpeg, tiff, png, and gd

*mod_php-4.2.1-r2 (26 June 2002) 
  
  26 June 2002; Roman Weber <gentoo@gonzo.ch> mod_php-4.2.1-r2.ebuild : 
  Added 'use' variables: freetype, jpeg, tiff, png and gd (Bug #3900)   

*mod_php-4.2.1-r1 (17 June 2002) 
 
  17 June 2002; Roman Weber <gentoo@gonzo.ch> mod_php-4.2.1-r1.ebuild : Fixed
  'use nls' issue. (Bug #2895)  
 
*php-4.2.1-r1 (21 May 2002)

  05 June 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.1-r1.ebuild :
  Added support for firebird

  21 May 2002; Roman Weber <gentoo@gonzo.ch> php-4.2.1-r1.ebuild : Added XSLT
  sablotron to XML USE variable. Bug #2863 Fixed symlink to extensions
  directory. Bug #2886

*php-4.2.1 (17 May 2002)

  19 May 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.1.ebuild: Changed
  --with-png-dir=/usr/lib \   to --with-png-dir=/usr \

  17 May 2002; Roman Weber <gentoo@gonzo.ch> php-4.2.1.ebuild : New release
  Fixed flash ming issue. Bug #2707 Fixed mysql issue. Bug #2711 Set
  register_globals = On in php.ini. Lower security but more compatibility. See
  http://www.php.net/release_4_1_2.php Readded curl/snmp/bz2/ssl. Tnx Todd
  Symlinked php.ini to old place. Tnx Todd.  Disabled Java in ebuild. I'm not
  glad about it but it's imho the only way to fix a nasty bug. Perhaps it will
  work with an extra ebuild for the java extension. Bug #2708  
		
*php-4.2.0 (12 May 2002)

  12 May 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.0.ebuild :
  Added a message to warn the user that setting the register_globals
  option to off may break compatibility with some scripts.
  
  8 May 2002; Ryan Phillips <rphillips@gentoo.org> php-4.2.0.ebuild :
  New release

*php-4.1.2-r9 (5 May 2002)

  5 May 2002; Ryan Phillips <rphillips@gentoo.org> php-4.1.2-r9.ebuild :
  Added support for SSL, snmp, curl, and bzip2 to package.  Fixes #2468

*php-4.1.2-r8 (28 Apr 2002)

  27 Apr 2002; Ryan Phillips <rphillips@gentoo.org> php-4.1.2-r7.ebuild :
  for some reason --with-gettext doesn't find the libraries it needs. 
  ./configure --with-gettext from the commandline works fine.  reopening
  bug report.

*php-4.1.2-r8 (27 Apr 2002)

  27 Apr 2002; Ryan Phillips <rphillips@gentoo.org> php-4.1.2-r7.ebuild :
  Tweaked ebuild to include --with-gettext support.  This fixes #2106, but
  does it break anything else?

*php-4.1.2-r7 (15 Apr 2002)

  15 Apr 2002; Jared H. Hudson <jhhudso@gentoo.org> php-4.1.2-r7.ebuild : Fixed
  php to check for imap with ssl support when compiling the imap extension. Bug
  #1254 Fixed bug where php couldn't find path to javac. Bug #1401 Modified the
  ebuild so it DEPENDs on net-mail/uw-imap instead of the old virtual/imapUW
	
*php-4.1.2-r6 (12 Apr 2002) 

  12 Apr 2002; Spider <spider@gentoo.org> update -r to force rebuild with
  updated libpng
  
*php-4.1.2-r5 php-4.1.1-r5 (12 Apr 2002)

  12 Apr 2002; Seemant Kulleen <seemant@gentoo.org> php-4.1.2-r5.ebuild,
  php-4.1.1-r5.ebuild : Changed the "gettext" USE flag to "nls" since that is
  the same thing.

*php-4.1.2-r5 (10 Apr 2002)

  10 Apr 2002; Donny Davies <woodchip@gentoo.org> php-4.1.2-r5.ebuild,
  files/mod_php.conf : Added a mod_php.conf file, which installs into the
  apache addon-modules config directory.  This eliminates the need to "sed" the
  apache config file in order to "turn on" the php mime types.  Removed some
  stale ebuilds/digests.  Ooops, round two for today: fix the php.ini location
  with a symlink.  Keeps things tidy.

*php-4.1.2-r4 (9 Apr 2002)

  9 Apr 2002; Donny Davies <woodchip@gentoo.org> : Small updates to fit in with
  the reworked apache package.

*php-4.1.2-r3 (13 Mar 2002)

  13 Mar 2002; Grant Goodyear <g2boojum@gentoo.org> :
  Minor update to fix bug # 1042.

*php-4.1.2 (28 Feb 2002)

  28 Feb 2002; Bruce A. Locke <blocke@shivan.org> php-4.1.2.ebuild :
  Major security fixes in this version.  All php users are urged
  to upgrade to this version.

*php-4.1.1-r5 ( 25 Feb 2002 )

  25 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> php-4.1.1-r5.ebuild
  Fixed a bug that made compiling with libpng bug out on some 
  installations.  Old revisions removed.

*php-4.1.1-r4 ( 22 Feb 2002 )

  22 Feb 2002; Grant Goodyear <g2boojum@gentoo.org> php-4.1.1-r4.ebuild
  Now imap support should work.  Building php w/ imap support requires
  the uw-imap library and headers (from uw-imap or pine).  Annoying
  problem that uw-imap or pine needs to be compiled w/ SSL; otherwise
  the php build will fail due to header problems.

*php-4.0.6-r5 ( 18 Feb 2002 )

  18 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> php-4.0.6-r4.ebuild
  As Java support fails to work with Blackdown, and the fix seems non-trivial,
  Java support is removed from PHP 4.0.6 altogether.
  Old revisions have been removed.

*php-4.0.6-r4 ( 12 Feb 2002 )

  12 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> php-4.0.6-r4.ebuild
  Java support is back. The ebuild also tries harder to follow the style 
  guide.  Old revisions have been removed.

*php-4.1.1-r3 ( 18 Feb 2002 )

  18 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> php-4.1.1-r3.ebuild
  Java is still here, but now it actually works with Blackdown as well.
  Old revisions have been removed.

*php-4.1.1-r2 ( 12 Feb 2002 )

  12 Feb 2002; Karl Trygve Kalleberg <karltk@gentoo.org> php-4.1.1-r2.ebuild
  Java support is back. The ebuild also tries harder to follow the style guide.
  Old revisions have been removed.

*php-4.1.1 (1 Feb 2002)

  6 Feb 2002; Grant Goodyear <g2boojum@gentoo.org>:  
  Added a new -r1 revision of the php-4.1.1 ebuild that adds
  two new USE variables, mcrypt and mhash.
k