summaryrefslogtreecommitdiff
blob: fe36a8875860abb6f4916ef80359e6463d30679a (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
# ChangeLog for dev-libs/nss
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nss/ChangeLog,v 1.255 2012/06/22 13:12:46 anarchy Exp $

*nss-3.13.5-r1 (22 Jun 2012)

  22 Jun 2012; Jory A. Pratt <anarchy@gentoo.org> +nss-3.13.5-r1.ebuild,
  +files/nss-3.13.5-x32.patch:
  Add support for x32, bug #421817

  19 Jun 2012; Andreas Schuerch <nativemad@gentoo.org> nss-3.13.5.ebuild:
  x86 stable, thanks Mikle Kolyada

  11 Jun 2012; Jory A. Pratt <anarchy@gentoo.org> nss-3.13.5.ebuild:
  Bug #420659, Ensure nspr is listed in Depend

  11 Jun 2012; Agostino Sarubbo <ago@gentoo.org> nss-3.13.5.ebuild:
  Stable for amd64, wrt bug #420125

  08 Jun 2012; Michael Weber <xmw@gentoo.org> nss-3.13.4.ebuild:
  ppc stable (bug 414963)

*nss-3.13.5 (06 Jun 2012)

  06 Jun 2012; Jory A. Pratt <anarchy@gentoo.org> +nss-3.13.5.ebuild:
  Version bump, NSS parsing errors with zero length item

  28 May 2012; Raúl Porcel <armin76@gentoo.org> nss-3.13.4.ebuild:
  sparc stable

  26 May 2012; Raúl Porcel <armin76@gentoo.org> nss-3.13.4.ebuild:
  alpha/ia64 stable

  26 May 2012; Markus Meier <maekke@gentoo.org> nss-3.13.4.ebuild:
  arm stable, bug #414963

  08 May 2012; Lars Wendler <polynomial-c@gentoo.org> nss-3.13.4.ebuild:
  Sync up with nss from mozilla overlay.

  08 May 2012; Andreas Schuerch <nativemad@gentoo.org> nss-3.13.4.ebuild:
  x86 stable, see bug 414963

  07 May 2012; Markos Chandras <hwoarang@gentoo.org> nss-3.13.4.ebuild:
  Stable on amd64 wrt bug #414963

*nss-3.13.4 (07 May 2012)

  07 May 2012; Lars Wendler <polynomial-c@gentoo.org> -nss-3.13.1-r2.ebuild,
  +nss-3.13.4.ebuild:
  Security bump (bug #414963). Removed old.

  04 May 2012; Jeff Horelick <jdhore@gentoo.org> nss-3.12.11-r1.ebuild,
  nss-3.13.1-r2.ebuild, nss-3.13.2.ebuild, nss-3.13.3.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> nss-3.13.3.ebuild:
  keyword ~amd64-fbsd

  25 Mar 2012; Thomas Kahle <tomka@gentoo.org> nss-3.13.3.ebuild:
  marked x86 per bug 408161

  22 Mar 2012; Agostino Sarubbo <ago@gentoo.org> nss-3.13.3.ebuild:
  Stable for amd64, wrt bug #408161

*nss-3.13.3 (11 Mar 2012)

  11 Mar 2012; Jory A. Pratt <anarchy@gentoo.org> +nss-3.13.3.ebuild,
  +files/nss-3.13-gentoo-fixup.patch:
  Version bump, make minor changes to pkg-config file bug #407743

*nss-3.13.2 (26 Feb 2012)

  26 Feb 2012; Jory A. Pratt <anarchy@gentoo.org> -nss-3.12.9-r1.ebuild,
  -nss-3.12.10.ebuild, -nss-3.13.1-r1.ebuild, +nss-3.13.2.ebuild:
  Remove stale versions, version bump

  20 Feb 2012; Thomas Kahle <tomka@gentoo.org> nss-3.13.1-r2.ebuild:
  marked x86 per bug 403183

  17 Feb 2012; Agostino Sarubbo <ago@gentoo.org> nss-3.13.1-r2.ebuild:
  Stable for amd64, wrt bug #403183

*nss-3.13.1-r2 (27 Jan 2012)

  27 Jan 2012; <anarchy@gentoo.org> +nss-3.13.1-r2.ebuild:
  add ca cert support to database

  12 Jan 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> nss-3.13.1-r1.ebuild:
  x86 stable wrt bug #395431

  11 Jan 2012; Agostino Sarubbo <ago@gentoo.org> nss-3.13.1-r1.ebuild:
  Stable for AMD64, wrt security bug #395431

  10 Jan 2012; Agostino Sarubbo <ago@gentoo.org> nss-3.13.1-r1.ebuild:
  Add zlib as RDEPEND and 'die' where missing

*nss-3.13.1-r1 (19 Dec 2011)

  19 Dec 2011; Jory A. Pratt <anarchy@gentoo.org> -nss-3.13.1.ebuild,
  +nss-3.13.1-r1.ebuild, +files/nss-3.13.1-pkcs11n-header-fix.patch:
  Fix pkcs11n header, fix mulitlib portage compilation

  25 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> nss-3.12.11-r1.ebuild:
  ppc64 stable wrt #388045

  21 Nov 2011; Jory A. Pratt <anarchy@gentoo.org> nss-3.13.1.ebuild:
  Fix buildtime deps, bug #381585,381591

  19 Nov 2011; Raúl Porcel <armin76@gentoo.org> nss-3.12.11-r1.ebuild:
  alpha/ia64/sparc stable wrt #388045

  06 Nov 2011; Brent Baude <ranger@gentoo.org> nss-3.12.11-r1.ebuild:
  Marking nss-3.12.11-r1 ppc for bug 388045

  05 Nov 2011; Markus Meier <maekke@gentoo.org> nss-3.12.11-r1.ebuild:
  arm stable, bug #388045

*nss-3.13.1 (05 Nov 2011)

  05 Nov 2011; Lars Wendler <polynomial-c@gentoo.org> -nss-3.12.8.ebuild,
  -nss-3.12.9.ebuild, -nss-3.12.11.ebuild, +nss-3.13.1.ebuild,
  +files/nss-3.13.1-solaris-gcc.patch:
  Version bump. Removed old.

  30 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> nss-3.12.11-r1.ebuild:
  x86 stable wrt bug #388045

  28 Oct 2011; Jeroen Roovers <jer@gentoo.org> nss-3.12.11-r1.ebuild:
  Stable for HPPA (bug #388045).

  28 Oct 2011; Tony Vroon <chainsaw@gentoo.org> nss-3.12.11-r1.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
  "idella4" Delaney in security bug #388045.

*nss-3.12.11-r1 (27 Oct 2011)

  27 Oct 2011; Lars Wendler <polynomial-c@gentoo.org> +nss-3.12.11-r1.ebuild,
  +files/nss-3.12.11-CVE-2011-3640.patch:
  Revbump to fix CVE-2011-3640 (bug #388045).

  23 Oct 2011; Raúl Porcel <armin76@gentoo.org> nss-3.12.9-r1.ebuild:
  Fix linux-3.0 support on stable as well, bug #372001

  24 Sep 2011; Fabian Groffen <grobian@gentoo.org> nss-3.12.11.ebuild:
  Avoid brute force install_name_tooling by hacking the makefiles

  24 Sep 2011; Fabian Groffen <grobian@gentoo.org> nss-3.12.11.ebuild:
  Fixup library ids and references, not to use @executable_path on Darwin

  24 Sep 2011; Fabian Groffen <grobian@gentoo.org> nss-3.12.11.ebuild:
  Fix pkg-config and nss-config for Darwin where the linker doesn't understand
  (and need) -R arguments

  24 Sep 2011; Fabian Groffen <grobian@gentoo.org> nss-3.12.11.ebuild:
  Marked ~x64-macos, libnaming fixes, and disable resigning of libs on Darwin,
  since Darwin doesn't do ELF

  04 Sep 2011; Markus Meier <maekke@gentoo.org> nss-3.12.10.ebuild:
  arm stable, bug #379549

  03 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> nss-3.12.10.ebuild:
  x86 stable wrt bug #380913

  03 Sep 2011; Kacper Kowalik <xarthisius@gentoo.org> nss-3.12.10.ebuild:
  ppc/ppc64 stable wrt #379549

  28 Aug 2011; Tony Vroon <chainsaw@gentoo.org> nss-3.12.10.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in bug
  #380913 filed by Chí-Thanh Christopher Nguyễn.

*nss-3.12.11 (27 Aug 2011)

  27 Aug 2011; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.11.ebuild:
  Version bump, misc fixes

  31 Jul 2011; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.10.ebuild:
  Add support for Linux-3.0, bug #372001

  14 May 2011; Kacper Kowalik <xarthisius@gentoo.org> nss-3.12.9-r1.ebuild:
  ppc/ppc64 stable wrt #360315

*nss-3.12.10 (13 May 2011)

  13 May 2011; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.10.ebuild:
  Version bump

  07 May 2011; Raúl Porcel <armin76@gentoo.org> nss-3.12.9-r1.ebuild:
  alpha/arm/ia64/sparc stable wrt #360315

  06 May 2011; Jeroen Roovers <jer@gentoo.org> nss-3.12.9-r1.ebuild:
  Stable for HPPA (bug #360315).

  03 May 2011; Thomas Kahle <tomka@gentoo.org> nss-3.12.9-r1.ebuild:
  x86 stable per bug 360315

  03 May 2011; Markos Chandras <hwoarang@gentoo.org> nss-3.12.9-r1.ebuild:
  Stable on amd64 wrt bug #360315

*nss-3.12.9-r1 (03 May 2011)

  03 May 2011; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.9-r1.ebuild:
  Bump for security bug #360315

*nss-3.12.9 (14 Jan 2011)

  14 Jan 2011; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.9.ebuild:
  version bump

  01 Jan 2011; Jory A. Pratt <anarchy@gentoo.org> -nss-3.12.7.ebuild:
  remove stale ebuild with security issue

  31 Oct 2010; Raúl Porcel <armin76@gentoo.org> nss-3.12.8.ebuild:
  alpha/ia64/sparc stable wrt #342847

  30 Oct 2010; Markus Meier <maekke@gentoo.org> nss-3.12.8.ebuild:
  arm stable, bug #342847

  29 Oct 2010; Mark Loeser <halcy0n@gentoo.org> nss-3.12.8.ebuild:
  Stable for ppc64; bug #342847

  29 Oct 2010; Jeroen Roovers <jer@gentoo.org> nss-3.12.8.ebuild:
  Stable for PPC (bug #342847).

  25 Oct 2010; Christian Faulhammer <fauli@gentoo.org> nss-3.12.8.ebuild:
  stable x86, security bug 341821

  23 Oct 2010; Markos Chandras <hwoarang@gentoo.org> nss-3.12.8.ebuild:
  Stable on amd64 wrt bug #341821

  22 Oct 2010; Jeroen Roovers <jer@gentoo.org> nss-3.12.8.ebuild:
  Stable for HPPA (bug #341821).

*nss-3.12.8 (30 Sep 2010)

  30 Sep 2010; Jory A. Pratt <anarchy@gentoo.org> -nss-3.12.5.ebuild,
  -nss-3.12.5-r1.ebuild, -nss-3.12.6-r1.ebuild, -nss-3.12.6-r2.ebuild,
  +nss-3.12.8.ebuild:
  Version bump, addresses bug #335731

  14 Sep 2010; Jeroen Roovers <jer@gentoo.org> nss-3.12.7.ebuild:
  Stable for HPPA (bug #336396).

  14 Sep 2010; Raúl Porcel <armin76@gentoo.org> nss-3.12.7.ebuild:
  alpha/arm/ia64/sparc stable wrt #336396

  12 Sep 2010; Joseph Jezak <josejx@gentoo.org> nss-3.12.7.ebuild:
  Marked ppc ppc64 for bug #336396.

  11 Sep 2010; Markos Chandras <hwoarang@gentoo.org> nss-3.12.7.ebuild:
  Stable on amd64 wrt bug #336396

  09 Sep 2010; Christian Faulhammer <fauli@gentoo.org> nss-3.12.7.ebuild:
  stable x86, security bug 336396

  08 Aug 2010; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.7.ebuild:
  Fix nspr dep bug #331643

*nss-3.12.7 (07 Aug 2010)

  07 Aug 2010; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.7.ebuild:
  version bump

  27 Jul 2010; Fabian Groffen <grobian@gentoo.org> nss-3.12.6-r2.ebuild:
  Call generate_chk with correct args for Prefix

  21 Jul 2010; Jeremy Olexa <darkside@gentoo.org>
  +files/nss-3.12.4-solaris-gcc.patch, nss-3.12.6-r2.ebuild:
  Migrate changes from Gentoo Prefix overlay. Convert to EAPI3, add patch,
  etc. Approved by mozilla team in IRC, reference bug 328127

  02 Jul 2010; Guy Martin <gmsoft@gentoo.org> nss-3.12.6-r1.ebuild:
  hppa stable, #324735

*nss-3.12.6-r2 (16 Jun 2010)

  16 Jun 2010; Robin H. Johnson <robbat2@gentoo.org> +nss-3.12.6-r2.ebuild:
  Bug #323871: Ensure CHK files are valid more often, and prevent them from
  being prelinked since that would break the CHKs.

  31 May 2010; Joseph Jezak <josejx@gentoo.org> nss-3.12.6-r1.ebuild:
  Marked ppc/ppc64 stable for bug #314025.

  09 May 2010; Raúl Porcel <armin76@gentoo.org> nss-3.12.6-r1.ebuild:
  alpha/arm/ia64/sparc stable wrt #314025

  20 Apr 2010; Christian Faulhammer <fauli@gentoo.org> nss-3.12.6-r1.ebuild:
  stable x86, bug 314025

  18 Apr 2010; Pacho Ramos <pacho@gentoo.org> nss-3.12.6-r1.ebuild:
  amd64 stable, bug 314025

  10 Apr 2010; <anarchy@gentoo.org> -files/3.12-nss.pc.in,
  -files/nss-3.11.5-config-1.patch, -nss-3.11.9-r1.ebuild,
  -files/nss-3.11-config.patch, -nss-3.12.2.ebuild, -nss-3.12.3.ebuild,
  -nss-3.12.3-r1.ebuild, -files/nss-3.12.3-executable-stacks.patch,
  -files/nss-3.12-config-1.patch, -nss-3.12.4-r2.ebuild,
  -files/nss-3.12.4-gentoo-fixups-1.diff, -files/3.12-nss-config.in,
  -files/nss-3.11-config-1.patch, -files/nss-3.12-config.patch,
  -files/nss.pc.in, -files/nss-config.in, -files/nss-fbsd7.patch,
  -files/nss-mips64-2.patch, -files/nss-mips64.patch:
  remove stable ebuilds/files

  08 Apr 2010; <anarchy@gentoo.org> nss-3.12.6-r1.ebuild:
  use nspr-config to determine includes/libdir

*nss-3.12.6-r1 (28 Mar 2010)

  28 Mar 2010; <anarchy@gentoo.org> -nss-3.12.6.ebuild,
  +nss-3.12.6-r1.ebuild:
  Use official release media for completeness, fix bug #310149

*nss-3.12.6 (24 Mar 2010)

  24 Mar 2010; Nirbheek Chauhan <nirbheek@gentoo.org> +nss-3.12.6.ebuild,
  +files/nss-3.12.6-gentoo-fixup-warnings.patch:
  Bump to 3.12.6; no upstream release, so we have our own little tarball
  extracted from the firefox-3.6.2 sources.

  12 Feb 2010; <anarchy@gentoo.org> nss-3.12.5-r1.ebuild:
  Fix bugs #304687, #304571

  11 Feb 2010; <anarchy@gentoo.org> nss-3.12.5-r1.ebuild:
  Ensure we update nspr before nss

*nss-3.12.5-r1 (11 Feb 2010)

  11 Feb 2010; <anarchy@gentoo.org> +nss-3.12.5-r1.ebuild:
  Address concerns from upstream about our build, move to /usr/lib{64}

  09 Feb 2010; Pacho Ramos <pacho@gentoo.org> nss-3.12.5.ebuild:
  amd64 stable, bug 300606

  30 Jan 2010; Raúl Porcel <armin76@gentoo.org> nss-3.12.5.ebuild:
  alpha/arm/ia64/sparc stable wrt #300606

  27 Jan 2010; <anarchy@gentoo.org> nss-3.12.5.ebuild:
  revert dynamic linking for prefix, fixed in nspr

  26 Jan 2010; Jeremy Olexa <darkside@gentoo.org> nss-3.12.5.ebuild:
  Fix dynamic linking issues which surfaced in Gentoo Prefix env. Tested on
  Gentoo Linux system and Gentoo Prefix in bug 301649. Proxy commit approved
  by the mozilla team

  23 Jan 2010; Brent Baude <ranger@gentoo.org> nss-3.12.5.ebuild:
  stable ppc, bug 300606

  20 Jan 2010; Brent Baude <ranger@gentoo.org> nss-3.12.5.ebuild:
  stable ppc64, bug 300606

  19 Jan 2010; Jeroen Roovers <jer@gentoo.org> nss-3.12.5.ebuild:
  Stable for HPPA (bug #300606).

  17 Jan 2010; Christian Faulhammer <fauli@gentoo.org> nss-3.12.5.ebuild:
  stable x86, bug 300606

  15 Dec 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.5.ebuild,
  +files/nss-3.12.5-gentoo-fixups.diff:
  
  fix upstream breakage in packaging tarball

*nss-3.12.5 (15 Dec 2009)

  15 Dec 2009; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.5.ebuild:
  version bump

  06 Nov 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.4-r2.ebuild:
  remove double export of ecc bug #292091

*nss-3.12.4-r2 (24 Sep 2009)

  24 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> -nss-3.12.4.ebuild,
  -nss-3.12.4-r1.ebuild, +nss-3.12.4-r2.ebuild:
  re-enable libz system support, this was drop'd due to many upstream bugs
  reporting libz issues. These were system configure errors.

*nss-3.12.4-r1 (20 Sep 2009)

  20 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.4-r1.ebuild:
  remove system zlib support, re-enable ECC export

  16 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.4.ebuild:
  Make pkg_postinst() clearer on revdep-rebuild usage.

  15 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> nss-3.12.4.ebuild:
  Add warning about binary breakage with soname change

*nss-3.12.4 (15 Sep 2009)

  15 Sep 2009; Jory A. Pratt <anarchy@gentoo.org> +nss-3.12.4.ebuild,
  +files/nss-3.12.4-gentoo-fixups-1.diff:
  add nss-3.12.4 revision bump, many many bug fixes

  05 Sep 2009; Tobias Heinlein <keytoaster@gentoo.org> nss-3.12.3-r1.ebuild:
  amd64 stable wrt bug #280839

  30 Aug 2009; Brent Baude <ranger@gentoo.org> nss-3.12.3-r1.ebuild:
  Marking nss-3.12.3-r1 ppc64 for bug 280839

  26 Aug 2009; Raúl Porcel <armin76@gentoo.org> nss-3.12.3-r1.ebuild:
  alpha/arm/ia64/sparc stable

  19 Aug 2009; Mounir Lamouri <volkmar@gentoo.org> nss-3.12.3-r1.ebuild:
  Stable for ppc. Bug 280839

  17 Aug 2009; Jeroen Roovers <jer@gentoo.org> nss-3.12.3-r1.ebuild:
  Stable for HPPA (bug #280839).

  14 Aug 2009; Christian Faulhammer <fauli@gentoo.org> nss-3.12.3-r1.ebuild:
  stable x86, bug 280839

  02 Aug 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
  nss-3.12.3-r1.ebuild:
  Fix multilib building in nss-3.12.3-r1

*nss-3.12.3-r1 (24 Jun 2009)

  24 Jun 2009; <nirbheek@gentoo.org> +nss-3.12.3-r1.ebuild,
  +files/nss-3.12.3-executable-stacks.patch:
  Fix bug 266343 (executable stack) and all bugs depending on it

  15 Apr 2009; Raúl Porcel <armin76@gentoo.org>
  +files/nss-3.12-config.patch:
  Add missing patch

*nss-3.12.3 (15 Apr 2009)

  15 Apr 2009; Raúl Porcel <armin76@gentoo.org> +nss-3.12.3.ebuild:
  Version bump

  12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> nss-3.12.2.ebuild:
  Stable on sparc, security bug #262704 and security bug #265165

  15 Feb 2009; Raúl Porcel <armin76@gentoo.org> -nss-3.12.2_rc1.ebuild,
  nss-3.12.2.ebuild:
  alpha/arm/ia64 stable wrt #257577

  14 Feb 2009; Markus Meier <maekke@gentoo.org> nss-3.12.2.ebuild:
  amd64/x86 stable, bug #257577

  12 Feb 2009; Brent Baude <ranger@gentoo.org> nss-3.12.2.ebuild:
  Marking nss-3.12.2 ppc64 and ppc for bug 257577

  12 Feb 2009; Jeroen Roovers <jer@gentoo.org> nss-3.12.2.ebuild:
  Stable for HPPA (bug #257577).

*nss-3.12.2 (04 Feb 2009)

  04 Feb 2009; Raúl Porcel <armin76@gentoo.org> +nss-3.12.2.ebuild:
  Version bump

  27 Dec 2008; Brent Baude <ranger@gentoo.org> nss-3.12.2_rc1.ebuild:
  Marking nss-3.12.2_rc1 ppc64 and ppc for bug 234646

  26 Dec 2008; Jeroen Roovers <jer@gentoo.org> nss-3.12.2_rc1.ebuild:
  Stable for HPPA (bug #234646).

  24 Dec 2008; Raúl Porcel <armin76@gentoo.org> -nss-3.12-r1.ebuild,
  nss-3.12.2_rc1.ebuild:
  alpha/arm/ia64 stable wrt #234646

  23 Dec 2008; Markus Meier <maekke@gentoo.org> nss-3.12.2_rc1.ebuild:
  x86 stable, bug #234646

  22 Dec 2008; Olivier Crête <tester@gentoo.org> nss-3.12.2_rc1.ebuild:
  Stable on amd64, bug #234646

  22 Dec 2008; Raúl Porcel <armin76@gentoo.org> nss-3.12.2_rc1.ebuild:
  No need to raise so much the sqlite dep

*nss-3.12.2_rc1 (11 Dec 2008)

  11 Dec 2008; Raúl Porcel <armin76@gentoo.org> +files/nss-mips64-2.patch,
  +nss-3.12.2_rc1.ebuild:
  Version bump

*nss-3.12-r1 (25 Nov 2008)
*nss-3.11.9-r1 (25 Nov 2008)

  25 Nov 2008; Raúl Porcel <armin76@gentoo.org> -nss-3.11.9.ebuild,
  +nss-3.11.9-r1.ebuild, -nss-3.12.ebuild, +nss-3.12-r1.ebuild:
  Enable ECC support, bug #247221

  26 Sep 2008; Raúl Porcel <armin76@gentoo.org> nss-3.11.9.ebuild:
  arm stable

  05 Sep 2008; Alexis Ballier <aballier@gentoo.org> +files/nss-fbsd7.patch,
  nss-3.12.ebuild:
  backport a patch to fix build on freebsd 7

  13 Aug 2008; Raúl Porcel <armin76@gentoo.org> nss-3.11.9.ebuild,
  nss-3.12.ebuild:
  Respect LDFLAGS, bug #181792

  06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
  Add USE flag description to metadata wrt GLEP 56.

*nss-3.12 (18 Jun 2008)

  18 Jun 2008; Raúl Porcel <armin76@gentoo.org> -nss-3.12_beta3.ebuild,
  -nss-3.12_rc2.ebuild, -nss-3.12_rc3.ebuild, -nss-3.12_rc4.ebuild,
  +nss-3.12.ebuild:
  Version bump wrt #228083, remove betas

*nss-3.12_rc4 (05 Jun 2008)

  05 Jun 2008; Raúl Porcel <armin76@gentoo.org> +nss-3.12_rc4.ebuild:
  Version bump

*nss-3.12_rc3 (11 May 2008)

  11 May 2008; Raúl Porcel <armin76@gentoo.org> +nss-3.12_rc3.ebuild:
  Version bump

  11 Apr 2008; Raúl Porcel <armin76@gentoo.org> nss-3.11.7.ebuild,
  nss-3.11.9.ebuild, nss-3.12_beta3.ebuild, nss-3.12_rc2.ebuild:
  Use the right compiler call, bug #216877

*nss-3.12_rc2 (09 Apr 2008)

  09 Apr 2008; Raúl Porcel <armin76@gentoo.org> +nss-3.12_rc2.ebuild:
  Version bump

  02 Apr 2008; Raúl Porcel <armin76@gentoo.org> -nss-3.12_beta2.ebuild,
  nss-3.12_beta3.ebuild:
  Restore keywords, remove old

  26 Mar 2008; Markus Meier <maekke@gentoo.org> nss-3.11.9.ebuild:
  amd64 stable, bug #213601

  23 Mar 2008; nixnut <nixnut@gentoo.org> nss-3.11.9.ebuild:
  Stable on ppc wrt bug 213601

  22 Mar 2008; Brent Baude <ranger@gentoo.org> nss-3.11.9.ebuild:
  Marking nss-3.11.9 ppc64 for bug 213601

  17 Mar 2008; Jeroen Roovers <jer@gentoo.org> nss-3.11.9.ebuild:
  Stable for HPPA (bug #213601).

*nss-3.12_beta3 (17 Mar 2008)

  17 Mar 2008; Raúl Porcel <armin76@gentoo.org> nss-3.11.7.ebuild,
  nss-3.11.9.ebuild, nss-3.12_beta2.ebuild, +nss-3.12_beta3.ebuild:
  Version bump, fix LICENSE, thanks to zlin

  16 Mar 2008; Raúl Porcel <armin76@gentoo.org> nss-3.11.9.ebuild:
  alpha/ia64/sparc/x86 stable

*nss-3.12_beta2 (25 Feb 2008)

  25 Feb 2008; Raúl Porcel <armin76@gentoo.org>
  +files/nss-3.12-config-1.patch, -nss-3.12_beta1-r1.ebuild,
  +nss-3.12_beta2.ebuild:
  Version bump

*nss-3.11.9 (11 Feb 2008)

  11 Feb 2008; Raúl Porcel <armin76@gentoo.org> +nss-3.11.9.ebuild,
  nss-3.12_beta1-r1.ebuild, -nss-3.12_alpha2_p2-r1.ebuild:
  Version bump

*nss-3.12_beta1-r1 (19 Jan 2008)

  19 Jan 2008; Raúl Porcel <armin76@gentoo.org> files/3.12-nss.pc.in,
  files/3.12-nss-config.in, -nss-3.12_beta1.ebuild,
  +nss-3.12_beta1-r1.ebuild:
  fix beta1

*nss-3.12_beta1 (18 Jan 2008)

  18 Jan 2008; Raúl Porcel <armin76@gentoo.org> +files/3.12-nss.pc.in,
  +files/3.12-nss-config.in, +nss-3.12_beta1.ebuild:
  Version bump

*nss-3.12_alpha2_p2-r1 (23 Dec 2007)

  23 Dec 2007; Raúl Porcel <armin76@gentoo.org> -nss-3.12_alpha2_p2.ebuild,
  +nss-3.12_alpha2_p2-r1.ebuild:
  fix MINOR_VERSION

  18 Dec 2007; Raúl Porcel <armin76@gentoo.org> -nss-3.11.5.ebuild:
  old

  17 Dec 2007; Stuart Longland <redhatter@gentoo.org> nss-3.11.5.ebuild,
  nss-3.11.7.ebuild:
  Mark 3.11.7 stable on MIPS, and fix some quoting issues in version 3.11.5

  12 Dec 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.7.ebuild,
  nss-3.12_alpha2_p2.ebuild:
  Quoting

*nss-3.12_alpha2_p2 (12 Dec 2007)

  12 Dec 2007; Raúl Porcel <armin76@gentoo.org> +nss-3.12_alpha2_p2.ebuild:
  Version bump

  16 Oct 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.5.ebuild,
  nss-3.11.7.ebuild:
  Drop app-arch/zip DEPEND, bug #195994

  15 Aug 2007; Christoph Mende <angelos@gentoo.org> nss-3.11.7.ebuild:
  Stable on amd64 wrt bug #188158

  14 Aug 2007; Markus Rothe <corsair@gentoo.org> nss-3.11.7.ebuild:
  Stable on ppc64; bug #188158

  13 Aug 2007; Jeroen Roovers <jer@gentoo.org> nss-3.11.7.ebuild:
  Stable for HPPA (bug #188158).

  09 Aug 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.7.ebuild:
  Fix description, bug 188230

  09 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.11.7.ebuild:
  Stable on sparc wrt #188158

  09 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org> nss-3.11.7.ebuild:
  ppc stable, bug #188158

  08 Aug 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.7.ebuild:
  Add utils USE-flag, bug #182896 and alpha/ia64/x86 stable wrt #188158

*nss-3.11.7 (08 Jul 2007)

  08 Jul 2007; Raúl Porcel <armin76@gentoo.org> +nss-3.11.7.ebuild:
  Version bump, and change license, bug #184599

  24 Jun 2007; Piotr Jaroszyński <peper@gentoo.org> nss-3.11.5.ebuild:
  (QA) Fix ${ROOT} abuse. bug #167271.

  20 Apr 2007; Raúl Porcel <armin76@gentoo.org> -nss-3.11.3.ebuild,
  -nss-3.11.3-r1.ebuild, -nss-3.11.4.ebuild:
  Cleanup

  20 Apr 2007; Stuart Longland <redhatter@gentoo.org> nss-3.11.5.ebuild:
  Tested and marked stable on mips

  14 Mar 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.5.ebuild:
  alpha and ia64 were stable, fixed

  11 Mar 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.5.ebuild:
  3.11.5 needs nspr-4.6.5

  11 Mar 2007; Bryan Østergaard <kloeri@gentoo.org> nss-3.11.5.ebuild:
  Stable on Alpha + IA64.

  09 Mar 2007; Jeroen Roovers <jer@gentoo.org> nss-3.11.5.ebuild:
  Stable for HPPA (bug #165555).

  08 Mar 2007; Steve Dibb <beandog@gentoo.org> nss-3.11.3.ebuild,
  nss-3.11.3-r1.ebuild, nss-3.11.4.ebuild:
  Adding multilib to inheritance

  08 Mar 2007; Steve Dibb <beandog@gentoo.org> nss-3.11.5.ebuild:
  amd64 stable, security bug 165555

  08 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org> nss-3.11.5.ebuild:
  Stable on ppc wrt bug #165555.

  08 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> ChangeLog:
  Fix manifest

  08 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.11.5.ebuild:
  Stable on sparc wrt security #165555

  08 Mar 2007; Markus Rothe <corsair@gentoo.org> nss-3.11.5.ebuild:
  Stable on ppc64; bug #165555

  07 Mar 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.5.ebuild:
  x86 stable wrt bug 165555

*nss-3.11.5 (07 Mar 2007)

  07 Mar 2007; Raúl Porcel <armin76@gentoo.org>
  -files/nss-3.9.2-gcc4.patch, -files/nss-3.9.2-ppc64.patch,
  -files/nss-3.11.1-perl.patch, +files/nss-3.11.5-config-1.patch,
  -files/nss-3.11-zdefs.patch, +nss-3.11.5.ebuild:
  Version bump wrt bug 165555 and cleanup old

  07 Mar 2007; Raúl Porcel <armin76@gentoo.org> nss-3.11.4.ebuild:
  license change, bug 150118

  05 Feb 2007; Raúl Porcel <armin76@gentoo.org> -nss-3.9.2-r2.ebuild,
  -nss-3.9.2-r3.ebuild, -nss-3.11-r1.ebuild, -nss-3.11.1-r1.ebuild,
  -nss-3.11.2.ebuild:
  clean old

  04 Feb 2007; Alexander H. Færøy <eroyf@gentoo.org> nss-3.11.3.ebuild:
  Stable on MIPS; bug #148283

  28 Jan 2007; Raúl Porcel <armin76@gentoo.org> metadata.xml:
  Move to mozilla herd, bug 160313

*nss-3.11.4 (21 Dec 2006)

  21 Dec 2006; Alon Bar-Lev <alonbl@gentoo.org> +nss-3.11.4.ebuild:
  Version bump, closes bug#158707, thanks to Walter Meinl

*nss-3.11.3-r1 (06 Oct 2006)

  06 Oct 2006; Alon Bar-Lev <alonbl@gentoo.org> +nss-3.11.3-r1.ebuild:
  Make nss respect CFLAGS thanks to Ed Catmur bug#143619

  27 Sep 2006; Bryan Østergaard <kloeri@gentoo.org> nss-3.11.3.ebuild:
  Stable on ia64.

  27 Sep 2006; Fernando J. Pereda <ferdy@gentoo.org> nss-3.11.3.ebuild:
  Stable on alpha wrt bug #148283

  21 Sep 2006; <blubb@gentoo.org> nss-3.11.3.ebuild:
  stable on amd64 wrt bug 148283

  21 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org> nss-3.11.3.ebuild:
  hppa stable, bug #148283

  21 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org> nss-3.11.3.ebuild:
  ppc stable, bug #148283

  21 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.11.3.ebuild:
  Stable on sparc wrt security #148283

  20 Sep 2006; <ticho@gentoo.org> nss-3.11.3.ebuild:
  Stable on x86, security bug #148283.

  20 Sep 2006; Markus Rothe <corsair@gentoo.org> nss-3.11.3.ebuild:
  Stable on ppc64; bug #148283

  16 Sep 2006; Stefan Schweizer <genstef@gentoo.org> nss-3.11.3.ebuild:
  NSPR_VER="4.6.3", thanks Walter Meinl <wuno@lsvw.de>

*nss-3.11.3 (16 Sep 2006)

  16 Sep 2006; Stefan Schweizer <genstef@gentoo.org> +nss-3.11.3.ebuild:
  version bump, security bug 147652

*nss-3.11.2 (23 Jul 2006)

  23 Jul 2006; Marcelo Goes <vanquirius@gentoo.org> +nss-3.11.2.ebuild:
  3.11.2 version bump for bug 141393, thanks to Walter Meinl <wuno at lsvw dot
  de>.

  12 Jul 2006; Aron Griffis <agriffis@gentoo.org> nss-3.11.1-r1.ebuild:
  Mark 3.11.1-r1 stable on ia64. #134798

  09 Jul 2006; Joshua Kinard <kumba@gentoo.org> nss-3.11-r1.ebuild:
  Marked stable on mips.

  07 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> nss-3.11.1-r1.ebuild:
  Add ~x86-fbsd keyword.

  23 Jun 2006; Thomas Cort <tcort@gentoo.org> nss-3.11-r1.ebuild:
  Stable on alpha wrt Bug #137198.

*nss-3.11.1-r1 (09 Jun 2006)

  09 Jun 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/nss-3.11.1-perl.patch, -files/nss-3.11.1-zdefs.patch,
  -nss-3.11.ebuild, -nss-3.11.1.ebuild, +nss-3.11.1-r1.ebuild:
  perl -e cleanup, small clean up to tree

  03 Jun 2006; Guy Martin <gmsoft@gentoo.org> nss-3.11-r1.ebuild:
  Stable on hppa.

*nss-3.11.1 (02 Jun 2006)

  02 Jun 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/nss-3.11.1-zdefs.patch, +nss-3.11.1.ebuild:
  revision bump

  30 May 2006; Chris Gianelloni <wolf31o2@gentoo.org> nss-3.11-r1.ebuild:
  Stable on x86 wrt bug #134798.

  29 May 2006; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.11-r1.ebuild:
  Stable on sparc wrt #134798

  03 May 2006; Markus Rothe <corsair@gentoo.org> nss-3.11-r1.ebuild:
  Stable on ppc64

  19 Apr 2006; <anarchy@gentoo.org> nss-3.11-r1.ebuild:
  stable on amd64

  15 Apr 2006; <nixnut@gentoo.org> nss-3.11-r1.ebuild:
  Stable on ppc

  25 Feb 2006; Stephen P. Becker <spbecker@gentoo.org>
  -files/nss-3.9.2-mips64.patch, nss-3.9.2-r2.ebuild, nss-3.9.2-r3.ebuild:
  removing old patch, and converting old ebuilds to use the new form

  25 Feb 2006; Stephen P. Becker <spbecker@gentoo.org>
  +files/nss-mips64.patch, nss-3.11-r1.ebuild:
  readding mips64 patch, please do not remove this again

*nss-3.11-r1 (09 Feb 2006)

  09 Feb 2006; <anarchy@gentoo.org> +nss-3.11-r1.ebuild:
  rpath fix

*nss-3.11 (30 Jan 2006)

  30 Jan 2006; <anarchy@gentoo.org> +files/nss-3.11-config.patch,
  +files/nss-3.11-zdefs.patch, files/nss.pc.in, +files/nss-config.in,
  -nss-3.10.ebuild, +nss-3.11.ebuild:
  revision bump, with proper modification for nss-config

*nss-3.10 (26 Jan 2006)

  26 Jan 2006; Marcelo Goes <vanquirius@gentoo.org> +files/nss.pc.in,
  +nss-3.10.ebuild:
  3.10 version bump for bug 120442.

  06 Aug 2005; Daniel Black <dragonheart@gentoo.org>
  -files/nss-3.8-amd64.patch, -files/nss-3.8-hppa.patch,
  -files/nss-3.8-mips.patch, metadata.xml, -nss-3.8.ebuild,
  -nss-3.9.2.ebuild:
  remove old versions - fixes bug #61166. crypto herd maintaince too.

*nss-3.9.2-r3 (25 Apr 2005)

  25 Apr 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/nss-3.9.2-gcc4.patch, +nss-3.9.2-r3.ebuild:
  Fix to build with gcc4.  Patch from halcy0n's overlay.

  04 Feb 2005; Stephen P. Becker <geoman@gentoo.org> nss-3.9.2-r2.ebuild:
  stable on mips

  28 Jan 2005; Joseph Jezak <josejx@gentoo.org> nss-3.9.2-r2.ebuild:
  Marked ppc stable.

  20 Jan 2005; Aron Griffis <agriffis@gentoo.org> nss-3.9.2-r2.ebuild:
  stable on ia64

  23 Dec 2004; Guy Martin <gmsoft@gentoo.org> nss-3.9.2-r2.ebuild:
  Stable on hppa.

  21 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> nss-3.9.2-r2.ebuild:
  Stable on alpha.

  17 Dec 2004; Markus Rothe <corsair@gentoo.org> nss-3.9.2-r2.ebuild:
  Stable on ppc64

  15 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.9.2-r2.ebuild:
  Stable on sparc

  11 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> nss-3.9.2.ebuild:
  Stable on alpha.

  28 Nov 2004; Stephen P. Becker <geoman@gentoo.org>
  +files/nss-3.9.2-mips64.patch, nss-3.9.2-r2.ebuild:
  added patch for proper detection of mips64 systems

*nss-3.9.2-r2 (25 Nov 2004)

  25 Nov 2004; Travis Tilley <lv@gentoo.org> -nss-3.9.2-r1.ebuild,
  +nss-3.9.2-r2.ebuild:
  get_libdir-ized and made nss work with an nspr in /usr/$(get_libdir)/nspr/.
  stable on amd64

*nss-3.9.2-r1 (15 Nov 2004)

  15 Nov 2004; Alastair Tse <liquidx@gentoo.org> +nss-3.9.2-r1.ebuild:
  adding /etc/env.d entry to get around (#71004)

  12 Nov 2004; Mike Gardiner <obz@gentoo.org> nss-3.9.2.ebuild:
  Keyworded ppc

  11 Nov 2004; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.9.2.ebuild:
  Stable on sparc

  06 Nov 2004; Michael Sterrett <mr_bones_@gentoo.org> nss-3.9.2.ebuild:
  Don't use sed in global scope

  16 Oct 2004; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild,
  nss-3.9.2.ebuild:
  fixed mistake in installing shared libs. (#67124)

  26 Aug 2004; Hardave Riar <hardave@gentoo.org> files/nss-3.8-mips.patch:
  Added mips64 support to the mips patch.

  14 Aug 2004; Tom Gall <tgall@gentoo.org> nss-3.9.2.ebuild:
  stable on ppc64, bug #58169

  28 Jul 2004; <agriffis@gentoo.org> nss-3.8.ebuild:
  stable on ia64

*nss-3.9.2 (24 Jul 2004)

  24 Jul 2004; Alastair Tse <liquidx@gentoo.org> +files/nss-3.9.2-ppc64.patch,
  +nss-3.9.2.ebuild:
  version bump. add ppc64 patch (#58169). thanks to Markus Rothe
  <markus@unixforces.net>

  24 Jul 2004; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  added provisions for alternative ROOT (#55350)

  07 Jul 2004; Travis Tilley <lv@gentoo.org> nss-3.8.ebuild:
  stable on amd64

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> nss-3.8.ebuild:
  virtual/glibc -> virtual/libc

  30 Apr 2004; Stephen P. Becker <geoman@gentoo.org> nss-3.8.ebuild:
  Stable on mips.

  06 Apr 2004; Guy Martin <gmsoft@gentoo.org> nss-3.8.ebuild:
  Added a build-fix patch for hppa.

  26 Feb 2004; Gustavo Zacarias <gustavoz@gentoo.org> nss-3.8.ebuild:
  stable on hppa

  16 Feb 2004; Joshua Kinard <kumba@gentoo.org> nss-3.8.ebuild,
  files/nss-3.8-mips.patch:
  Added a patch to allow mips to build and added ~mips keyword.

  27 Jan 2004; Aron Griffis <agriffis@gentoo.org> nss-3.8.ebuild:
  add ~ia64

  09 Jan 2004; Aron Griffis <agriffis@gentoo.org> nss-3.8.ebuild:
  stable on alpha

  20 Nov 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  fix download location (#33181)

  13 Nov 2003; Brad House <brad_mssw@gentoo.org> nss-3.8.ebuild,
  files/nss-3.8-amd64.patch:
  amd64 patch from caleb@webninja.com

  05 Sep 2003; Jason Wever <weeve@gentoo.org> nss-3.8.ebuild:
  Marked stable for sparc.

  31 Jul 2003; Don Seiler <rizzo@gentoo.org>; nss-3.8.ebuild:
  Bumping to stable on ppc for gaim-encryption.

  20 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  workaround for linux-2.6 (#24626)

  19 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  express stable bump because of evo 1.4.3

  18 Jul 2003; Brad Laue <brad@gentoo.org> nss-3.8.ebuild:
  Build fix on 2.6 series kernels.

  13 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  add zip dep

  11 Jul 2003; Will Woods <wwoods@gentoo.org> nss-3.8.ebuild:
  Added ~alpha to KEYWORDS

  11 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  putting in ~sparc keyword. thanks to weeve for testing

  11 Jul 2003; Bartosch Pixa <darkspecter@gentoo.org> nss-3.8.ebuild:
  set ~ppc in keywords

  11 Jul 2003; Brandon Low <lostlogic@gentoo.org> nss-3.8.ebuild:
  Add an important || die statement, and make work on all kernels, arches, and
  debug settings

  11 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  oops. fix HOMEPAGE. thanks to weeve.

  11 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  no parallel building

*nss-3.8 (11 Jul 2003)

  11 Jul 2003; Alastair Tse <liquidx@gentoo.org> nss-3.8.ebuild:
  intial ebuild for NSS. this will be used by evolution to avoid the mozilla
  dependency