summaryrefslogtreecommitdiff
blob: 5afcb03b1e9b74dfc248fcdb934bccca3e142b44 (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
# ChangeLog for media-libs/netpbm
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/netpbm/ChangeLog,v 1.277 2015/01/02 09:13:11 vapier Exp $

  02 Jan 2015; Mike Frysinger <vapier@gentoo.org> netpbm-10.66.00.ebuild:
  Do not run jbig-roundtrip test when USE=-jbig #532350 by eroen.

  04 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org>
  -files/netpbm-10.61-test.patch, -netpbm-10.61.00.ebuild:
  old

  16 Jun 2014; Mike Frysinger <vapier@gentoo.org> netpbm-10.66.00.ebuild:
  Delete /usr/pkgconfig_template install #513356 by Viktor Yu. Kovalskii.

*netpbm-10.66.00 (14 Jun 2014)

  14 Jun 2014; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.66-failing-tests.patch,
  +files/netpbm-10.66-jasper-hack.patch, +files/netpbm-10.66-jbig-2.patch,
  +files/netpbm-10.66-jpeg-dirs.patch, +files/netpbm-10.66-options-case.patch,
  +files/netpbm-10.66-test.patch, +netpbm-10.66.00.ebuild,
  files/make-tarball.sh:
  Version bump.

  27 Aug 2013; Michael Palimaka <kensington@gentoo.org>
  netpbm-10.51.00-r2.ebuild, netpbm-10.61.00.ebuild:
  Pin virtual/jpeg SLOT to 0.

  28 Jul 2013; Alexis Ballier <aballier@gentoo.org> netpbm-10.61.00.ebuild:
  keyword ~amd64-fbsd, bug #477750

  13 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> netpbm-10.61.00.ebuild:
  Keyword amd64-linux and x86-linux

  29 May 2013; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.61-test.patch, netpbm-10.61.00.ebuild:
  Disable jbig tests when USE=-jbig and fix all-in-place test failure due to
  fiascotopnm #450530#6 by Andreas Sturmlechner.

  12 May 2013; Mike Frysinger <vapier@gentoo.org> netpbm-10.61.00.ebuild:
  Install local set of libs before testing #467198 by Patrick Lauer.

  05 Feb 2013; Michael Sterrett <mr_bones_@gentoo.org>
  -files/netpbm-10.56.00-alloca.patch, -netpbm-10.56.00.ebuild,
  -netpbm-10.57.00.ebuild, -netpbm-10.58.00.ebuild, -netpbm-10.59.00.ebuild:
  old

  06 Jan 2013; Mike Frysinger <vapier@gentoo.org> netpbm-10.61.00.ebuild:
  Set up environment for src_test to run properly #450530 by Michael Palimaka.

*netpbm-10.61.00 (06 Jan 2013)

  06 Jan 2013; Mike Frysinger <vapier@gentoo.org> +netpbm-10.61.00.ebuild:
  Version bump #450154 by Samuli Suominen.

*netpbm-10.59.00 (18 Jul 2012)

  18 Jul 2012; Mike Frysinger <vapier@gentoo.org> +netpbm-10.59.00.ebuild:
  Version bump #426582 by Bernd Feige.

*netpbm-10.58.00 (03 Jul 2012)

  03 Jul 2012; Mike Frysinger <vapier@gentoo.org> +netpbm-10.58.00.ebuild,
  files/make-tarball.sh:
  Version bump, and include mangled userguide.

*netpbm-10.57.00 (03 Jan 2012)

  03 Jan 2012; Mike Frysinger <vapier@gentoo.org> +netpbm-10.57.00.ebuild:
  Version bump.

  03 Jan 2012; Mike Frysinger <vapier@gentoo.org> netpbm-10.56.00.ebuild:
  Disable internal jpeg/z depends on tiff #395753 by Diego Elio Pettenò.

*netpbm-10.56.00 (05 Dec 2011)

  05 Dec 2011; Mike Frysinger <vapier@gentoo.org> +netpbm-10.56.00.ebuild,
  +files/netpbm-10.56.00-alloca.patch, +files/make-tarball.sh:
  Version bump. Include build fix by Naohiro Aota for bsd systems #341565.

  16 Nov 2011; Justin Lecher <jlec@gentoo.org> netpbm-10.51.00-r2.ebuild:
  Corrected Slotting of media-libs/tiff and media-libs/libpng

  23 Oct 2011; Tim Harder <radhermit@gentoo.org>
  -files/netpbm-10.35.0-pnmtopng-zlib.patch, -files/netpbm-10.35.0-xml2.patch,
  -files/netpbm-10.42.0-gcc43.patch,
  -files/netpbm-10.46.00-min_DCT_v_scaled_size.patch,
  -files/netpbm-10.48.00-pngx.patch,
  -files/netpbm-10.48.00-pnmtopng-zlib.patch, -netpbm-10.49.00.ebuild,
  -files/netpbm-10.49.00-sigpower.patch, -netpbm-10.51.00-r1.ebuild:
  Remove old.

  23 Oct 2011; Raúl Porcel <armin76@gentoo.org> netpbm-10.51.00-r2.ebuild:
  alpha/sparc stable wrt #383753

  16 Oct 2011; Kacper Kowalik <xarthisius@gentoo.org>
  netpbm-10.51.00-r2.ebuild:
  ppc stable wrt #383753

  16 Oct 2011; Mike Frysinger <vapier@gentoo.org> netpbm-10.51.00-r2.ebuild:
  Move forward stable keywords for trivial changes, and mark ia64/s390/sh
  stable #383753.

*netpbm-10.51.00-r2 (12 Oct 2011)

  12 Oct 2011; Justin Lecher <jlec@gentoo.org> +netpbm-10.51.00-r2.ebuild,
  +files/netpbm-10.51.00-underlinking.patch, metadata.xml:
  Fix underlinking, #367405

  11 Oct 2011; Samuli Suominen <ssuominen@gentoo.org>
  netpbm-10.51.00-r1.ebuild:
  ppc64 stable wrt #383753

  11 Oct 2011; Jeroen Roovers <jer@gentoo.org> netpbm-10.51.00-r1.ebuild:
  Stable for HPPA (bug #383753).

  08 Oct 2011; Markus Meier <maekke@gentoo.org> netpbm-10.51.00-r1.ebuild:
  arm stable, bug #383753

  01 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  netpbm-10.51.00-r1.ebuild:
  x86 stable wrt bug #383753

  24 Sep 2011; Robin H. Johnson <robbat2@gentoo.org> netpbm-10.49.00.ebuild,
  netpbm-10.51.00-r1.ebuild:
  Bug #297257: Change /dev/stdin usage to "-", because /dev/stdin device node
  does not exist in all of the stage3 tarballs, and if netpbm gets pulled in
  early during the user install, it will fail. Also fixing in stages. Might
  also help Prefix users with no /dev.
  
  24 Sep 2011; Tony Vroon <chainsaw@gentoo.org> netpbm-10.51.00-r1.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
  "idella4" Delaney in bug #383753.

  13 Sep 2011; Mike Frysinger <vapier@gentoo.org> netpbm-10.51.00-r1.ebuild:
  Clean up doc install #382833 by Ulrich Müller.

  15 Aug 2011; Mike Frysinger <vapier@gentoo.org> netpbm-10.51.00-r1.ebuild:
  Add patch by Stuart Longland for libpng-1.5 build failure #355025 by Lars
  Wendler.

*netpbm-10.51.00-r1 (22 Sep 2010)

  22 Sep 2010; Mike Frysinger <vapier@gentoo.org>
  +netpbm-10.51.00-r1.ebuild,
  +files/netpbm-10.51.00-pnmconvol-nooffset.patch:
  Add fix from upstream for nooffset with pnmconvol #338230 by Sergey
  Alirzaev.

  19 Sep 2010; Mike Frysinger <vapier@gentoo.org> netpbm-10.51.00.ebuild:
  Fix install error with urt subdir #337971 by Steve Kutnar and drop importinc
  dependencies with files #337984 by Andrew Evans.

*netpbm-10.51.00 (18 Sep 2010)

  18 Sep 2010; Mike Frysinger <vapier@gentoo.org> +netpbm-10.51.00.ebuild,
  +files/netpbm-10.51.00-ppmtompeg-free.patch:
  Version bump to fix warnings in older code #337747 by David J Cozatt. Fix
  parallel build issues with include dir handling #149843 by Jiri Tyr.

  23 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
  netpbm-10.49.00.ebuild:
  Use virtual/jpeg.

  14 Jul 2010; Jeroen Roovers <jer@gentoo.org> netpbm-10.49.00.ebuild:
  Stable for HPPA (bug #319521).

  04 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
  netpbm-10.49.00.ebuild:
  ppc64 stable wrt #319521

  19 Jun 2010; Raúl Porcel <armin76@gentoo.org> netpbm-10.49.00.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #319521

  25 May 2010; Pacho Ramos <pacho@gentoo.org> netpbm-10.49.00.ebuild:
  stable amd64, bug 319521

  24 May 2010; <nixnut@gentoo.org> netpbm-10.49.00.ebuild:
  ppc stable #319521

  21 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  netpbm-10.49.00.ebuild:
  x86 stable wrt bug #319521

  20 Mar 2010; Mike Frysinger <vapier@gentoo.org> netpbm-10.49.00.ebuild,
  +files/netpbm-10.49.00-sigpower.patch:
  Add fix from upstream for BSD systems #310179 by Naohiro Aota.

  06 Mar 2010; Mike Frysinger <vapier@gentoo.org> +netpbm-10.49.00.ebuild:
  Version bump #308025 by Stefan Behte.

*netpbm-10.49.00 (06 Mar 2010)

  06 Mar 2010; Mike Frysinger <vapier@gentoo.org> +netpbm-10.49.00.ebuild:
  Version bump #308025 by Stefan Behte.

*netpbm-10.35.73 (06 Mar 2010)

  06 Mar 2010; Mike Frysinger <vapier@gentoo.org> +netpbm-10.35.73.ebuild:
  Version bump.

  06 Mar 2010; Mike Frysinger <vapier@gentoo.org> netpbm-10.35.71.ebuild:
  Stabilize.

  22 Jan 2010; Samuli Suominen <ssuominen@gentoo.org>
  netpbm-10.48.00-r1.ebuild:
  Require SLOT="0" of media-libs/jpeg for headers.

*netpbm-10.48.00-r1 (12 Dec 2009)

  12 Dec 2009; Mike Frysinger <vapier@gentoo.org>
  +netpbm-10.48.00-r1.ebuild, +files/netpbm-10.48.00-pngx.patch:
  Add fix from upstream for pngtopnm errors #287725 by Denys Duchier.

*netpbm-10.35.71 (12 Dec 2009)

  12 Dec 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.35.71.ebuild:
  Version bump.

  12 Dec 2009; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.35.0-pnmtopng-zlib.patch, netpbm-10.46.00-r1.ebuild,
  netpbm-10.48.00.ebuild, +files/netpbm-10.48.00-pnmtopng-zlib.patch:
  Link pnmtopng directly to zlib #291987 Marcin Marszalek.

  06 Nov 2009; Diego E. Pettenò <flameeyes@gentoo.org>
  netpbm-10.48.00.ebuild:
  Add dependency over flex (if not installed, it'll fail to build the xpm
  importer).

  29 Sep 2009; Mike Frysinger <vapier@gentoo.org>
  files/netpbm-10.26.64-min_DCT_v_scaled_size.patch,
  netpbm-10.46.00-r1.ebuild,
  files/netpbm-10.46.00-min_DCT_v_scaled_size.patch:
  Use jpeg patch from upstream which supports jpeg-6+, and go stable so that
  jpeg-7 stabilization isnt blocked.

*netpbm-10.48.00 (29 Sep 2009)

  29 Sep 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.48.00.ebuild:
  Version bump.

*netpbm-10.26.64 (29 Sep 2009)

  29 Sep 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.64.ebuild,
  +files/netpbm-10.26.64-min_DCT_v_scaled_size.patch:
  Version bump.

  27 Sep 2009; nixnut <nixnut@gentoo.org> netpbm-10.46.00-r1.ebuild:
  ppc stable #285647

  27 Sep 2009; Brent Baude <ranger@gentoo.org> netpbm-10.46.00-r1.ebuild:
  Marking netpbm-10.46.00-r1 ppc64 for bug 285647

  10 Sep 2009; Samuli Suominen <ssuominen@gentoo.org>
  netpbm-10.44.00-r1.ebuild, netpbm-10.46.00.ebuild,
  netpbm-10.46.00-r1.ebuild:
  Fix xz-utils vs. lzma-utils deps.

  07 Sep 2009; Raúl Porcel <armin76@gentoo.org> netpbm-10.46.00.ebuild:
  ia64/sparc stable wrt #277184

  05 Sep 2009; Brent Baude <ranger@gentoo.org> netpbm-10.46.00.ebuild:
  Marking netpbm-10.46.00 ppc64 for bug 277184

  28 Aug 2009; Mike Frysinger <vapier@gentoo.org> netpbm-10.46.00.ebuild,
  netpbm-10.46.00-r1.ebuild:
  Work around a bug in bash-3 parser and heredocs #282902.

  27 Aug 2009; Mike Frysinger <vapier@gentoo.org> netpbm-10.46.00.ebuild,
  netpbm-10.46.00-r1.ebuild:
  Add sanity check for /dev/stdin reading #279549.

*netpbm-10.46.00-r1 (22 Aug 2009)

  22 Aug 2009; Samuli Suominen <ssuominen@gentoo.org>
  +netpbm-10.46.00-r1.ebuild,
  +files/netpbm-10.46.00-min_DCT_v_scaled_size.patch:
  Fix building with media-libs/jpeg-7.

  09 Aug 2009; nixnut <nixnut@gentoo.org> netpbm-10.46.00.ebuild:
  ppc stable #277184

  30 Jul 2009; Jeroen Roovers <jer@gentoo.org> netpbm-10.46.00.ebuild:
  Stable for HPPA (bug #277184).

  22 Jul 2009; Tobias Klausmann <klausman@gentoo.org>
  netpbm-10.46.00.ebuild:
  Stable on alpha, bug #277184

  11 Jul 2009; <chainsaw@gentoo.org> netpbm-10.46.00.ebuild:
  Marked stable on AMD64 for bug #277184; tested on a dual Opteron 2354.
  Restores compatibility with recent glibc versions.

  09 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  netpbm-10.46.00.ebuild:
  stable x86, bug 277184

*netpbm-10.26.62 (04 Jun 2009)

  04 Jun 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.62.ebuild:
  Version bump.

  21 May 2009; Marijn Schouten <hkBst@gentoo.org> netpbm-10.46.00.ebuild:
  glibc-2.10.1 compat (bug 270351)

*netpbm-10.46.00 (05 May 2009)

  05 May 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.46.00.ebuild:
  Version bump.

*netpbm-10.26.61 (05 May 2009)

  05 May 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.61.ebuild:
  Version bump.

  06 Mar 2009; Jeroen Roovers <jer@gentoo.org> netpbm-10.44.00-r1.ebuild:
  Stable for HPPA (bug #249384).

  28 Jan 2009; Brent Baude <ranger@gentoo.org> netpbm-10.44.00-r1.ebuild:
  stable ppc64, bug 249384

  27 Jan 2009; Raúl Porcel <armin76@gentoo.org> netpbm-10.44.00-r1.ebuild:
  ia64/sparc stable wrt #249384

  25 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
  netpbm-10.44.00-r1.ebuild:
  Stable on alpha, bug #249384

  24 Jan 2009; nixnut <nixnut@gentoo.org> netpbm-10.44.00-r1.ebuild:
  ppc stable #249384

  23 Jan 2009; Markus Meier <maekke@gentoo.org> netpbm-10.44.00-r1.ebuild:
  amd64/x86 stable, bug #249384

*netpbm-10.44.00-r1 (21 Jan 2009)

  21 Jan 2009; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.44.00-fontdir.patch, +netpbm-10.44.00-r1.ebuild:
  Apply fix from upstream for fontdir bug #249384.

*netpbm-10.26.59 (21 Jan 2009)

  21 Jan 2009; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.59.ebuild:
  Version bump.

*netpbm-10.44.00 (01 Nov 2008)

  01 Nov 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.44.00.ebuild:
  Version bump.

*netpbm-10.26.58 (01 Nov 2008)

  01 Nov 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.58.ebuild:
  Version bump.

  01 Oct 2008; Raúl Porcel <armin76@gentoo.org> netpbm-10.43.00.ebuild:
  alpha/ia64 stable wrt #238699

  29 Sep 2008; Jeroen Roovers <jer@gentoo.org> netpbm-10.43.00.ebuild:
  Stable for HPPA (bug #238699).

  28 Sep 2008; Markus Meier <maekke@gentoo.org> netpbm-10.43.00.ebuild:
  amd64/x86 stable, bug #238699

  25 Sep 2008; Brent Baude <ranger@gentoo.org> netpbm-10.43.00.ebuild:
  stable ppc64, bug 238699

  25 Sep 2008; Brent Baude <ranger@gentoo.org> netpbm-10.43.00.ebuild:
  stable ppc, bug 238699

  25 Sep 2008; Ferris McCormick <fmccor@gentoo.org> netpbm-10.43.00.ebuild:
  Sparc stable --- Bug #238699 --- looks good.

*netpbm-10.26.57 (25 Sep 2008)

  25 Sep 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.57.ebuild:
  Version bump.

*netpbm-10.43.00 (16 Aug 2008)

  16 Aug 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.43.00.ebuild:
  Version bump.

*netpbm-10.26.56 (16 Aug 2008)

  16 Aug 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.56.ebuild:
  Version bump.

*netpbm-10.26.55 (22 Jun 2008)

  22 Jun 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.55.ebuild:
  Version bump.

*netpbm-10.26.54 (25 May 2008)

  25 May 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.54.ebuild:
  Version bump.

  23 May 2008; Markus Meier <maekke@gentoo.org> netpbm-10.26.52.ebuild,
  netpbm-10.26.53.ebuild, netpbm-10.40.0.ebuild:
  drop to ~mips (unstable deps)

*netpbm-10.26.53 (13 Apr 2008)

  13 Apr 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.53.ebuild:
  Version bump.

  29 Mar 2008; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.42.0-gcc43.patch, netpbm-10.26.52.ebuild,
  netpbm-10.42.0.ebuild:
  Fix building with gcc-4.3 #211296.

*netpbm-10.42.0 (28 Mar 2008)
*netpbm-10.26.52 (28 Mar 2008)

  28 Mar 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.52.ebuild,
  +netpbm-10.42.0.ebuild:
  Version bumps.

*netpbm-10.26.51 (08 Mar 2008)

  08 Mar 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.51.ebuild:
  Version bump.

  16 Feb 2008; Mike Frysinger <vapier@gentoo.org> netpbm-10.41.0.ebuild:
  Dont keep auto-package creation in default ebuild as it breaks things
  #210074 by Colin Macdonald.

*netpbm-10.26.50 (14 Feb 2008)

  14 Feb 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.50.ebuild:
  Version bump.

  10 Feb 2008; Mike Frysinger <vapier@gentoo.org> netpbm-10.41.0.ebuild:
  Touchup src_install to match newer file layout #209526 by Diego.

*netpbm-10.41.0 (09 Feb 2008)

  09 Feb 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.41.0.ebuild:
  Version bump.

*netpbm-10.26.49 (28 Jan 2008)

  28 Jan 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.49.ebuild:
  Version bump.

*netpbm-10.26.48 (01 Jan 2008)

  01 Jan 2008; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.48.ebuild:
  Version bump.

*netpbm-10.26.47 (08 Dec 2007)

  08 Dec 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.47.ebuild:
  Version bump.

  02 Nov 2007; Steve Dibb <beandog@gentoo.org> netpbm-10.40.0.ebuild:
  amd64 stable, bug 195698

  20 Oct 2007; Raúl Porcel <armin76@gentoo.org> netpbm-10.40.0.ebuild:
  alpha/ia64/sparc stable wrt #195698

  15 Oct 2007; Jeroen Roovers <jer@gentoo.org> netpbm-10.40.0.ebuild:
  Stable for HPPA (bug #195698).

  14 Oct 2007; Markus Rothe <corsair@gentoo.org> netpbm-10.40.0.ebuild:
  Stable on ppc64; bug #195698

  13 Oct 2007; nixnut <nixnut@gentoo.org> netpbm-10.40.0.ebuild:
  Stable on ppc wrt bug 195698

  13 Oct 2007; Dawid Węgliński <cla@gentoo.org> netpbm-10.40.0.ebuild:
  Stable on x86 (bug #195698)

*netpbm-10.26.46 (13 Oct 2007)

  13 Oct 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.46.ebuild:
  Version bump.

*netpbm-10.40.0 (28 Sep 2007)

  28 Sep 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.40.0.ebuild:
  Version bump.

*netpbm-10.26.45 (28 Sep 2007)

  28 Sep 2007; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.26.45-headers.patch, +netpbm-10.26.45.ebuild:
  Version bump.

*netpbm-10.26.44 (10 Jul 2007)

  10 Jul 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.44.ebuild:
  Version bump.

*netpbm-10.39.0 (26 Jun 2007)

  26 Jun 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.39.0.ebuild:
  Version bump.

*netpbm-10.26.43 (26 Jun 2007)

  26 Jun 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.43.ebuild:
  Version bump.

  18 May 2007; Raúl Porcel <armin76@gentoo.org> netpbm-10.37.0.ebuild:
  alpha stable wrt #165236

*netpbm-10.26.42 (29 Mar 2007)

  29 Mar 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.42.ebuild:
  Version bump.

*netpbm-10.26.41 (18 Mar 2007)

  18 Mar 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.41.ebuild:
  Version bump

*netpbm-10.26.40 (01 Mar 2007)

  01 Mar 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.40.ebuild:
  Version bump.

  05 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.37.0.ebuild:
  Stable on sparc wrt #165236

  05 Feb 2007; Jeroen Roovers <jer@gentoo.org> netpbm-10.37.0.ebuild:
  Stable for HPPA (bug #165236).

  04 Feb 2007; Steve Dibb <beandog@gentoo.org> netpbm-10.37.0.ebuild:
  amd64 stable, bug 165236

  04 Feb 2007; nixnut <nixnut@gentoo.org> netpbm-10.37.0.ebuild:
  Stable on ppc wrt bug 165236

  04 Feb 2007; Raúl Porcel <armin76@gentoo.org> netpbm-10.37.0.ebuild:
  x86 stable wrt bug 165236

  04 Feb 2007; Markus Rothe <corsair@gentoo.org> netpbm-10.37.0.ebuild:
  Added ~ppc64; bug #165236

*netpbm-10.26.39 (04 Feb 2007)

  04 Feb 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.39.ebuild:
  Version bump.

  21 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> netpbm-10.36.0.ebuild,
  netpbm-10.37.0.ebuild:
  Force -j1 on the ebuild (both stable and ~arch for releng sake), as bug
  #149843 is open for a while now.

*netpbm-10.26.38 (16 Jan 2007)

  16 Jan 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.38.ebuild:
  Version bump.

  10 Jan 2007; Mike Frysinger <vapier@gentoo.org> netpbm-10.26.37.ebuild,
  netpbm-10.36.0.ebuild, netpbm-10.37.0.ebuild:
  Dont install shhopt.h anymore #161225 by Stefano Balocco.

  06 Jan 2007; Michael Cummings <mcummings@gentoo.org>
  netpbm-10.36.0.ebuild:
  Bug 159801, amd64 stable

  04 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.36.0.ebuild:
  Stable on sparc wrt #159801

  03 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> netpbm-10.36.0.ebuild:
  Stable on Alpha, bug 159801.

  03 Jan 2007; Andrej Kacian <ticho@gentoo.org> netpbm-10.36.0.ebuild:
  Stable on x86, bug #159801.

  03 Jan 2007; Luca Barbato <lu_zero@gentoo.org> netpbm-10.36.0.ebuild:
  Marked ppc64

  03 Jan 2007; Luca Barbato <lu_zero@gentoo.org> netpbm-10.36.0.ebuild:
  Marked ppc

  03 Jan 2007; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.26.37-headers.patch, netpbm-10.26.37.ebuild:
  Include more headers to kill off implicit function prototypes.

*netpbm-10.37.0 (03 Jan 2007)

  03 Jan 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.37.0.ebuild:
  Version bump.

*netpbm-10.26.37 (03 Jan 2007)

  03 Jan 2007; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.37.ebuild:
  Version bump.

*netpbm-10.26.36 (19 Dec 2006)

  19 Dec 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.36.ebuild:
  Version bump.

*netpbm-10.26.35 (10 Dec 2006)

  10 Dec 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.35.ebuild:
  Version bump.

*netpbm-10.26.34 (27 Nov 2006)

  27 Nov 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.34.ebuild:
  Version bump.

  09 Nov 2006; Mike Frysinger <vapier@gentoo.org> netpbm-10.36.0.ebuild:
  Cleanup previous commit and make jbig/urt optional via USE=jbig/rle #154535.

  07 Nov 2006; Petteri Räty <betelgeuse@gentoo.org> ChangeLog:
  Added the jpeg2k use flag to make the media-libs/jasper dependency optional.
  Fixes bug #154353.

*netpbm-10.26.33 (31 Oct 2006)

  31 Oct 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.33.ebuild:
  Version bump.

  22 Oct 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.34-ppmtompeg.patch, netpbm-10.34.ebuild,
  netpbm-10.36.0.ebuild:
  Fixes from Alun Jones for bugs in ppmtompeg #150063.

*netpbm-10.26.32 (19 Oct 2006)

  19 Oct 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.32.ebuild:
  Version bump.

*netpbm-10.36.0 (02 Oct 2006)

  02 Oct 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.36.0.ebuild:
  Version bump.

*netpbm-10.35.0 (11 Sep 2006)

  11 Sep 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.35.0-xml2.patch, +netpbm-10.35.0.ebuild:
  Version bump.

*netpbm-10.26.31 (06 Sep 2006)

  06 Sep 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.31.ebuild:
  Version bump.

  04 Sep 2006; Joshua Kinard <kumba@gentoo.org> netpbm-10.34.ebuild:
  Marked stable on mips.

*netpbm-10.26.30 (05 Aug 2006)

  05 Aug 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.30.ebuild:
  Version bump.

  15 Jul 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.34-rgb-paths.patch, netpbm-10.34.ebuild:
  Use rgb paths that make sense on Gentoo #139423 by Fabio Rossi.

  25 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org> netpbm-10.34.ebuild:
  ppc stable, bug #137344

  24 Jun 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.34-xml2.patch, netpbm-10.34.ebuild:
  Add support for USE=xml #137871 by Stefan Trenker.

  24 Jun 2006; Rene Nussbaumer <killerfox@gentoo.org> netpbm-10.34.ebuild:
  Stable on hppa. See bug #137344.

  23 Jun 2006; Thomas Cort <tcort@gentoo.org> netpbm-10.34.ebuild:
  Stable on alpha and amd64 wrt security Bug #137344

  22 Jun 2006; Joshua Jackson <tsunam@gentoo.org> netpbm-10.34.ebuild:
  Stable x86; bug #137344

  21 Jun 2006; Markus Rothe <corsair@gentoo.org> netpbm-10.34.ebuild:
  Stable on ppc64; bug #137344

  21 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.34.ebuild:
  Stable on sparc wrt security #137344

*netpbm-10.34 (20 Jun 2006)

  20 Jun 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.34.ebuild:
  Version bump #137344 by Raphael Marichez.

*netpbm-10.26.29 (09 Jun 2006)

  09 Jun 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.29.ebuild:
  Version bump.

*netpbm-10.26.28 (14 May 2006)

  14 May 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.28.ebuild:
  Version bump.

  27 Apr 2006; Marien Zwart <marienz@gentoo.org> files/digest-netpbm-10.29,
  files/digest-netpbm-10.30-r1, files/digest-netpbm-10.31-r1, Manifest:
  Fixing SHA256 digest, pass four

  17 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  files/netpbm-10.33-memmem.patch, netpbm-10.33.ebuild:
  Change the patch to behave like upstream decided: rename memmem to another
  name so that it doesn't collide with extensions from various libc, allowing
  to build on NetBSD 3 that defines a memmem itself. Also respect LDFLAGS
  while linking the library.

  16 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +files/netpbm-10.33-memmem.patch, netpbm-10.33.ebuild:
  Add patch to build on FreeBSD 6, and keyword ~x86-fbsd.

*netpbm-10.33 (31 Mar 2006)

  31 Mar 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.33-lib-objs.patch, +netpbm-10.33.ebuild:
  Version bump.

*netpbm-10.26.26 (15 Mar 2006)

  15 Mar 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.26.ebuild:
  Version bump.

  05 Mar 2006; Luca Barbato <lu_zero@gentoo.org>
  -files/netpbm-10.29-anytopnm.patch, -files/netpbm-10.29-build.patch,
  -files/netpbm-10.29-infinity.patch,
  -files/netpbm-10.29-pnmtopng-alpha-check.patch,
  -files/netpbm-dSAFER.patch, -netpbm-10.26.24.ebuild,
  -netpbm-10.26.25.ebuild:
  Cleanup

  01 Mar 2006; Marcelo Goes <vanquirius@gentoo.org>
  +files/netpbm-10.32-parallel.patch, netpbm-10.32.ebuild:
  Add Martin von Gagern <Martin dot vGagern at gmx dot net>'s patch to fix
  parallel compilation for bug 116665.

*netpbm-10.32 (28 Feb 2006)

  28 Feb 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.32.ebuild:
  Version bump.

*netpbm-10.26.25 (20 Feb 2006)

  20 Feb 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.25.ebuild:
  Version bump.

*netpbm-10.26.24 (09 Feb 2006)

  09 Feb 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.24.ebuild:
  Version bump.

  02 Feb 2006; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.31-need-libm.patch, netpbm-10.31-r1.ebuild:
  Make sure we link against libm #121253 by Diego Pettenò.

  19 Jan 2006; Karol Wojtaszek <sekretarz@gentoo.org>
  +files/netpbm-10.31-parallel.patch, netpbm-10.31-r1.ebuild:
  Fixed compile problems in parallel, bug #116665

*netpbm-10.26.23 (16 Jan 2006)

  16 Jan 2006; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.23.ebuild:
  Version bump.

*netpbm-10.31-r1 (31 Dec 2005)

  31 Dec 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.19-message.patch,
  +files/netpbm-10.31-pnmtopng-modtime-segfault.patch,
  +netpbm-10.31-r1.ebuild:
  Fix segfault in pnmtopng #117180 by rgo and grab a patch from Fedora for
  giftopnm.

*netpbm-10.26.22 (28 Dec 2005)

  28 Dec 2005; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.22.ebuild:
  Version bump.

  26 Dec 2005; Bryan Østergaard <kloeri@gentoo.org netpbm-10.30-r1.ebuild:
  Stable on alpha.

  24 Dec 2005; Michael Hanselmann <hansmi@gentoo.org>
  netpbm-10.30-r1.ebuild:
  Stable on ppc.

*netpbm-10.31 (24 Dec 2005)

  24 Dec 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.31-build.patch, +netpbm-10.31.ebuild:
  Version bump.

  21 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> netpbm-10.30-r1.ebuild:
  Stable on amd64.

*netpbm-10.26.21 (18 Dec 2005)

  18 Dec 2005; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.21.ebuild:
  Version bump.

  10 Dec 2005; Tom Gall <tgall@gentoo.org> netpbm-10.30-r1.ebuild:
  stable on ppc64

  09 Dec 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  netpbm-10.30-r1.ebuild:
  Stable on sparc

  08 Dec 2005; Andrej Kacian <ticho@gentoo.org> netpbm-10.30-r1.ebuild:
  Stable on x86. Closes bug #114812, reported by Sean D'Epagnier <geckosenator
  at gmail.com>.

*netpbm-10.26.20 (07 Dec 2005)

  07 Dec 2005; Mike Frysinger <vapier@gentoo.org> -netpbm-10.26.18.ebuild,
  -netpbm-10.26.19.ebuild, +netpbm-10.26.20.ebuild:
  Version bump.

  19 Nov 2005; Joseph Jezak <josejx@gentoo.org> netpbm-10.30-r1.ebuild:
  Marked ~ppc.

*netpbm-10.26.19 (18 Nov 2005)

  18 Nov 2005; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.19.ebuild:
  Version bump.

  09 Nov 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.30-jpeg-prototypes.patch, netpbm-10.30-r1.ebuild:
  Fix building with USE=-jpeg #111895 by Andrey Kolbasenko.

*netpbm-10.26.18 (09 Nov 2005)

  09 Nov 2005; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.18.ebuild:
  Version bump.

  31 Oct 2005; Brent Baude <ranger@gentoo.org> netpbm-10.30-r1.ebuild:
  Marking netpbm-10.30-r1 ~ppc64 for bug 107346

*netpbm-10.30-r1 (30 Oct 2005)

  30 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.30-pngtopnm.patch, +files/netpbm-10.30-tifftopnm.patch,
  +files/netpbm-10.30-anytopnm.patch, +netpbm-10.30-r1.ebuild:
  Fix anytopnm/tifftopnm #109781 and pngtopnm #109783 (both by Erik Thiele).

*netpbm-10.26.17 (29 Oct 2005)

  29 Oct 2005; Mike Frysinger <vapier@gentoo.org> +netpbm-10.26.17.ebuild:
  Version bump of sorts.

  21 Oct 2005; Aaron Walker <ka0ttic@gentoo.org> netpbm-10.29.ebuild,
  netpbm-10.29-r1.ebuild, netpbm-10.30.ebuild:
  10.29 stable on mips for bug #109705. 10.29-r1 and 10.30 marked ~mips.

  19 Oct 2005; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.29.ebuild:
  Stable on sparc wrt #109705

  19 Oct 2005; Brent Baude <ranger@gentoo.org> netpbm-10.29.ebuild:
  Marking 10.29 ppc64 stable for security purposes

  19 Oct 2005; Luis Medinas <metalgod@gentoo.org> netpbm-10.29.ebuild:
  Marked Stable on amd64. Bug #109705.

  18 Oct 2005; Bryan Østergaard <kloeri@gentoo.org> netpbm-10.29.ebuild,
  netpbm-10.29-r1.ebuild, netpbm-10.30.ebuild:
  Added back ~alpha keyword, stable 10.29 wrt bug 109705.

*netpbm-10.30 (18 Oct 2005)

  18 Oct 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.30-build.patch, +netpbm-10.30.ebuild:
  Version bump.

  18 Oct 2005; Aron Griffis <agriffis@gentoo.org> netpbm-10.29.ebuild:
  Mark 10.29 stable on ia64 #109705

  18 Oct 2005; Andrej Kacian <ticho@gentoo.org> netpbm-10.29.ebuild:
  Stable on x86, security bug #109705.

  18 Oct 2005; Michael Hanselmann <hansmi@gentoo.org> netpbm-10.29.ebuild,
  netpbm-10.29-r1.ebuild:
  10.29-r1: Stable on hppa, added to ~ppc. 10.29: Stable on ppc.

  10 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/netpbm-10.29-infinity.patch, netpbm-10.29-r1.ebuild:
  Added patch to rename the INFINITY variable to infinity to avoid problems
  where the first is a system define.

  04 Oct 2005; Mike Frysinger <vapier@gentoo.org> netpbm-10.29-r1.ebuild:
  Redo some library options and merge Darwin support #74101.

  02 Oct 2005; Jason Wever <weeve@gentoo.org> netpbm-10.29-r1.ebuild:
  Added ~sparc keyword wrt bug #107346.

  27 Sep 2005; Andrej Kacian <ticho@gentoo.org> netpbm-10.29-r1.ebuild:
  Keyworded ~x86. Bug #107346.

*netpbm-10.29-r1 (27 Sep 2005)

  27 Sep 2005; Mike Frysinger <vapier@gentoo.org>
  +files/netpbm-10.29-anytopnm.patch, +files/netpbm-10.29-build.patch,
  +files/netpbm-10.29-pnmtopng-alpha-check.patch, +netpbm-10.29-r1.ebuild:
  Fix by Andy Chambers for segfault in pnmtopng #104434 by Heiko Baums. Fix by
  Matthew Lange for buggy anytopnm #105127 by Erik Thiele. Add real manpages
  #67017. Also try to fix parallel building. Use external libraries (urt, 
  jbigkit, jasper) instead of bundled ones.

*netpbm-10.29 (16 Aug 2005)

  16 Aug 2005; Luca Barbato <lu_zero@gentoo.org> +netpbm-10.29.ebuild:
  New version

  05 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> netpbm-10.28.ebuild:
  Stable on mips for bug 100398.

  04 Aug 2005; Bryan Østergaard <kloeri@gentoo.org> netpbm-10.28.ebuild:
  Stable on ia64, bug 100398.

  02 Aug 2005; Rene Nussbaumer <killerfox@gentoo.org> netpbm-10.28.ebuild:
  Stable on hppa. bug #100398 the second.

  02 Aug 2005; <sekretarz@gentoo.org> netpbm-10.28.ebuild:
  Stable on x86 due security bug #100398

  01 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.28.ebuild:
  Stable on sparc wrt #100398

  01 Aug 2005; Herbie Hopkins <herbs@gentoo.org> netpbm-10.28.ebuild:
  Stable on amd64 wrt bug #100398.

  31 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org> netpbm-10.28.ebuild:
  ppc stable, #100398

  31 Jul 2005; Fernando J. Pereda <ferdy@gentoo.org> netpbm-10.28.ebuild:
  stable on alpha, wrt bug #100398

  31 Jul 2005; Markus Rothe <corsair@gentoo.org> netpbm-10.28.ebuild:
  Stable on ppc64 (bug #100398)

  31 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  netpbm-10.20-r1.ebuild:
  Stable on hppa. bug #100398

*netpbm-10.28 (30 Jul 2005)

  30 Jul 2005; <sekretarz@gentoo.org> +files/netpbm-dSAFER.patch,
  netpbm-10.20-r1.ebuild, +netpbm-10.28.ebuild:
  Version bump due security bug #100398

  02 Jul 2005; Hardave Riar <hardave@gentoo.org> netpbm-10.20.ebuild:
  Stable on mips

*netpbm-10.20-r1 (22 Jun 2005)

  22 Jun 2005; Aron Griffis <agriffis@gentoo.org> +netpbm-10.20-r1.ebuild:
  Install map files in /usr/share/netpbm instead of as documentation #77797

  30 May 2005; Sven Wegener <swegener@gentoo.org> netpbm-9.12-r4.ebuild,
  netpbm-10.11.5-r3.ebuild, netpbm-10.11.14.ebuild, netpbm-10.11.15.ebuild,
  netpbm-10.18.7.ebuild, netpbm-10.20.ebuild:
  Moved from gcc.eclass to toolchain-funcs.eclass, bug #92745.

  01 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> netpbm-10.20.ebuild:
  Stable on alpha.

  06 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org>
  netpbm-10.20.ebuild:
  get_libdir fixes.

  02 Oct 2004; Olivier Crete <tester@gentoo.org> netpbm-10.20.ebuild:
  Marking x86 wrt security bug #65647

  01 Oct 2004; <SeJo@gentoo.org> netpbm-10.20.ebuild:
  stable on ppc gsla bug: 65647

  30 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> netpbm-10.20.ebuild:
  Stable on sparc wrt #65647

  23 Jul 2004; Tom Gall <tgall@gentoo.org> netpbm-10.20.ebuild:
  stable on ppc64, bug #57657

  07 Jun 2004; Aron Griffis <agriffis@gentoo.org> netpbm-10.11.14.ebuild,
  netpbm-10.11.15.ebuild, netpbm-10.11.5-r3.ebuild, netpbm-10.18.7.ebuild,
  netpbm-10.19.ebuild, netpbm-10.20.ebuild:
  Fix use invocation

*netpbm-10.19 (20 Feb 2004)

  20 Feb 2004; Michael Sterrett <mr_bones_@gentoo.org> netpbm-10.11.14.ebuild,
  netpbm-10.11.15.ebuild, netpbm-10.11.5-r3.ebuild, netpbm-10.18.7.ebuild,
  netpbm-10.19.ebuild, netpbm-10.20.ebuild:
  media-libs/svgalib is x86 only; arm needs deps first

*netpbm-10.20 (02 Feb 2004)

  02 Feb 2004; Martin Holzer <mholzer@gentoo.org> netpbm-10.20.ebuild:
  Version bumped.

*netpbm-10.18.7 (02 Feb 2004)

  02 Feb 2004; Martin Holzer <mholzer@gentoo.org> netpbm-10.18.7.ebuild:
  Version bumped.

  27 Jan 2004; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.14.ebuild,
  netpbm-10.11.15.ebuild:
  Changing depend and configure script

*netpbm-10.11.15 (14 Jan 2004)

  14 Jan 2004; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.14.ebuild,
  netpbm-10.11.15.ebuild:
  Version bumped

  14 Jan 2004; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.13-r1.ebuild,
  netpbm-10.11.14.ebuild, netpbm-10.11.5-r3.ebuild, netpbm-9.12-r4.ebuild:
  adding RESTRICT=nomirror

  13 Jan 2004; Mike Frysinger <vapier@gentoo.org> :
  Remove x86? ( svga? () ) crap.  svga works only on x86 so if someone has
  svga in their USE on another arch, it's THEIR problem to fix.

  13 Dec 2003; Guy Martin <gmsoft@gentoo.org> netpbm-9.12-r4.ebuild:
  Marked stable on hppa.

  24 Nov 2003; Aron Griffis <agriffis@gentoo.org> netpbm-10.11.14.ebuild:
  Stable on ia64

  02 Nov 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.13-r1.ebuild,
  netpbm-10.11.14.ebuild, netpbm-10.11.5-r3.ebuild:
  adding restrict=nomirror

*netpbm-10.11.14 (18 Oct 2003)

  18 Oct 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.14.ebuild:
  Version bumped.

  21 Sep 2003; <zhen@gentoo.org> netpbm-10.11.13-r1.ebuild:
  Since xvgalib does *not* work on ppc, with the help of Darkspecter, changed
  DEPEND to use svgalib if we are only on x86.

*netpbm-10.11.13 (22 Sep 2003)

  22 Sep 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.13.ebuild:
  Version bumped.

*netpbm-10.11.12 (07 Sep 2003)

  07 Sep 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.12.ebuild,
  files/10.11.12/Makefile.config, files/10.11.12/Makefile.svga:
  Version bumped.

*netpbm-10.11.11 (06 Sep 2003)

  06 Sep 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.11.ebuild,
  files/10.11.11/Makefile.config, files/10.11.11/Makefile.svga:
  Version bumped.

*netpbm-10.11.5-r3 (24 Aug 2003)
*netpbm-10.11.10-r1 (24 Aug 2003)

  24 Aug 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.10-r1.ebuild,
  netpbm-10.11.5-r3.ebuild:
  adding misc files. Closes #21318.

*netpbm-10.11.10 (12 Aug 2003)

  12 Aug 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.10.ebuild,
  files/10.11.10/Makefile.config, files/10.11.10/Makefile.svga:
  Version bumped.

  19 Jun 2003; <msterret@gentoo.org> netpbm-10.11.5-r2.ebuild:
  fix up doc install with a song and dance. (bug 23048)

  13 May 2003; Jason Wever <weeve@gentoo.org> netpbm-9.12-r4.ebuild:
  Added filter-flags to filter any -Ox optimizations (sparc only) to fix bug
  #14392

*netpbm-10.11.5-r2 (20 Mar 2003)

  19 Apr 2003; Brandon Low <lostlogic@gentoo.org> netpbm-10.11.5-r2.ebuild,
  netpbm-9.12-r4.ebuild:
  Add replace-flags for ultrasparcs

  14 Apr 2003; Stefan Jones <cretin@gentoo.org> netpbm-10.11.5-r2.ebuild:
  Added -fPIC to CFLAGS for prelink.

  20 Mar 2003; Graham Forest <vladimir@gentoo.org> netpbm-10.11.4-r1.ebuild,
  netpbm-10.11.5-r2.ebuild:
  Removed usage of pic USE flag

*netpbm-10.11.5-r1 (06 March 2003)

  09 Mar 2003; Aron Griffis <agriffis@gentoo.org> netpbm-10.11.5-r1.ebuild:
  Mark stable on alpha

  06 March 2003; Martin Schlemmer <azarah@gentoo.org> netpbm-10.11.5-r1.ebuild :
  Fix /usr/lib/libnetpbm.so symlink not being created.

*netpbm-10.11.5 (13 Feb 2003)

  22 Feb 2003; Aron Griffis <agriffis@gentoo.org> netpbm-10.11.5.ebuild :
  Add ~alpha to KEYWORDS

  14 Feb 2003; Brandon Low <lostlogic@lostlogicx.com> *.ebuild:
  assert ebuild.workswith(newdistcc);
  Fixed MAKEOPTS, and CC so that this doesn't get errors
  building on a distcc box (of course it has to be built
  with -j1 so distcc could only distribute all or none of
  the processes, but that might be of use, and at least
  it doesn't break.)

  13 Feb 2003; Nick Hadaway <raker@gentoo.org> netpbm-10.11.5.ebuild,
  files/digest-netpbm-10.11.5 :
  Version bump.

*netpbm-10.11.4 (04 Jan 2002)

  30 Jan 2003; Mark Guertin <gerk@gentoo.org> netpbm-10.11.4.ebuild :
  Set to stable ppc keyword.  Works great here, no more svgalib issues.

  12 Jan 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.4.ebuild :
  Added Prelink ability. Closes #13650

  07 Jan 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.4.ebuild :
  A little fix with SVGALIB.

  04 Jan 2003; Martin Holzer <mholzer@gentoo.org> netpbm-10.11.4.ebuild files/digest-netpbm-10.11.4 ChangeLog :
  Version bumped.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*netpbm-9.12-r4 (16 Oct 2002)

  22 Apr 2003; Brandon Low <lostlogic@gentoo.org> netpbm-9.12-r4.ebuild:
  Adjust CC and CXX settings for weird environments

  19 Apr 2003; Brandon Low <lostlogic@gentoo.org> netpbm-9.12-r4.ebuild:
  Typo in sed

  17 Apr 2003; Brandon Low <lostlogic@gentoo.org> netpbm-9.12-r4.ebuild:
  Minor fixage to ||dies

  16 Oct 2002; Seemant Kulleen <seemant@gentoo.org> netpbm-9.12-r4.ebuild
  files/digest-netpbm-9.12-r4 :

  Fixed symlinks pointing back to non-existent binaries in the sandbox.
  Thanks to gaarde@yahoo.com (Paul Belt) in bug #9328.

*netpbm-9.12-r3 (01 Oct 2002)

  01 Oct 2002; Seemant Kulleen <seemant@gentoo.org> netpbm-9.12-r3.ebuild :

  Moved the includes to /usr/include instead of /usr/include/pbm, per the
  bug report #8576 by desudation@yahoo.ca (Douglas Pollock)

*netpbm-9.12-r2 (12 Apr 2002)

  06 Aug 2002; Maik Schreiber <blizzy@gentoo.org> netpbm-9.12-r2.ebuild:
  Fixed Makefile.config to use user-defined CFLAGS.

  12 Apr 2002; Spider <spider@gentoo.org> : update with cute new libpng 1.2.1 

*netpbm-9.12-r1 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.