summaryrefslogtreecommitdiff
blob: 24ed9efdae9d005d9b60cba04626131beaa9c4f6 (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
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
# ChangeLog for sys-apps/baselayout
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout/ChangeLog,v 1.254 2005/07/13 17:55:56 azarah Exp $

# See the gentoo-src rc-scripts ChangeLog for up-to-date release information:
# http://www.gentoo.org/cgi-bin/viewcvs.cgi/rc-scripts/ChangeLog?rev=HEAD&cvsroot=gentoo-src&content-type=text/vnd.viewcvs-markup

*baselayout-1.11.13 (13 Jul 2005)

  13 Jul 2005; Martin Schlemmer <azarah@gentoo.org>
  +baselayout-1.11.13.ebuild:
  Update version.

  10 Jul 2005; Daniel Ostrow <dostrow@gentoo.org>
  baselayout-1.11.12-r4.ebuild:
  Remove ibm use flag check as inittab is now takes from sysvinit.

  10 Jul 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.12-quote-EDITOR.patch,
  baselayout-1.11.12-r4.ebuild:
  Add patch from svn to fix EDITOR quoting.

  07 Jul 2005; Tom Gall <tgall@gentoo.org>
  baselayout-1.11.12-r4.ebuild:
  update for use of ibm and hvsi0 console

  27 Jun 2005; Tom Gall <tgall@gentoo.org>
  baselayout-1.11.12-r4.ebuild:
  slight tweak for hvc console systems. 

  19 Jun 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.12.0_alpha2-r1.ebuild:
  Fixed path to filefuncs.so on multilib systems thanks to Christophe Saout
  <christophe@saout.de>. Closes bug #87772.

  09 Jun 2005; Mike Frysinger <vapier@gentoo.org>
  baselayout-1.11.12-r4.ebuild:
  Stabilize for all arches.

  31 May 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.12-volume-order-etc-update.patch,
  baselayout-1.11.12-r4.ebuild:
  Add a small patch to help people who dont etc-update properly during their
  upgrade.

  29 May 2005; <solar@gentoo.org> baselayout-1.11.10-r7.ebuild,
  baselayout-1.11.11-r1.ebuild, baselayout-1.11.11-r2.ebuild,
  baselayout-1.11.11-r3.ebuild, baselayout-1.11.11.ebuild,
  baselayout-1.11.9-r1.ebuild, baselayout-1.12.0_alpha2-r1.ebuild,
  baselayout-1.12.0_alpha2.ebuild, baselayout-1.9.4-r6.ebuild,
  baselayout-1.9.4-r7.ebuild:
  - update baselayout to use libc expanded variable elibc_uclibc vs uclibc so
  USE=-* works

  27 May 2005; Roy Marples <uberlord@gentoo.org>
  files/baselayout-1.11.12-profile.patch:
  patch now applies cleanly

*baselayout-1.11.12-r4 (27 May 2005)

  27 May 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.12-is-net-fs.patch,
  +files/baselayout-1.11.12-profile.patch, +baselayout-1.11.12-r4.ebuild:
  fix is_net_up to work with what was mounted and not what will be mounted
  fixes #53104
  
  gfs is now a recognised network fs - fixes #93911
  
  removed bashisms from /etc/profile

*baselayout-1.11.12-r3 (26 May 2005)

  26 May 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.12-runscript-boot.patch,
  +baselayout-1.11.12-r3.ebuild:
  report ${myservice} instead of $0 when disallowing net scripts to work in
  the boot runlevel - fixes #91534

*baselayout-1.11.12-r2 (25 May 2005)

  25 May 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.12-ifconfig-cidr.patch,
  +baselayout-1.11.12-r2.ebuild:
  updated ESSID variables example in wireless.example - fixes #92469
  fix ifconfig to understand CIDR addresses - bug #93237

  22 May 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.12-swapon-quiet.patch,
  baselayout-1.11.12-r1.ebuild:
  Make initial swapon quiet #93143.

*baselayout-1.11.12-r1 (17 May 2005)

  17 May 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.12-exec-dev.patch, +baselayout-1.11.12-r1.ebuild:
  Fix mounting of /dev #92921 by Lachlan Pease.

*baselayout-1.11.12 (17 May 2005)

  17 May 2005; Mike Frysinger <vapier@gentoo.org>
  +baselayout-1.11.12.ebuild:
  Version bump.

  04 May 2005; Mike Frysinger <vapier@gentoo.org>
  baselayout-1.11.11-r3.ebuild, baselayout-1.12.0_alpha2-r1.ebuild:
  Install sysctl.conf with 0640 perms by default #91435.

  30 Apr 2005; Mike Frysinger <vapier@gentoo.org>
  baselayout-1.11.11-r3.ebuild, baselayout-1.12.0_alpha2-r1.ebuild:
  Move crypto-loop to util-linux and skel/bash files to bash.

*baselayout-1.11.11-r3 (29 Apr 2005)

  29 Apr 2005; Mike Frysinger <vapier@gentoo.org>
  -files/baselayout-1.11.10-bashrc.patch, baselayout-1.11.10-r7.ebuild,
  baselayout-1.11.11-r1.ebuild, baselayout-1.11.11-r2.ebuild,
  +baselayout-1.11.11-r3.ebuild:
  Move /etc/bashrc back to /etc/bash/bashrc to prep for #90488.

*baselayout-1.12.0_alpha2-r1 (26 Apr 2005)
*baselayout-1.11.11-r2 (26 Apr 2005)

  26 Apr 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.11-wpa_supplicant.patch,
  +files/baselayout-1.12.0-alpha2-netscripts-1.patch,
  +baselayout-1.11.11-r2.ebuild, +baselayout-1.12.0_alpha2-r1.ebuild:
  Add support for wpa_supplicant-0.4.0
  Hopefully fix an obscure iwconfig bug

*baselayout-1.11.11-r1 (21 Apr 2005)

  21 Apr 2005; Roy Marples <uberlord@gentoo.org>
  -baselayout-1.11.10-r3.ebuild, -baselayout-1.11.10-r4.ebuild,
  -baselayout-1.11.10-r5.ebuild, -baselayout-1.11.10-r6.ebuild,
  +baselayout-1.11.11-r1.ebuild, -baselayout-1.12.0_alpha1-r4.ebuild:
  fixed bashrc location
  
  punted old ebuilds

  21 Apr 2005; Roy Marples <uberlord@gentoo.org> baselayout-1.11.11.ebuild,
  baselayout-1.12.0_alpha2.ebuild:
  /mnt/floppy and /mnt/cdrom are only installed when USE flag build is set
  fixes 88835

*baselayout-1.11.11 (20 Apr 2005)

  20 Apr 2005; Roy Marples <uberlord@gentoo.org> +baselayout-1.11.11.ebuild,
  baselayout-1.12.0_alpha2.ebuild:
  Update /etc/conf.d/{net,wireless} to change domain_* to dns_domain_*,
  nameservers_* to dns_servers_* and searchdomains_* to dns_search_domains_*
  
  Added warning when using depracted variables iface_*, aliases_*, broadcasts_*,
  netmasks_*, inet6_*, ipaddr_*, iproute_*

*baselayout-1.12.0_alpha2 (19 Apr 2005)

  19 Apr 2005; Roy Marples <uberlord@gentoo.org>
  +baselayout-1.12.0_alpha2.ebuild:
  version bump for testing highly experimental network code 

  15 Apr 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  -files/rc-scripts-1.4.16-livecd.patch, baselayout-1.9.4-r6.ebuild,
  baselayout-1.9.4-r7.ebuild, baselayout-1.11.9-r1.ebuild,
  baselayout-1.11.10-r3.ebuild, baselayout-1.11.10-r4.ebuild,
  baselayout-1.11.10-r5.ebuild, baselayout-1.11.10-r6.ebuild,
  baselayout-1.11.10-r7.ebuild, baselayout-1.12.0_alpha1-r4.ebuild:
  Removing livecd-specific patches and all livecd-specific options as these
  have all been moved to livecd-tools.

*baselayout-1.11.10-r7 (11 Apr 2005)

  11 Apr 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.10-selinux-udev.patch,
  +baselayout-1.11.10-r7.ebuild:
  Add selinux/udev patch to shut spb up.

  07 Apr 2005; Tom Gall <tgall@gentoo.org>
  files/rc-scripts-1.4.16-livecd.patch, baselayout-1.9.4-r6.ebuild:
  downgrade hvc0 from vt320 to vt220, add hvc to inittab on ppc64 when use ibm
  use flag is on

*baselayout-1.11.10-r6 (01 Apr 2005)

  01 Apr 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.10-wireless.patch, +baselayout-1.11.10-r6.ebuild:
  Stopped setting ESSID in predown functions in iwconfig and wpa_supplicant
  as there is no guarantee that the current ESSID is the one we started with
  Also, we may not have an ESSID at all...

*baselayout-1.11.10-r5 (30 Mar 2005)

  30 Mar 2005; Mike Frysinger <vapier@gentoo.org>
  +files/baselayout-1.11.10-bashrc.patch, +baselayout-1.11.10-r5.ebuild:
  Move /etc/bash/bashrc to /etc/bashrc.

*baselayout-1.12.0_alpha1-r4 (23 Mar 2005)
*baselayout-1.11.10-r4 (24 Mar 2005)

  23 Mar 2005; Roy Marples <uberlord@gentoo.org>
  files/baselayout-1.11.10-bridge.patch,
  +files/baselayout-1.12.0_alpha1-iwconfig.patch,
  +baselayout-1.11.10-r4.ebuild, +baselayout-1.12.0_alpha1-r4.ebuild:
  version bump to remove iwconfig.orig

  23 Mar 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  files/rc-scripts-1.4.16-livecd.patch:
  Updated livecd patch to include better ppc64 serial console support.

*baselayout-1.12.0_alpha1-r3 (23 Mar 2005)
*baselayout-1.11.10-r3 (23 Mar 2005)

  23 Mar 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.10-bridge.patch,
  +files/baselayout-1.12.0_alpha1-bridge.patch, +baselayout-1.11.10-r3.ebuild,
  +baselayout-1.12.0_alpha1-r3.ebuild:
  bridge stops removing IP addresses from bridge ports.
  iwconfig no longer tries to get an ESSID from non-wireless interfaces.
  ifconfig no longer errors when deleting addresses on a non-existant
  interface.

  16 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.12.0_alpha1-r2.ebuild:
  Stop defaulting WEP key to [1] as it messes with ndiswrapper users.

*baselayout-1.12.0_alpha1-r2 (15 Mar 2005)

  15 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/baselayout-1.12.0_alpha1-export-myservice-for-critical.patch,
  +baselayout-1.12.0_alpha1-r2.ebuild:
  Export myservice when starting critical services, as its needed by
  some of the addons (dmcrypt for example).  Also fixup find argument
  order for findutils-4.2.18+.  Fix syntax touchups to init.d/modules
  clobbering return value.

*baselayout-1.11.10-r2 (14 Mar 2005)

  14 Mar 2005; Roy Marples <uberlord@gentoo.org>
  +files/baselayout-1.11.10-iwconfig-2.patch, +baselayout-1.11.10-r2.ebuild:
  Stop defaulting WEP key to [1] as it messes with ndiswrapper users

*baselayout-1.11.10-r1 (14 Mar 2005)

  14 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/baselayout-1.11.10-iwconfig.patch, +baselayout-1.11.10-r1.ebuild:
  Add patch for bug #84999.

*baselayout-1.12.0_alpha1-r1 (11 Mar 2005)

  11 Mar 2005; Martin Schlemmer <azarah@gentoo.org>
  +files/baselayout-1.12.0_alpha1-fixup-depends_awk.patch,
  +baselayout-1.12.0_alpha1-r1.ebuild:
  The system() stuff in *depends.awk should be dosystem(). Change the tar -l
  option to --one-file-system.

  10 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.11.10.ebuild, baselayout-1.11.9-r1.ebuild,
  baselayout-1.12.0_alpha1.ebuild:
  Fix logic to create /etc/env.d/04multilib on amd64/2004.3. This closes bug
  #82911.

*baselayout-1.12.0_alpha1 (10 Mar 2005)

  10 Mar 2005; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.10.ebuild,
  +baselayout-1.12.0_alpha1.ebuild:
  Don't apply 1.11.9-r1 patches to 1.11.10, which already contains them. Add
  1.12.0_alpha1 for baselayout developers only

*baselayout-1.11.10 (10 Mar 2005)

  10 Mar 2005; Aron Griffis <agriffis@gentoo.org>
  +baselayout-1.11.10.ebuild:
  Bump to 1.11.10 ... might this be golden for stabilization? I guess we will
  soon know

  01 Mar 2005; <solar@gentoo.org> baselayout-1.11.8-r3.ebuild,
  baselayout-1.11.9-r1.ebuild, baselayout-1.9.4-r6.ebuild,
  baselayout-1.9.4-r7.ebuild:
  - baselayout now provide itself as virtual/baselayout so ebuilds don't have to
  hard DEPEND/RDEPEND on the standard baselayout.

  25 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  files/rc-scripts-1.4.16-livecd.patch:
  Updated livecd patch to have bashlogin source .bashrc and .bash_profile, if
  they exist.

  24 Feb 2005; Chris PeBenito <pebenito@gentoo.org>
  files/sysvinit-2.84-selinux1.patch:
  Fix paths in selinux patch to permanently fix #77101, since libselinux no
  longer statically #define's them

  24 Feb 2005; Chris Gianelloni <wolf31o2@gentoo.org>
  files/rc-scripts-1.4.16-livecd.patch:
  Updated livecd patch to allow for 19200 baud on serial console and also to
  export CDBOOT when cdroot=

  06 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.11.9-r1.ebuild:
  Changing the 04multilib logic to be "(is more than one api) or (libdir isn't
  lib)".

  06 Feb 2005; Mike Frysinger <vapier@gentoo.org>
  baselayout-1.11.9-r1.ebuild:
  Dont install the 04multilib file if it only contains default lib paths ...
  thats just silly.

  03 Feb 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.11.9-r1.ebuild:
  Keep lib32 in LDPATH if the dir exists and it's not a libdir. Otherwise
  people switching from lib32 -> lib amd64 profiles will get tripped up.

