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
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/xorg-x11-6.8.2-r2.ebuild,v 1.43 2005/07/09 01:16:43 vapier Exp $
# Set TDFX_RISKY to "yes" to get 16-bit, 1024x768 or higher on low-memory
# voodoo3 cards.
# Libraries which are now supplied in shared form that were not in the past
# include: libFS.so, libGLw.so, libI810XvMC.so, libXRes.so, libXfontcache.so,
# libXinerama.so, libXss.so, libXvMC.so, libXxf86rush.so, libfontenc.so,
# libxkbfile.so, libxkbui.so
# TODO
# 1 June 2005 <spyderous@gentoo.org>
# TARGET: none
# Consider building shared libraries only, when both are provided
# Combine find loops for "Creating fonts.scale files," "Generating
# fonts.dir files and "Generating Xft cache"
# <Mr_Bones_> the loop in pkg_postinst for removing Compose can probably
# be one line of bash expansion like rm -f ${ROOT}/usr/$(get_libdir)/
# X11/locale/{ja*|ko*|zh*}/Compose
# Clean up migration function
# - loop through lib* instead of repetition
# Fix direction of lib -> libdir symlink
# Generalize any functions that make sense to generalize (i.e., anything
# that might realistically see use elsewhere, or repetitively here)
inherit eutils flag-o-matic toolchain-funcs x11 linux-info multilib
# Make sure Portage does _NOT_ strip symbols. We will do it later and make sure
# that only we only strip stuff that are safe to strip ...
RESTRICT="nostrip"
# IUSE="gatos" disabled because gatos is broken on ~4.4 now (31 Jan 2004)
IUSE="3dfx 3dnow bitmap-fonts cjk debug dlloader dmx doc font-server
insecure-drivers ipv6 minimal mmx nls nocxx opengl pam sdk sse static
truetype-fonts type1-fonts uclibc xprint xv"
# IUSE_INPUT_DEVICES="synaptics wacom"
FILES_VER="0.6"
PATCH_VER="0.1.9"
XCUR_VER="0.3.1"
XFSFT_ENC_VER="0.1"
S=${WORKDIR}/xc
HOMEPAGE="http://xorg.freedesktop.org/"
# Misc patches we may need to fetch ..
X_PATCHES="http://dev.gentoo.org/~spyderous/${PN}/patchsets/${PV}/${P}-patches-${PATCH_VER}.tar.bz2
http://dev.gentoo.org/~cyfred/distfiles/${P}-patches-${PATCH_VER}.tar.bz2
mirror://gentoo/${P}-patches-${PATCH_VER}.tar.bz2"
GENTOO_FILES="http://dev.gentoo.org/~spyderous/${PN}/patchsets/${PV}/${P}-files-${FILES_VER}.tar.bz2
http://dev.gentoo.org/~cyfred/distfiles/${P}-files-${FILES_VER}.tar.bz2
mirror://gentoo/${P}-files-${FILES_VER}.tar.bz2"
SRC_URI="!minimal? ( mirror://gentoo/eurofonts-X11.tar.bz2 )
font-server? ( http://dev.gentoo.org/~cyfred/xorg/${PN}/patchsets/${PV}/xfsft-encodings-${XFSFT_ENC_VER}.tar.bz2 )
!minimal? ( mirror://gentoo/gentoo-cursors-tad-${XCUR_VER}.tar.bz2 )
nls? ( mirror://gentoo/gemini-koi8-u.tar.bz2 )
${GENTOO_FILES}
${X_PATCHES}
http://xorg.freedesktop.org/X11R${PV}/src-single/X11R${PV}-src.tar.bz2"
# http://xorg.freedesktop.org/X11R${PV}/src/X11R${PV}-src1.tar.gz
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src2.tar.gz
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src3.tar.gz
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src4.tar.gz
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src5.tar.gz
# doc? (
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src6.tar.gz
# http://xorg.freedesktop.org/X11R${PV}/src//X11R${PV}-src7.tar.gz
# )"
LICENSE="Adobe-X CID DEC DEC-2 IBM-X NVIDIA-X NetBSD SGI UCB-LBL XC-2
bigelow-holmes-urw-gmbh-luxi christopher-g-demetriou national-semiconductor
nokia tektronix the-open-group todd-c-miller x-truetype xfree86-1.0
MIT SGI-B BSD || ( FTL GPL-2 )"
SLOT="0"
KEYWORDS="amd64 arm hppa ~ia64 mips ~ppc ppc64 sparc x86"
DEPEND=">=sys-libs/ncurses-5.1
>=sys-libs/zlib-1.1.3-r2
>=sys-devel/flex-2.5.4a-r5
>=dev-libs/expat-1.95.3
>=media-libs/freetype-2.1.8
>=media-libs/fontconfig-2.1-r1
opengl? ( >=x11-base/opengl-update-2.2.0 )
!nocxx? ( >=x11-misc/ttmkfdir-3.0.9-r2 )
>=sys-apps/sed-4
sys-apps/util-linux
dev-lang/perl
media-libs/libpng
!<=app-emulation/emul-linux-x86-xlibs-1.2-r3
!virtual/xft
!virtual/x11"
# x11-libs/xft -- blocked because of interference with xorg's
RDEPEND="
>=sys-libs/zlib-1.1.3-r2
>=sys-devel/flex-2.5.4a-r5
>=dev-libs/expat-1.95.3
>=media-libs/freetype-2.1.8
>=media-libs/fontconfig-2.1-r1
opengl? ( >=x11-base/opengl-update-2.2.0 )
!nocxx? ( >=x11-misc/ttmkfdir-3.0.9-r2 )
media-libs/libpng
>=sys-libs/ncurses-5.1
!<=app-emulation/emul-linux-x86-xlibs-1.2-r3
!virtual/xft
!virtual/x11"
PDEPEND="x86? (
3dfx? ( >=media-libs/glide-v3-3.10 )
input_devices_synaptics? ( x11-misc/synaptics )
input_devices_wacom? ( x11-misc/linuxwacom )
)
alpha? (
3dfx? ( >=media-libs/glide-v3-3.10 )
)
!uclibc? ( x11-terms/xterm )"
PROVIDE="virtual/x11
opengl? virtual/opengl
opengl? virtual/glu
virtual/xft"
DESCRIPTION="An X11 implementation maintained by the X.Org Foundation"
pkg_setup() {
FILES_DIR="${WORKDIR}/files"
PATCHDIR="${WORKDIR}/patch"
EXCLUDED="${PATCHDIR}/excluded"
# Set up CFLAG-related things
cflag_setup
# See bug #35468, circular pam-X11 dep
check_pam
# Look for invalid/dangerous USE flags and combinations
check_use_combos
setup_multilib
# xfs user
if use font-server; then
enewgroup xfs 33
enewuser xfs 33 /bin/false /etc/X11/fs xfs
fi
}
src_unpack() {
unpack_all
patch_setup
do_patch
host_def_setup
use_specific_hacks
}
src_compile() {
build
}
src_install() {
install_everything
backward_compat_install
fix_permissions
# We zap our CFLAGS in the host.def file, as hardcoded CFLAGS can
# mess up other things that use xmkmf
zap_host_def_cflags
# EURO support
if ! use minimal; then
add_euro_support
fi
setup_standard_symlinks
if use opengl; then
fix_opengl_symlinks
fi
libtool_archive_install
compose_files_install
if use font-server; then
encode_xfsft_files
fi
if use nls; then
koi8_fonts_install
fi
etc_files_install
if use opengl; then
dynamic_libgl_install
fi
fix_libtool_libdir_paths "$(find ${D} -name *.la)"
cursor_install
strip_execs
if use minimal; then
minimal_install
fi
# TEMPORARY hack: should be patched in, if it's not already
# For Battoussai's gatos stuffs:
if use sdk; then
insinto /usr/$(get_libdir)/Server/include
doins ${S}/extras/drm/shared/drm.h
fi
xprint_install
config_files_install
}
pkg_preinst() {
# Do migration before anything else, so we do all the rest inside the
# symlink
# Get rid of "standard" symlinks
# We can't overwrite symlink with directory w/ $(mv -f)
[ -L ${ROOT}usr/$(get_libdir)/X11 ] \
&& rm ${ROOT}usr/$(get_libdir)/X11
[ -L ${ROOT}usr/include/X11 ] \
&& rm ${ROOT}usr/include/X11
[ -L ${ROOT}usr/include/GL ] \
&& rm ${ROOT}usr/include/GL
[ -L ${ROOT}usr/bin/X11 ] \
&& rm ${ROOT}usr/bin/X11
# Get rid of some apparent artifacts of migration
[ -L ${ROOT}usr/include/GL/GL ] \
&& rm ${ROOT}usr/include/GL/GL
[ -L ${ROOT}usr/include/X11/X11 ] \
&& rm ${ROOT}usr/include/X11/X11
[ -d ${ROOT}usr/share/fonts/fonts ] \
&& rm -rf ${ROOT}usr/share/fonts/fonts
# No need to do this, if it's already been done
# Also, it'll overwrite a ton of stuff because it won't realize /usr/X11R6
# is a symlink.
if [ ! -L "/usr/X11R6" ]; then
# Migrate stuff in /usr/X11R6 to /usr
local DIR DIRS
DIRS="bin include lib"
if [ "lib" != "$(get_libdir)" ]; then
DIRS="${DIRS} $(get_libdir)"
fi
for DIR in ${DIRS}; do
migrate /usr/X11R6/${DIR} /usr/${DIR}
done
# Can't do this in the other loop because of different start and end
migrate /usr/X11R6/man /usr/share/man
fi
update_config_files
cleanup_fonts
# See above comment for the same test
if [ ! -L "/usr/X11R6" ]; then
# Needs to happen after cleanup_fonts()
migrate /usr/X11R6/$(get_libdir)/X11/fonts /usr/share/fonts
# Get rid of symlinks so we can migrate /usr/X11R6 without dying when a
# symlink tries to copy to a dir
einfo "Preparing for /usr/X11R6 -> /usr migration..."
local LINK LINKS
LINKS="bin include lib man share/info"
if [ "lib" != "$(get_libdir)" ]; then
LINKS="${LINKS} $(get_libdir)"
fi
for LINK in ${LINKS}; do
if [ -L "${ROOT}/usr/X11R6/${LINK}" ]; then
rm -fv ${ROOT}/usr/X11R6/${LINK}
fi
done
einfo "Remaining symlinks in /usr/X11R6:"
find ${ROOT}/usr/X11R6/ -type l
# Woohoo, nothing in /usr/X11R6 after this
migrate /usr/X11R6 /usr
fi
move_app_defaults_to_etc
move_xkb_to_usr
# Run this even for USE=-opengl, to clean out old stuff from possible
# USE=opengl build
dynamic_libgl_preinst
}
pkg_postinst() {
env-update
if [ "${ROOT}" = "/" ]; then
font_setup
if use opengl; then
switch_opengl_implem
fi
fi
remove_old_compose_files
setup_tmp_files
print_info
}
pkg_postrm() {
fix_links
}
###############
# pkg_setup() #
###############
cflag_setup() {
# Set up CFLAGS
filter-flags "-funroll-loops"
ALLOWED_FLAGS="-fstack-protector -march -mcpu -mtune -O -O0 -O1 -O2 -O3 -Os"
ALLOWED_FLAGS="${ALLOWED_FLAGS} -pipe -fomit-frame-pointer"
ALLOWED_FLAGS="${ALLOWED_FLAGS} -momit-leaf-frame-pointer"
ALLOWED_FLAGS="${ALLOWED_FLAGS} -g -g0 -g1 -g2 -g3"
ALLOWED_FLAGS="${ALLOWED_FLAGS} -ggdb -ggdb0 -ggdb1 -ggdb2 -ggdb3"
# arch-specific section added by popular demand
case "${ARCH}" in
mips) ALLOWED_FLAGS="${ALLOWED_FLAGS} -mips1 -mips2 -mips3 -mips4 -mabi"
;;
# -fomit-frame-pointer known to break things and is pointless
# according to ciaranm
# And hardened compiler must be softened. -- fmccor, 20.viii.04
sparc) filter-flags "-fomit-frame-pointer" "-momit-leaf-frame-pointer"
if has_hardened && ! use dlloader; then
einfo "Softening gcc for sparc."
ALLOWED_FLAGS="${ALLOWED_FLAGS} -fno-pie -fno-PIE"
append-flags -fno-pie -fno-PIE
fi
if [[ ${ABI} == "sparc64" ]]; then
ALLOWED_FLAGS="${ALLOWED_FLAGS} -D__sparc_v9__ -D__linux_sparc_64__"
append-flags -D__sparc_v9__ -D__linux_sparc_64__
fi
;;
# gcc-3.3.2 causes invalid insn error
hppa ) replace-cpu-flags 2.0 1.0
;;
esac
# Recently there has been a lot of stability problem in Gentoo-land. Many
# things can be the cause to this, but I believe that it is due to gcc3
# still having issues with optimizations, or with it not filtering bad
# combinations (protecting the user maybe from themselves) yet.
#
# This can clearly be seen in large builds like glibc, where too aggressive
# CFLAGS cause the tests to fail miserbly.
#
# Quote from Nick Jones <carpaski@gentoo.org>, who in my opinion
# knows what he is talking about:
#
# People really shouldn't force code-specific options on... It's a
# bad idea. The -march options aren't just to look pretty. They enable
# options that are sensible (and include sse,mmx,3dnow when appropriate).
#
# The next command strips CFLAGS and CXXFLAGS from nearly all flags. If
# you do not like it, comment it, but do not bugreport if you run into
# problems.
#
# <azarah@gentoo.org> (13 Oct 2002)
strip-flags
}
check_pam() {
if use pam && best_version x11-base/${PN}; then
einfo "Previous ${PN} installation detected."
einfo "Enabling PAM features in ${PN}."
else
einfo "Previous ${PN} installation NOT detected."
einfo "Disabling PAM features in ${PN}."
einfo "You must remerge ${PN} to enable pam."
einfo "See http://bugs.gentoo.org/show_bug.cgi?id=35468."
fi
}
check_use_combos() {
if use static; then
# A static build disallows building the SDK.
# See config/xf86.rules.
if use sdk; then
die "The static USE flag is incompatible with the sdk USE flag."
fi
fi
if use dmx && use doc; then
die "The dmx and doc USE flags are temporarily incompatible and result in a dead build."
fi
# (#77949)
if use minimal && use doc; then
die "The minimal and doc USE flags are temporarily incompatible and result in a dead build."
fi
if use xv && ! use opengl; then
eerror "See http://bugs.gentoo.org/show_bug.cgi?id=67996"
eerror "The xv USE flag currently requires the opengl flag."
die "This is a known bug. Do not report it."
fi
if use opengl && ! use xv; then
eerror "See http://bugs.gentoo.org/show_bug.cgi?id=76936"
eerror "The opengl USE flag currently requires the xv flag."
die "This is a known bug. Do not report it."
fi
# Echo a message to the user about bitmap-fonts
if ! use bitmap-fonts; then
ewarn "Please emerge this with USE=\"bitmap-fonts\" to enable"
ewarn "75dpi and 100dpi fonts. Your GTK+-1.2 fonts may look"
ewarn "screwy otherwise"
ebeep 5
epause 10
fi
}
setup_multilib() {
# on amd64 we need /usr/lib64/X11/locale/lib to be a symlink
# created by the emul lib ebuild in order for adobe acrobat, staroffice,
# and a few other apps to work.
if ! has_multilib_profile; then
use amd64 && get_libdir_override lib64
fi
}
################
# src_unpack() #
################
unpack_all() {
# Unpack source and patches
ebegin "Unpacking ${PV} source"
unpack X11R${PV}-src.tar.bz2 > /dev/null
# unpack X11R${PV}-src{1,2,3,4,5}.tar.gz > /dev/null
eend 0
# if use doc; then
# ebegin "Unpacking documentation"
# unpack X11R${PV}-src{6,7}.tar.gz > /dev/null
# eend 0
# fi
ebegin "Unpacking Gentoo files and patches"
unpack ${P}-files-${FILES_VER}.tar.bz2 > /dev/null
unpack ${P}-patches-${PATCH_VER}.tar.bz2 > /dev/null
eend 0
if ! use minimal; then
# Unpack TaD's gentoo cursors
ebegin "Unpacking Gentoo cursors"
unpack gentoo-cursors-tad-${XCUR_VER}.tar.bz2 > /dev/null
eend 0
fi
# Unpack extra fonts stuff from Mandrake
ebegin "Unpacking fonts"
if use nls; then
unpack gemini-koi8-u.tar.bz2 > /dev/null
fi
unpack eurofonts-X11.tar.bz2 > /dev/null
if use font-server; then
unpack xfsft-encodings-${XFSFT_ENC_VER}.tar.bz2 > /dev/null
fi
eend 0
# Remove bum encoding
rm -f ${WORKDIR}/usr/share/fonts/encodings/urdunaqsh-0.enc
}
do_patch() {
# Bulk patching - based on patch name
# Will create excluded stuff once it's needed
cd ${WORKDIR}
EPATCH_SUFFIX="patch" \
epatch ${PATCHDIR}
cd ${S}
}
host_def_setup() {
HOSTCONF="config/cf/host.def"
ebegin "Setting up ${HOSTCONF}"
cd ${S}; cp ${FILES_DIR}/site.def ${HOSTCONF} \
|| die "host.def copy failed"
echo "#define XVendorString \"Gentoo (The X.Org Foundation ${PV}, revision ${PR}-${PATCH_VER})\"" \
>> ${HOSTCONF}
# Pending http://bugs.gentoo.org/show_bug.cgi?id=49038 and
# http://freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=600
#
# Makes ld bail at link time on undefined symbols
# Suggested by Mike Harris <mharris@redhat.com>
#echo "#define SharedLibraryLoadFlags -shared -Wl,-z,defs" \
# >> ${HOSTCONF}
# Enable i810 on x86_64 (RH #126687)
if use amd64; then
echo "#define XF86ExtraCardDrivers i810" >> ${HOSTCONF}
fi
# FHS install locations
echo "#define ManDirectoryRoot /usr/share/man" >> ${HOSTCONF}
echo "#define DocDir /usr/share/doc/${PF}" >> ${HOSTCONF}
echo "#define FontDir /usr/share/fonts" >> ${HOSTCONF}
echo "#define BinDir /usr/bin" >> ${HOSTCONF}
echo "#define IncRoot /usr/include" >> ${HOSTCONF}
# This breaks the case when $(SYSTEMUSRINCDIR) = $(INCDIR)
# See xc/include/Imakefile
echo "#define LinkGLToUsrInclude NO" >> ${HOSTCONF}
# /usr/X11R6/lib/X11
echo "#define LibDir /usr/$(get_libdir)/X11" >> ${HOSTCONF}
# /usr/X11R6/lib with exception of /usr/X11R6/lib/X11
echo "#define UsrLibDir /usr/$(get_libdir)" >> ${HOSTCONF}
# Make man4 and man7 stuff get 'x' suffix like everything else
# Necessary so we can install to /usr/share/man without overwriting
echo "#define DriverManDir \$(MANSOURCEPATH)4" >> ${HOSTCONF}
echo "#define DriverManSuffix 4x /* use just one tab or cpp will die */" \
>> ${HOSTCONF}
echo "#define MiscManDir \$(MANSOURCEPATH)7" >> ${HOSTCONF}
echo "#define MiscManSuffix 7x /* use just one tab or cpp will die */" \
>> ${HOSTCONF}
# Don't build xterm -- use external (#54051)
echo "#define BuildXterm NO" >> ${HOSTCONF}
# Xwrapper has been removed so we now need to use the set uid server
# again, this mustve happened somewhere after 4.3.0 in the development.
echo "#define InstallXserverSetUID YES" >> ${HOSTCONF}
echo "#define BuildServersOnly NO" >> ${HOSTCONF}
# Don't use /lib64 if $(get_libdir) != lib64
# Replaces 0181_all_4.3.0-amd64-nolib64.patch
if [ "$(get_libdir)" == "lib64" ]; then
echo "#define HaveLib64 YES" >> ${HOSTCONF}
sed -i '/^#define Freetype2LibDir/s:^.*$:#define Freetype2LibDir /usr/lib64:' ${HOSTCONF}
else
echo "#define HaveLib64 NO" >> ${HOSTCONF}
fi
# Set location of DRM source to be installed
echo "#define InstSrcDir ${ROOT}/usr/src/${PF}" >> ${HOSTCONF}
if [ "$(gcc-major-version)" -eq "3" ]; then
if use x86; then
# Should fix bug #4189. gcc 3.x have problems with
# -march=pentium4 and -march=athlon-tbird
# Seems fixed on 3.3 and higher
if [ "$(gcc-minor-version)" -le "2" ]; then
replace-cpu-flags pentium4 pentium3
replace-cpu-flags athlon athlon-tbird
fi
if [ "$(gcc-minor-version)" -eq "4" ]; then
if [ "$(gcc-micro-version)" -lt "4" ]; then
#to fix #57602 for now, thanks Spanky (broken sse2)
if test_flag -mno-sse2; then
append-flags -mno-sse2
fi
# (#75067) broken sse3
if test_flag -mno-sse3; then
append-flags -mno-sse3
fi
fi
fi
# Try a fix for #49310, see #50931 for more info. <spyderous>
if [ "$(is-flag -fomit-frame-pointer)" ]; then
replace-cpu-flags k6 k6-2 k6-3 i586
fi
fi
# Without this, modules breaks with gcc3
if [ "$(gcc-minor-version)" -eq "1" ]; then
append-flags "-fno-merge-constants"
append-flags "-fno-merge-constants"
fi
if [ "$(gcc-minor-version)" -eq "2" ]; then
if [ "$(gcc-micro-version)" -lt "2" ]; then
# Bug #12775 .. fails with -Os.
replace-flags "-Os" "-O2"
fi
elif [ "$(gcc-minor-version)" -lt "2" ]; then
# Bug #12775 .. fails with -Os.
replace-flags "-Os" "-O2"
fi
elif [ "$(gcc-major-version)" -lt "3" ]; then
# Bug #12775 .. fails with -Os.
replace-flags "-Os" "-O2"
fi
echo "#define CcCmd $(tc-getCC)" >> ${HOSTCONF}
echo "#define OptimizedCDebugFlags ${CFLAGS} GccAliasingArgs" >> ${HOSTCONF}
echo "#define OptimizedCplusplusDebugFlags ${CXXFLAGS} GccAliasingArgs" >> ${HOSTCONF}
if use static; then
echo "#define DoLoadableServer NO" >>${HOSTCONF}
else
einfo "Setting DoLoadableServer to YES."
echo "#define DoLoadableServer YES" >> ${HOSTCONF}
if use dlloader; then
einfo "Setting MakeDllModules to YES."
echo "#define MakeDllModules YES" >> ${HOSTCONF}
if has_hardened; then
echo "#define HardenedGccSpecs YES" >> ${HOSTCONF}
fi
else
einfo "Setting MakeDllModules to NO."
echo "#define MakeDllModules NO" >> ${HOSTCONF}
fi
fi
use_build debug XFree86Devel
use_build debug BuildDebug
use_build debug DebuggableLibraries
if ! use debug; then
# use less ram .. got this from Spider's makeedit.eclass :)
echo "#define GccWarningOptions -Wno-return-type -w" \
>> ${HOSTCONF}
fi
# Remove circular dep between pam and X11, bug #35468
# If pam is in USE and we have X11, then we can enable PAM
# if use pam && [ "$(best_version x11-base/xorg-x11)" ]
if [ "$(best_version x11-base/xorg-x11)" ]; then
# If you want to have optional pam support, do it properly ...
use_build pam HasPam
use_build pam HasPamMisc
fi
if use x86 || use alpha; then
# build with glide3 support? (build the tdfx_dri.o module)
if use 3dfx; then
echo "#define HasGlide3 YES" >> ${HOSTCONF}
fi
# This won't work unless we can disable building the tdfx stuff
# entirely :/
# use_build 3dfx HasGlide3
fi
if use x86; then
# optimize Mesa for architecture
use_build mmx HasMMXSupport
use_build 3dnow Has3DNowSupport
use_build sse HasSSESupport
fi
# optimize Mesa for architecture
if use amd64; then
use_build amd64 HasMMXSupport
use_build amd64 Has3DNowSupport
use_build amd64 HasSSESupport
fi
# Do we want the glx extension? This will turn off XF86DRI if it's off.
# DRI can't build if glx isn't built, so keep this below DRI define.
# Do this before hppa so they can turn DRI off
use_build opengl BuildGlxExt
use_build opengl BuildGLXLibrary
use_build opengl BuildXF86DRI
# Needs GL headers
use_build opengl BuildGLULibrary
if use mips; then
echo "#define XF86CardDrivers fbdev newport" >> ${HOSTCONF}
fi
# Make xv optional for more minimal builds
use_build xv BuildXvLibrary
use_build xv BuildXvExt
# Depends on X11/extensions/Xv.h
use_build xv BuildXF86RushExt
use_build xv BuildXF86RushLibrary
if use hppa; then
echo "#define DoLoadableServer NO" >> ${HOSTCONF}
echo "#define BuildXF86DRI NO" >> config/cf/host.def
echo "#undef DriDrivers" >> config/cf/host.def
echo "#define XF86CardDrivers fbdev" >> config/cf/host.def
echo "#define BuildXvExt YES" >> config/cf/host.def
fi
if use alpha; then
echo "#define XF86CardDrivers mga nv tga s3virge sis rendition \
i740 tdfx cirrus tseng fbdev \
ati vga v4l glint s3 vesa" >> ${HOSTCONF}
fi
if use ppc; then
echo "#define XF86CardDrivers mga glint s3virge sis savage trident \
chips tdfx fbdev ati DevelDrivers vga nv imstt \
XF86OSCardDrivers XF86ExtraCardDrivers" >> ${HOSTCONF}
fi
if use ppc64; then
echo "#define MakeDllModules YES" >> ${HOSTCONF}
echo "#define XF86VgaHw YES" >> ${HOSTCONF}
echo "#define XF86FBDevHw YES" >> ${HOSTCONF}
echo "#define XF86CardDrivers mga fbdev v4l ati vga nv" >> ${HOSTCONF}
fi
if use sparc; then
echo "#define XF86CardDrivers sunffb sunleo suncg6 suncg3 suncg14 \
suntcx sunbw2 glint mga tdfx ati savage vesa vga fbdev \
XF86OSCardDrivers XF86ExtraCardDrivers \
DevelDrivers" >> ${HOSTCONF}
if has_hardened && ! use dlloader; then
einfo "Softening the assembler so cfb modules will play nice with sunffb."
echo "#define AsCmd CcCmd -c -x assembler -fno-pie -fno-PIE" >> ${HOSTCONF}
echo "#define ModuleAsCmd CcCmd -c -x assembler -fno-pie -fno-PIE" >> ${HOSTCONF}
fi
if ( [ -e "${ROOT}/usr/src/linux" ] \
&& ! kernel_is "2" "6" ) \
|| [ "$(uname -r | cut -d. -f1,2)" != "2.6" ]; then
einfo "Building for kernels less than 2.6 requires special treatment."
echo "#define UseDeprecatedKeyboardDriver YES" >> ${HOSTCONF}
einfo "Avoid bug #46593 for sparc32-SMP with kernel 2.4.xx."
echo "/* Add a line to avoid bug #56593 on sparc32 */" >> \
programs/Xserver/hw/xfree86/drivers/ati/r128_driver.c
fi
fi
# The definitions for fontconfig
echo "#define UseFontconfig YES" >> ${HOSTCONF}
echo "#define HasFontconfig YES" >> ${HOSTCONF}
# Use the xorg Xft2 lib
echo "#define SharedLibXft YES" >> ${HOSTCONF}
# with USE="X doc' circular dep w/ virtual/ghostscript
# echo "#define HasGhostScript ${DOC}" >> ${HOSTCONF}
# Caused issues, basic docs aren't installed
use_build doc BuildLinuxDocPS
use_build doc BuildSpecsDocs
use_build doc BuildHtmlManPages
use_build doc InstallHardcopyDocs
# enable Japanese docs, optionally
use doc && use_build cjk InstallJapaneseDocs
# Native Language Support Fonts
use_build nls BuildCyrillicFonts
use_build nls BuildArabicFonts
use_build nls BuildGreekFonts
use_build nls BuildHebrewFonts
use_build nls BuildThaiFonts
if use nls; then
use_build cjk BuildCIDFonts
use_build cjk BuildJapaneseFonts
use_build cjk BuildKoreanFonts
use_build cjk BuildChineseFonts
fi
# Crappy bitmap fonts
use_build bitmap-fonts Build75DpiFonts
use_build bitmap-fonts Build100DpiFonts
# Type1 fonts
use_build type1-fonts BuildType1Fonts
# TrueType fonts
use_build truetype-fonts BuildTrueTypeFonts
# X Font Server
use_build font-server BuildFontServer
# Distributed Multiheaded X
use_build dmx BuildDmx
use_build insecure-drivers BuildDevelDRIDrivers
if use ipv6; then
# In case Gentoo ever works on a system with IPv6 sockets that don't
# also listen on IPv4 (see config/cf/X11.tmpl)
echo "#define PreferXdmcpIPv6 YES" >> ${HOSTCONF}
fi
use_build ipv6 BuildIPv6
if use minimal; then
# Don't build static libs
echo "#define ForceNormalLib NO" >> ${HOSTCONF}
# Turn back on needed ones
echo "#define NormalLibXau YES" >> ${HOSTCONF}
echo "#define BuildDPSLibraries NO" >> ${HOSTCONF}
echo "#define BuildClients NO" >> ${HOSTCONF}
# BuildClients doesn't catch things in xc/programs/Xserver
# Also had to add
# 9250_all_6.8.1.904-respect-xfree86configtools-setting.patch
echo "#define BuildXFree86ConfigTools NO" >> ${HOSTCONF}
echo "#define BuildLBX NO" >> ${HOSTCONF}
# Weird crap we don't need
echo "#define XF8_32Wid NO" >> ${HOSTCONF}
echo "#define XF8_32Bpp NO" >> ${HOSTCONF}
echo "#define XF8_16Bpp NO" >> ${HOSTCONF}
echo "#define XF24_32Bpp NO" >> ${HOSTCONF}
# Without nls, truetype-fonts, type1-fonts, we only build misc
# Now let's try to reduce what gets built in misc
# iso8859-1 has the "fixed" font
echo "#define BuildISO8859_2Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_3Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_4Fonts NO" >> ${HOSTCONF}
# 5 is cyrillic, 6 isn't in misc, 7 is greek, 8 is hebrew
echo "#define BuildISO8859_9Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_10Fonts NO" >> ${HOSTCONF}
# 11 is thai, 12 isn't in misc
echo "#define BuildISO8859_13Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_14Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_15Fonts NO" >> ${HOSTCONF}
echo "#define BuildISO8859_16Fonts NO" >> ${HOSTCONF}
echo "#define XnestServer NO" >> ${HOSTCONF}
echo "#define XVirtualFramebufferServer NO" >> ${HOSTCONF}
echo "#define XInputDrivers mouse keyboard" >> ${HOSTCONF}
# If you want more drivers built with minimal, file a bug
# -Donnie Berkholz <spyderous@gentoo.org>
if use x86; then
# Remove glint, tga, s3, s3virge, rendition, neomagic, i740,
# cirrus, tseng, trident, chips, apm, ark, cyrix, siliconmotion
# mga, nv, sis, tdfx, savage, GlideDriver, i386Drivers
# (nsc, i810), ati, DevelDrivers, via
# Leave vmware driver for testing minimal setups using VMWare
# XF86OSCardDrivers includes v4l and fbdev on linux
# DevelDrivers includes imstt and newport on x86
echo "#define XF86CardDrivers vmware vesa vga dummy \
XF86OSCardDrivers XF86ExtraCardDrivers" >> ${HOSTCONF}
# (#93339)
elif use sparc; then
echo "#define XF86CardDrivers vesa vga fbdev sunffb suncg6 \
sunleo" >> ${HOSTCONF}
fi
fi
# Ajax is the man for getting this going for us
echo "#define ProPoliceSupport YES" >> ${HOSTCONF}
# Make xprint optional
use_build xprint BuildXprint
# Build libXp even when xprint is off. It's just for clients, server
if ! use xprint; then
echo "#define BuildXprintLib YES" >> ${HOSTCONF}
fi
# End the host.def definitions here
eend 0
}
patch_setup() {
einfo "Excluding patches..."
# This patch is just plain broken. Results in random failures.
patch_exclude 0120*parallel-make
# Hardened patches (both broken)
patch_exclude 9960_all_4.3.0-exec-shield-GNU
patch_exclude 9961_all_4.3.0-libGL-exec-shield
# Xbox nvidia driver, patch is a total hack, tears apart xc/config/cf
# (#68726). Only apply when necessary so we don't screw other stuff up.
# 9990 is the driver, 9991 is xbox pci scanning (potentially useful)
if [ ! "${PROFILE_ARCH}" = "xbox" ]; then
patch_exclude 9990 9991
fi
# this patch comments out the Xserver line in xdm's config
# We only want it here
if ! use s390; then
patch_exclude 7500
fi
# if ! use gatos; then
# patch_exclude 9841_all_4.3.0-gatos-mesa
# fi
if use debug; then
patch_exclude 5901*acecad-debug
fi
# TDFX_RISKY - 16-bit, 1024x768 or higher on low-memory voodoo3's
if use 3dfx && [ "${TDFX_RISKY}" = "yes" ]; then
patch_exclude 5850
else
patch_exclude 5851
fi
# Glibc-specific patches to exclude for non-glibc systems
if use elibc_FreeBSD || use elibc_OpenBSD; then
patch_exclude 0700
fi
einfo "Done excluding patches."
}
use_specific_hacks() {
# uclibc lacks sinf and cosf
if use uclibc; then
sed -i -e 's:GLXCLIENTDIRS = glxinfo glxgears:GLXCLIENTDIRS = :' \
${S}/programs/Imakefile
fi
# Get rid of cursor sets other than core and handhelds, saves ~4MB
if use minimal; then
sed -i -e 's:SUBDIRS = redglass whiteglass handhelds:SUBDIRS = handhelds:' \
${S}/programs/xcursorgen/Imakefile
fi
cd ${S}
if use doc; then
# These are not included anymore as they are obsolete
local x
for x in ${S}/programs/Xserver/hw/xfree86/{XF98Conf.cpp,XF98Config}; do
if [ -f ${x} ]; then
sed -i '/Load[[:space:]]*"\(pex5\|xie\)"/d' ${x}
fi
done
fi
}
#################
# src_compile() #
#################
build() {
# If a user defines the MAKE_OPTS variable in /etc/make.conf instead of
# MAKEOPTS, they'll redefine an internal xorg Makefile variable and the
# xorg build will silently die. This is tricky to track down, so I'm
# adding a preemptive fix for this issue by making sure that MAKE_OPTS is
# unset. (drobbins, 08 Mar 2003)
unset MAKE_OPTS
einfo "Building xorg-x11..."
if use debug; then
chmod u+x ${S}/config/util/makeg.sh
FAST=1 ${S}/config/util/makeg.sh World WORLDOPTS="" \
|| die "debug make World failed"
else
FAST=1 emake World WORLDOPTS="" MAKE="make" || die "make World failed"
fi
if use nls; then
emake -C ${S}/nls MAKE="make" || die "nls build failed"
fi
}
#################
# src_install() #
#################
install_everything() {
unset MAKE_OPTS
einfo "Installing X.org X11..."
# gcc3 related fix. Do this during install, so that our
# whole build will not be compiled without mmx instructions.
if [ "$(gcc-version)" != "2.95" ] && use x86; then
make install MAKE="make" DESTDIR=${D} \
|| make CDEBUGFLAGS="${CDEBUGFLAGS} -mno-mmx" \
CXXDEBUGFLAGS="${CXXDEBUGFLAGS} -mno-mmx" \
install MAKE="make" DESTDIR=${D} || die "install failed"
else
make install MAKE="make" DESTDIR=${D} || die "install failed"
fi
if use sdk; then
einfo "Installing X.org X11 SDK..."
make install.sdk MAKE="make" DESTDIR=${D} || die "sdk install failed"
fi
if ! use minimal; then
einfo "Installing man pages..."
make install.man MAKE="make" DESTDIR=${D} || die "man page install failed"
einfo "Compressing man pages..."
prepman /usr
fi
if use nls; then
cd ${S}/nls
make MAKE="make" DESTDIR=${D} install || die "nls install failed"
fi
dodoc ${S}/RELNOTES
}
backward_compat_install() {
# Backwards compatibility for /usr/share move
dosym ../../share/fonts /usr/$(get_libdir)/X11/fonts
# Have the top-level libdir symlink made first, so real dirs don't get created
local DIR DIRS
if [ "lib" != "$(get_libdir)" ]; then
DIRS="${DIRS} $(get_libdir)"
fi
for DIR in ${DIRS}; do
dosym ../${DIR} /usr/X11R6/${DIR}
done
dosym ../../../share/doc/${PF} /usr/X11R6/$(get_libdir)/X11/doc
}
fix_permissions() {
# Fix permissions on locale/common/*.so
local x
for x in ${D}/usr/$(get_libdir)/X11/locale/$(get_libdir)/common/*.so*; do
if [ -f ${x} ]; then
fperms 0755 ${x/${D}}
fi
done
# Fix permissions on modules ...
for x in $(find ${D}/usr/$(get_libdir)/modules -name '*.o' -o -name '*.so'); do
if [ -f ${x} ]; then
fperms 0755 ${x/${D}}
fi
done
# Fix perms
if ! use minimal; then
fperms 755 /usr/$(get_libdir)/X11/xkb/geometry/sgi /usr/bin/dga
fi
}
zap_host_def_cflags() {
ebegin "Fixing $(get_libdir)/X11/config/host.def"
cp ${D}/usr/$(get_libdir)/X11/config/host.def ${T}
awk '!/OptimizedCDebugFlags|OptimizedCplusplusDebugFlags|GccWarningOptions/ {print $0}' \
${T}/host.def > ${D}/usr/$(get_libdir)/X11/config/host.def \
|| eerror "Munging host.def failed"
# theoretically, /usr/lib/X11/config is a possible candidate for
# config file management. If we find that people really worry about imake
# stuff, we may add it. But for now, we leave the dir unprotected.
eend 0
}
add_euro_support() {
ebegin "Adding Euro support"
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${D}/usr/$(get_libdir)" \
${D}/usr/bin/bdftopcf -t ${WORKDIR}/Xlat9-8x14.bdf | \
gzip -9 > ${D}/usr/share/fonts/misc/Xlat9-8x14-lat9.pcf.gz
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${D}/usr/$(get_libdir)" \
${D}/usr/bin/bdftopcf -t ${WORKDIR}/Xlat9-9x16.bdf | \
gzip -9 > ${D}/usr/share/fonts/misc/Xlat9-9x16-lat9.pcf.gz
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${D}/usr/$(get_libdir)" \
${D}/usr/bin/bdftopcf -t ${WORKDIR}/Xlat9-10x20.bdf | \
gzip -9 > ${D}/usr/share/fonts/misc/Xlat9-10x20-lat9.pcf.gz
eend 0
}
setup_standard_symlinks() {
# Standard symlinks
dodir /usr/{bin,include,$(get_libdir)}
dosym ../bin /usr/bin/X11
# Stop complains about "file or directory not existing"
dodir /usr/X11R6
dosym ../include /usr/X11R6/include
dosym ../../usr/$(get_libdir)/X11/xkb /etc/X11/xkb
# Some critical directories
if ! use minimal; then
keepdir /var/lib/xdm
dosym ../../../var/lib/xdm /etc/X11/xdm/authdir
fi
# Backwards compat, FHS, etc.
dosym ../../usr/X11R6/bin/Xorg /etc/X11/X
}
libtool_archive_install() {
if use opengl; then
# .la files for libtool support
insinto /usr/$(get_libdir)
# (#67729) Needs to be lib, not $(get_libdir)
doins ${FILES_DIR}/lib/*.la
fi
}
fix_libtool_libdir_paths() {
local dirpath
for archive in ${*} ; do
dirpath=$(dirname ${archive} | sed -e "s:^${D}::")
[[ ${dirpath::1} == "/" ]] || dirpath="/"${dirpath}
sed -i ${archive} -e "s:^libdir.*:libdir=\'${dirpath}\':"
done
}
compose_files_install() {
# Hack from Mandrake (update ours that just created Compose files for
# all locales)
local x
for x in $(find ${D}/usr/$(get_libdir)/X11/locale/ -mindepth 1 -type d); do
# make empty Compose files for some locales
# CJK must not have that file (otherwise XIM don't works some times)
case $(basename ${x}) in
C|microsoft-*|iso8859-*|koi8-*)
if [ ! -f ${x}/Compose ]; then
touch ${x}/Compose
fi
;;
ja*|ko*|zh*)
if [ -r ${x}/Compose ]; then
rm -f ${x}/Compose
fi
;;
esac
done
# Another hack from Mandrake -- to fix dead + space for the us
# international keyboard
local i
for i in ${D}/usr/$(get_libdir)/X11/locale/*/Compose; do
sed -i \
-e 's/\(<dead_diaeresis> <space>\).*$/\1 : "\\"" quotedbl/' \
-e "s/\(<dead_acute> <space>\).*$/\1 : \"'\" apostrophe/" ${i} \
|| eerror "sed ${i} failed"
done
}
encode_xfsft_files() {
# Yet more Mandrake
ebegin "Encoding files for xfsft font server"
dodir /usr/share/fonts/encodings
cp -a ${WORKDIR}/usr/share/fonts/encodings/* \
${D}/usr/share/fonts/encodings
for x in ${D}/usr/share/fonts/encodings/{.,large}/*.enc; do
if [ -f "${x}" ]; then
gzip -9 -f ${x} \
|| eerror "gzipping ${x} failed"
fi
done
eend 0
}
koi8_fonts_install() {
ebegin "Adding gemini-koi8 fonts"
cd ${WORKDIR}/ukr
gunzip *.Z || eerror "gunzipping gemini-koi8 fonts failed"
gzip -9 *.pcf || eerror "gzipping gemini-koi8 fonts failed"
cd ${S}
cp -a ${WORKDIR}/ukr ${D}/usr/share/fonts \
|| eerror "copying gemini-koi8 fonts failed"
eend 0
}
etc_files_install() {
insinto /etc/X11
# Install example config file
newins ${S}/programs/Xserver/hw/xfree86/xorg.conf xorg.conf.example
exeinto /etc/X11
# new session management script
doexe ${FILES_DIR}/chooser.sh
# new display manager script
doexe ${FILES_DIR}/startDM.sh
exeinto /etc/X11/Sessions
# doexe skips directories, so this should be safe
doexe ${FILES_DIR}/Sessions/*
insinto /etc/env.d
doins ${FILES_DIR}/10xorg
insinto /etc/X11/xinit
doins ${FILES_DIR}/xinitrc
if ! use minimal; then
exeinto /etc/X11/xdm
doexe ${FILES_DIR}/Xsession
exeinto /etc/init.d
newexe ${FILES_DIR}/xdm.start xdm
fi
if use font-server; then
insinto /etc/X11/fs
newins ${FILES_DIR}/xfs.config config
fi
if use pam; then
insinto /etc/pam.d
newins ${FILES_DIR}/xdm.pamd xdm
# Need to fix console permissions first
newins ${FILES_DIR}/xserver.pamd xserver
fi
if use font-server; then
newexe ${FILES_DIR}/xfs.start xfs
insinto /etc/conf.d
newins ${FILES_DIR}/xfs.conf.d xfs
fi
}
dynamic_libgl_install() {
# next section is to setup the dynamic libGL stuff
ebegin "Moving libGL and friends for dynamic switching"
dodir /usr/$(get_libdir)/opengl/${PN}/{lib,extensions,include}
local x=""
for x in ${D}/usr/$(get_libdir)/libGL.so* \
${D}/usr/$(get_libdir)/libGL.la \
${D}/usr/$(get_libdir)/libGL.a; do
if [ -f ${x} -o -L ${x} ]; then
# libGL.a cause problems with tuxracer, etc
mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/lib
fi
done
for x in ${D}/usr/$(get_libdir)/modules/extensions/libglx*; do
if [ -f ${x} -o -L ${x} ]; then
mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/extensions
fi
done
# glext.h added for #54984
for x in ${D}/usr/include/GL/{gl.h,glx.h,glxtokens.h,glext.h,glxext.h,glxmd.h,glxproto.h}; do
if [ -f ${x} -o -L ${x} ]; then
mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/include
fi
done
eend 0
}
cursor_install() {
# Make the core cursor the default. People seem not to like whiteglass
# for some reason.
dosed 's:whiteglass:core:' /usr/share/cursors/${PN}/default/index.theme
if ! use minimal; then
install_extra_cursors
fi
}
strip_execs() {
if use debug || has nostrip ${FEATURES}; then
ewarn "Debug build turned on by USE=debug"
ewarn "NOT stripping binaries and libraries"
else
local STRIP
if [ ! -z "${CBUILD}" ] && [ "${CBUILD}" != "${CHOST}" ]; then
STRIP=${CHOST}-strip
else
STRIP=strip
fi
einfo "Stripping binaries and libraries..."
# This bit I got from Redhat ... strip binaries and drivers ..
# NOTE: We do NOT want to strip the drivers, modules or DRI modules!
local x
for x in $(find ${D}/ -type f -perm +0111 -exec file {} \; | \
grep -v ' shared object,' | \
sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p'); do
if [ -f ${x} ]; then
# Dont do the modules ...
if [ "${x/\/usr\/$(get_libdir)\/modules}" = "${x}" ]; then
echo "$(echo ${x/${D}})"
${STRIP} ${x} || :
fi
fi
done
# Now do the libraries ...
for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/lib}/*.so.* \
$(get_libdir)/X11/locale/$(get_libdir)/common}/*.so.*; do
if [ -f ${x} ]; then
echo "$(echo ${x/${D}})"
${STRIP} --strip-debug ${x} || :
fi
done
fi
}
install_extra_cursors() {
# Install TaD's gentoo cursors
insinto /usr/share/cursors/${PN}/gentoo/cursors
doins ${WORKDIR}/cursors/gentoo/cursors/*
insinto /usr/share/cursors/${PN}/gentoo-blue/cursors
doins ${WORKDIR}/cursors/gentoo-blue/cursors/*
insinto /usr/share/cursors/${PN}/gentoo-silver/cursors
doins ${WORKDIR}/cursors/gentoo-silver/cursors/*
}
minimal_install() {
# Get rid of all unnecessary fonts (saves ~5.5 MB)
find ${D}/usr/share/fonts/misc/ -name '*.pcf.gz' \
-not -name '*6x13*' -not -name 'cursor.pcf.gz' -exec rm {} \;
# Woohoo, another 772K
rm -rf ${D}/usr/share/doc
}
xprint_install() {
# If we want xprint, save the init script before deleting /etc/rc.d/
# Requested on #68316
if use xprint; then
xprint_init_install
else
# delete xprint stuff
rm -f ${D}/etc/{init,profile}.d/xprint*
rmdir --ignore-fail-on-non-empty ${D}/etc/{init,profile}.d
fi
# Remove the /etc/rc.d nonsense -- not everyone is RedHat
rm -rf ${D}/etc/rc.d
}
xprint_init_install() {
# RH-style init script, we provide a wrapper
exeinto /usr/$(get_libdir)/misc
doexe ${D}/etc/init.d/xprint
rm -f ${D}/etc/init.d/xprint
# Install the wrapper
newinitd ${FILES_DIR}/xprint.init xprint
# patch profile scripts
sed -i -e "s:/bin/sh.*get_xpserverlist:/usr/$(get_libdir)/misc/xprint get_xpserverlist:g" ${D}/etc/profile.d/xprint*
}
config_files_install() {
# Fix default config files after installing fonts to /usr/share/fonts
sed -i -e "s:/usr/X11R6/$(get_libdir)/X11/fonts:/usr/share/fonts:g" \
-e "s:/usr/$(get_libdir)/X11/fonts:/usr/share/fonts:g" \
-e "s:/usr/$(get_libdir)/fonts:/usr/share/fonts:g" \
${D}/etc/X11/xorg.conf.example
if use font-server; then
sed -i "s:/usr/X11R6/$(get_libdir)/X11/fonts:/usr/share/fonts:g" \
${D}/etc/X11/fs/config
fi
# Work around upgrade problem where people have
# Option "XkbRules" "xfree86" in their config file
sed -i "s:^.*Option.*"XkbRules".*$::g" ${D}/etc/X11/xorg.conf.example
}
fix_opengl_symlinks() {
# Remove invalid symlinks
local LINK
for LINK in $(find ${D}/usr/$(get_libdir) \
-name libGL.* -type l); do
rm -f ${LINK}
done
# Create required symlinks
dosym libGL.so.1.2 /usr/$(get_libdir)/libGL.so
dosym libGL.so.1.2 /usr/$(get_libdir)/libGL.so.1
}
#################
# pkg_preinst() #
#################
# We need a symlink /usr/X11R6/dir -> /usr/dir so all the packages
# whose files we move don't lose track of them. As such, we need
# _absolutely nothing_ in /usr/X11R6/dir so we can make such a symlink.
# Donnie Berkholz <spyderous@gentoo.org> 20 October 2004
#
# Takes two arguments -- starting location and ending location
migrate() {
einfo "Migrating from ${1} to ${2}..."
# Strip trailing slash
if [ -z "${1##*/}" ]; then
set -- ${1%/} ${2}
fi
if [ -e ${ROOT}${1} ]; then
# If it's not a symlink (in other words, it should be a directory)
if [ ! -L ${ROOT}${1} ]; then
einfo " ${1} isn't a symlink, migrating..."
# Move everything
rsync \
--archive \
--update \
--links \
--hard-links \
--ignore-existing \
--stats \
--progress \
--verbose \
${ROOT}${1}/ ${ROOT}${2} > ${T}/migrate-${1//\//-}.log 2>&1
check_migrate_return
remove_migrated_files ${1}
if [ -e "${ROOT}${1}" ]; then
# Remove any floating .keep files so we can run rmdir
find ${ROOT}${1} -name '\.keep' -exec rm -f {} \;
# Get rid of the directory
rmdir ${ROOT}${1}
fi
make_symlinks ${1}
else
ewarn " ${1} is a symlink, not migrating"
fi
else
ewarn " ${1} doesn't exist, not migrating"
make_symlinks ${1}
fi
}
check_migrate_return() {
MIGRATE_RETURN="$?"
if [ "${MIGRATE_RETURN}" -eq "0" ]; then
einfo "rsync successful!"
else
die "rsync failed. Exit code: ${MIGRATE_RETURN}."
fi
# Migration fubars lib symlinks -- eradicator
if use amd64; then
if [[ -L ${ROOT}usr/lib64 ]]; then
rm ${ROOT}usr/lib64
ln -s lib ${ROOT}usr/lib64
elif [[ -L ${ROOT}usr/lib ]]; then
rm -f ${ROOT}usr/lib
ln -s lib64 ${ROOT}usr/lib
elif [[ -L ${ROOT}usr/lib32 ]]; then
if has_multilib_profile; then
ln -s lib ${ROOT}usr/lib32
else
ln -s ../emul/linux/x86/usr/lib ${ROOT}usr/lib32
fi
fi
fi
}
remove_migrated_files() {
# This is a copy instead of a move, so we need to get rid of what
# we copied. This is a little risky if it fails, so just do it on
# success.
# DO NOT proceed if we don't have an argument, or we kill root filesystem
if [ -z "${1}" ]; then
die "No argument to remove_migrated_files(). Want to `rm -rf ${ROOT}`?"
fi
if [ "${MIGRATE_RETURN}" -eq "0" ]; then
# rm -rfv ${ROOT}${1} > ${T}/migrate-remove-${1//\//-}.log 2>&1
rm -rfv ${ROOT}${1}
fi
}
make_symlinks() {
# Put a symlink in its place
# Special case: lib != libdir
if [ "${1##*/}" = "$(get_libdir)" -a "$(get_libdir)" != "lib" ]; then
einfo " Symlinking ${ROOT}usr/X11R6/lib -> $(get_libdir)"
ln -s $(get_libdir) ${ROOT}usr/X11R6/lib
# Special case: fonts
elif [ "${1##*/}" = "fonts" ]; then
einfo " Symlinking ${ROOT}${1} -> ../../share/fonts"
ln -s ../../share/fonts ${ROOT}${1}
# Special case: X11R6
elif [ "${1##*/}" = "X11R6" ]; then
einfo " Symlinking ${ROOT}${1} -> ../usr"
ln -s ../usr ${ROOT}${1}
else
einfo " Symlinking ${ROOT}${1} -> ../${1##*/}"
ln -s ../${1##*/} ${ROOT}${1}
fi
}
update_config_files() {
# Fix any installed config files for installing fonts to /usr/share/fonts
# This *needs* to be after all other installation so files aren't
# overwritten.
if [ "${ROOT}" = "/" ]; then
einfo "Preparing any installed configuration files for font move..."
FILES="/etc/X11/xorg.conf
/etc/X11/XF86Config-4
/etc/X11/XF86Config"
if use font-server; then
FILES="${FILES} /etc/X11/fs/config"
fi
# /etc/fonts/fonts.conf
# /etc/fonts/local.conf
local FILE
for FILE in ${FILES}; do
if [ -e ${FILE} ]; then
# New font paths
sed "s,/usr/X11R6/$(get_libdir)/X11/fonts,/usr/share/fonts,g" \
${ROOT}${FILE} > ${IMAGE}${FILE}
if [ "${FILE}" = "/etc/X11/xorg.conf" ] \
|| [ "${FILE}" = "/etc/X11/XF86Config" ] \
|| [ "${FILE}" = "/etc/X11/XF86Config-4" ]; then
# "keyboard" driver is deprecated and will be removed,
# switch to "kbd"
sed -i 's~^\([ \t]*Driver[ \t]\+\)"[kK]eyboard"~\1"kbd"~' \
${IMAGE}${FILE}
# This moved in the /usr/X11R6/libdir -> /usr/libdir change
sed -i \
-e 's~^\([ \t]*RgbPath[ \t]\+\)"/usr/X11R6/$(get_libdir)/X11/rgb"~\1"/usr/$(get_libdir)/X11/rgb"~' \
-e 's~^\([ \t]*RgbPath[ \t]\+\)"/usr/X11R6/lib/X11/rgb"~\1"/usr/lib/X11/rgb"~' \
${IMAGE}${FILE}
# Work around upgrade problem where people have
# Option "XkbRules" "xfree86" in their config file
sed -i "s:^.*Option.*\"XkbRules\".*$::g" \
${IMAGE}${FILE}
fi
fi
done
fi
}
cleanup_fonts() {
local G_FONTDIRS
G_FONTDIRS="Speedo encodings local misc util"
if use truetype-fonts; then
G_FONTDIRS="${G_FONTDIRS} TTF"
fi
if use type1-fonts; then
G_FONTDIRS="${G_FONTDIRS} Type1"
fi
if use cjk; then
G_FONTDIRS="${G_FONTDIRS} CID"
fi
if use bitmap-fonts; then
G_FONTDIRS="${G_FONTDIRS} 75dpi 100dpi"
fi
if use nls; then
G_FONTDIRS="${G_FONTDIRS} cyrillic ukr"
fi
for G_FONTDIR in ${G_FONTDIRS}; do
# clean out old fonts.* and encodings.dir files, as we
# will regenerate them
# Not Speedo or CID, as their fonts.scale files are "real"
if [ "${G_FONTDIR}" != "CID" -a "${G_FONTDIR}" != "Speedo" ]; then
find ${ROOT}/usr/share/fonts/${G_FONTDIR} -type f -name 'fonts.*' \
-o -name 'encodings.dir' -exec rm -fv {} \;
fi
done
# Get rid of deprecated directories so our symlinks in the same location
# work -- users shouldn't be placing fonts here so that should be fine,
# they should be using ~/.fonts or /usr/share/fonts. <spyderous>
remove_font_dirs
}
remove_font_dirs() {
if [ -e ${ROOT}/usr/X11R6/$(get_libdir)/X11/fonts ]; then
if [ ! -L ${ROOT}/usr/X11R6/$(get_libdir)/X11/fonts ]; then
local G_FONTDIR
for G_FONTDIR in ${ROOT}/usr/X11R6/$(get_libdir)/X11/fonts/*; do
if [ -L "${G_FONTDIR}" ]; then
einfo "Removing ${G_FONTDIR} symlink."
rm -rfv ${G_FONTDIR}
else
ewarn "${G_FONTDIR} not a symlink, moving to /usr/share/fonts"
if [ -d ${G_FONTDIR} ]; then
if [ ! -e /usr/share/fonts/${G_FONTDIR##*/} ]; then
einfo "Moving ${G_FONTDIR} to /usr/share/fonts/."
mv ${G_FONTDIR} /usr/share/fonts/
else
ewarn "/usr/share/fonts/${G_FONTDIR##*/} exists. Remove it and try again."
fi
else
ewarn "${G_FONTDIR} does not exist."
fi
fi
done
fi
else
ewarn "${ROOT}/usr/X11R6/$(get_libdir)/X11/fonts does not exist."
fi
}
move_app_defaults_to_etc() {
if [ -L ${ROOT}/etc/X11/app-defaults ]; then
rm -f ${ROOT}/etc/X11/app-defaults
fi
if [ ! -L ${ROOT}/usr/$(get_libdir)/app-defaults ] \
&& [ -d ${ROOT}/usr/$(get_libdir)/app-defaults ]; then
if [ ! -d ${ROOT}/etc/X11/app-defaults ]; then
mkdir -p ${ROOT}/etc/X11/app-defaults
fi
mv -f ${ROOT}/usr/$(get_libdir)/app-defaults ${ROOT}/etc/X11
fi
}
move_xkb_to_usr() {
if [ -L ${ROOT}/usr/$(get_libdir)/xkb ]; then
rm -f ${ROOT}/usr/$(get_libdir)/xkb
fi
if [ ! -L ${ROOT}/etc/X11/xkb ] \
&& [ -d ${ROOT}/etc/X11/xkb ]; then
if [ ! -d ${ROOT}/usr/$(get_libdir)/xkb ]; then
mkdir -p ${ROOT}/usr/$(get_libdir)
fi
mv -f ${ROOT}/etc/X11/xkb ${ROOT}/usr/$(get_libdir)
fi
}
dynamic_libgl_preinst() {
# clean the dynamic libGL stuff's home to ensure
# we don't have stale libs floating around
if [ -d ${ROOT}/usr/$(get_libdir)/opengl/${PN} ]; then
rm -rf ${ROOT}/usr/$(get_libdir)/opengl/${PN}/*
fi
# make sure we do not have any stale files lying around
# that could break things. Check old and new locations.
rm -f ${ROOT}/usr/X11R6/$(get_libdir)/libGL\.* \
${ROOT}/usr/$(get_libdir)/libGL\.*
}
##################
# pkg_postinst() #
##################
font_setup() {
umask 022
# These cause ttmkfdir to segfault :/
rm -f ${ROOT}/usr/share/fonts/encodings/iso8859-6.8x.enc.gz
rm -f ${ROOT}/usr/share/fonts/encodings/iso8859-6.16.enc.gz
# rm -f ${ROOT}/usr/share/fonts/encodings/large/cns11643-1.enc
# rm -f ${ROOT}/usr/share/fonts/encodings/large/cns11643-2.enc
# rm -f ${ROOT}/usr/share/fonts/encodings/large/cns11643-3.enc
# rm -f ${ROOT}/usr/share/fonts/encodings/suneu-greek.enc
# ********************************************************************
# A note about fonts and needed files:
#
# 1) Create /usr/share/fonts/encodings/encodings.dir
#
# 2) Create fonts.scale for TrueType fonts (need to do this before
# we create fonts.dir files, else fonts.dir files will be
# invalid for TrueType fonts...)
#
# 3) Now Generate fonts.dir files.
#
# CID fonts is a bit more involved, but as we do not install any,
# thus I am not going to bother.
#
# <azarah@gentoo.org> (20 Oct 2002)
#
# ********************************************************************
ebegin "Generating encodings.dir"
# Create the encodings.dir in /usr/share/fonts/encodings
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/mkfontdir -n \
-e ${ROOT}/usr/share/fonts/encodings \
-e ${ROOT}/usr/share/fonts/encodings/large \
-- ${ROOT}/usr/share/fonts/encodings
eend 0
ebegin "Creating fonts.scale files"
local x
for x in $(find ${ROOT}/usr/share/fonts/* -maxdepth 1 -type d); do
[ -z "$(ls ${x}/)" ] && continue
[ "$(ls ${x}/)" = "fonts.cache-1" ] && continue
# Only generate .scale files if truetype, opentype or type1
# fonts are present ...
# First truetype (ttf,ttc)
# NOTE: ttmkfdir does NOT work on type1 fonts (#53753)
# Also, there is no way to regenerate Speedo/CID fonts.scale
# <spyderous@gentoo.org> 2 August 2004
if [ "${x/encodings}" = "${x}" -a \
-n "$(find ${x} -iname '*.tt[cf]' -print)" ]; then
if [ -x ${ROOT}/usr/bin/ttmkfdir ]; then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/ttmkfdir -x 2 \
-e ${ROOT}/usr/share/fonts/encodings/encodings.dir \
-o ${x}/fonts.scale -d ${x}
# ttmkfdir fails on some stuff, so try mkfontscale if it does
local ttmkfdir_return=$?
else
# We didn't use ttmkfdir at all
local ttmkfdir_return=2
fi
if [ ${ttmkfdir_return} -ne 1 ]; then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/mkfontscale \
-a /usr/share/fonts/encodings/encodings.dir \
-- ${x}
fi
# Next type1 and opentype (pfa,pfb,otf,otc)
elif [ "${x/encodings}" = "${x}" -a \
-n "$(find ${x} -iname '*.[po][ft][abcf]' -print)" ]; then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/mkfontscale \
-a ${ROOT}/usr/share/fonts/encodings/encodings.dir \
-- ${x}
fi
done
eend 0
ebegin "Generating fonts.dir files"
for x in $(find ${ROOT}/usr/share/fonts/* -maxdepth 1 -type d); do
[ -z "$(ls ${x}/)" ] && continue
[ "$(ls ${x}/)" = "fonts.cache-1" ] && continue
if [ "${x/encodings}" = "${x}" ]; then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/mkfontdir \
-e ${ROOT}/usr/share/fonts/encodings \
-e ${ROOT}/usr/share/fonts/encodings/large \
-- ${x}
fi
done
eend 0
ebegin "Generating Xft cache"
for x in $(find ${ROOT}/usr/share/fonts/* -maxdepth 1 -type d); do
[ -z "$(ls ${x}/)" ] && continue
[ "$(ls ${x}/)" = "fonts.cache-1" ] && continue
# Only generate XftCache files if there are truetype
# fonts present ...
if [ "${x/encodings}" = "${x}" -a \
-n "$(find ${x} -iname '*.[otps][pft][cfad]' -print)" ]; then
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${ROOT}/usr/$(get_libdir)" \
${ROOT}/usr/bin/xftcache ${x} &> /dev/null
fi
done
eend 0
ebegin "Fixing permissions"
find ${ROOT}/usr/share/fonts/ -type f -name 'font.*' \
-exec chmod 0644 {} \;
eend 0
# danarmak found out that fc-cache should be run AFTER all the above
# stuff, as otherwise the cache is invalid, and has to be run again
# as root anyway
if [ -x ${ROOT}/usr/bin/fc-cache ]; then
ebegin "Creating FC font cache"
HOME="/root" ${ROOT}/usr/bin/fc-cache
eend 0
fi
}
switch_opengl_implem() {
# Switch to the xorg implementation.
# Use new opengl-update that will not reset user selected
# OpenGL interface ...
echo
local opengl_implem="$(${ROOT}/usr/sbin/opengl-update --get-implementation)"
${ROOT}/usr/sbin/opengl-update --use-old ${PN}
}
remove_old_compose_files() {
for x in $(find ${ROOT}/usr/$(get_libdir)/X11/locale/ -mindepth 1 -type d); do
# Remove old compose files we might have created incorrectly
# CJK must not have that file (otherwise XIM don't works some times)
case $(basename ${x}) in
ja*|ko*|zh*)
if [ -r "${x}/Compose" ]; then
rm -f ${x}/Compose
fi
;;
esac
done
}
setup_tmp_files() {
# These need to be owned by root and the correct permissions
# (bug #8281)
local x=""
for x in ${ROOT}/tmp/.{ICE,X11}-unix; do
if [ ! -d ${x} ]; then
mkdir -p ${x}
fi
chown root:wheel ${x}
chmod 1777 ${x}
done
}
print_info() {
echo
einfo "Please note that the xcursors are in /usr/share/cursors/${PN}."
einfo "Any custom cursor sets should be placed in that directory."
echo
einfo "If you wish to set system-wide default cursors, please create"
einfo "/usr/local/share/cursors/${PN}/default/index.theme"
einfo "with content: \"Inherits=theme_name\" so that future"
einfo "emerges will not overwrite those settings."
echo
einfo "Listening on TCP is disabled by default with startx."
einfo "To enable it, edit /usr/bin/startx."
echo
echo
ewarn "BEWARE:"
ewarn "/usr/X11R6/$(get_libdir) has MOVED"
ewarn "to /usr/$(get_libdir)"
ewarn "Run etc-update to update your config files."
ewarn "Old locations for anything in /usr/X11R6/$(get_libdir)"
ewarn "are deprecated."
echo
# (#76985)
einfo "Visit http://www.gentoo.org/doc/en/index.xml?catid=desktop"
einfo "for more information on configuring X."
# Try to get people to read /usr/X11R6/libdir move
ebeep 5
epause 10
}
fix_links() {
# Fix problematic links
if [ -x ${ROOT}/usr/bin/Xorg ]; then
ln -snf ../bin ${ROOT}/usr/bin/X11
fi
}
|