summaryrefslogtreecommitdiff
blob: cb1f6ec718a00e2a81de3b6ef436c29ce8af2553 (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
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
# ChangeLog for x11-wm/openbox
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/openbox/ChangeLog,v 1.294 2015/04/08 17:29:20 mgorny Exp $

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> openbox-3.5.2-r1.ebuild,
  openbox-9999.ebuild:
  Drop old Python implementations

  03 Mar 2015; Yixun Lan <dlan@gentoo.org> openbox-3.5.2-r1.ebuild:
  add arm64 support, tested on A53 board

  19 Oct 2014; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild:
  Keep -fno-strict-aliasing. Bug #525860

  27 Apr 2014; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unneeded useflag descriptions from metadata.xml

  26 Apr 2014; Markos Chandras <hwoarang@gentoo.org>
  -files/openbox-gnome-session-3.4.9.patch, -openbox-3.5.0_p20130215.ebuild:
  remove old

  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for sparc, wrt bug #494226

  19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for ppc64, wrt bug #494226

  18 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for alpha, wrt bug #494226

  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for ppc, wrt bug #494226

  14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for x86, wrt bug #494226

  12 Jan 2014; Pacho Ramos <pacho@gentoo.org> openbox-3.5.2-r1.ebuild:
  amd64 stable, bug #494226

  04 Jan 2014; Markus Meier <maekke@gentoo.org> openbox-3.5.2-r1.ebuild:
  arm stable, bug #494226

  19 Dec 2013; Jeroen Roovers <jer@gentoo.org> openbox-3.5.2-r1.ebuild:
  Stable for HPPA (bug #494226).

  14 Dec 2013; Markos Chandras <hwoarang@gentoo.org>
  -files/openbox-3.5.0-configure-imlib2.patch,
  -files/openbox-3.5.0-fix-desktop-files.patch,
  -files/openbox-3.5.0-gtk34.patch,
  -files/openbox-3.5.0_p20121006-javaswing.patch,
  -files/openbox-as-needed.patch, -openbox-3.5.0-r1.ebuild,
  -openbox-3.5.2.ebuild:
  Remove old files and ebuilds

  19 Oct 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
  Cleanup due desktop-wm removal

  12 Oct 2013; Markos Chandras <hwoarang@gentoo.org> openbox-3.5.2-r1.ebuild:
  Add ~mips

*openbox-3.5.2-r1 (24 Aug 2013)

  24 Aug 2013; Markos Chandras <hwoarang@gentoo.org> +openbox-3.5.2-r1.ebuild,
  openbox-9999.ebuild, metadata.xml:
  Add missing useflag and dependency to librsvg. Rework ebuild and migrate
  to python-r1. Rename xdg->python. Sync 9999 ebuild and use a common
  ebuild for releases and git versions. Thanks to Julian Ospald
  <hasufell@gentoo.org> for the fixes on bug #481962

  17 Aug 2013; Markos Chandras <hwoarang@gentoo.org>
  -openbox-3.5.0_p20111019.ebuild, -openbox-3.5.0_p20121006.ebuild:
  Remove old ebuild

*openbox-3.5.2 (14 Aug 2013)

  14 Aug 2013; Markos Chandras <hwoarang@gentoo.org>
  +files/openbox-3.5.2-gnome-session.patch, +openbox-3.5.2.ebuild,
  openbox-9999.ebuild:
  Version bump. Bug #480818

  03 Aug 2013; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for sparc, wrt bug #477744

  30 Jul 2013; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for alpha, wrt bug #477744

  25 Jul 2013; Jeroen Roovers <jer@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for HPPA (bug #477744).

  23 Jul 2013; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for arm, wrt bug #477744

  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for ppc64, wrt bug #477744

  22 Jul 2013; Agostino Sarubbo <ago@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Stable for ppc, wrt bug #477744

  22 Jul 2013; Vicente Olivert Riera <vincent@gentoo.org>
  openbox-3.5.0_p20130215.ebuild:
  amd64, x86 stable. bug #477744

  07 Mar 2013; Markos Chandras <hwoarang@gentoo.org>
  -files/openbox-3.4.11.2-parallel-install.patch:
  remove obsolete patch

  22 Feb 2013; Zac Medico <zmedico@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Add ~arm-linux keyword.

  16 Feb 2013; Zac Medico <zmedico@gentoo.org> openbox-3.5.0_p20130215.ebuild:
  Fix for prefix and add ~x86-linux keyword.

*openbox-3.5.0_p20130215 (15 Feb 2013)

  15 Feb 2013; Markos Chandras <hwoarang@gentoo.org>
  +openbox-3.5.0_p20130215.ebuild, -openbox-3.5.0_p20111019-r2.ebuild:
  New snapshot

  27 Dec 2012; Raúl Porcel <armin76@gentoo.org>
  openbox-3.5.0_p20111019.ebuild:
  alpha/sparc stable wrt #444882

  06 Dec 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  openbox-3.5.0_p20121006.ebuild:
  x86 stable wrt bug #444882

  03 Dec 2012; Anthony G. Basile <blueness@gentoo.org>
  openbox-3.5.0_p20121006.ebuild:
  stable ppc ppc64, bug #444882

  02 Dec 2012; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild:
  whitespace

  02 Dec 2012; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_p20121006.ebuild:
  Stable on amd64 wrt bug #444882

  02 Dec 2012; Markus Meier <maekke@gentoo.org> openbox-3.5.0_p20121006.ebuild:
  arm stable, bug #444882

  30 Nov 2012; Markos Chandras <hwoarang@gentoo.org> metadata.xml,
  openbox-3.5.0_p20121006.ebuild, openbox-9999.ebuild:
  Convert python shebangs to python2. Describe the python useflag. Bug #442802

  30 Nov 2012; Markos Chandras <hwoarang@gentoo.org> ChangeLog:
  Add --disable-silent-rules for bug #445108

  29 Nov 2012; Jeroen Roovers <jer@gentoo.org> openbox-3.5.0_p20121006.ebuild:
  Stable for HPPA (bug #444882).

*openbox-3.5.0_p20121006 (06 Oct 2012)

  06 Oct 2012; Markos Chandras <hwoarang@gentoo.org>
  +files/openbox-3.5.0_p20121006-javaswing.patch,
  +openbox-3.5.0_p20121006.ebuild, files/openbox-3.5.0-fix-desktop-files.patch:
  New snapshot with latest upstream fixes plus a patch for bug #413997

  29 Aug 2012; Julian Ospald <hasufell@gentoo.org> openbox-3.5.0-r1.ebuild,
  openbox-3.5.0_p20111019.ebuild, openbox-3.5.0_p20111019-r2.ebuild,
  openbox-9999.ebuild:
  respect flags, don't run autopoint twice, add verbosity for live ebuild

*openbox-3.5.0_p20111019-r2 (27 Aug 2012)

  27 Aug 2012; Markos Chandras <hwoarang@gentoo.org>
  +files/openbox-3.5.0-fix-desktop-files.patch,
  +openbox-3.5.0_p20111019-r2.ebuild, -openbox-3.5.0_p20111019-r1.ebuild,
  openbox-9999.ebuild:
  fix desktop files according to fd.o desktop entry specifications. Thanks to
  Julian Ospald <hasufell@gentoo.org>. Bug #431784

  25 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
  openbox-3.5.0_p20111019-r1.ebuild:
  typo in src_uri, wrt to bug #432768

  25 Aug 2012; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_p20111019-r1.ebuild, openbox-9999.ebuild:
  Add a new Gentoo Openbox theme that gets installed and configured to be
  the default one when the 'branding' useflag is enabled. Thanks to
  David Abbott <dabbott@gentoo.org> for providing the theme. It is based on
  the original Surreal one found on
  http://box-look.org/content/show.php?content=66397

*openbox-3.5.0_p20111019-r1 (17 Aug 2012)

  17 Aug 2012; Markos Chandras <hwoarang@gentoo.org>
  +files/openbox-3.5.0-gtk34.patch, +openbox-3.5.0_p20111019-r1.ebuild:
  Apply fix against gtk-3.4. Bug #424747. Thanks to Francisco Vazquez
  <fjvazquezaraujo@gmail.com>

  14 Aug 2012; Johannes Huber <johu@gentoo.org> openbox-3.5.0_p20111019.ebuild:
  Stable for x86, wrt bug #430494

  11 Aug 2012; Agostino Sarubbo <ago@gentoo.org>
  openbox-3.5.0_p20111019.ebuild:
  Stable for amd64, wrt bug #430494

  09 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
  openbox-3.5.0_p20111019.ebuild:
  Stable arm, bug #430494

  09 Aug 2012; Anthony G. Basile <blueness@gentoo.org>
  openbox-3.5.0_p20111019.ebuild:
  Stable ppc, bug #430494

  04 Jun 2012; Jeff Horelick <jdhore@gentoo.org> openbox-3.5.0-r1.ebuild,
  openbox-3.5.0_p20111019.ebuild, openbox-9999.ebuild:
  Call epatch_user. There are many openbox patches around the internet that
  users may want to apply.

  06 May 2012; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_p20111019.ebuild, openbox-9999.ebuild:
  Make pyxdg dependency optional. Bug #375897

  05 May 2012; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild:
  Remove WANT_AUTOMAKE per bug #413999

  04 May 2012; Jeff Horelick <jdhore@gentoo.org> openbox-3.5.0-r1.ebuild,
  openbox-3.5.0_p20111019.ebuild, openbox-9999.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  11 Mar 2012; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  fix typo

  11 Mar 2012; Markos Chandras <hwoarang@gentoo.org> -openbox-3.4.11.2.ebuild:
  old

  10 Mar 2012; Brent Baude <ranger@gentoo.org> openbox-3.5.0-r1.ebuild:
  Marking openbox-3.5.0-r1 ppc for bug 383475

  09 Mar 2012; Brent Baude <ranger@gentoo.org> openbox-3.5.0-r1.ebuild:
  Marking openbox-3.5.0-r1 ppc64 for bug 383475

  20 Jan 2012; Markos Chandras <hwoarang@gentoo.org> openbox-3.5.0-r1.ebuild,
  openbox-3.5.0_p20111019.ebuild:
  Drop WANT_AUTOMAKE. USe latest by default. Bug #399435

  18 Dec 2011; Raúl Porcel <armin76@gentoo.org> openbox-3.5.0-r1.ebuild:
  alpha/sparc stable wrt #383475

*openbox-3.5.0_p20111019 (18 Oct 2011)

  18 Oct 2011; Markos Chandras <hwoarang@gentoo.org>
  +openbox-3.5.0_p20111019.ebuild, openbox-9999.ebuild:
  new snapshot

  18 Oct 2011; Jeroen Roovers <jer@gentoo.org> openbox-3.5.0-r1.ebuild:
  Stable for HPPA (bug #383475).

  05 Oct 2011; Markus Meier <maekke@gentoo.org> openbox-3.5.0-r1.ebuild:
  arm stable, bug #383475

  21 Sep 2011; Tony Vroon <chainsaw@gentoo.org> openbox-3.5.0-r1.ebuild:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo &
  Elijah "Armageddon" El Lazkani in bug #383475.

  21 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> openbox-3.5.0-r1.ebuild:
  x86 stable, thanks JD, bug 383475

  20 Sep 2011; Michał Górny <mgorny@gentoo.org> openbox-9999.ebuild:
  Migrate to git-2.

  18 Sep 2011; Markos Chandras <hwoarang@gentoo.org> openbox-3.5.0-r1.ebuild:
  Drop predefined cflags for debug useflag. Bug #383481

  10 Sep 2011; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild:
  Replace docbook-to-man command with docbook2man.pl (not tested) and use
  imlib2 patch from 3.5.0 package

*openbox-3.5.0-r1 (03 Sep 2011)

  03 Sep 2011; Markos Chandras <hwoarang@gentoo.org>
  -openbox-3.5.0_pre20110313.ebuild, -openbox-3.5.0_pre20110801.ebuild,
  -openbox-3.5.0.ebuild, +openbox-3.5.0-r1.ebuild,
  +files/openbox-3.5.0-configure-imlib2.patch:
  Respect imlib2 configuration option. Bug #381067. Patch is already in git
  repo

  17 Aug 2011; Markos Chandras <hwoarang@gentoo.org> openbox-3.5.0.ebuild:
  Remove app-text/docbook2X per bug #378939

*openbox-3.5.0 (05 Aug 2011)

  05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> +openbox-3.5.0.ebuild:
  Version bump

*openbox-3.5.0_pre20110801 (02 Aug 2011)

  02 Aug 2011; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_pre20110313.ebuild, +openbox-3.5.0_pre20110801.ebuild,
  openbox-9999.ebuild:
  New snapshot. Add missing dependency to dev-python/pyxdg. Bug #375897

  15 Jul 2011; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_pre20110313.ebuild, openbox-9999.ebuild:
  Move sys-devel/gettext to DEPEND

  14 Jul 2011; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.5.0_pre20110313.ebuild, openbox-9999.ebuild:
  Make sys-devel/gettext unconditional. Bug #374503

  23 Jun 2011; Markos Chandras <hwoarang@gentoo.org> openbox-3.4.11.2.ebuild,
  openbox-3.5.0_pre20110313.ebuild, openbox-9999.ebuild:
  Revert my previous commit re pango[X]. Bug #293368 and bug #372619

  22 Jun 2011; Markos Chandras <hwoarang@gentoo.org> openbox-3.4.11.2.ebuild,
  openbox-3.5.0_pre20110313.ebuild, openbox-9999.ebuild:
  Fix x11-libs/pango dependency per bug #293368

*openbox-3.5.0_pre20110313 (13 Mar 2011)

  13 Mar 2011; Markos Chandras <hwoarang@gentoo.org>
  +openbox-3.5.0_pre20110313.ebuild:
  Introduce new snapshot

  02 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org>
  openbox-3.4.11.2.ebuild:
  Properly rebuild autotools after patching them.

  16 Oct 2010; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.4.11.2.ebuild, +files/openbox-3.4.11.2-parallel-install.patch:
  Fix parallel installation. Thanks to Kacper Kowalik
  <xarthisius@gentoo.org> for the patch. Bug #339737

  03 Oct 2010; Markos Chandras <hwoarang@gentoo.org> -files/obxprop.patch:
  Remove obsolete files

  11 Jul 2010; Markos Chandras <hwoarang@gentoo.org>
  -openbox-3.4.7.2.ebuild, -openbox-3.4.10.ebuild, -openbox-3.4.11.ebuild,
  -openbox-3.4.11.1.ebuild:
  Remove old ebuilds

  11 Jul 2010; Samuli Suominen <ssuominen@gentoo.org>
  openbox-3.4.11.2.ebuild:
  ppc64 stable wrt #325047

  11 Jul 2010; Jeroen Roovers <jer@gentoo.org> openbox-3.4.11.2.ebuild:
  Stable for HPPA (bug #325047).

  08 Jul 2010; Raúl Porcel <armin76@gentoo.org> openbox-3.4.11.2.ebuild:
  alpha/arm/sparc stable wrt #325047

  27 Jun 2010; <nixnut@gentoo.org> openbox-3.4.11.2.ebuild:
  ppc stable #325047

  24 Jun 2010; Pacho Ramos <pacho@gentoo.org> openbox-3.4.11.2.ebuild:
  stable amd64, bug 325047

  24 Jun 2010; Christian Faulhammer <fauli@gentoo.org>
  openbox-3.4.11.2.ebuild:
  stable x86, bug 325047

  23 Jun 2010; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild,
  metadata.xml:
  Add more use flags, remove .la files when building with shared libs

  22 Jun 2010; Markos Chandras <hwoarang@gentoo.org> +openbox-9999.ebuild,
  +files/openbox-as-needed.patch:
  Moved live ebuild from lxde-overlay

  12 Jun 2010; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  Taking over maintainership

  11 Jun 2010; Ben de Groot <yngwin@gentoo.org> metadata.xml:
  Removing myself as maintainer

  06 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.4.11.2.ebuild:
  Drop xinerama use flag correctly this time

  05 Jun 2010; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.4.11.2.ebuild:
  Drop xinerama use flag as xinerama is an actual dependency

  28 May 2010; Markus Meier <maekke@gentoo.org> openbox-3.4.11.1.ebuild:
  arm/x86 stable, bug #319499

  16 May 2010; Markos Chandras <hwoarang@gentoo.org>
  openbox-3.4.11.1.ebuild:
  Stable on amd64 wrt bug #319499

*openbox-3.4.11.2 (16 May 2010)

  16 May 2010; Markos Chandras <hwoarang@gentoo.org>
  +openbox-3.4.11.2.ebuild:
  Version bump

  13 May 2010; Joseph Jezak <josejx@gentoo.org> openbox-3.4.11.1.ebuild:
  Marked ppc/ppc64 stable for bug #319499.

  06 May 2010; Jeroen Roovers <jer@gentoo.org> openbox-3.4.10.ebuild:
  Stable for HPPA (bug #301147).

*openbox-3.4.11.1 (29 Mar 2010)

  29 Mar 2010; Ben de Groot <yngwin@gentoo.org> +openbox-3.4.11.1.ebuild:
  Version bump. Remove imlib useflag as this is no longer used in this
  release.

  18 Mar 2010; Ben de Groot <yngwin@gentoo.org> metadata.xml:
  Adding myself as maintainer since I am no longer in lxde herd

  19 Feb 2010; Markos Chandras <hwoarang@gentoo.org> -openbox-9999.ebuild:
  Moved to lxde-overlay http://bitbucket.org/yngwin/lxde-overlay/

*openbox-3.4.11 (08 Feb 2010)

  08 Feb 2010; Ben de Groot <yngwin@gentoo.org> +openbox-3.4.11.ebuild:
  Version bump

  07 Feb 2010; Markos Chandras <hwoarang@gentoo.org> openbox-9999.ebuild:
  Ebuild fixes and cleanup thanks to yngwin and ssuominen

*openbox-9999 (05 Feb 2010)

  05 Feb 2010; Markos Chandras <hwoarang@gentoo.org> +openbox-9999.ebuild,
  metadata.xml:
  Adding live ebuld for Openbox WM

  24 Jan 2010; Raúl Porcel <armin76@gentoo.org> openbox-3.4.10.ebuild:
  alpha/arm/sparc stable wrt #301147

  22 Jan 2010; Víctor Ostorga <vostorga@gentoo.org> openbox-3.4.10.ebuild:
  Fixing homepage and SRC_URI, thanks to Niko Hämäläinen <milo@meelo.org>
  bug #301555

  19 Jan 2010; nixnut <nixnut@gentoo.org> openbox-3.4.10.ebuild:
  ppc stable #301147

  18 Jan 2010; Brent Baude <ranger@gentoo.org> openbox-3.4.10.ebuild:
  stable ppc64, bug 301147

  16 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  openbox-3.4.10.ebuild:
  stable x86, bug 301147

  16 Jan 2010; Dawid Węgliński <cla@gentoo.org> openbox-3.4.10.ebuild:
  Stable on amd64 (bug #301147)

  15 Jan 2010; Ben de Groot <yngwin@gentoo.org> -openbox-3.4.9.ebuild,
  -openbox-3.4.9-r1.ebuild:
  Remove obsoleted versions

*openbox-3.4.10 (07 Jan 2010)

  07 Jan 2010; Ben de Groot <yngwin@gentoo.org> +openbox-3.4.10.ebuild:
  Version bump

*openbox-3.4.9-r1 (30 Dec 2009)

  30 Dec 2009; Ben de Groot <yngwin@gentoo.org> -openbox-3.4.8.ebuild,
  +openbox-3.4.9-r1.ebuild, +files/obxprop.patch,
  -files/openbox-gnomesession.patch:
  Remove obsolete patch. Remove obsolete version, as 3.4.9 is a bugfix
  release. Add upstream patch for obxprop rename (bug 298660).

*openbox-3.4.9 (27 Dec 2009)

  27 Dec 2009; Ben de Groot <yngwin@gentoo.org> -openbox-3.4.8_rc1.ebuild,
  -openbox-3.4.8_rc1-r1.ebuild, +openbox-3.4.9.ebuild,
  +files/openbox-gnome-session-3.4.9.patch:
  Version bump. Adding patch submitted by Matt Michalowski to fix bug
  291965.

*openbox-3.4.8 (09 Dec 2009)

  09 Dec 2009; Ben de Groot <yngwin@gentoo.org> +openbox-3.4.8.ebuild:
  Version bump, drop patch as per https://bugs.gentoo.org/275138#c7

*openbox-3.4.8_rc1-r1 (06 Nov 2009)

  06 Nov 2009; Víctor Ostorga <vostorga@gentoo.org>
  +openbox-3.4.8_rc1-r1.ebuild, +files/openbox-gnomesession.patch:
  Fixing openbox session with >gnome-base/gnome-session-2.22, #275138

  16 Mar 2009; Raúl Porcel <armin76@gentoo.org> openbox-3.4.7.2.ebuild,
  openbox-3.4.8_rc1.ebuild:
  Add ~arm

  08 Mar 2009; Thomas Anderson <gentoofan23@gentoo.org>
  openbox-3.4.7.2.ebuild, openbox-3.4.8_rc1.ebuild:
  Transition to EAPI 2 usedeps

  09 Jan 2009; Rémi Cardona <remi@gentoo.org> openbox-3.4.7.2.ebuild,
  openbox-3.4.8_rc1.ebuild:
  Change virtual/xft dependency to x11-libs/libXft, bug 253771.

*openbox-3.4.8_rc1 (05 Dec 2008)

  05 Dec 2008; Ben de Groot <yngwin@gentoo.org> metadata.xml,
  +openbox-3.4.8_rc1.ebuild:
  Version bump, and adding lxde as co-maintainer

  12 Oct 2008; David Shakaryan <omp@gentoo.org> -openbox-3.4.6.1.ebuild,
  -openbox-3.4.7.1.ebuild:
  Remove older versions.

  10 Oct 2008; Raúl Porcel <armin76@gentoo.org> openbox-3.4.7.2.ebuild:
  alpha/sparc stable wrt #231450

  09 Oct 2008; Markus Meier <maekke@gentoo.org> openbox-3.4.7.2.ebuild:
  amd64/x86 stable, bug #231450

  05 Oct 2008; Jeroen Roovers <jer@gentoo.org> openbox-3.4.7.2.ebuild:
  Stable for HPPA (bug #231450).

  04 Oct 2008; Brent Baude <ranger@gentoo.org> openbox-3.4.7.2.ebuild:
  stable ppc64, bug 231450

  04 Oct 2008; Brent Baude <ranger@gentoo.org> openbox-3.4.7.2.ebuild:
  stable ppc, bug 231450

  22 Sep 2008; David Shakaryan <omp@gentoo.org> metadata.xml:
  Change herd from commonbox to desktop-wm.

  17 Jul 2008; David Shakaryan <omp@gentoo.org> openbox-3.4.7.2.ebuild:
  Better built_with_use expression; thanks to Mart Raudsepp. (bug #221819)

  11 Jul 2008; Jeroen Roovers <jer@gentoo.org> ChangeLog, Manifest:
  Fix Manifest (bug #231471, thanks to Kevin Mitchell).

  10 Jul 2008; David Shakaryan <omp@gentoo.org> openbox-3.4.7.2.ebuild:
  Check for X flag on pango; thanks to Mart Raudsepp. (bug #221819)

*openbox-3.4.7.2 (14 May 2008)

  14 May 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.7.2.ebuild:
  Version bump.

*openbox-3.4.7.1 (18 Apr 2008)

  18 Apr 2008; David Shakaryan <omp@gentoo.org> -openbox-3.4.7_pre2.ebuild,
  -openbox-3.4.7_pre3.ebuild, +openbox-3.4.7.1.ebuild:
  Version bump; remove older prerelease versions.

*openbox-3.4.7_pre3 (30 Mar 2008)

  30 Mar 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.7_pre3.ebuild:
  Version bump.

*openbox-3.4.7_pre2 (21 Mar 2008)

  21 Mar 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.7_pre2.ebuild:
  Version bump.

  20 Mar 2008; David Shakaryan <omp@gentoo.org> -openbox-3.4.4.ebuild,
  -openbox-3.4.6.ebuild:
  Remove older versions.

  19 Mar 2008; Jeroen Roovers <jer@gentoo.org> openbox-3.4.6.1.ebuild:
  Stable for HPPA (bug #213551).

  17 Mar 2008; Santiago M. Mola <coldwind@gentoo.org>
  openbox-3.4.6.1.ebuild:
  amd64 stable wrt bug #213551

  16 Mar 2008; Raúl Porcel <armin76@gentoo.org> openbox-3.4.6.1.ebuild:
  sparc stable wrt #213551

  16 Mar 2008; Tobias Klausmann <klausman@gentoo.org>
  openbox-3.4.6.1.ebuild:
  Stable on alpha, bug #213551

  16 Mar 2008; nixnut <nixnut@gentoo.org> openbox-3.4.6.1.ebuild:
  Stable on ppc wrt bug 213551

  16 Mar 2008; Brent Baude <ranger@gentoo.org> openbox-3.4.6.1.ebuild:
  Marking openbox-3.4.6.1 ppc64 for bug 213551

  16 Mar 2008; Dawid Węgliński <cla@gentoo.org> openbox-3.4.6.1.ebuild:
  Stable on x86 (bug #213551)

*openbox-3.4.6.1 (06 Feb 2008)

  06 Feb 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.6.1.ebuild:
  Version bump.

  03 Feb 2008; David Shakaryan <omp@gentoo.org> -openbox-3.4.5.ebuild:
  Remove older version.

*openbox-3.4.6 (03 Feb 2008)

  03 Feb 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.6.ebuild:
  Version bump.

*openbox-3.4.5 (07 Jan 2008)

  07 Jan 2008; David Shakaryan <omp@gentoo.org> +openbox-3.4.5.ebuild:
  Version bump.

  22 Nov 2007; David Shakaryan <omp@gentoo.org> -openbox-3.4.2.ebuild:
  Remove older version.

  21 Nov 2007; nixnut <nixnut@gentoo.org> openbox-3.4.4.ebuild:
  Stable on ppc wrt bug 199136

  21 Nov 2007; Jeroen Roovers <jer@gentoo.org> openbox-3.4.4.ebuild:
  Stable for HPPA (bug #199136).

  18 Nov 2007; Markus Rothe <corsair@gentoo.org> openbox-3.4.4.ebuild:
  Stable on ppc64; bug #199136

  18 Nov 2007; Raúl Porcel <armin76@gentoo.org> openbox-3.4.4.ebuild:
  alpha/sparc stable wrt #199136

  18 Nov 2007; Samuli Suominen <drac@gentoo.org> openbox-3.4.4.ebuild:
  amd64 stable wrt #199136

  18 Nov 2007; Christian Faulhammer <opfer@gentoo.org> openbox-3.4.4.ebuild:
  stable x86, bug 199136

  25 Aug 2007; David Shakaryan <omp@gentoo.org> -openbox-3.4.3.ebuild:
  Remove older version.

*openbox-3.4.4 (05 Aug 2007)

  05 Aug 2007; David Shakaryan <omp@gentoo.org> +openbox-3.4.4.ebuild:
  Version bump.

  30 Jul 2007; David Shakaryan <omp@gentoo.org> metadata.xml:
  Fix whitespace in metadata.

*openbox-3.4.3 (23 Jul 2007)

  23 Jul 2007; David Shakaryan <omp@gentoo.org> -openbox-3.4.2-r1.ebuild,
  +openbox-3.4.3.ebuild:
  Version bump; remove older version.

  19 Jul 2007; David Shakaryan <omp@gentoo.org> openbox-3.4.2-r1.ebuild:
  Mark new version testing; should have done so earlier.

*openbox-3.4.2-r1 (18 Jul 2007)

  18 Jul 2007; David Shakaryan <omp@gentoo.org> -files/openbox.desktop,
  openbox-3.4.2.ebuild, +openbox-3.4.2-r1.ebuild:
  Remove unneeded files; last commit should have had revision bump.

  18 Jul 2007; David Shakaryan <omp@gentoo.org> openbox-3.4.2.ebuild:
  Install docs into correct directory. (bug #185796)

  17 Jul 2007; David Shakaryan <omp@gentoo.org> -openbox-3.3.1.ebuild:
  Remove older version.

  17 Jul 2007; Peter Weller <welp@gentoo.org> openbox-3.4.2.ebuild:
  Stable on amd64 wrt bug 185012

  16 Jul 2007; nixnut <nixnut@gentoo.org> openbox-3.4.2.ebuild:
  Stable on ppc wrt bug 185012

  12 Jul 2007; Jeroen Roovers <jer@gentoo.org> openbox-3.4.2.ebuild:
  Stable for HPPA (bug #185012).

  12 Jul 2007; Raúl Porcel <armin76@gentoo.org> openbox-3.4.2.ebuild:
  alpha/x86 stable wrt #185012

  12 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.4.2.ebuild:
  Stable on sparc wrt #185012

  12 Jul 2007; Markus Rothe <corsair@gentoo.org> openbox-3.4.2.ebuild:
  Stable on ppc64; bug #185012

  12 Jul 2007; David Shakaryan <omp@gentoo.org> -openbox-3.4.0.ebuild:
  Remove older version.

*openbox-3.4.2 (11 Jun 2007)

  11 Jun 2007; David Shakaryan <omp@gentoo.org> +openbox-3.4.2.ebuild:
  Version bump.

*openbox-3.4.0 (05 Jun 2007)

  05 Jun 2007; David Shakaryan <omp@gentoo.org> +openbox-3.4.0.ebuild:
  Version bump; thanks to Bill Good for some improvements. (bug #179826)

  02 May 2007; David Shakaryan <omp@gentoo.org>
  -files/openbox-3.2-makefile.patch, -openbox-3.2-r2.ebuild,
  openbox-3.3.1.ebuild:
  Clean up latest version and remove older version.

  22 Apr 2007; Markus Rothe <corsair@gentoo.org> openbox-3.3.1.ebuild:
  Added ~ppc64

  22 Apr 2007; Bryan Østergaard <kloeri@gentoo.org> openbox-3.3.1.ebuild:
  Stable on Alpha, bug 175052.

  21 Apr 2007; Jeroen Roovers <jer@gentoo.org> openbox-3.3.1.ebuild:
  Stable for HPPA (bug #175052).

  19 Apr 2007; Christian Faulhammer <opfer@gentoo.org> openbox-3.3.1.ebuild:
  stable x86, bug 175052

  18 Apr 2007; nixnut <nixnut@gentoo.org> openbox-3.3.1.ebuild:
  Stable on ppc wrt bug 175052

  18 Apr 2007; <welp@gentoo.org> openbox-3.3.1.ebuild:
  Stable on amd64 wrt bug 175052

  18 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.3.1.ebuild:
  Stable on sparc wrt #175052

  07 Dec 2006; David Shakaryan <omp@gentoo.org>
  -files/openbox-3.3_rc2-64bit-property.patch,
  -files/openbox-3.3_rc2-asneeded.patch, -openbox-3.3_rc2-r2.ebuild:
  Remove older version.

  07 Dec 2006; Diego Pettenò <flameeyes@gentoo.org> openbox-3.3.1.ebuild:
  Add ~x86-fbsd keyword as per bug #156873. Thanks to Mark Kowarsky
  (mark_alec) for reporting.

  19 Oct 2006; David Shakaryan <omp@gentoo.org> metadata.xml:
  Add myself as maintainer.

  16 Oct 2006; David Shakaryan <omp@gentoo.org>
  -files/openbox-20060509-asneeded.patch,
  -files/openbox-20060509-gtkcolors.patch,
  -files/openbox-20060509-hideMenuHeader.patch,
  -files/openbox-20060509-pipedsplitgradient.patch:
  Remove patches for removed ebuilds.

*openbox-3.3.1 (09 Oct 2006)

  09 Oct 2006; gothgirl <gothgirl@gentoo.org> +openbox-3.3.1.ebuild,
  -openbox-20060509.ebuild, -openbox-20060509-r1.ebuild,
  -openbox-20060509-r2.ebuild:
  added revision 3.3.1 removed stale versions of snapshot

  15 Jul 2006; Bryan Østergaard <kloeri@gentoo.org> metadata.xml:
  Remove anarchy from metadata.xml as he's retired.

  09 Jun 2006; Jory A. Pratt <anarchy@gentoo.org> openbox-3.2-r2.ebuild:
  xinerama added to IUSE bug #135930

*openbox-20060509-r2 (04 Jun 2006)

  04 Jun 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/openbox-20060509-gtkcolors.patch, +openbox-20060509-r2.ebuild:
  gtk use color support

*openbox-20060509-r1 (01 Jun 2006)

  01 Jun 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/openbox-20060509-hideMenuHeader.patch,
  +files/openbox-20060509-pipedsplitgradient.patch,
  +openbox-20060509-r1.ebuild:
  revision for hiding menu header, and pipedslitgradient patch for more
  advanced themeing possibilities

*openbox-20060509 (10 May 2006)

  10 May 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/openbox-20060509-asneeded.patch, +openbox-20060509.ebuild:
  synced against cvs as 3.3 final is around the corner

  29 Apr 2006; Jory A. Pratt <anarchy@gentoo.org>
  +files/openbox-3.3_rc2-asneeded.patch, openbox-3.3_rc2-r2.ebuild:
  as-needed patch applied

  29 Apr 2006; Jory A. Pratt <anarchy@gentoo.org>
  -files/openbox-2.3.1-epist.patch, -files/openbox-2.3.1-nls-codeset.patch,
  -files/openbox-gcc.patch, metadata.xml, -openbox-3.2-r1.ebuild,
  openbox-3.2-r2.ebuild, -openbox-3.3_rc1-r1.ebuild,
  -openbox-3.3_rc1-r2.ebuild, -openbox-3.3_rc2.ebuild,
  -openbox-3.3_rc2-r1.ebuild:
  ported 3.2 to modular X, maintainership transfered to Anarchy from SuperLag

*openbox-3.3_rc2-r1 (26 Nov 2005)

  26 Nov 2005; <gothgirl@gentoo.org>
  +files/openbox-3.3_rc2-64bit-property.patch, +openbox-3.3_rc2-r1.ebuild:
  64bit property patch added

  29 Oct 2005; <gothgirl@gentoo.org> openbox-3.3_rc2.ebuild:
  pango support corrected wrt bug#106131

  17 Sep 2005; Aron Griffis <agriffis@gentoo.org> openbox-3.2-r2.ebuild:
  Mark 3.2-r2 stable on alpha

*openbox-3.3_rc2 (13 Sep 2005)

  13 Sep 2005; Brandon Low <lostlogic@gentoo.org> +openbox-3.3_rc2.ebuild:
  Long awaited bump, I hope that doins instead of cp doesn't break the
  below fix.

  24 Aug 2005; Diego Pettenò <flameeyes@gentoo.org>
  openbox-3.3_rc1-r2.ebuild:
  FreeBSD fixes: cp -a -> cp -pPR.

  01 May 2005; Guy Martin <gmsoft@gentoo.org> openbox-3.2-r2.ebuild:
  Stable on hppa.

  07 Apr 2005; Simon Stelling <blubb@gentoo.org> openbox-3.2-r2.ebuild:
  stable on amd64

*openbox-3.3_rc1-r2 (05 Apr 2005)

  05 Apr 2005; Brandon Low <lostlogic@gentoo.org> openbox-3.3_rc1-r1.ebuild,
  +openbox-3.3_rc1-r2.ebuild:
  Fix bug 87160

  30 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> openbox-3.2-r2.ebuild:
  Stable on ppc.

  29 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.2-r2.ebuild:
  Stable on sparc

*openbox-3.3_rc1-r1 (29 Mar 2005)

  29 Mar 2005; Brandon Low <lostlogic@gentoo.org> -openbox-3.3_rc1.ebuild,
  +openbox-3.3_rc1-r1.ebuild:
  use enable pango in 3.3_rc1

*openbox-3.3_rc1 (28 Mar 2005)

  28 Mar 2005; Brandon Low <lostlogic@gentoo.org> openbox-3.2-r2.ebuild,
  +openbox-3.3_rc1.ebuild:
  Bump for new _rc release (yay), and mark the previous ebuild stable

  06 Feb 2005; Aaron Kulbe <superlag@gentoo.org> openbox-3.2-r2.ebuild:
  Keyworded on all arches for -r2

*openbox-3.2-r2 (06 Feb 2005)

  06 Feb 2005; Aaron Kulbe <superlag@gentoo.org> +openbox-3.2-r2.ebuild:
  Adding startup notification support.  Bug # 79023

  05 Feb 2005; Aaron Kulbe <superlag@gentoo.org> metadata.xml:
  Changing maintainer from commonbox herd to SuperLag (Aaron Kulbe)

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

  18 Jul 2004; Brandon Hale <tseng@gentoo.org> -openbox-3.0-r1.ebuild,
  -openbox-3.0.ebuild, -openbox-3.1-r1.ebuild, -openbox-3.1.ebuild,
  -openbox-3.2.ebuild:
  Big cleanup.

  08 Jun 2004; Travis Tilley <lv@gentoo.org> openbox-3.2-r1.ebuild,
  openbox-3.2.ebuild:
  stable on amd64

  10 May 2004; Travis Tilley <lv@gentoo.org> openbox-3.2-r1.ebuild:
  added ~amd64 keyword

  09 May 2004; <SeJo@gentoo.org> openbox-3.2-r1.ebuild:
  added ~ppc keyword

  09 May 2004; Bryan Østergaard <kloeri@gentoo.org> openbox-3.2-r1.ebuild:
  Keyword ~alpha.

  07 May 2004; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.2-r1.ebuild:
  Stable on sparc

  06 May 2004; Brandon Hale <tseng@gentoo.org> -openbox-2.3.0.ebuild,
  -openbox-2.3.1.ebuild:
  Clear out old 2.x series.

*openbox-3.2-r1 (06 May 2004)

  06 May 2004; Brandon Hale <tseng@gentoo.org>
  +files/openbox-3.2-makefile.patch, +openbox-3.2-r1.ebuild:
  Apply Makefile fix from bug #50190.

  27 Apr 2004; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.2.ebuild:
  Keyworded sparc

  25 Apr 2004; Brandon Hale <tseng@gentoo.org> openbox-3.2.ebuild:
  Stable on x86.

*openbox-3.2 (17 Apr 2004)

  17 Apr 2004; Brandon Hale <tseng@gentoo.org> +openbox-3.2.ebuild:
  Version bump, the bounty goes again to Aaron Kulbe (SuperLag)

  24 Mar 2004; Chris Aniszczyk <zx@gentoo.org> openbox-3.1-r1.ebuild:
  Marking unstable on hppa ;)

  12 Mar 2004; Brandon Hale <tseng@gentoo.org> openbox-3.0-r1.ebuild,
  openbox-3.0.ebuild, openbox-3.1-r1.ebuild, openbox-3.1.ebuild:
  Cleaned up {R,}DEPEND, closes bug #44508

  07 Mar 2004; Brandon Hale <tseng@gentoo.org> openbox-1.2.4.ebuild,
  openbox-2.1.3-r4.ebuild:
  Out with the old...

*openbox-3.1-r1 (07 Mar 2004)

  07 Mar 2004; Brandon Hale <tseng@gentoo.org> openbox-3.1-r1.ebuild,
  files/openbox.desktop:
  Add .desktop file in preperation for new GDM, bug #40711

  03 Mar 2004; Gustavo Zacarias <gustavoz@gentoo.org> openbox-3.1.ebuild:
  stable on sparc

  29 Feb 2004; Brandon Hale <tseng@gentoo.org> openbox-3.1.ebuild:
  Keyword x86 for real this time.

  05 Jan 2004; Jason Wever <weeve@gentoo.org> openbox-3.0-r1.ebuild:
  Marked stable on sparc.

*openbox-3.1 (22 Dec 2003)

  22 Dec 2003; Brandon Hale <tseng@gentoo.org> openbox-3.1.ebuild:
  Version bump, thanks to SuperLag on freenode for his lightening fast report.

  14 Dec 2003; Lars Weiler <pylon@gentoo.org> openbox-3.0-r1.ebuild:
  Masked stable on ppc

  09 Dec 2003; Brandon Low <lostlogic@gentoo.org> openbox-3.0-r1.ebuild:
  ewan != ewarn

*openbox-3.0-r1 (07 Dec 2003)

  07 Dec 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0-r1.ebuild:
  Removing 3 suffix from binary and session files.

  06 Dec 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0.ebuild:
  Marking stable on x86.

  07 Nov 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0.ebuild:
  Added some more usable themes for users with limited vision.

  06 Nov 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0.ebuild:
  Bump and cleanup.

*openbox-3.0_rc4 (13 Oct 2003)

  13 Oct 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_rc2.ebuild,
  openbox-3.0_rc4.ebuild:
  Version bump.

*openbox-3.0_rc3 (09 Oct 2003)

  09 Oct 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta6.ebuild,
  openbox-3.0_rc1.ebuild, openbox-3.0_rc3.ebuild:
  Cleanup and bump.

*openbox-3.0_rc2 (03 Oct 2003)

  03 Oct 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_rc2.ebuild:
  Vesion bump.

*openbox-3.0_rc1 (29 Sep 2003)

  29 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta5.ebuild,
  openbox-3.0_rc1.ebuild:
  Version bump.

  26 Sep 2003; Jason Wever <weeve@gentoo.org> openbox-3.0_beta5.ebuild,
  openbox-3.0_beta6.ebuild:
  Added ~sparc keyword.

*openbox-3.0_beta6 (26 Sep 2003)

  26 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta3.ebuild,
  openbox-3.0_beta4.ebuild, openbox-3.0_beta6.ebuild:
  Version bump.

*openbox-3.0_beta5 (25 Sep 2003)

  25 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta5.ebuild:
  New release to fix some bugs, nothing fun :(

*openbox-3.0_beta4 (22 Sep 2003)

  22 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta4.ebuild:
  version bump, some config files + themes have moved once again, see
  openbox.org for details.

  20 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta1.ebuild,
  openbox-3.0_beta2.ebuild, openbox-3.0_beta3.ebuild:
  add missing dependency on libxml2, closes #29104

*openbox-3.0_beta3 (15 Sep 2003)

  15 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha6.ebuild,
  openbox-3.0_alpha7.ebuild, openbox-3.0_alpha8.ebuild,
  openbox-3.0_beta3.ebuild:
  Version bump + cleanup.

*openbox-3.0_beta2 (15 Sep 2003)

  11 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta2.ebuild:
  Added dependency on >=fontconfig-2

*openbox-3.0_beta2 (09 Sep 2003)

  09 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta2.ebuild:
  Version bump, again with the theme format changes =/

  05 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta1.ebuild:
  Small tweak to install a session file under /etc/X11/Sessions

*openbox-3.0_beta1 (03 Sep 2003)

  03 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_beta1.ebuild:
  Version bump.

  03 Sep 2003; Brandon Hale <tseng@gentoo.org> metadata.xml:
  Added metadata.xml

*openbox-3.0_alpha8 (03 Sep 2003)

  03 Sep 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha4.ebuild,
  openbox-3.0_alpha5.ebuild, openbox-3.0_alpha8.ebuild:
  Version bump + cleanup old builds

*openbox-3.0_alpha7 (31 Aug 2003)

  31 Aug 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha7.ebuild:
  Version bump!

  29 Aug 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha6.ebuild:
  Fixed dependencies to include glib and gtk+2 (for obconf)

*openbox-3.0_alpha6 (24 Aug 2003)

  24 Aug 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha6.ebuild:
  Version bump.

*openbox-3.0_alpha5 (20 Aug 2003)

  20 Aug 2003; Brandon Hale <tseng@gentoo.org> openbox-3.0_alpha5.ebuild:
  Version Bump, menu now split to its own file

*openbox-3.0_alpha4 (02 Aug 2003)

  02 Aug 2003; Seemant Kulleen <seemant@gentoo.org> openbox-3.0_alpha4.ebuild:
  Brandon Hale <brandon@inclusivetech.net> fixed up the ebuild that mkeadle
  wrote up for this alpha version of ob3

  18 Jul 2003; Seemant Kulleen <seemant@gentoo.org> openbox-2.3.0.ebuild:
  hacky fix to disable NLS being built in this version -- use the MYCONF to
  override. commonbox.eclass adjusted to accept this variable

  24 Jun 2003; Tavis Ormandy <taviso@gentoo.org> openbox-2.3.1.ebuild:
  marking ~alpha

  19 Jun 2003; mkeadle <mkeadle@gentoo.org> openbox-2.3.0.ebuild,
  openbox-2.3.1.ebuild, files/openbox-gcc.patch:
  adding minor patch to help with potential compiles against gcc3.3

  12 Jun 2003; <msterret@gentoo.org> openbox-2.1.3-r4.ebuild:
  fix Header

*openbox (20 May 2003)

  03 Jun 2003; mkeadle <mkeadle@gentoo.org> openbox*.ebuild :
  Moved xft usage to USE="truetype" test in commonbox.eclass

  20 May 2003; mkeadle <mkeadle@gentoo.org> openbox*.ebuild :
  Removed local --enable-xinerama flags and move to a USE test
  in commonbox.eclass.

*openbox-2.3.1 (07 May 2003)

  19 Jun 2003; mkeadle <mkeadle@gentoo.org> openbox-2.3.1.ebuild :
  2.3.1 goes back into ~unstable land. Font and NLS issues seem to
  be unresolvable. Program authors are focused on name major
  release.

  20 May 2003; mkeadle <mkeadle@gentoo.org> openbox-2.3.1.ebuild :
  Moving into stable x86 land.

  07 May 2003; mkeadle <mkeadle@gentoo.org> openbox-2.3.1.ebuild :
  New release (royal city). Was a slight issue with non-compile on
  gcc 2.95x but that's been fixed now. Cheers.

*openbox-2.3.0 (07 Feb 2003)

  18 Apr 2003; foser <foser@gentoo.org> openbox*.ebuild :
  Fixed xft dep to be virtual

  21 Mar 2003; Jason Wever <weeve@gentoo.org> openbox-2.3.0.ebuild:
  Added sparc to keywords.

  13 Feb 2003; Mark Guertin <gerk@gentoo.org> openbox-2.2.0-r1.ebuild
  openbox-2.2.0.ebuild openbox-2.2.1-r1.ebuild openbox-2.2.1-r2.ebuild
  openbox-2.2.1.ebuild openbox-2.2.2-r1.ebuild openbox-2.2.2-r2.ebuild
  openbox-2.2.2.ebuild openbox-2.2.3.ebuild openbox-2.3.0.ebuild :
  set ppc in keywords

  07 Feb 2003; Matt Keadle <mkeadle@gentoo.org> openbox-2.3.0.ebuild
  files/digest-openbox-2.3.0

  Bump to latest version. Even though this is considered stable by the
  ob team, it is marked ~x86 as it will not build without Xft2 (which
  is ~x86 itself).

*openbox-2.2.3 (02 Jan 2003)

  02 Jan 2003; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.3.ebuild
  files/digest-openbox-2.2.3

  Bump to latest version. 2.2.3 takes the 2.2.x series out of testing
  to make room for the 3.x branch. This release has officially been
  declared stable, and has been moved into unmasked x86 territory.

*openbox-2.1.3-r4 (10 Dec 2002)

  10 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.3-r4
  files/digest-openbox-2.1.3-r4

  Left out the fix for xftlsfonts on non-Xft2 systems.

*openbox-2.2.2-r2 (09 Dec 2002)

  09 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.2-r2.ebuild
  files/digest-openbox-2.2.2-r2

  Openbox 2.2.2 now depends on x11-libs/xft for Xft2.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

*openbox-2.2.2 (08 Dec 2002)

  08 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.2.ebuild
  files/digest-openbox-2.2.2

  Bumped to latest devel release

  08 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.2-r1.ebuild
  files/digest-openbox-2.2.2-r1

  Once again repaired to enable xftlsfonts.

*openbox-2.1.3-r2 (08 Dec 2002)

  08 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.3-r2.ebuild
  files/digest-openbox-2.1.3-r2

  Repared so xftlsfonts gets built instead of being stripped out.

  08 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.3-r3.ebuild
  files/digest-openbox-2.1.3-r3

  Once again repaired to enable xftlsfonts.

*openbox-2.2.1-r2 (08 Dec 2002)

  08 Dec 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.1-r2.ebuild
  files/digest-openbox-2.2.1-r2

  Fixed so that you don't lose antialiase text if you have Xft2 installed.

*openbox-2.2.1-r1 (25 Nov 2002)

  25 Nov 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.1-r1.ebuild
  files/digest-openbox-2.2.1-r1

  Cleaned out some unneeded empty directories and fixed so the button
  .xbm files were actually installed. At the moment, Openbox is the
  only *box that can use pixmaps as buttons, and the styles contained
  in commonbox-styles are not setup to use those pixmaps. New
  commonbox-styles release is forthcoming.

*openbox-2.1.3-r1 (25 Nov 2002)

  25 Nov 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.3-r1.ebuild
  files/digest-openbox-2.1.3-r1

  Fixes so NLS catalogs actually get installed to /usr/share/locale.
  They were not being installed at all before. A default epistrc file
  is now placed as /usr/share/commonbox/epistrc.default

  Removed installation of the xftlsfonts man page, since the xftlsfonts
  program is not currently being installed due to Xft2 issues.

*openbox-2.2.1 (20 Nov 2002)

  20 Nov 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.1.ebuild
  files/digest-openbox-2.2.1

  Version bump to latest development release. It starting to get interesting
  with Xft1/2. Fluxbox is now making use of Xft for antialiased text.
  However, fluxbox and openbox and using opposing versions of Xft.
  Currently our xft (2.x) ebuild is masked, which openbox needs/want. I can
  do some sedding to remove the compilation to utils/xftlsfonts but that
  can't become even a semi-permanent fix.

*openbox-2.1.3 (4 Nov 2002)

  4 Nov 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.3.ebuild
  files/digest-openbox-2.1.3 :

  version bump to latest stable release.

*openbox-2.2.0-r1 (25 Oct 2002)

  22 Apr 2003; Brandon Low <lostlogic@gentoo.org> openbox-2.1.2-r1.ebuild,
  openbox-2.1.3-r1.ebuild, openbox-2.1.3-r2.ebuild, openbox-2.1.3-r3.ebuild,
  openbox-2.1.3-r4.ebuild, openbox-2.1.3.ebuild, openbox-2.2.0-r1.ebuild,
  openbox-2.2.1-r1.ebuild, openbox-2.2.1-r2.ebuild, openbox-2.2.1.ebuild,
  openbox-2.2.2-r1.ebuild, openbox-2.2.2.ebuild:
  Change supersed dependencies

  25 Oct 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.0-r1.ebuild
  files/digest-openbox-2.2.0-r1 :

  Fix bug 9541, issues with xfree 4.2.1

*openbox-2.1.2-r1 (25 Oct 2002)

  05 Oct 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.2-r1.ebuild
  files/digest-openbox-2.1.2-r1 :

  Fix bug 9541, issues with xfree 4.2.1

*openbox-2.2.0 (23 Oct 2002)

  23 Oct 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.2.0.ebuild
  files/digest-openbox-2.2.0 :

  version bump to newest devel release

*openbox-2.1.2 (07 Oct 2002)

  07 Oct 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.2.ebuild
  files/digest-openbox-2.1.2 :

  version bump

*openbox-2.1.1 (25 Sep 2002)

  25 Sep 2002; Matt Keadle <mkeadle@gentoo.org> openbox-2.1.1.ebuild
  files/digest-openbox-2.1.1 :

  version bump, placed in slot "1" as this is the stable version now, also
  removed the -dev from the binary. Thanks for the ebuild Brad. New
  fieron theme has been merged into commonbox-styles.

*openbox-2.0.0-r2 (04 Sep 2002)

  04 Sep 2002; Seemant Kulleen <seemant@gentoo.org> openbox-2.0.0-r2.ebuild
  files/digest-openbox-2.0.0-r2 :

  menu is now again in /usr/share/commonbox/menu and nls stuff in
  /usr/share/locale.

  04 Sep 2002; Seemant Kulleen <seemant@gentoo.org> openbox-2.0.0-r1.ebuild
  files/digest-openbox-2.0.0-r1 :

  epist and xftlsfonts were not being installed.  This corrects that.
  Thanks to xOr and gentoo users reporting to him about him (hint:
  bugs.gentoo.org people!).

*openbox-2.0.0 (16 Aug 2002)

  16 Aug 2002; Seemant Kulleen <seemant@gentoo.org> openbox-2.0.0.ebuild
  files/digest-openbox-2.0.0 :

  Version bump for newest development openbox.  This one has xinerama
  support as well.

*openbox-1.2.5_beta20020714-r1 (18 jul 2002)
  24 Jul 2002; Mark Guertin <gerk@gentoo.org> :
  Added ppc to keywords

  18 Jul 2002; Spider <spider@gentoo.org> openbox-1.2.5_beta20020714-r1.ebuild :
  updated, now with AA
  make sure your ~/.openbox/rc has something like this in it to force AA on if you dont have a AA style :
  window.xft.font:        arial
  window.xft.size:        10
  menu.title.xft.font:    arial
  menu.title.xft.size:    11
  menu.title.xft.flags:   bold
  menu.frame.xft.font:    arial
  menu.frame.xft.size:    11
  toolbar.xft.font:       arial
  toolbar.xft.size:       11



*openbox-0.99.3-r1 (14 Jul 2002)

  14 Jul 2002; Seemant Kulleen <seemant@gentoo.org> openbox-0.99.3-r1.ebuild
  files/digest-openbox-0.99.3-r1 :

  Using the commonbox eclass now.

*openbox-1.2.4 (14 Jul 2002)

  14 Jul 2002; Seemant Kulleen <seemant@gentoo.org> openbox-1.2.4.ebuild
  files/digest-openbox-1.2.4 :

  Version bump for newest stable.  No xft/antialiasing.

*openbox-1.2.5_beta20020714 (14 Jul 2002)

  14 Jul 2002; Seemant Kulleen <seemant@gentoo.org>
  openbox-1.2.5_beta20020714.ebuild files/digest-openbox-1.2.5_beta20020714 :

  cvs snapshot of openbox.  has Xft/antialiasing built-in.

*openbox-1.2.3 (21 Jun 2002)

  21 Jun 2002; Seemant Kulleen <seemant@gentoo.org> openbox-1.2.3.ebuild
  files/digest-openbox-1.2.3 :

  Version bump to newest development, which upstream reports as being quite
  stable and of which they encourage the use.

*openbox-0.99.3 (25 May 2002)

  25 May 2002; Seemant Kulleen <seemant@gentoo.org> openbox-0.99.3.ebuild
  files/digest-openbox-0.99.3 :

  Version bump.

*openbox-0.99.1 (29 Apr 2002)

  29 Apr 2002; Seemant Kulleen <seemant@gentoo.org> openbox-0.99.1.ebuild
  ChangeLog files/digest-openbox-0.99.1 :

  A window manager that is like blackbox, but more open with respect to
  development.  It is, for the most part, compatible with blackbox
  applications.