*baselayout-1.11.9-r1 (31 Jan 2005)

  31 Jan 2005; Mike Frysinger <vapier@gentoo.org>
  +files/rc-scripts-1.6.9-checkfs-lvm.patch,
  +files/rc-scripts-1.6.9-domainname.patch,
  +files/rc-scripts-1.6.9-ifconfig.patch, +baselayout-1.11.9-r1.ebuild:
  Version bump to fix #80183 (ifconfig debug) / #80206 (lvm logic error) / 
  #80174 (domainname quote fix) / #80189 (don't install X related dirs).

*baselayout-1.11.9 (30 Jan 2005)

  30 Jan 2005; Mike Frysinger <vapier@gentoo.org> +baselayout-1.11.9.ebuild:
  Version bump.

*baselayout-1.11.8-r3 (16 Jan 2005)

  16 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.11.8-r2.ebuild, +baselayout-1.11.8-r3.ebuild:
  Revision bump to fix missing net.modules.d in some configurations. -- bug
  #78258.  Removed ~ppc64 from KEYWORDS.  ppc64 people, check what this does
  on fresh installs (ie.  use it in catalyst).  I don't believe it will work
  right with your current profiles because you are using 'lib' when you should
  be using lib64 for your libdir.

  16 Jan 2005; Markus Rothe <corsair@gentoo.org> baselayout-1.11.8-r2.ebuild:
  Added ~ppc64 to KEYWORDS

  15 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.11.8-r2.ebuild, baselayout-1.9.4-r7.ebuild:
  Added support for hackish profiles that symlink lib to lib64.

  14 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  baselayout-1.9.4-r7.ebuild:
  Stable for 2005.0.

