summaryrefslogtreecommitdiff
blob: 91d557d67a5d95d5b8f633f1b264c4dccf38aa9e (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
# ChangeLog for net-analyzer/rrdtool
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.274 2014/08/15 18:00:06 armin76 Exp $

  15 Aug 2014; Raúl Porcel <armin76@gentoo.org> rrdtool-1.4.8-r1.ebuild:
  ia64/sparc stable, bug #517234

  15 Aug 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8-r1.ebuild,
  rrdtool-1.4.8-r3.ebuild:
  Shift dev-ruby/rrdtool-bindings to PDEPEND.

  14 Aug 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> rrdtool-1.4.8-r1.ebuild:
  x86 stable wrt bug #517234

  14 Aug 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8-r1.ebuild,
  rrdtool-1.4.8-r3.ebuild:
  Readd USE=ruby for now.

  27 Jul 2014; Markus Meier <maekke@gentoo.org> rrdtool-1.4.8-r1.ebuild:
  arm stable, bug #517234

  22 Jul 2014; Tobias Klausmann <klausman@gentoo.org> rrdtool-1.4.8-r1.ebuild:
  Stable on alpha, bug #517234

  19 Jul 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8-r1.ebuild:
  Stable for HPPA (bug #517234).

*rrdtool-1.4.8-r3 (16 Jul 2014)

  16 Jul 2014; Jeroen Roovers <jer@gentoo.org> -rrdtool-1.4.8-r2.ebuild,
  +rrdtool-1.4.8-r3.ebuild, files/rrdtool-1.4.8-disable-rrd_graph.patch:
  Disable rdd_xport when rrd_graph is not available.

  16 Jul 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8-r1.ebuild,
  rrdtool-1.4.8-r2.ebuild:
  Drop bogus USE=ruby.

  16 Jul 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8-r2.ebuild:
  Make USE=graph no longer a default.

*rrdtool-1.4.8-r2 (15 Jul 2014)

  15 Jul 2014; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.8-r2.ebuild,
  +files/rrdtool-1.4.8-disable-rrd_graph.patch:
  When USE=-graph, do not compile rrd_graph* support into dependent libraries.

*rrdtool-1.4.8-r1 (20 May 2014)

  20 May 2014; Hans de Graaff <graaff@gentoo.org> +rrdtool-1.4.8-r1.ebuild:
  Move the ruby bindings to a separate package to facilitate building them for
  all ruby targets, bug 427662.

  19 May 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8.ebuild:
  Remove obsolete comment, too.

  18 May 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8.ebuild:
  DEPEND on sys-apps/groff by Bertrand Jacquin (bug #497726). Remove obsolete
  sed script.

  14 May 2014; Jeroen Roovers <jer@gentoo.org> -rrdtool-1.4.7-r1.ebuild,
  -rrdtool-1.4.7-r2.ebuild, -files/rrdtool-1.4.5-automake-1.11.2.patch:
  Old.

  14 May 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for sparc, wrt bug #471894

  24 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for ppc64, wrt bug #471894

  23 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for ppc, wrt bug #471894

  22 Mar 2014; Markus Meier <maekke@gentoo.org> rrdtool-1.4.8.ebuild:
  arm stable, bug #471894

  22 Mar 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8.ebuild:
  Set DISTUTILS_OPTIONAL by Bruno (bug #505344).

  20 Mar 2014; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for HPPA (bug #471894).

  19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for alpha, wrt bug #471894

  19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for x86, wrt bug #471894

  19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for amd64, wrt bug #471894

  18 Mar 2014; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.8.ebuild:
  Stable for ia64, wrt bug #471894

*rrdtool-1.4.8 (01 Aug 2013)

  01 Aug 2013; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.8.ebuild:
  Version bump.

  01 Aug 2013; Jeroen Roovers <jer@gentoo.org> -rrdtool-1.4.5-r1.ebuild,
  -rrdtool-1.4.5-r2.ebuild, -files/rrdtool-1.4.3-ruby-ldflags.patch:
  More old.

  01 Aug 2013; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r1.ebuild,
  rrdtool-1.4.7-r2.ebuild, -files/rrdtool-1.3.8-configure.ac.patch,
  -files/rrdtool-1.4.4-dont-link-system-lib.patch,
  -files/0001_rrdtool-1.4.7-configure.ac.patch,
  +files/rrdtool-1.4.7-configure.ac.patch:
  Old.

  09 Mar 2013; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r2.ebuild:
  Fix USE=static-libs by Alphat-PC (bug #460576).

  06 Mar 2013; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r2.ebuild:
  Add USE=static-libs by A.M. (bug #460348).

  06 Mar 2013; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r2.ebuild:
  Add USE=graph by Bruno (bug #459472).

*rrdtool-1.4.7-r2 (06 Mar 2013)

  06 Mar 2013; Sergey Popov <pinkbyte@gentoo.org> +rrdtool-1.4.7-r2.ebuild:
  Revision bump: EAPI 5, port to distutils-r1 eclass

  13 Feb 2013; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  Fix building with USE=lua and dev-util/pkgconfig-0.28 (bug #456810 by Juergen
  Rose).

  11 Feb 2013; Sergey Popov <pinkbyte@gentoo.org> rrdtool-1.4.5-r1.ebuild,
  rrdtool-1.4.5-r2.ebuild, rrdtool-1.4.7-r1.ebuild:
  Change awk dependency into virtual/awk, wrt bug #455742

  26 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  ppc/ppc64 stable wrt #404433

  15 Sep 2012; Raúl Porcel <armin76@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #404433

  14 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> -rrdtool-1.4.7.ebuild:
  Drop old revision

  14 Sep 2012; Markus Meier <maekke@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  arm stable, bug #404433

  14 Sep 2012; Markus Meier <maekke@gentoo.org> rrdtool-1.4.7.ebuild:
  arm stable, bug #404433

  13 Sep 2012; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  Stable for HPPA (bug #404433).

  13 Sep 2012; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  Stable for amd64, wrt bug #404433

  13 Sep 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  x86 stable wrt bug #404433

  12 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> rrdtool-1.4.7.ebuild:
  Same fix for -r0 ebuild

  12 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> rrdtool-1.4.7-r1.ebuild:
  Fix typos in ebuild, which cause issue with automagic dependencies on
  sys-apps/tcp-wrappers and dev-db/libdbi

*rrdtool-1.4.7-r1 (06 Sep 2012)

  06 Sep 2012; Maxim Koltsov <maksbotan@gentoo.org> +files/rrdcached.confd,
  +files/rrdcached.init, +rrdtool-1.4.7-r1.ebuild:
  Add initscript for rrdcached, thanks to slepnoga

  06 Sep 2012; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.7.ebuild:
  Stable for HPPA (bug #404433).

  06 Sep 2012; Agostino Sarubbo <ago@gentoo.org> rrdtool-1.4.7.ebuild:
  Stable for amd64, wrt bug #404433

  09 Jun 2012; Maxim Koltsov <maksbotan@gentoo.org> rrdtool-1.4.7.ebuild:
  Return SUPPORT_PYTHON_ABIS to 1.4.7, patch by Arfrever

*rrdtool-1.4.7 (02 Jun 2012)

  02 Jun 2012; Maxim Koltsov <maksbotan@gentoo.org>
  +files/0001_rrdtool-1.4.7-configure.ac.patch, +rrdtool-1.4.7.ebuild:
  Bump to 1.4.7, fix bugs 405431, 324093 and 416259. Thanks to Andreis
  Vinogradovs

  04 May 2012; Jeff Horelick <jdhore@gentoo.org> rrdtool-1.4.5-r1.ebuild,
  rrdtool-1.4.5-r2.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  19 Apr 2012; Naohiro Aota <naota@gentoo.org> rrdtool-1.4.5-r2.ebuild:
  Add ~x86-fbsd. #235785

  22 Mar 2012; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.5-r1.ebuild,
  rrdtool-1.4.5-r2.ebuild:
  Change version specific notes by David (bug #409215).

  31 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> -rrdtool-1.0.50.ebuild,
  -rrdtool-1.3.8.ebuild, metadata.xml:
  old

  31 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  ppc/ppc64 stable wrt #387171

*rrdtool-1.4.5-r2 (14 Jan 2012)

  14 Jan 2012; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org>
  +rrdtool-1.4.5-r2.ebuild, +files/rrdtool-1.4.5-automake-1.11.2.patch:
  [net-analyzer/rrdtool-1.4.5-r2] Fix the build with automake-1.11.2 - bug
  #396727.
  Thanks to <AlphatPC@gmail.com> for the patch.

  23 Oct 2011; Raúl Porcel <armin76@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #387171

  19 Oct 2011; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  Stable for HPPA (bug #387171).

  18 Oct 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  x86 stable wrt bug #387171

  15 Oct 2011; Markos Chandras <hwoarang@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  Stable on amd64 wrt bug #387171

  02 Oct 2011; Tim Harder <radhermit@gentoo.org> rrdtool-1.4.5-r1.ebuild:
  Improve python support (bug #315085 by Arfrever).

  02 Oct 2011; Tim Harder <radhermit@gentoo.org> +rrdtool-1.0.50.ebuild:
  Re-add old version for FlowScan.

  01 Oct 2011; Tim Harder <radhermit@gentoo.org> rrdtool-1.3.8.ebuild,
  rrdtool-1.4.5-r1.ebuild:
  Remove old blocker on ruby-rrd. Add dependency on pkgconfig (bug #385017 by
  Nikoli).

  01 Oct 2011; Tim Harder <radhermit@gentoo.org> -rrdtool-1.0.50.ebuild,
  -files/rrdtool-1.2.15-newstyle-resize.patch, -rrdtool-1.2.29.ebuild,
  -rrdtool-1.2.30.ebuild, -rrdtool-1.3.7.ebuild, -rrdtool-1.3.8-r1.ebuild,
  -rrdtool-1.3.9.ebuild, -rrdtool-1.4.2.ebuild, -rrdtool-1.4.3.ebuild,
  -rrdtool-1.4.4.ebuild, -rrdtool-1.4.5.ebuild:
  Remove old.

*rrdtool-1.4.5-r1 (07 Aug 2011)

  07 Aug 2011; Samuli Suominen <ssuominen@gentoo.org> +rrdtool-1.4.5-r1.ebuild:
  Disable building librrd.a and librrd_th.a and delete matching libtool files
  wrt #362895 by Cesko Voeten. Open a bug if you need USE="static-libs".

*rrdtool-1.4.5 (01 Jun 2011)

  01 Jun 2011; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.5.ebuild:
  Version bump.

  10 Jan 2011; Hans de Graaff <graaff@gentoo.org> rrdtool-1.4.4.ebuild:
  Keyword ~x86-macos.

*rrdtool-1.4.4 (16 Dec 2010)

  16 Dec 2010; Hans de Graaff <graaff@gentoo.org> +rrdtool-1.4.4.ebuild,
  +files/rrdtool-1.4.4-dont-link-system-lib.patch:
  Version bump, bug 343017. Fix build with USE=ruby, bug 321749. Discussed
  with rej on IRC.

  16 Oct 2010; Hans de Graaff <graaff@gentoo.org> rrdtool-1.3.8.ebuild:
  Also apply the patch for bug 321749 to the stable version to fix USE=ruby
  build, as discussed with jer on #gentoo-dev.

  08 Jun 2010; Fabian Groffen <grobian@gentoo.org> rrdtool-1.4.3.ebuild:
  Avoid installing examples for non-installed features, helps to please
  shebang check from Prefix Portage.

  29 May 2010; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.3.ebuild,
  +files/rrdtool-1.4.3-ruby-ldflags.patch:
  Fix space separation between LDFLAGS (bug #321749).

*rrdtool-1.4.3 (26 May 2010)

  26 May 2010; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.3.ebuild:
  Version bump.

  26 May 2010; Torsten Veller <tove@gentoo.org> rrdtool-1.4.2.ebuild:
  Move perl-modules to vendor-dir. Delete .packlist files (#297134)

  26 May 2010; Jonathan Callen <abcd@gentoo.org> rrdtool-1.4.2.ebuild:
  Bump to EAPI=3, add prefix keywords, clean up ebuild

  08 Dec 2009; Brent Baude <ranger@gentoo.org> rrdtool-1.2.30.ebuild,
  rrdtool-1.3.8.ebuild:
  Mark -1.2.30 and 1.3.8 ppc64 for bug 275588

  25 Nov 2009; Jeroen Roovers <jer@gentoo.org> rrdtool-1.4.2.ebuild:
  Sort dependencies alphabetically. Add missing lua dependency.

  24 Nov 2009; Jeroen Roovers <jer@gentoo.org> rrdtool-1.3.7.ebuild,
  rrdtool-1.3.8.ebuild, rrdtool-1.3.8-r1.ebuild, rrdtool-1.3.9.ebuild,
  rrdtool-1.4.2.ebuild:
  Spelling correction.

  24 Nov 2009; Jeroen Roovers <jer@gentoo.org> -rrdtool-1.4.1.ebuild,
  rrdtool-1.4.2.ebuild:
  Remove old. Make lua support optional. Remove last USE=nls usage.

*rrdtool-1.4.2 (23 Nov 2009)

  23 Nov 2009; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.2.ebuild:
  Version bump.

*rrdtool-1.4.1 (23 Nov 2009)

  23 Nov 2009; Jeroen Roovers <jer@gentoo.org> +rrdtool-1.4.1.ebuild:
  Version bump thanks to Opportunist (bug #291145).

*rrdtool-1.3.9 (26 Oct 2009)

  26 Oct 2009; Peter Volkov <pva@gentoo.org> +rrdtool-1.3.9.ebuild:
  Version bump, bug #290363, thank Opportunist for report.

  18 Oct 2009; Mike Frysinger <vapier@gentoo.org> rrdtool-1.3.8-r1.ebuild:
  Workaround autoconf-2.64 errors with nested [] #281694.

  17 Aug 2009; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.30.ebuild,
  rrdtool-1.3.8.ebuild:
  Stable for HPPA (bug #275588).

  27 Jul 2009; <chainsaw@gentoo.org> rrdtool-1.2.30.ebuild,
  rrdtool-1.3.8.ebuild:
  Marked 1.2.30 & 1.3.8 stable on AMD64 as requested by Robert Buchholz
  <rbu@gentoo.org> in bug #275588. Compile-tested with USE="perl python -doc
  -rrdcgi -ruby -tcl" & USE="perl nls python -doc -rrdcgi -ruby -tcl"
  respectively on a Core2 Duo.

  22 Jul 2009; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.30.ebuild,
  rrdtool-1.3.8.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #275588

  19 Jul 2009; nixnut <nixnut@gentoo.org> rrdtool-1.2.30.ebuild,
  rrdtool-1.3.8.ebuild:
  ppc stable #275588

  12 Jul 2009; Tobias Klausmann <klausman@gentoo.org> rrdtool-1.3.8.ebuild:
  Stable on alpha, bug #275588

  12 Jul 2009; Tobias Klausmann <klausman@gentoo.org> rrdtool-1.2.30.ebuild:
  Stable on alpha, bug #275588

  09 Jul 2009; Peter Volkov <pva@gentoo.org> rrdtool-1.3.8-r1.ebuild:
  intltool is DEPEND, thank Neil Bothwick for attention, bug #271438.

  08 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  rrdtool-1.2.30.ebuild, rrdtool-1.3.8.ebuild:
  stable x86, bug 275588

*rrdtool-1.3.8-r1 (08 Jul 2009)

  08 Jul 2009; Peter Volkov <pva@gentoo.org>
  +files/rrdtool-1.3.8-configure.ac.patch, +rrdtool-1.3.8-r1.ebuild:
  Fixed bug #272767, thank Martin Mokrejš for report and Rafał for
  investigation. A bit improved nls handling.

  01 Jun 2009; Peter Volkov <pva@gentoo.org> rrdtool-1.3.8.ebuild,
  metadata.xml:
  Fixed build failure in case intltool is not intalled in the system (added
  nls USE flag), bug #271438, thank Neil Bothwick, Drew Kollasch for report,
  Sergey Dryabzhinsky for suggested fix.

*rrdtool-1.3.8 (25 May 2009)

  25 May 2009; Peter Volkov <pva@gentoo.org> +rrdtool-1.3.8.ebuild:
  Version bump, bug #271164, thank Opportunist for report.

  24 May 2009; Peter Volkov <pva@gentoo.org> -rrdtool-1.3.6.ebuild,
  rrdtool-1.3.7.ebuild:
  Fixed ruby bindings parallel build issue, thus added dependency on
  >=ruby-1.8.6_p287-r13 and droped -j1, bug #239101, thank MATSUU Takuto for
  this fix!

  18 May 2009; Peter Volkov <pva@gentoo.org> rrdtool-1.3.7.ebuild:
  Added notion that users need to install some font package after upgrade to
  1.3.x, thank Drew Kollasch for report.

*rrdtool-1.3.7 (07 Apr 2009)

  07 Apr 2009; Peter Volkov <pva@gentoo.org>
  -files/rrdtool-1.2.28-fix-empty-font.patch,
  -files/rrdtool-1.2.28-revert-font-fix.patch, -rrdtool-1.2.28-r1.ebuild,
  -rrdtool-1.2.28-r2.ebuild, -rrdtool-1.3.4.ebuild, -rrdtool-1.3.5.ebuild,
  +rrdtool-1.3.7.ebuild:
  Version bump. Remove old.

  08 Mar 2009; Dawid Węgliński <cla@gentoo.org> rrdtool-1.3.6.ebuild:
  Prevent double emake

  08 Mar 2009; Dawid Węgliński <cla@gentoo.org> rrdtool-1.3.6.ebuild:
  Migration to EAPI 2

  14 Feb 2009; Brent Baude <ranger@gentoo.org> rrdtool-1.2.29.ebuild:
  stable ppc, bug 255979

  06 Feb 2009; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.29.ebuild:
  Stable for HPPA (bug #255979).

  05 Feb 2009; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.29.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #255979

  01 Feb 2009; Markus Meier <maekke@gentoo.org> rrdtool-1.2.29.ebuild:
  x86 stable, bug #255979

  27 Jan 2009; Brent Baude <ranger@gentoo.org> rrdtool-1.2.29.ebuild:
  stable ppc64, bug 255979

  25 Jan 2009; Tobias Klausmann <klausman@gentoo.org> rrdtool-1.2.29.ebuild:
  Stable on alpha, bug #255979

  23 Jan 2009; Dawid Węgliński <cla@gentoo.org> rrdtool-1.2.29.ebuild:
  Stable on amd64 (bug #255979)

*rrdtool-1.3.6 (22 Jan 2009)
*rrdtool-1.2.30 (22 Jan 2009)

  22 Jan 2009; Peter Volkov <pva@gentoo.org> +rrdtool-1.2.30.ebuild,
  +rrdtool-1.3.6.ebuild:
  Version bump.

*rrdtool-1.3.5 (21 Dec 2008)
*rrdtool-1.2.29 (21 Dec 2008)

  21 Dec 2008; Peter Volkov <pva@gentoo.org> +rrdtool-1.2.29.ebuild,
  +rrdtool-1.3.5.ebuild:
  Version bump.

  07 Dec 2008; Mike Frysinger <vapier@gentoo.org> rrdtool-1.3.4.ebuild:
  Add back s390 #228025.

  29 Nov 2008; Peter Volkov <pva@gentoo.org>
  -files/rrdtool-1.2.23-ruby-binding-compile.patch,
  -files/rrdtool-1.2.23-ruby-binding-configure.patch,
  -files/rrdtool-1.2.23-tclbindings.patch, -rrdtool-1.2.23-r1.ebuild,
  -rrdtool-1.2.27.ebuild, -rrdtool-1.2.27-r1.ebuild, -rrdtool-1.2.28.ebuild:
  Clean old.

  26 Nov 2008; Brent Baude <ranger@gentoo.org> rrdtool-1.2.28-r1.ebuild:
  Marking rrdtool-1.2.28-r1 ppc64 for bug 245331

  08 Nov 2008; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.28-r1.ebuild:
  alpha/ia64/x86 stable wrt #245331

  08 Nov 2008; nixnut <nixnut@gentoo.org> rrdtool-1.2.28-r1.ebuild:
  Stable on ppc wrt bug 245331

*rrdtool-1.2.28-r2 (08 Nov 2008)

  08 Nov 2008; Peter Volkov <pva@gentoo.org>
  +files/rrdtool-1.2.28-fix-empty-font.patch, +rrdtool-1.2.28-r2.ebuild:
  Patch from upstream to fix empty font files, thank Tobias Oetiker for this
  patch.

  07 Nov 2008; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.28-r1.ebuild:
  Stable for HPPA (bug #245331).

  06 Nov 2008; Thomas Anderson <gentoofan23@gentoo.org>
  rrdtool-1.2.28-r1.ebuild:
  stable amd64, regression from 1.2.28. See bug #245331

  06 Nov 2008; Ferris McCormick <fmccor@gentoo.org>
  rrdtool-1.2.28-r1.ebuild:
  Sparc stable --- Bug #245331 --- fix regression error.

*rrdtool-1.2.28-r1 (04 Nov 2008)

  04 Nov 2008; Peter Volkov <pva@gentoo.org>
  +files/rrdtool-1.2.28-revert-font-fix.patch, +rrdtool-1.2.28-r1.ebuild,
  -rrdtool-1.3.3.ebuild:
  Revert upstream changes that cause broken graphs in cacti, bug #245331,
  thank Thomas Beutin for report and fleg for tests. Remove unused.

  28 Oct 2008; Brent Baude <ranger@gentoo.org> rrdtool-1.2.28.ebuild:
  stable ppc64, bug 244248

  27 Oct 2008; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.28.ebuild:
  Stable for HPPA (bug #244248).

  26 Oct 2008; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.28.ebuild:
  alpha/ia64/sparc/x86 stable wrt #244248

  25 Oct 2008; Thomas Anderson <gentoofan23@gentoo.org>
  rrdtool-1.2.28.ebuild:
  stable amd64, bug 244248

  25 Oct 2008; nixnut <nixnut@gentoo.org> rrdtool-1.2.28.ebuild:
  Stable on ppc wrt bug 244248

*rrdtool-1.3.4 (13 Oct 2008)

  13 Oct 2008; Peter Volkov <pva@gentoo.org> +rrdtool-1.3.4.ebuild:
  Version bump. Added workaround for parallel build failure in ruby, bug
  #239101, thank MATSUU Takuto for report.

  18 Sep 2008; Peter Volkov <pva@gentoo.org> +rrdtool-1.0.50.ebuild:
  Revert rrdtool-1.0.* another time. It's still required for FlowScan.

*rrdtool-1.3.3 (16 Sep 2008)
*rrdtool-1.2.28 (16 Sep 2008)

  16 Sep 2008; Peter Volkov <pva@gentoo.org> -rrdtool-1.0.49.ebuild,
  -rrdtool-1.2.26.ebuild, rrdtool-1.2.27-r1.ebuild, +rrdtool-1.2.28.ebuild,
  -rrdtool-1.3.0.ebuild, +rrdtool-1.3.3.ebuild:
  Version bump, fixes bug #226021. Dropped newstyle-resize until we discuss
  it with upstream. Remove old and unused.

  04 Aug 2008; Jeroen Roovers <jer@gentoo.org> metadata.xml:
  Describe local USE flags for GLEP 56.

  18 Jun 2008; Hanno Boeck <hanno@gentoo.org> rrdtool-1.3.0.ebuild:
  Add pango dep.

  18 Jun 2008; Jeroen Roovers <jer@gentoo.org> rrdtool-1.3.0.ebuild:
  Fix typo (bug #227943).

*rrdtool-1.3.0 (17 Jun 2008)

  17 Jun 2008; Hanno Boeck <hanno@gentoo.org> +rrdtool-1.3.0.ebuild:
  Version bump, ebuild submitted by Fabian Fingerle.

  12 May 2008; Markus Rothe <corsair@gentoo.org> rrdtool-1.2.27-r1.ebuild:
  Stable on ppc64

  26 Mar 2008; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.27.ebuild:
  Stable for HPPA (bug #214051).

  23 Mar 2008; Brent Baude <ranger@gentoo.org> rrdtool-1.2.27.ebuild:
  stable ppc, bug 214051

  23 Mar 2008; Markus Meier <maekke@gentoo.org> rrdtool-1.2.27-r1.ebuild:
  amd64 stable, bug #214051

*rrdtool-1.2.27-r1 (23 Mar 2008)

  23 Mar 2008; <pva@gentoo.org> rrdtool-1.2.15-r3.ebuild,
  +rrdtool-1.2.27-r1.ebuild:
  Fix multilib issue, ruby bindings now doing site installation, bug #214051,
  thank Markus for report. Droped mips.

  22 Mar 2008; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.27.ebuild:
  ia64/sparc stable wrt #214051

  21 Mar 2008; Markus Meier <maekke@gentoo.org> rrdtool-1.2.27.ebuild:
  x86 stable, bug #214051

  21 Mar 2008; Tobias Klausmann <klausman@gentoo.org> rrdtool-1.2.27.ebuild:
  Stable on alpha, bug #214051

  20 Mar 2008; Brent Baude <ranger@gentoo.org> rrdtool-1.2.27.ebuild:
  stable ppc64, bug 214051

*rrdtool-1.2.27 (20 Feb 2008)

  20 Feb 2008; <pva@gentoo.org> +rrdtool-1.2.27.ebuild:
  Version bump. Droped tclbindings.patch as upstream did too.

*rrdtool-1.2.26 (27 Jan 2008)

  27 Jan 2008; <pva@gentoo.org> rrdtool-1.0.49.ebuild,
  +rrdtool-1.2.26.ebuild:
  Version bump, thank Raúl Porcel <armin76 AT gentoo.org> for report, bug
  206795. Also in this version bug #191060 is fixed. Quotation fixes.

  14 Sep 2007; Markus Ullmann <jokey@gentoo.org> rrdtool-1.0.49.ebuild:
  And re-add keywords

  14 Sep 2007; Markus Ullmann <jokey@gentoo.org> +rrdtool-1.0.49.ebuild:
  Add 1.0 series for FlowScan

  06 Sep 2007; Markus Ullmann <jokey@gentoo.org>
  -files/rrdtool-1.2.19-as-needed.patch,
  -files/rrdtool-1.2.19-as-needed.patch-new,
  -files/rrdtool-1.2.19-tclbindings.patch, -rrdtool-1.0.49.ebuild,
  -rrdtool-1.2.19.ebuild, -rrdtool-1.2.23.ebuild:
  Cleanup

  05 Sep 2007; <solar@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  - remove failing patch that is no longer need for uclibc. Bug 191345

  20 Aug 2007; Markus Ullmann <jokey@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  Stable on x86 wrt bug #186519

  16 Aug 2007; Christoph Mende <angelos@gentoo.org>
  rrdtool-1.2.23-r1.ebuild:
  Stable on amd64 wrt bug #186519

  13 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  rrdtool-1.2.23-r1.ebuild:
  ppc. stable

  04 Aug 2007; Hans de Graaff <graaff@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  Add a blocker on dev-ruby/ruby-rrd because those bindings are now included in
  rrdtool, bug #180144.

  30 Jul 2007; Markus Rothe <corsair@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  Stable on ppc64; bug #186519

  26 Jul 2007; Raúl Porcel <armin76@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  alpha/ia64 stable wrt #186519

  26 Jul 2007; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.23-r1.ebuild:
  Stable for HPPA (bug #186519).

  25 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  rrdtool-1.2.23-r1.ebuild:
  Stable on sparc wrt #186519

*rrdtool-1.2.23-r1 (12 May 2007)

  12 May 2007; <pva@gentoo.org>
  +files/rrdtool-1.2.23-ruby-binding-compile.patch,
  +files/rrdtool-1.2.23-ruby-binding-configure.patch,
  +rrdtool-1.2.23-r1.ebuild:
  General ebuild cleanup. Fixed bug #177256.

*rrdtool-1.2.23 (05 May 2007)

  05 May 2007; Cedric Krier <cedk@gentoo.org>
  +files/rrdtool-1.2.23-tclbindings.patch, +rrdtool-1.2.23.ebuild:
  Version bump for bug #176899

  01 Feb 2007; Markus Ullmann <jokey@gentoo.org>
  +files/rrdtool-1.2.19-as-needed.patch,
  +files/rrdtool-1.2.19-as-needed.patch-new,
  +files/rrdtool-1.2.19-tclbindings.patch, -rrdtool-1.0.50.ebuild,
  -rrdtool-1.2.15-r2.ebuild, -rrdtool-1.2.18.ebuild, +rrdtool-1.2.19.ebuild:
  Version bump (again), thanks to Frederic Mangeant in bug #164798 for reporting

*rrdtool-1.2.19 (01 Feb 2007)

  01 Feb 2007; Markus Ullmann <jokey@gentoo.org> +rrdtool-1.2.19.ebuild:
  Version bump (again), thanks to Frederic Mangeant in bug #164798 for reporting

  31 Jan 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  rrdtool-1.2.15-r3.ebuild:
  Stable on ppc wrt bug #160321.

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  rrdtool-1.2.15-r3.ebuild:
  Stable on Alpha; bug #160321

  27 Jan 2007; Alexander H. Færøy <eroyf@gentoo.org>
  rrdtool-1.2.15-r3.ebuild:
  Stable on MIPS; bug #160321

  24 Jan 2007; Markus Ullmann <jokey@gentoo.org> rrdtool-1.2.18.ebuild:
  Testing first

*rrdtool-1.2.18 (24 Jan 2007)

  24 Jan 2007; Markus Ullmann <jokey@gentoo.org> -rrdtool-1.2.6-r1.ebuild,
  -rrdtool-1.2.11-r2.ebuild, +rrdtool-1.2.18.ebuild:
  Version bump try #3 ( see bug #163179 ), thanks to Frederic Mangeant for
  reporting

  14 Jan 2007; Jeroen Roovers <jer@gentoo.org> rrdtool-1.2.15-r3.ebuild:
  Stable for HPPA (bug #160321).

  11 Jan 2007; Markus Rothe <corsair@gentoo.org> rrdtool-1.2.15-r3.ebuild:
  Stable on ppc64; bug #160321

  10 Jan 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  rrdtool-1.2.15-r3.ebuild:
  Stable on amd64/x86 wrt bug #160321.

  10 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  rrdtool-1.2.15-r3.ebuild:
  Stable on sparc wrt #160321

*rrdtool-1.2.15-r3 (09 Jan 2007)

  09 Jan 2007; Cedric Krier <cedk@gentoo.org>
  +files/rrdtool-1.2.15-mem-usage.patch, +rrdtool-1.2.15-r3.ebuild:
  Add patch for memory usage see: http://oss.oetiker.ch/rrdtool-trac/ticket/54

  09 Jan 2007; Markus Rothe <corsair@gentoo.org> rrdtool-1.2.15-r2.ebuild:
  Stable on ppc64; bug #160321

  09 Jan 2007; Andrej Kacian <ticho@gentoo.org> rrdtool-1.2.15-r2.ebuild:
  Stable on x86, bug #160321.

  07 Jan 2007; Cedric Krier <cedk@gentoo.org> rrdtool-1.2.15-r2.ebuild:
  Remove tcl fix

  07 Jan 2007; Olivier Crête <tester@gentoo.org> rrdtool-1.2.15-r2.ebuild:
  Stable on amd64 wrt bug #160321

  07 Jan 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  rrdtool-1.2.15-r2.ebuild:
  ppc stable, bug #160321

  06 Jan 2007; Bryan Østergaard <kloeri@gentoo.org>
  rrdtool-1.2.15-r2.ebuild:
  Stable on Alpha.

  06 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  rrdtool-1.2.15-r2.ebuild:
  Stable on sparc wrt #160321

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> rrdtool-1.0.49.ebuild,
  rrdtool-1.0.50.ebuild, rrdtool-1.2.6-r1.ebuild, rrdtool-1.2.11-r2.ebuild:
  Remove gnuconfig inherit.

  04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  rrdtool-1.2.15-r2.ebuild:
  Add missing WANT_AUTO*

  16 Dec 2006; Cedric Krier <cedk@gentoo.org> rrdtool-1.2.11-r2.ebuild,
  rrdtool-1.2.15-r2.ebuild:
  Fix tcl config for bug #140909

  27 Nov 2006; Markus Ullmann <jokey@gentoo.org> rrdtool-1.0.49.ebuild,
  rrdtool-1.0.50.ebuild, rrdtool-1.2.6-r1.ebuild, rrdtool-1.2.11-r2.ebuild,
  -rrdtool-1.2.13.ebuild, -rrdtool-1.2.15.ebuild, -rrdtool-1.2.15-r1.ebuild,
  rrdtool-1.2.15-r2.ebuild:
  tcltk fix and cleanup

  21 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  rrdtool-1.2.11-r2.ebuild:
  ppc stable

*rrdtool-1.2.15-r2 (14 Aug 2006)

  14 Aug 2006; Christian Heim <phreak@gentoo.org>
  +files/rrdtool-1.2.15-no-man.patch, +rrdtool-1.2.15-r2.ebuild:
  Revision bump. Fixing an error occuring within an uclibc chroot, where no
  man/groff is present.

*rrdtool-1.2.15-r1 (21 Jul 2006)

  21 Jul 2006; Robin H. Johnson <robbat2@gentoo.org>
  +files/rrdtool-1.2.15-newstyle-resize.patch, +rrdtool-1.2.15-r1.ebuild:
  Add a little bit of useful functionality to rrd_resize.

*rrdtool-1.2.15 (18 Jul 2006)

  18 Jul 2006; Marcelo Goes <vanquirius@gentoo.org> -rrdtool-1.2.12.ebuild,
  -rrdtool-1.2.12-r1.ebuild, +rrdtool-1.2.15.ebuild:
  1.2.15 version bump for bug 140769. Thanks to Frederic Mangeant
  <frederic.mangeant at gmail dot com>.

*rrdtool-1.2.13 (07 May 2006)

  07 May 2006; Markus Ullmann <jokey@gentoo.org> +rrdtool-1.2.13.ebuild:
  Version bump

  10 Mar 2006; Aron Griffis <agriffis@gentoo.org> rrdtool-1.2.11-r2.ebuild:
  Mark 1.2.11-r2 stable on ia64

  06 Feb 2006; Aron Griffis <agriffis@gentoo.org> rrdtool-1.2.11-r2.ebuild:
  Mark 1.2.11-r2 stable on alpha

*rrdtool-1.2.12-r1 (03 Feb 2006)

  03 Feb 2006; Marcelo Goes <vanquirius@gentoo.org>
  +rrdtool-1.2.12-r1.ebuild:
  Add rrdcgi USE flag and functionality for bug 118679. Thanks to Timothy
  Bergeron <bugs-gentoo at timothybergeron dot com>.

  26 Dec 2005; Simon Stelling <blubb@gentoo.org> rrdtool-1.2.6-r1.ebuild:
  fix multilib-strict wise

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

*rrdtool-1.2.12 (19 Dec 2005)

  19 Dec 2005; Marcelo Goes <vanquirius@gentoo.org> -rrdtool-1.2.6.ebuild,
  -rrdtool-1.2.9.ebuild, -rrdtool-1.2.10.ebuild, -rrdtool-1.2.11.ebuild,
  -rrdtool-1.2.11-r1.ebuild, rrdtool-1.2.11-r2.ebuild,
  +rrdtool-1.2.12.ebuild:
  Remove some old ebuilds, minor QA changes to 1.2.11-r2 and 1.2.12 version
  bump for bug 116011. Thanks to Frederic Mangeant <frederic dot mangeant at
  gmail dot com>.

  04 Dec 2005; Tom Gall <tgall@gentoo.org> rrdtool-1.2.11-r2.ebuild:
  stable on ppc64

  10 Nov 2005; Brent Baude <ranger@gentoo.org> rrdtool-1.2.11-r2.ebuild:
  Marking rrdtool-1.2.11-r2 ~ppc64 for bug 111849

*rrdtool-1.2.11-r2 (22 Sep 2005)

  22 Sep 2005; Lance Albertson <ramereth@gentoo.org>
  +rrdtool-1.2.11-r2.ebuild:
  * removed unneeded RDEPEND on media-libs/gd for 1.2.x (See bug #106682 for
  details)

*rrdtool-1.2.11-r1 (06 Sep 2005)

  06 Sep 2005; Benjamin Smee <strerror@gentoo.org>
  +rrdtool-1.2.11-r1.ebuild:
  Made changes as per bug 104956 for multilib

  24 Aug 2005; Aron Griffis <agriffis@gentoo.org> rrdtool-1.2.6-r1.ebuild:
  stable on ia64 #93063

  23 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> rrdtool-1.2.6-r1.ebuild,
  rrdtool-1.2.11.ebuild:
  Added ~mips.

  13 Aug 2005; Michael Hanselmann <hansmi@gentoo.org>
  rrdtool-1.2.6-r1.ebuild:
  Stable on ppc.

  06 Aug 2005; Marcelo Goes <vanquirius@gentoo.org> rrdtool-1.2.11.ebuild:
  Fix RDEPEND for bug 101513. Thanks to Natanael Copa <mlists@tanael.org>.

*rrdtool-1.2.11 (26 Jul 2005)

  26 Jul 2005; Benjamin Smee <strerror@gentoo.org> +rrdtool-1.2.11.ebuild:
  Version bump.

  02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org>
  rrdtool-1.2.6-r1.ebuild:
  Stable on alpha.

  25 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> rrdtool-1.2.6.ebuild,
  rrdtool-1.2.6-r1.ebuild:
  Fix tcl issues. Thanks to Kugelfang on irc.

  25 Jun 2005; Rene Nussbaumer <killerfox@gentoo.org>
  rrdtool-1.2.6-r1.ebuild:
  Stable on hppa.

  22 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  rrdtool-1.2.6-r1.ebuild:
  Stable on sparc

*rrdtool-1.2.10 (19 Jun 2005)

  19 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> +rrdtool-1.2.10.ebuild:
  Version bump for bug 96369. Thanks to Frederic Mangeant
  <frederic.mangeant@gmail.com>.

  18 Jun 2005; Marcelo Goes <vanquirius@gentoo.org> rrdtool-1.2.6-r1.ebuild,
  -rrdtool-1.2.8.ebuild:
  Marking 1.2.6-r1 stable to push doc USE flag fix. Also, taking 1.2.8 out for
  bug 94411.

  17 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> rrdtool-1.2.6.ebuild:
  Stable on ppc.

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> rrdtool-1.2.6.ebuild:
  Stable on alpha.

  12 Jun 2005; Jason Wever <weeve@gentoo.org> rrdtool-1.2.6.ebuild:
  Stable on SPARC.

*rrdtool-1.2.6-r1 (10 Jun 2005)

  10 Jun 2005; Benjamin Smee <strerror@gentoo.org> +rrdtool-1.2.6-r1.ebuild:
  Fixed inappropriate doc placemente as per bug 95665.

  05 Jun 2005; Rene Nussbaumer <killerfox@gentoo.org> rrdtool-1.2.6.ebuild:
  Stable on hppa.

  04 Jun 2005; Marcelo Goes <vanquirius@gentoo.org>
  -rrdtool-1.0.45-r2.ebuild, -rrdtool-1.0.47.ebuild, rrdtool-1.2.6.ebuild:
  Marked 1.2.6 x86 stable and removing old versions. Fixes bug 94962. Thanks
  to Daniel Webert <rockoo@gmail.com>.

*rrdtool-1.2.9 (30 May 2005)

  30 May 2005; Benjamin Smee <strerror@gentoo.org> +rrdtool-1.2.9.ebuild:
  Version bump for bug 94465

  26 May 2005; Rene Nussbaumer <killerfox@gentoo.org> rrdtool-1.0.49.ebuild:
  Stable on hppa

  18 May 2005; Marcelo Goes <vanquirius@gentoo.org> rrdtool-1.2.6.ebuild,
  rrdtool-1.2.8.ebuild:
  Changing sed line to fix problem with tcl bindings. Fixes bug 93062. Thanks to
  Brandon Hale <tseng@gentoo.org>.

*rrdtool-1.2.8 (18 May 2005)

  18 May 2005; Aaron Walker <ka0ttic@gentoo.org> +rrdtool-1.2.8.ebuild:
  Version bump for bug 92866; added python and doc USE flags.

  14 May 2005; Marcelo Goes <vanquirius@gentoo.org> -rrdtool-1.2.0.ebuild,
  -rrdtool-1.2.1.ebuild, -rrdtool-1.2.2.ebuild:
  Removing older 1.2.x releases. There were different issues with them, so it is
  better to get them out of the way.

*rrdtool-1.2.6 (10 May 2005)

  10 May 2005; Marcelo Goes <vanquirius@gentoo.org> +rrdtool-1.2.6.ebuild:
  Version bump for bug 91978. Thanks to Frederic Mangeant
  <frederic.mangeant@gmail.com>.

*rrdtool-1.2.2 (09 May 2005)

  09 May 2005; Martin Holzer <mholzer@gentoo.org> +rrdtool-1.2.2.ebuild:
  Version bumped.

  07 May 2005; Aaron Walker <ka0ttic@gentoo.org> rrdtool-1.2.0.ebuild,
  rrdtool-1.2.1.ebuild:
  Add --disable-perl if USE=-perl; closes bug 91638.

*rrdtool-1.2.1 (03 May 2005)

  03 May 2005; Marcelo Goes <vanquirius@gentoo.org> rrdtool-1.2.0.ebuild,
  +rrdtool-1.2.1.ebuild:
  Version bump, fix compilation problem with 1.2.0. Fixes bug 91287. Thanks to
  Andy Blyler <ajb@blyler.cc>, Marco Morales <soulse@gmail.com> and Frederic
  Mangeant <frederic.mangeant@gmail.com>.

*rrdtool-1.2.0 (27 Apr 2005)
*rrdtool-1.0.50 (27 Apr 2005)

  27 Apr 2005; Aaron Walker <ka0ttic@gentoo.org> +rrdtool-1.0.50.ebuild,
  +rrdtool-1.2.0.ebuild:
  Dual version bumps for bugs 90491 and 88698.

  01 Apr 2005; Aron Griffis <agriffis@gentoo.org> rrdtool-1.0.49.ebuild:
  stable on ia64

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

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

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

  27 Oct 2004; Jason Wever <weeve@gentoo.org> rrdtool-1.0.49.ebuild:
  Stable on sparc.

  25 Oct 2004; Jason Wever <weeve@gentoo.org> :
  Stable on sparc.

  24 Oct 2004; Eldad Zack <eldad@gentoo.org> -rrdtool-1.0.40-r1.ebuild,
  rrdtool-1.0.47.ebuild, rrdtool-1.0.48.ebuild, rrdtool-1.0.49.ebuild:
  Got rid of -fPIC patch in favor of sed (1.0.47-1.0.49). x86 marked stable
  (1.0.48, 1.0.49)

  27 Sep 2004; Danny van Dyk <kugelfang@gentoo.org> rrdtool-1.0.47.ebuild:
  Marked stable on amd64.

  14 Sep 2004; Guy Martin <gmsoft@gentoo.org> rrdtool-1.0.47.ebuild:
  Stable on hppa.

  22 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> rrdtool-1.0.47.ebuild:
  Stable on alpha.

  20 Aug 2004; Jason Wever <weeve@gentoo.org> rrdtool-1.0.47.ebuild:
  Stable on sparc.

*rrdtool-1.0.49 (09 Aug 2004)

  09 Aug 2004; Jon Hood <squinky86@gentoo.org>
  -files/rrdtool-1.0.46-fPIC.patch, -files/rrdtool-1.0.46-tcl.patch,
  +files/rrdtool-1.0.49-fPIC.patch, -rrdtool-1.0.45.ebuild,
  -rrdtool-1.0.46.ebuild, +rrdtool-1.0.49.ebuild:
  Version bump, closes #59851, thanks Haroon Rafique
  <corporate_gadfly@hotmail.com>; ebuild cleanups.

*rrdtool-1.0.48 (05 Aug 2004)

  05 Aug 2004; Jon Hood <squinky86@gentoo.org>
  +files/rrdtool-1.0.48-fPIC.patch, -rrdtool-1.0.42-r1.ebuild,
  -rrdtool-1.0.45-r1.ebuild, +rrdtool-1.0.48.ebuild:
  Version bump, closes #59543, ebuild cleanups, thanks solar@g.o!

  22 Jul 2004; Eldad Zack <eldad@gentoo.org> rrdtool-1.0.47.ebuild:
  Tidy up. Fixed issue with 64-bit archs, when perl is in USE. Fixed duplicate
  installation on /usr/lib/perl. Closes #57651.

  09 Jul 2004; Eldad Zack <eldad@gentoo.org> rrdtool-1.0.46.ebuild,
  rrdtool-1.0.47.ebuild:
  marked x86 stable

  09 Jun 2004; Aron Griffis <agriffis@gentoo.org> rrdtool-1.0.40-r1.ebuild,
  rrdtool-1.0.42-r1.ebuild, rrdtool-1.0.45-r1.ebuild,
  rrdtool-1.0.45-r2.ebuild, rrdtool-1.0.45.ebuild, rrdtool-1.0.46.ebuild,
  rrdtool-1.0.47.ebuild:
  Fix use invocation

  08 May 2004; Danny van Dyk <kugelfang@gentoo.org> :
  Marked ~amd64.

*rrdtool-1.0.47 (07 Apr 2004)

  07 Apr 2004; Martin Holzer <mholzer@gentoo.org> rrdtool-1.0.47.ebuild,
  files/rrdtool-1.0.47-fPIC.patch:
  Version bumped.

  18 Mar 2004; Daniel Ahlberg <aliz@gentoo.org> rrdtool-1.0.46.ebuild,
  files/rrdtool-1.0.46-fPIC.patch:
  Must compile private lib with -fPIC on amd64.

*rrdtool-1.0.46 (09 Mar 2004)

  09 Mar 2004; Michael Boman <mboman@gentoo.org> rrdtool-1.0.46.ebuild,
  files/rrdtool-1.0.46-tcl.patch:
  New upstream version. Closes bug 43997.

  17 Feb 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  rrdtool-1.0.45-r2.ebuild:
  stable on hppa

  17 Feb 2004; Aron Griffis <agriffis@gentoo.org> rrdtool-1.0.45-r2.ebuild:
  stable on alpha and ia64

  29 Jan 2004; <gustavoz@gentoo.org> rrdtool-1.0.45-r2.ebuild:
  marked stable on sparc

*rrdtool-1.0.45-r2 (31 Dec 2003)

  31 Dec 2003; Michael Cummings,,, <mcummings@gentoo.org>
  rrdtool-1.0.45-r2.ebuild:
  Corrections for the inclusion and operation of the perl portion. There were
  sandbox violations for the perl man pages becasue of makemaker versions. The
  new version will cleanly install all parts in all the right places. Bug was
  reported on IRC by Geert Hauwaerts <geert@irssi.org>

*rrdtool-1.0.45-r1 (22 Dec 2003)

  22 Dec 2003; <rac@gentoo.org> rrdtool-1.0.45-r1.ebuild:
  Make perl stuff install into vendordir, address bug 30617

  24 Nov 2003; Aron Griffis <agriffis@gentoo.org> rrdtool-1.0.45.ebuild:
  Add ~alpha

  20 Nov 2003; Daniel Ahlberg <aliz@gentoo.org> rrdtool-1.0.45.ebuild :
  Make it build on amd64.

  01 Sep 2003; Daniel Ahlberg <aliz@gentoo.org> rrdtool-1.0.42-r2.ebuild, rrdtool-1.0.40-r1.ebuild,
						rrdtool-1.0.45.ebuild :
  If neither perl or tcltk are enabled pkg_setup will fail becuse the last use check returns 1.

*rrdtool-1.0.45 (30 Jul 2003)

  30 Jul 2003; Martin Holzer <mholzer@gentoo.org> rrdtool-1.0.45.ebuild:
  Version bumped.

  22 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> rrdtool-0.41.ebuild,
  rrdtool-0.41-r1.ebuild, rrdtool-0.42.ebuild, rrdtool-0.42-r1.ebuild :
  Changed flags alteration.

*rrdtool-1.0.41-r1 (01 Jun 2003)

  01 Jun 2003; Michael Cummings <mcummings@gentoo.org>
  rrdtool-1.0.40-r1.ebuild, rrdtool-1.0.41-r1.ebuild,
  rrdtool-1.0.42-r1.ebuild:
  Version bump because eclasses changed

  30 May 2003; Seemant Kulleen <seemant@gentoo.org> rrdtool-1.0.42.ebuild:
  change perl-post to perl-module for inheritance

*rrdtool-1.0.42-r1 (02 Jun 2003)
 
  13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*rrdtool-1.0.42 (16 Apr 2003)

  24 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest,
  rrdtool-1.0.40.ebuild, rrdtool-1.0.41.ebuild, rrdtool-1.0.42.ebuild:
  Updated Homepage. Marked as stable

  16 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest,
  rrdtool-1.0.42.ebuild:
  Version bumped.

*rrdtool-1.0.41 (13 Mar 2003)

  04 Apr 2003; Dylan Carlson <absinthe@gentoo.org> rrdtool-1.0.41.ebuild:
  Added "-ffast-math" to filter-flags.

  03 Apr 2003; Dylan Carlson <absinthe@gentoo.org> rrdtool-1.0.35-r3.ebuild,
  rrdtool-1.0.35-r3.ebuild, rrdtool-1.0.39.ebuild, rrdtool-1.0.39.ebuild,
  rrdtool-1.0.41.ebuild:
  Filtering out -mfpmath=sse to close bug # 18705 (thanks to Zoltan Patay). x86
  moved to stable.

  13 Mar 2003; Dylan Carlson <absinthe@gentoo.org> rrdtool-1.0.41.ebuild
  files/digest-rrdtool-1.0.41 ChangeLog :

  Version bump.

*rrdtool-1.0.40-r1 (02 Jun 2003)
 
  13 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

*rrdtool-1.0.40 (18 Jan 2003)

  18 Jan 2003; Martin Holzer <mholzer@gentoo.org> rrdtool-1.0.40.ebuild
  files/digest-rrdtool-1.0.40 ChangeLog : 
  Version bumped. Closes #10703.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*rrdtool-1.0.39 (05 Aug 2002)

  16 Sep 2002; <mcummings@gentoo.org> : add  PREFIX=${D}/usr to perl line.
  
  05 Aug 2002; Seemant Kulleen <seemant@gentoo.org> rrdtool-1.0.39.ebuild
  files/digest-rrdtool-1.0.39 :

  Version bump.  Thanks to: tlund@springboardhosting.com (Tyler Lund) in bug
  #5795.

*rrdtool-1.0.35-r3 (10 Jun 2002)

  16 Sep 2002; <mcummings@gentoo.org> : add  PREFIX=${D}/usr to perl line.

  10 Jun 2002; Seemant Kulleen <seemant@gentoo.org> rrdtool-1.0.35-r3.ebuild
  files/digest-rrdtool-1.0.35-r3 :

  Made fixes so it installs the binaries into /usr/bin and there are also
  some perl specific things that need to be done (perl was made an optional
  dep) which are done through the perl-module eclass now.

*rrdtool-1.0.35-r2 (2 Jun 2002)
  2 Jun 2002; Ben Lutgens <lamer@gentoo.org> rrdtool-1.0.35-r1 :

  Changed the install location from /opt/rrdtool to /usr/share/rrdtool
  and installed the manpages in /usr/share/man/man1

*rrdtool-1.0.35-r1 (15 Apr 2002)

  15 Apr 2002; Seemant Kulleen <seemant@gentoo.org> rrdtool-1.0.35-r1.ebuild
  files/digest-rrdtool-1.0.35-r1 :

  Replaced the tcl USE flag with tcltk instead, since the latter encapsulates
  the former, and this is the only ebuild that uses the former.

*rrdtool-1.0.35 (21 Mar 2002)

  21 Feb 2002; Ferry Meyndert <m0rpheus@gentoo.org> rrdtool-1.0.35.ebuild : 

  Added new version of rddtool 1.0.35 and removed the old once that had
  the zlib bug

*rrdtool-1.0.33 (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.