summaryrefslogtreecommitdiff
blob: e41cab925b54c27762aa506b97d4f692dd466f52 (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
# ChangeLog for x11-wm/openbox
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/openbox/ChangeLog,v 1.210 2010/06/27 12:53:26 nixnut Exp $

  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.