*baselayout-1.9.4-r7 (13 Jan 2005)

  13 Jan 2005; Aron Griffis <agriffis@gentoo.org>
  +baselayout-1.9.4-r7.ebuild:
  backport multilib patch from 1.11.8-r2 to 1.9.4-r7 for the sake of amd64
  livecds; marked ~amd64 momentarily until tested

*baselayout-1.11.8-r2 (12 Jan 2005)

  12 Jan 2005; Jeremy Huddleston <eradicator@gentoo.org>
  -baselayout-1.11.8-r1.ebuild, +baselayout-1.11.8-r2.ebuild:
  Nobody was in #-base, and this fix was important, so doing so now. 1)
  Setting to ~amd64 only as that was what was mentioned in the CL and
  discussed on #-base, but the ebuild had all archs for some reason. 2)
  s/libdirs/${libdirs}/ in the for loop.

  12 Jan 2005; Aron Griffis <agriffis@gentoo.org>
  baselayout-1.11.8-r1.ebuild:
  chown /lib/rcscripts to root so it doesn't get installed as the portage
  user; thanks to Eradicator for catching this

*baselayout-1.11.8-r1 (12 Jan 2005)

  12 Jan 2005; Aron Griffis <agriffis@gentoo.org>
  +baselayout-1.11.8-r1.ebuild:
  Add eradicator's latest multilib patch for amd64. This ebuild is marked
  ~amd64 only, but the changes should roll forward for all arches in 1.11.9

*baselayout-1.11.8 (15 Dec 2004)

  15 Dec 2004; Mike Frysinger <vapier@gentoo.org> +baselayout-1.11.8.ebuild:
  Version bump.

  06 Dec 2004; Mike Frysinger <vapier@gentoo.org>
  baselayout-1.11.7-r2.ebuild:
  Fix /lib vs /lib64 logic.

*baselayout-1.11.7-r2 (04 Dec 2004)

  04 Dec 2004; Aron Griffis <agriffis@gentoo.org>
  +files/rc-scripts-1.6.7-dhclient.patch,
  +files/rc-scripts-1.6.7-udhcpc.patch, -baselayout-1.11.7-r1.ebuild,
  +baselayout-1.11.7-r2.ebuild:
  Various fixes for /lib/rcscripts/net.modules.d/helpers.d #73327. Thanks to
  Benoit Boissinot for the patches

*baselayout-1.11.7-r1 (04 Dec 2004)

  04 Dec 2004; Mike Frysinger <vapier@gentoo.org>
  +files/rc-scripts-1.6.7-fix-runscript.patch, +baselayout-1.11.7-r1.ebuild:
  Fix runscript.sh so people can run /etc/init.d/ scripts again.

*baselayout-1.11.7 (03 Dec 2004)

  03 Dec 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.10.3.ebuild,
  -baselayout-1.10.4.ebuild, -baselayout-1.11.5.ebuild,
  +baselayout-1.11.7.ebuild, -baselayout-1.9.4-r3.ebuild,
  -baselayout-1.9.4-r4.ebuild, -baselayout-1.9.4-r5.ebuild:
  Update to rc-scripts-1.6.7. This will hopefully be the 1.11.x release that
  we can mark stable in a few days

*baselayout-1.11.6-r1 (08 Nov 2004)

  08 Nov 2004; Aron Griffis <agriffis@gentoo.org>
  +baselayout-1.11.6-r1.ebuild, -baselayout-1.11.6.ebuild:
  bump to -r1 (no changes to ebuild) to push out helpers.d update

  08 Nov 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.6.ebuild:
  Add installation of /lib/rcscripts/net.modules.d/helpers.d

*baselayout-1.11.6 (08 Nov 2004)

  08 Nov 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.11.4.ebuild,
  +baselayout-1.11.6.ebuild:
  Update to rc-scripts-1.6.6

*baselayout-1.11.5 (01 Nov 2004)

  01 Nov 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.11.5.ebuild:
  Update to rc-scripts-1.6.5: Fix problems related to depscan/envupdate
  caching. Add the 'lo' option to RC_NET_STRICT_CHECKING to resolve bug #29225.
  Lots of net-scripts bug-fixes.  See rc-scripts ChangeLog for more details

*baselayout-1.11.4 (25 Oct 2004)

  25 Oct 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.11.3.ebuild,
  +baselayout-1.11.4.ebuild:
  Update to rc-scripts-1.6.4: Fix net-scripts problems related to module
  loading and alias management. Fix some bugs related to /dev and fsck. See
  rc-scripts ChangeLog for details

  23 Oct 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.3.ebuild:
  Use rc-scripts-1.4.16-livecd.patch for baselayout-1.11.x until patch is
  applied to rc-scripts in cvs

*baselayout-1.11.3 (23 Oct 2004)

  23 Oct 2004; Aron Griffis <agriffis@gentoo.org>
  -baselayout-1.11.2.ebuild, +baselayout-1.11.3.ebuild:
  Update to rc-scripts-1.6.3 (see rc-scripts ChangeLog)

*baselayout-1.9.4-r6 (22 Oct 2004)

  22 Oct 2004; Chris Gianelloni <wolf31o2@gentoo.org>
  +files/rc-scripts-1.4.16-livecd.patch, +baselayout-1.9.4-r6.ebuild:
  Changed from using mingetty to using bashlogin on the livecd. This only
  affects livecd-functions,sh, so moving straight to stable.

  21 Oct 2004; Mike Frysinger <vapier@gentoo.org> baselayout-1.11.2.ebuild:
  Dont install a lot of old symlinks anymore #27082.

  19 Oct 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.4-r5.ebuild:
  stable everywhere

*baselayout-1.9.4-r5 (16 Oct 2004)

  16 Oct 2004; Aron Griffis <agriffis@gentoo.org>
  +files/rc-scripts-1.4.16-splash.patch, +baselayout-1.9.4-r5.ebuild:
  Add baselayout-1.9.4-r5 with splash patch from Spock for the sake of 2004.3;
  this version will need to go stable in a day or so. baselayout-1.11.x will
  go into testing and then stable post-release. baselayout-1.10.x will never
  go stable because there's no point switching networking setup twice

  13 Oct 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.2.ebuild:
  Remove rogue doexe that installed init-scripts to /

  13 Oct 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.2.ebuild:
  Use cp -P instead of doexe to install init-scripts to preserve symlinks

  13 Oct 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.2.ebuild:
  Provide warning in pkg_postinst when older /etc/init.d/net.eth* are found

*baselayout-1.11.2 (13 Oct 2004)

  13 Oct 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.11.1.ebuild,
  +baselayout-1.11.2.ebuild:
  Update to rc-scripts-1.6.2 with net-scripts changes and lots of bug fixes
  (see rc-scripts ChangeLog)

  06 Oct 2004; Mike Frysinger <vapier@gentoo.org> baselayout-1.10.3.ebuild,
  baselayout-1.10.4.ebuild, baselayout-1.11.1.ebuild,
  baselayout-1.9.4-r3.ebuild, baselayout-1.9.4-r4.ebuild:
  Change the permissions from 755 to 775 per #48016. Also referenced RedHat
  installs and they too use 755.

  29 Sep 2004; Mike Frysinger <vapier@gentoo.org> baselayout-1.10.3.ebuild,
  baselayout-1.10.4.ebuild, baselayout-1.11.1.ebuild,
  baselayout-1.9.4-r3.ebuild, baselayout-1.9.4-r4.ebuild:
  Dont install the nscd script anymore, let glibc do it #43076.

*baselayout-1.11.1 (29 Sep 2004)

  27 Sep 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.11.0.ebuild:
  Update to rc-scripts-1.6.1 with dm-crypt fixes (I hope).  Still package.masked

  20 Sep 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.11.0.ebuild:
  Stow our versions of critical files in /usr/share/baselayout so that quickpkg
  won't pick up personal files like /etc/passwd

*baselayout-1.11.0 (15 Sep 2004)

  15 Sep 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.11.0.ebuild:
  Update to 1.11.0 with new modular net-scripts thanks to Roy Marples. This
  update also includes the new dm-crypt support (bug 43146) and netmount fix
  (bug 64034). This release is pmasked for the moment so we can get wider
  testing on the net-scripts

  20 Aug 2004; Mike Frysinger <vapier@gentoo.org> baselayout-1.10.3.ebuild,
  baselayout-1.10.4.ebuild:
  Fix default runlevel generation. Seems the variable name was changed from foo
  to x, but not all instances of foo were changed over.  Also, the script was 
  checking for the files in /init.d/ instead of /etc/init.d/.

*baselayout-1.10.4 (18 Aug 2004)

  18 Aug 2004; Aron Griffis <agriffis@gentoo.org>
  -baselayout-1.10.1-r2.ebuild, -baselayout-1.10.2.ebuild,
  +baselayout-1.10.4.ebuild:
  Update to rc-scripts-1.5.3
  - Fix bug 60719 (request for better error messages from runscript) by
    allowing errors to show on the screen when they're encountered in
    wrap_rcscript
  - Apply Spock's bootsplash patch from bug 45784.  This moves most of
    the splash functionality out of baselayout.
  - Don't export PS1.  Continuation of bug 26951, comments 60-62.

*baselayout-1.9.4-r4 (11 Aug 2004)

  11 Aug 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.4-r3.ebuild,
  +baselayout-1.9.4-r4.ebuild:
  Backport amd64 changes to stable baselayout 1.9.x for initial multilib support
  #59710

*baselayout-1.10.3 (10 Aug 2004)

  10 Aug 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.10.3.ebuild:
  Include amd64 /lib64 patch from lv in bug 59710

*baselayout-1.10.2 (02 Aug 2004)

  02 Aug 2004; Aron Griffis <agriffis@gentoo.org>
  -baselayout-1.10.1-r1.ebuild, -baselayout-1.10.1.ebuild,
  +baselayout-1.10.2.ebuild, -baselayout-1.9.4-r2.ebuild:
  Update to rc-scripts-1.5.2
  - Related to bug 38955, don't set INPUTRC.  Instead patch bash so
    that it looks for /etc/inputrc automatically if ~/.inputrc is
    missing.  This is better than using INPUTRC since that will
    override even after the user creates ~/.inputrc.
  - Fix bug 54275: Don't set INFODIR.  The correct variable used by
    texinfo is INFOPATH, which is already set in 00basic.  Setting
    INFODIR is useless, and breaks a NetBSD cross compile from Gentoo
  - Fix bug 58805: net.eth0 should use bridge so that bridge
    interfaces are configured prior to net.br0 running
  - Fix bug 56856: Get rid of net.rej and integrate missing stuff to
    conf.d/net
  - Apply half of spock's patch in bug 45784: Check for
    conf.d/bootsplash instead of conf.d/bootsplash.conf
  - Fix bug 51351: Quote parsed output of /proc/filesystems to handle
    octal sequences in mountpoint such as encoded spaces (\040)
  - Fix bug 46680: Add cifs support to localmount and netmount.
    Thanks to Ronald Moesbergen for the patches
  - Fix bug 26952: Use /etc/bash/bashrc to setup PS1, testing $- to
    determine if shell is interactive.  The new system-wide bashrc is
    installed by bash-2.05b-r10
  - Fix bug 38743: strip leading and trailing spaces from variable
    values in genenviron.awk.  Thanks to Marius Mauch for the patch.
  - Fix bug 55576: swap words "start" and "stop" in runscript.sh error
    message

  27 Jul 2004; <agriffis@gentoo.org> baselayout-1.10.1-r1.ebuild,
  baselayout-1.10.1-r2.ebuild:
  Move util-linux back inside conditional since it pulls in a lot of dependencies

*baselayout-1.10.1-r2 (11 Jul 2004)

  11 Jul 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.10.1-r2.ebuild:
  - Get rid of ROOT trick which had the potential to break binary installs.
  - Make /sys directory on all installations, not just ppc, since it will be
    needed anywhere 2.6 is running.
  - Create default runlevel symlinks in pkg_postinst instead of src_install
    since it tests content of ${ROOT}. 
  - Create device nodes in pkg_postinst for the same reason. Don't call
	/sbin/init U in pkg_postinst since that is handled by the sysvinit ebuild
	now.

*baselayout-1.9.4-r3 (09 Jul 2004)

  09 Jul 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.4-r3.ebuild:
  Bump to -r3 to fix building of sulogin in catalyst stages

  01 Jul 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.10.1-r1.ebuild:
  Fix bug 55814: RDEPEND on sysvinit and util-linux regardless of
  USE=build since neither one requires a c++ compiler

*baselayout-1.10.1-r1 (29 Jun 2004)

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  +baselayout-1.10.1-r1.ebuild, baselayout-1.10.1.ebuild,
  -baselayout-1.8.11.ebuild, -baselayout-1.8.12.ebuild,
  -baselayout-1.8.6.13-r1.ebuild, -baselayout-1.8.6.13.ebuild,
  -baselayout-1.9.1.ebuild, -baselayout-1.9.4-r1.ebuild,
  baselayout-1.9.4-r2.ebuild, -baselayout-1.9.4.ebuild:
  Split sysvinit from baselayout.  Trim old ebuilds

*baselayout-1.10.1 (28 Jun 2004)

  28 Jun 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.10.ebuild,
  +baselayout-1.10.1.ebuild,
  - Fix dhcp in iface_start_ifconfig: It was re-using the variable
    ${i} which would result in a syntax error
  - Use vlan_IFACE instead of iface_IFACE_vlans in net.eth0 for more
    consistent vlan configuration.  Thanks to robbat2 in bug 55394 (not
    fully resolved)
  - Add example for checking if root filesystem is NFS-mounted via
    predown function in conf.d/net for bug 53104.  This might be better
    integrated at some point into net.eth0
  - Add http://dev.gentoo.org/~agriffis/rc-scripts/ as an
    alternative download point while the mirrors catch up

*baselayout-1.10 (26 Jun 2004)

  26 Jun 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.10.ebuild,
  baselayout-1.9.4-r2.ebuild:
  Update to rc-scripts-1.5.0
  - Fix bug 47659: support iproute2-style configuration.  Thanks to Dean
    Bailey for some fantastic patches, including documentation for
    conf.d/net
  - Fix bug 34607: provide examples for in conf.d/net for preup, postup,
    predown, postdown functions.  Also pay attention to return value
    from postdown (previously ignored)
  - Fix bug 25975: support adsl in net.eth0.  Thanks to Patrick McLean
    for the initial pass at the code.
  - Fix bug 34140: add --servicelist option to rc-status.  Thanks to
    Eldad Zack for the patch.
  - Fix bug 37418: fix order of LVM and RAID in checkfs.  Thanks to
    Raimondo Giammanco for the patch.

  25 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  baselayout-1.8.6.13-r1.ebuild, baselayout-1.8.6.13.ebuild:
  QA - fix use invocation

  15 Jun 2004; <solar@gentoo.org> baselayout-1.9.4-r2.ebuild:
  remove unneeded /etc/nsswitch.conf with USE=uclibc

  12 Jun 2004; Tom Gall <tgall@gentoo.org> baselayout-1.9.4-r2.ebuild:
  adding in /sys for ppc64 bug #52703

  06 Jun 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.4-r2.ebuild:
  Marking stable everywhere

*baselayout-1.9.4-r2 (06 Jun 2004)

  06 Jun 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.4-r2.ebuild:
  Update to rc-scripts-1.4.16: Only call generate-modprobe.conf with
  --assume-kernel if modules-update was called with --assume-kernel. This means
  that only catalyst has the dependency on module-init-tools, not everybody with
  the newer baselayout. This is ~arch at the moment, but should be marked stable
  within 24 hours or so

  04 Jun 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.4-r1.ebuild:
  Change module-init-tools-3.0-r2 DEPEND to RDEPEND

*baselayout-1.9.4-r1 (04 Jun 2004)

  04 Jun 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.4-r1.ebuild:
  Bump revision with DEPEND on >=sys-apps/module-init-tools-3.0-r2 to fix bug
  52999

  03 Jun 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.4.ebuild:
  Stable everywhere

*baselayout-1.9.4 (21 May 2004)

  21 May 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.9.3.ebuild,
  +baselayout-1.9.4.ebuild:
  Update to rc-scripts-1.4.15, which contains fixes for bug 51570 (typo/error on
  line 161 of /sbin/livecd-functions.sh) and bug 51626 (wrong var declaration in
  get_bootparam in /sbin/functions.sh).

  Fix pkg_postinst to write to ${ROOT}/etc/gentoo-release instead of
  ${D}/etc/gentoo-release (D'oh!)

*baselayout-1.9.3 (17 May 2004)

  17 May 2004; Aron Griffis <agriffis@gentoo.org> -baselayout-1.9.2.ebuild,
  +baselayout-1.9.3.ebuild:
  Update to rc-scripts-1.4.14, which contains an hppa console fix from gmsoft

*baselayout-1.9.2 (16 May 2004)

  16 May 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.2.ebuild:
  Update to rc-scripts-1.4.13, which contains Gustavo's livecd serial console
  fixes for sparc and hppa

  10 May 2004; Michael McCabe <randy@gentoo.org> baselayout-1.9.1.ebuild:
  Stable on s390

*baselayout-1.9.1 (10 May 2004)

  10 May 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.1.ebuild,
  -baselayout-1.9.0.ebuild:
  Update to rc-scripts-1.4.12, which fixes the following issues that
  were introduced in baselayout-1.9.0:
  - Fix bug 50434: The new version of start-stop-daemon changes
    directory to / by default unless --chdir is specified.  Revert
    this behavior to maintain working directory.  This fixes openvpn
    startup (probably among other things).  Thanks to Sven Wegener for
    the patch.
  - Fix bug 50448: Four days ago I changed bash loops to use the wrong
    conditional syntax in net.eth0.  Thanks to Sven Wegener for
    pointing out the problem and providing a patch.

  08 May 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.9.0.ebuild:
  Bump rc-scripts rev to 1.4.11-r1 because I accidentally packaged x86 .o files
  in the 1.4.11 release. This fixes bug 50430 (baselayout-1.9.0 won't build on
  non-x86 arch)

*baselayout-1.9.0 (07 May 2004)

  07 May 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.9.0.ebuild:
  Update to rc-scripts-1.4.11, which fixes the following issues:
  - Fix bug 20597: Skip RCS files when updating modules
  - Fix bug 49926: Add a --assume-kernel flag to modules-update.  This
    requires a companion patch in module-init-tools-3.0-r2 to handle the
    same flag in generate-modprobe.conf; this dependency won't be
    handled in the baselayout ebuild since it only affects livecd
    building.
  - Fix bug 34827: net.eth0 breaks when localized because the ifconfig
    output changes.  Wrap ifconfig in a function that overrides LC_ALL=C
  - Fix bug 48305: Provide a new network configuration variable
    ifconfig_fallback_eth0 which allows one to specify a fallback
    configuration in case DHCP fails.
  - Fix bug 50246: Give root an invalid password ("*" in /etc/shadow) in
    the default baselayout.  This prevents the first reboot after
    installation from having a blank password.
  - Fix bug 48595: Make sure $(id -u) is zero (root user) when running
    init scripts to avoid a lot of error messages.
  - Fix bug 44316: Use 0644 instead of 0640 for resolv.conf in net.ppp0
  - Fix bug 22686: Update to version 1.10.20 of Debian's start-stop-daemon 
    (contained in dpkg at http://packages.debian.org/testing/base/dpkg)
    which makes --nicelevel work right
  - In net.eth0, fix many instances of loops like "for ((i = 0; i < 100;
    i = i + 1))".  The problem here is that the middle comparison is
    being interpreted as a bash conditional, which means that it's doing
    string comparison by default.  It needs to be "i -lt 100"
  - Replace many lines of awk with two lines of grep in
    init.d/localmount
  
  In the baselayout ebuild, add some information prior to calling
  mkdirs.sh to alleviate the confusion around .keep warnings.  For
  example bug 50369

  05 May 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.8.12.ebuild:
  Fix bug 50108: Create /boot/boot symlink in pkg_postinst because sometimes
  /boot is a FAT filesystem.  When that is the case, then the symlink will
  fail.  Consequently, if we create it in src_install, then merge will fail.
  AFAIK there is no point to this symlink except for misconfigured grubs.

  03 May 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.8.12.ebuild:
  Mark 1.8.12 stable everywhere

  02 May 2004; Mike Frysinger <vapier@gentoo.org> :
  Do not install doc/man pages if build is in USE.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  baselayout-1.8.6.13-r1.ebuild, baselayout-1.8.6.13.ebuild:
  Add inherit eutils

  27 Apr 2004; Michael McCabe <randy@gentoo.org> baselayout-1.8.12.ebuild:
  Marked stable on s390

*baselayout-1.8.12 (25 Apr 2004)

  25 Apr 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.8.12.ebuild:
  - Fix bug 40987 (gentoo should be able to boot with an empty /dev)
    with patch from Spanky.  The patch avoids redirection to /dev/null
    when it doesn't exist; this was breaking /sbin/rc.
  - Fix bug 48629 (/sbin/rc fixups for udev) with patch from GregKH
  - Fix typos in sbin/rc: "try try mount" and "mount ... & >/dev/null"
    Also removed the errstr double-checking since the need for that is
    alleviated by these typo fixes.

  21 Apr 2004; <rac@gentoo.org> baselayout-1.8.11.ebuild:
  Add needed extra () to RDEPEND

  19 Apr 2004; Aron Griffis <agriffis@gentoo.org> baselayout-1.8.10.ebuild,
  baselayout-1.8.5.9.ebuild, baselayout-1.8.6.10-r1.ebuild,
  baselayout-1.8.6.12-r2.ebuild, baselayout-1.8.6.12-r3.ebuild,
  baselayout-1.8.6.12-r4.ebuild, baselayout-1.8.6.12-r5.ebuild,
  baselayout-1.8.6.8-r1.ebuild, baselayout-1.8.7.ebuild,
  baselayout-1.8.8.ebuild, baselayout-1.8.9.ebuild, files/MAKEDEV.8:
  Prune older ebuilds for bug 48353

*baselayout-1.8.11 (15 Apr 2004)

  15 Apr 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.8.11.ebuild:
  Update to rc-scripts-1.4.9:
  - Fix bug 47111 (severe depcache problems) with tons of help from
    dswhite42 and the rest of the crew in that bug.

*baselayout-1.8.10 (14 Apr 2004)

  14 Apr 2004; Aron Griffis <agriffis@gentoo.org> metadata.xml,
  +baselayout-1.8.10.ebuild:
  Update to rc-scripts-1.4.8:
  - Fix bug 47623 (error removing inet6 addresses) with patch from Vlad
    Yasevich
  
  Since this one-liner was the only change from 1.8.9, mark this version
  stable on all arches for 2004.1 release

*baselayout-1.8.9 (12 Apr 2004)

  12 Apr 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.8.9.ebuild:
  Update to rc-scripts-1.4.7:
  - Fix bug 47218 (net.eth0 broken for vlans), patch provided by Andy Dustman
  - Fix bug 47250 (depscan.sh fails to create /var/lib/init.d/*
    directories), patch provided by Terje Bergstrvm.

  Additionally clean up the baselayout ebuild, in particular remove
  confusing defaltmerge() and broken keepdir_mount(). Add kdir() and
  unkdir() functions which are a more complete hack to workaround bug
  9849, just until Jason Stubbs's portage patch is applied and
  available in stable-land.

*baselayout-1.8.8 (08 Apr 2004)

  08 Apr 2004; Aron Griffis <agriffis@gentoo.org>
  +files/sysvinit-2.84-selinux1.patch, +baselayout-1.8.8.ebuild:
  Update to rc-scripts-1.4.6 which contains checkroot patch for bug 38360. Fix a
  typo in Gustavoz's previous patch for serial console. Add selinux patch from
  bug 47139 to handle different versions of libselinux

*baselayout-1.8.7 (07 Apr 2004)

  07 Apr 2004; Aron Griffis <agriffis@gentoo.org> +baselayout-1.8.7.ebuild:
  Update to rc-scripts-1.4.4 with net.eth0 fixes and sparc fixes

  17 Mar 2004; Seemant Kulleen <seemant@gentoo.org>
  baselayout-1.8.6.13-r1.ebuild:
  fix for bug #44712 by Michael Sterret <mr_bones_@gentoo.org>

  03 Mar 2004; Mike Frysinger <vapier@gentoo.org> :
  Add gcc2.x compat patch #43097 by Tristan Henderson.

  28 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.13-r1.ebuild:
  Bug #43099.

*baselayout-1.8.6.13-r1 (26 Feb 2004)

  26 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.13-r1.ebuild:
  Make baselayout .tbz2 friendly, bug #42193.  Major cleanups.

  16 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.13.ebuild:
  Add missing -r switch to grpck.

  15 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.13.ebuild:
  Do not run grpconv if grpck do not return 0, bug #33282.

  08 Feb 2004; Brad House <brad_mssw@gentoo.org> baselayout-1.8.6.13.ebuild:
  ppc64 fixes

*baselayout-1.8.6.13 (08 Feb 2004)

  08 Feb 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.13.ebuild:
  Update version.  Mostly livecd/linux-2.6 updates.

  03 Feb 2004; Bartosch Pixa <darkspecter@gentoo.org>
  baselayout-1.8.6.12-r3.ebuild:
  set ppc in keywords

  01 Feb 2004; Brad House <brad_mssw@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild, baselayout-1.8.6.12-r3.ebuild,
  baselayout-1.8.6.12-r4.ebuild, baselayout-1.8.6.12-r5.ebuild:
  In catalyst, with USE=build and ROOT != / the ROOT/dev directory doesn't exist, so
  you MUST create it otherwise extracting the dev tarball to that directory will
  fail without stopping the ebuild

  25 Jan 2004; Chris PeBenito <pebenito@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild, baselayout-1.8.6.12-r3.ebuild,
  baselayout-1.8.6.12-r4.ebuild:
  Add sysvinit SELinux patch.

*baselayout-1.8.6.12-r5 (21 Jan 2004)

  21 Jan 2004; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.12-r5.ebuild, files/sysvinit-2.84-selinux.patch:
  Tweak livecd support. Add selinux patch from Chris PeBenito
  <pebenito@gentoo.org>.

  16 Jan 2004; Brad House <brad_mssw@gentoo.org>
  baselayout-1.8.6.12-r4.ebuild:
  livecd fixes

*baselayout-1.8.6.12-r4 (12 Jan 2004)

  12 Jan 2004; Brad House <brad_mssw@gentoo.org>
  baselayout-1.8.6.12-r4.ebuild:
  put a baselayout in for testing specifically for livecds. It is keyworded -*
  and has restrict=nomirror set, this will be updated as we fix more bugs

*baselayout-1.8.6.12-r3 (27 Dec 2003)

  27 Dec 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild, baselayout-1.8.6.12-r3.ebuild:
  Add some udev specific tweaks. Fix logic that deals with the unpacking of the
  device-node-tarball.

  14 Dec 2003; Brad House <brad_mssw@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild:
  baselayout fixes for catalyst stage builds

  15 Dec 2003; <spider@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.8-r1.ebuild:
  QA: fixing chown user.group to user:group, bug #35127

  14 Dec 2003; Brad House <brad_mssw@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.12-r2.ebuild,
  baselayout-1.8.6.8-r1.ebuild:
  stage binaries do not have proper /dev fs if you do not pass the proper
  MAKEDEV command. MAKEDEV does not yet support x86_64/amd64 therefore we must
  use the 'generic-i386' options. If we let it default to 'generic' MAKEDEV
  errors out b/c it internally doesn't support it. Open up /sbin/MAKEDEV with an
  editor if in doubt.

  10 Dec 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild:
  Update selinux check.

  30 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild:
  Fix format of calling chown, bug #34612.

*baselayout-1.8.6.12-r2 (26 Nov 2003)

  26 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.12-r2.ebuild:
  New release with new rc-scripts tarball.

*baselayout-1.8.6.12-r1 (26 Nov 2003)

  26 Nov 2003; Luca Barbato <lu_zero@gentoo.org>
  baselayout-1.8.6.12-r1.ebuild:
  Installs the initreq.h include, needed by newer pbbuttonsd

*baselayout-1.8.6.12 (11 Nov 2003)

  11 Nov 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.12.ebuild:
  New release.

  27 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.11.ebuild:
  Enable shadow groups, bug #31762.

  27 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild:
  Also do not remove real hosts for this ebuild.

  27 Oct 2003; Martin Holzer <mholzer@gentoo.org> baselayout-1.8.6.11.ebuild:
  Removing new hosts. Closes #32094

*baselayout-1.8.6.11 (14 Oct 2003)

  14 Oct 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.11.ebuild,
  baselayout-1.8.6.8-r1.ebuild:
  New version. Fixed keymap for sun (should be 'sunkeymap' and not 'sun'),
  Moved code that added '-static' to LDFLAGS to proper function, namely
  src_compile(). Fixed merge errors when /dev/pts and /dev/shm was mounted
  but not on devfs.

  09 Oct 2003; Alexander Gabert <pappy@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild:
  removed hardened-gcc flags again

  05 Oct 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.8-r1.ebuild:
  Fix $S.

  05 Oct 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.8-r1.ebuild,
  files/rc-scripts-1.4.2.9.tar.bz2, files/rc-scripts-1.4.3.10p1.tar.bz2,
  files/rc-scripts-1.4.3.8p1.tar.bz2:
  Move tarballs to mirrors.

  17 Sep 2003; Jon Portnoy <avenj@gentoo.org> baselayout-1.8.6.10-r1.ebuild :
  Added ia64 keywords.

  13 Sep 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild:
  Mark stable

  08 Sep 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.10.ebuild, baselayout-1.8.6.7.ebuild,
  baselayout-1.8.6.8-r1.ebuild, baselayout-1.8.6.9.ebuild,
  files/rc-scripts-1.4.3.10.tar.bz2, files/rc-scripts-1.4.3.7.tar.bz2,
  files/rc-scripts-1.4.3.9.tar.bz2:
  Fix RDEPEND to use a more simple form.  Cleanup old ebuilds.

*baselayout-1.8.6.10-r1 (08 Sep 2003)

  23 Sep 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild, baselayout-1.8.6.8-r1.ebuild:
  Add static support, bug #29295.

  08 Sep 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10-r1.ebuild, files/rc-scripts-1.4.3.10p1.tar.bz2:
  This update is a service release - I will get to all the open bugs in the next
  few days.

*baselayout-1.8.6.10 (04 Aug 2003)

  04 Aug 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.10.ebuild, files/rc-scripts-1.4.3.10.tar.bz2:
  New version - see ChangeLog in /usr/share/doc as always.

  23 Jul 2003; Olivier Crete <tester@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.7.ebuild, baselayout-1.8.6.8-r1.ebuild,
  baselayout-1.8.6.9.ebuild:
  Added lib64->lib symlinks for amd64

*baselayout-1.8.6.9 (17 Jul 2003)

  17 Jul 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.9.ebuild,
  files/rc-scripts-1.4.3.9.tar.bz2:
  New bugfix release - check ChangeLog in /usr/share/doc/$P for changes.

  15 Jul 2003; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.8.6.8-r1.ebuild:
  Add lastb symlink.

  15 Jul 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.9.ebuild,
  baselayout-1.8.6.7.ebuild, baselayout-1.8.6.8-r1.ebuild:
  Remove the ppp stuff, as they now ship with net-dialup/ppp.

*baselayout-1.8.6.8-r1 (21 May 2003)

  03 Aug 2003; Guy Martin <gmsoft@gentoo.org> baselayout-1.8.6.8-r1.ebuild:
  Added hppa to ARCH where serial console are enabled.

  06 Jul 2003; Guy Martin <gmsoft@gentoo.org> baselayout-1.8.6.8-r1.ebuild :
  Marked stable on hppa.

  06 Jul 2003; Joshua Kinard <kumba@gentoo.org> baselayout-1.8.6.8-r1.ebuild:
  Changed ~mips to mips in KEYWORDS

  24 Jun 2003; Aron Griffis <agriffis@gentoo.org>
  baselayout-1.8.6.8-r1.ebuild:
  Mark stable on alpha

  22 Jun 2003; Joshua Kinard <kumba@gentoo.org> baselayout-1.8.6.8-r1.ebuild:
  Changed ~sparc to sparc in KEYWORDS

  21 May 2003; Martin Schlemmer <azaraht@gentoo.org> Manifest, baselayout-1.8.6.8-r1.ebuild,
  files/rc-scripts-1.4.3.8p1.tar.bz2:
  Fix a bad bug that I missed, bug #21376.

*baselayout-1.8.6.8 (20 May 2003)

  20 May 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.8.ebuild,
  files/rc-scripts-1.4.3.8.tar.bz2 :
  Bugfix release.

*baselayout-1.8.6.7 (12 May 2003)

  12 May 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.7.ebuild,
  files/rc-scripts-1.4.3.7.tar.bz2:
  New release with lots of updates and fixes.

  28 Apr 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.6.ebuild :
  Some of the build images have MAKEDEV in /usr/sbin, and we called it with
  /usr/sbin/MAKEDEV, which is wrong since we moved it to /sbin.  This caused
  things to break, as we called /usr/sbin/MAKEDEV, and subsequent calls used
  the copy in /sbin, which is different versions.  Add a symlink in /usr/sbin
  to overwrite the invalide MAKEDEV, and call it via /sbin/MAKEDEV.  This
  should close bug #15299.

  28 Apr 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.6.ebuild :
  Fix docs installing to the wrong place (bug #20091), thanks to sharp eye of
  Matt Taylor <liverbugg@juno.com>.

*baselayout-1.8.6.6 (27 Apr 2003)

  27 Apr 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.6.ebuild :
  Update version.

*baselayout-1.8.5.9 (27 Apr 2003)

  27 Apr 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.9.ebuild :
  Add slocate group, bug #19604.

*baselayout-1.8.6.5 (07 Apr 2003)

  07 Apr 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.5.ebuild :
  New release.

  23 Mar 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.4-r1.ebuild :
  Fix the check for 'si::sysinit:/sbin/rc sysinit' in /etc/inittab to also
  update inittab if the line is commented, thanks to report form
  Norberto BENSA <nbensa@gmx.net>.

*baselayout-1.8.6.4-r1 (21 Mar 2003)

  24 Mar 2003; Brandon Low <lostlogic@gentoo.org>
  baselayout-1.8.6.4-r1.ebuild:
  Move a cd so that it gets done for all cases where it is needed

  21 Mar 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.4-r1.ebuild :
  Fix 'etc-update' to be 'env-update' as it *should* have been.  Tweak updating
  of /etc/conf.d/rc and /etc/inittab to resolve bug #17829, thanks to
  Jay Pfeifer <pfeifer@gentoo.org>.

  17 Mar 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.4.ebuild :
  Only run 'keepdir /usr/portage' if ${ROOT}/usr/portage do NOT exist, else we
  run into problems if it is a readonly NFS mount among others.

*baselayout-1.8.6.4 (16 Mar 2003)

  16 Mar 2003;  Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.4.ebuild :
  New release.

*baselayout-1.8.6.3 (09 March 2003)

  11 Mar 2003; Zach Welch <zwelch@gentoo.org> baselayout-1.8.5.5.ebuild,
  baselayout-1.8.5.8.ebuild, baselayout-1.8.6.2.ebuild,
  baselayout-1.8.6.3.ebuild:
  change sys-kernel/linux-headers to new virtual/os-headers

  09 March 2003;  Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.3.ebuild :
  New beta release; check ChangeLog in usual place for more info.

  20 Feb 2003; Zach Welch <zwelch@gentoo.org> baselayout-1.8.5.8.ebuild :
  Added arm to keywords.

  08 Feb 2003; Guy Martin <gmsoft@gentoo.org> baselayout-1.8.5.8.ebuild :
  Added hppa to keywords.

  22 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.8.ebuild :
  Mark stable.

*baselayout-1.8.6.2 (07 Jan 2003)

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  serial console for mips

  15 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.2.ebuild :

  Bugfixes for /var stuff.

  15 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.1.ebuild :

  New version with /var on seperate partition fixes ...

  07 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.0.ebuild :

  Make sure we only update /etc/conf.d/rc if the user do not have the new with
  'svcmount' stuff ...

*baselayout-1.8.6.0 (07 Jan 2003)


  07 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.6.0.ebuild :

  New alpha release that do not need tmpfs for caching dependencies.  Also
  RAID changes, etc.  Please make sure to update all ._cfg????_* files, else
  things might break ....  See ChangeLog in /usr/share/doc/$PF for more info.

*baselayout-1.8.5.8 (07 Jan 2003)

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  serial console for mips

  15 Jan 2003; Jason Wever <weeve@gentoo.org> baselayout-1.8.5.8.ebuild :

  Changed ~sparc keyword to sparc.

  07 Jan 2003; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.8.ebuild :

  Bugfix release; see ChangeLog in /usr/share/doc/$PF.

*baselayout-1.8.5.7 (24 Dec 2002)

  24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.7.ebuild :

  Minor bugfixes.

  18 Dec 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.5.ebuild :

  Bump to stable.

*baselayout-1.8.5.6 (18 Dec 2002)

  18 Dec 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.6.ebuild :

  Mips support among things.

  16 Dec 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.5.ebuild :

  Fix /usr/lib/X11 symlink.  Change gawk module to compile if
  /usr/include/awk/awk.h exists.

*baselayout-1.8.5.5 (09 Dec 2002)

  18 Jan 2003; Jan Seidel <tuxus@gentoo.org> :
  Fix mips specific stuff
  Added mips to keywords

  10 Dec 2002; Seemant Kulleen <seemant@gentoo.org>
  baselayout-1.8.5.5.ebuild :

  Removed references to sparc64 ARCH/KEYWORD as it is deprecated until we
  have a 64 bit userland implementation.

  09 Dec 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.5.ebuild :

  Add a 'keepdir /var/state', closing bug #11546.  Change console type for
  serial console (sparc) from 'linux' to 'vt100', closing bug #11551.

  Check /usr/share/doc/baselayout-1.8.5.5/ChangeLog.gz for details.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> :

  Changed sparc and ~sparc keywords.
 
*baselayout-1.8.5.4 (26 Nov 2002)

  26 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.4.ebuild :

  Check /usr/share/doc/baselayout-1.8.5.4/ChangeLog.gz for details.

*baselayout-1.8.5.3 (18 Nov 2002)

  18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.3.ebuild :

  Ok, new version again.  Fixes config files containing licenses, and a problem
  with the awk module on non-x86 arch's.  This should hopefully be the last release
  for a bit.

*baselayout-1.8.5.2 (18 Nov 2002)

  18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.2.ebuild :

  New version with super fast rc-envupdate.sh.

*baselayout-1.8.5.1 (18 Nov 2002)

  18 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.1.ebuild :

  Fix using /usr/bin/find in depscan.sh.

*baselayout-1.8.5 (17 Nov 2002)

  17 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.5.ebuild :

  New version that have depscan.sh using awk scripts to do the main work.
  This should improve speed a lot, and hopefully resolve bug #10548.

*baselayout-1.8.4.2 (5 Nov 2002)

  5 Nov 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.4.2.ebuild :

  Another minor bugfix release to resolve current major show stoppers.

  30 Oct 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.4.1.ebuild :

  Add poweroff symlink, closing bug #9857 thanks to
  Jose Fonseca <j_r_fonseca@yahoo.co.uk>.

*baselayout-1.8.4.1 (28 Oct 2002)

  28 Oct 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.4.1.ebuild :

  Bugfix release for 1.8.4.

*baselayout-1.8.4 (13 Oct 2002)

  20 Oct 2002; Seemant Kulleen <seemant@gentoo.org> *.ebuild :

  Changed unsite.nc.edu to sunsite.nc.edu  --- thanks to mg (abiword
  developer and gentoo user) -- mentioned it on irc to me.

  13 Oct 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.4.ebuild :
  Lots of fixes.  See ChangeLog.

*baselayout-1.8.3 (7 Sep 2002)

  7 Sep 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.3.ebuild :
  Get things ready for suid utmp stuff for xterms .. bug #7630.

  5 Sep 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.2.ebuild :
  Remove /etc/termcap.  Anything that needs it, should depend on
  sys-libs/libtermcap-compat.  Some cleanups; should have passwd and
  shadow back in CONTENTS.

  26 Aug 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.8.2.ebuild :
  Tweak DEPEND to depend on portage-2.0.23 or later.  Also remove the '!'
  depend on <sys-apps/gawk-3.1.0-r3 in favour of one that depend on
  >=sys-apps/gawk-3.1.0-r3 if "build" and "bootstrap" not in USE.  This
  should resolve bug #7018.

*baselayout-1.8.2 (25 Aug 2002)

  25 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
  New release, see included ChangeLog for changes.

*baselayout-1.8.1 (08 Aug 2002)

  08 Aug 2002; Martin Schlemmer <azarah@gentoo.org> :
  New release.  Adds many fixes/update.  Add /etc/termcap.

*baselayout-1.8.0 (17 July 2002)

  17 July 2002; Martin Schlemmer <azarah@gentoo.org> :
  Lots of bugfixes and updates.  Please see included ChangeLog in
  /usr/share/doc/baselayout-1.8.0/ChangeLog.gz for details.

*baselayout-1.7.9-r2 (14 July 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> baselayout-1.7.9-r2.ebuild :
  Added KEYWORDS.

*baselayout-1.7.9-r1 (13 May 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> baselayout-1.7.9.ebuild :
  Added KEYWORDS.

  14 Jul 2002; phoen][x <phoenix@gentoo.org> baselayout-1.7.9-r1.ebuild :
  Added KEYWORDS.

  13 May 2002; M.Schlemmer <azarah@gentoo.org> :

  Dont install /usr/sbin/run-crons anymore, as sys-apps/cronbase do it now.

*baselayout-1.7.9 (12 May 2002)

*baselayout-1.7.8-r1 (23 Apr 2002)

  14 Jul 2002; phoen][x <phoenix@gentoo.org> baselayout-1.7.8-r1.ebuild :
  Added KEYWORDS, SLOT.

  23 Apr 2002; M.Schlemmer <azarah@gentoo.org> :

  Remove /var/run/utmpx again.

*baselayout-1.7.8 (22 Apr 2002)

*baselayout-1.7.7 (5 Apr 2002)

  7 Apr 2002; M.Schlemmer <azarah@gentoo.org> :

  Move /etc/init.d/depscan.sh, /etc/init.d/runscript.sh and
  /etc/init.d/functions.sh to /sbin to ensure that they are updated correctly.

  Other minor bug fixes, check the Changelog.

*baselayout-1.7.6 (24 Mar 2002)

  24 Mar 2002; M.Schlemmer <azarah@gentoo.org> :

  As rc-scripts-1.3.1 was pretty much still in the works, "before" and "after"
  order deps was pretty broken.  This release fix this along with a few other
  minor bugfixes.

  24 Mar 2002; M.Schlemmer <azarah@gentoo.org> :

  baselayout-1.7.4* used copies of depscan.sh and functions.sh in ${FILESDIR} to
  fix problems, and this was forgotten to be taken out in 1.7.5*.

*baselayout-1.7.5-r1 (23 Mar 2002)

  23 Mar 2002; Daniel Robbins <drobbins@gentoo.org> : Jim Nutt pointed out that
  his /etc/inittab kept on getting overwritten after every new baselayout merge.
  Investigated and found many illegal things being done in pkg_postinst(), which
  are now hopefully fixed.

*baselayout-1.7.5 (23 Mar 2002)

  23 Mar 2002; Daniel Robbins <drobbins@gentoo.org> : New release with several
  rc-script bug fixes; see /usr/share/doc/baselayout-1.7.5/ChangeLog.gz for more
  info (this new baselayout includes rc-scripts-1.3.1)
  
  21 March 2002; M.Schlemmer <azarah@gentoo.org> :

  Update the pkg_postinst() stuff to use the build USE flag when doing stuff
  that really should not be done during bootstrap.

  Add support for the "bootstrap" USE flag.

  20 March 2002; Daniel Robbins <drobbins@gentoo.org> : fixed pkg_postinst()
  that was changing dirs to ${D}/dev instead of ${ROOT}/dev.  No rev bump.
  
  20 March 2002; Daniel Robbins <drobbins@gentoo.org> : tweaked ebuild to test
  for devfs mount by looking for /dev/.devfsd, not by catting /proc/mounts.
  Catting /proc/mounts can give inaccurate results if you're inside a chroot
  and your "outside" root has devfs enabled (which is normally the case,
  really, since the CD uses devfs).  This should fix a problem where device
  nodes don't exist after bootstrap, which causes the sys-devel/perl build to
  fail since it cats stuff to /dev/null. (causes obscure "missing seperator
  in makefile, line 613" error).  No rev bump for this fix.

*baselayout-1.7.4-r2 (11 March 2002)

  11 March 2002; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.7.4-r2.ebuild, functions.sh : Fix functions.sh using
  /usr/bin/basename for users that have /usr on seperate partition.

*baselayout-1.7.4-r1 (11 March 2002)

  11 March 2002; Martin Schlemmer <azarah@gentoo.org>
  baselayout-1.7.4-r1.ebuild, depscan.sh : Fix bash error if no service
  "provide" a virtual service.

*baselayout-1.7.4 (10 March 2002)

  6 March 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.3-r3.ebuild :

  Fix a bug where merging baselayout with 1.7.3-r1 already installed, would kill
  X when it was started with /etc/init.d/xdm.

  6 March 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.3-r2.ebuild :

  Fixed the respawning "startDM.sh" process.  Fixed the fsck of / when rebooting
  for the first time after baselayout merge.

  5 March 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.3-r1.ebuild :

  Update /etc/init.d/keymaps and /etc/init.d/consolefont to use the new
  sys-apps/kbd package.  More xdm fixes and safeguards in /sbin/rc.

  Added a "mkdir -p /etc/X11/" for if it do not exist.

*baselayout-1.7.3 (4 March 2002)

  4 March 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.3.ebuild :

  Add updated xdm scripts to handle the "dead keys" bug. They should move to
  the xfree package when tested fully.

  Other minor ajustments.

*baselayout-1.7.2 (3 March 2002)

  3 March 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.2.ebuild :

  Lots of updates and fixes, check /usr/share/doc/baselayout-1.7.2/ChangeLog
  for details.

*baselayout-1.7.1-r2 (25 Feb 2002)

  25 Feb 2002; Martin Schlemmer <azarah@gentoo.org> baselayout-1.7.1-r2.ebuild :

  Change devices to be created in ${D}/dev and not ${D}/lib/dev-state, as they
  are for use only when devfs is not used.

*baselayout-1.7.1-r1 (20 Feb 2002)

  20 Feb 2002; Daniel Robbins <drobbins@gentoo.org> baselayout-1.7.1-r1.ebuild:
  moved MAKEDEV device node creation to pkg_postinst() so that device nodes don't
  get recorded in CONTENTS.  Latest CVS Portage no longer records device nodes
  in CONTENTS since there's generally no point or clean way to unmerge them.

*baselayout-1.7.1 (6 Feb 2002)

  6 Feb 2002; M.Schlemmer <azarah@gentoo.org> baselayout-1.7.1.ebuild :

  Move rc-scripts.tar.bz2 to CVS.  Remove forcefull install of /etc/devfsd.conf.

*baselayout-1.7.0-r1 (1 Feb 2002)

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