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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.4.20041102-r1.ebuild,v 1.27 2006/08/31 20:28:33 vapier Exp $
inherit eutils multilib flag-o-matic toolchain-funcs versionator
# Branch update support. Following will disable:
# BRANCH_UPDATE=
BRANCH_UPDATE="20041102"
# Minimum kernel version we support
# (Recent snapshots fails with 2.6.5 and earlier)
# also, we do not have a single 2.4 kernel in the tree with backported
# support required to enable nptl.
MIN_KERNEL_VERSION="2.6.5"
# (very) Theoretical cross-compiler support
export CTARGET=${CTARGET:-${CHOST}}
if [[ ${CTARGET} = ${CHOST} ]] ; then
if [[ ${CATEGORY/cross-} != ${CATEGORY} ]] ; then
export CTARGET=${CATEGORY/cross-}
fi
fi
if [ -z "${BRANCH_UPDATE}" ]; then
BASE_PV="${NEW_PV}"
NEW_PV="${NEW_PV}"
else
BASE_PV="2.3.3"
NEW_PV="${PV%.*}"
fi
S="${WORKDIR}/${PN}-${BASE_PV}"
DESCRIPTION="GNU libc6 (also called glibc2) C library"
HOMEPAGE="http://sources.redhat.com/glibc/"
HPPA_PATCHES=2004-09-30
SRC_URI="http://dev.gentoo.org/~lv/${PN}-${BASE_PV}.tar.bz2
http://dev.gentoo.org/~lv/${PN}-manpages-${NEW_PV}.tar.bz2
http://dev.gentoo.org/~lv/glibc-infopages-${NEW_PV}.tar.bz2
hppa? ( http://parisc-linux.org/~carlos/glibc-work/glibc-hppa-patches-${HPPA_PATCHES}.tar.gz )"
[ ! -z "${BRANCH_UPDATE}" ] && SRC_URI="${SRC_URI}
http://dev.gentoo.org/~lv/${PN}-${NEW_PV}-branch-update-${BRANCH_UPDATE}.patch.bz2"
LICENSE="LGPL-2"
[[ ${CTARGET} != ${CHOST} ]] \
&& SLOT="${CTARGET}-2.2" \
|| SLOT="2.2"
KEYWORDS="alpha amd64 -hppa ia64 ~mips ppc ppc64 ~sparc x86"
IUSE="build erandom hardened multilib nls nomalloccheck nptl nptlonly pic userlocales selinux"
RESTRICT="nostrip multilib-pkg-force" # we'll handle stripping ourself #46186
# We need new cleanup attribute support from gcc for NPTL among things ...
# We also need linux26-headers if using NPTL. Including kernel headers is
# incredibly unreliable, and this new linux-headers release from plasmaroo
# should work with userspace apps, at least on amd64 and ppc64.
DEPEND=">=sys-devel/gcc-3.2.3-r1
nptl? ( >=sys-devel/gcc-3.3.1-r1 )
>=sys-devel/binutils-2.14.90.0.6-r1
virtual/os-headers
nptl? ( >=sys-kernel/linux-headers-${MIN_KERNEL_VERSION} )
nls? ( sys-devel/gettext )
selinux? ( !build? ( sys-libs/libselinux ) )"
RDEPEND="nls? ( sys-devel/gettext )
selinux? ( !build? ( sys-libs/libselinux ) )"
PROVIDE="virtual/libc"
# We need to be able to set alternative headers for
# compiling for non-native platform
# Will also become useful for testing kernel-headers without screwing up
# the whole system.
# note: intentionally undocumented.
alt_headers() {
if [ -z "${ALT_HEADERS}" ] ; then
if [[ ${CTARGET} = ${CHOST} ]] ; then
ALT_HEADERS="${ROOT}/usr/include"
else
ALT_HEADERS="${ROOT}/usr/${CTARGET}/include"
fi
fi
echo "${ALT_HEADERS}"
}
alt_build_headers() {
if [[ -z ${ALT_BUILD_HEADERS} ]] ; then
ALT_BUILD_HEADERS=$(alt_headers)
tc-is-cross-compiler && ALT_BUILD_HEADERS=${ROOT}$(alt_headers)
fi
echo "${ALT_BUILD_HEADERS}"
}
alt_prefix() {
if [[ ${CTARGET} = ${CHOST} ]] ; then
echo /usr
else
echo /usr/${CTARGET}
fi
}
alt_libdir() {
if [[ ${CTARGET} = ${CHOST} ]] ; then
echo /$(get_libdir)
else
echo /usr/${CTARGET}/$(get_libdir)
fi
}
setup_flags() {
# Over-zealous CFLAGS can often cause problems. What may work for one
# person may not work for another. To avoid a large influx of bugs
# relating to failed builds, we strip most CFLAGS out to ensure as few
# problems as possible.
strip-flags
strip-unsupported-flags
# -freorder-blocks for all but ppc
use ppc || append-flags "-freorder-blocks"
# Sparc/Sparc64 support
if use sparc; then
# Both sparc and sparc64 can use -fcall-used-g6. -g7 is bad, though.
filter-flags "-fcall-used-g7"
append-flags "-fcall-used-g6"
# Sparc64 Only support...
if [ "${PROFILE_ARCH}" = "sparc64" ] && !has_multilib_profile; then
# Get rid of -mcpu options (the CHOST will fix this up) and flags
# known to fail
filter-flags "-mcpu=ultrasparc -mcpu=v9 -mvis"
# Setup the CHOST properly to insure "sparcv9"
# This passes -mcpu=ultrasparc -Wa,-Av9a to the compiler
if [ "${CHOST}" = "sparc-unknown-linux-gnu" ]; then
CTARGET="sparcv9-unknown-linux-gnu"
CHOST="${CTARGET}"
fi
fi
if [ "${PROFILE_ARCH}" = "sparc64" ] && has_multilib_profile; then
# We change our CHOST, so set this right here
export CC="$(tc-getCC)"
# glibc isn't too smart about guessing our flags. It
# will default to -xarch=v9, but assembly in sparc64 glibc
# requires v9a or greater...
if is-flag "-mcpu=ultrasparc3"; then
# Change CHOST to include us3 assembly
if [ "${ABI}" = "sparc32" ]; then
CTARGET="sparcv9b-unknown-linux-gnu"
CHOST="${CTARGET}"
else
CTARGET="sparc64b-unknown-linux-gnu"
CHOST="${CTARGET}"
CFLAGS_sparc64="$(get_abi_CFLAGS) -Wa,-xarch=v9b"
fi
else
if [ "${ABI}" = "sparc32" ]; then
CTARGET="sparcv9-unknown-linux-gnu"
CHOST="${CTARGET}"
else
CTARGET="sparc64-unknown-linux-gnu"
CHOST="${CTARGET}"
CFLAGS_sparc64="$(get_abi_CFLAGS) -Wa,-xarch=v9a"
fi
fi
filter-flags -mvis -m32 -m64 -Wa,-xarch -Wa,-A
fi
fi
# AMD64 multilib
if use amd64 && has_multilib_profile; then
# We change our CHOST, so set this right here
export CC="$(tc-getCC)"
if [ "${ABI}" = "amd64" ]; then
CTARGET="x86_64-pc-linux-gnu"
CHOST="${CTARGET}"
else
CTARGET="i686-pc-linux-gnu"
CHOST="${CTARGET}"
fi
filter-flags -m32 -m64
fi
if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ]; then
# broken in 3.4.x
replace-flags -march=pentium-m -mtune=pentium3
fi
if gcc -v 2>&1 | grep -q 'gcc version 3.[0123]'; then
append-flags -finline-limit=2000
fi
# We don't want these flags for glibc
filter-flags -fomit-frame-pointer -malign-double
filter-ldflags -pie
# Lock glibc at -O2 -- linuxthreads needs it and we want to be
# conservative here
append-flags -O2
}
check_kheader_version() {
local header="$(alt_build_headers)/linux/version.h"
[ -z "$1" ] && return 1
if [ -f "${header}" ]; then
local version="`grep 'LINUX_VERSION_CODE' ${header} | \
sed -e 's:^.*LINUX_VERSION_CODE[[:space:]]*::'`"
if [ "${version}" -ge "$1" ]; then
return 0
fi
fi
return 1
}
check_nptl_support() {
local min_kernel_version="$(KV_to_int "${MIN_KERNEL_VERSION}")"
echo
einfon "Checking gcc for __thread support ... "
if ! gcc -c ${FILESDIR}/test-__thread.c -o ${T}/test2.o &> /dev/null; then
echo "no"
echo
eerror "Could not find a gcc that supports the __thread directive!"
eerror "please update to gcc-3.2.2-r1 or later, and try again."
die "No __thread support in gcc!"
else
echo "yes"
fi
# Building fails on an non-supporting kernel
einfon "Checking kernel version (>=${MIN_KERNEL_VERSION}) ... "
if [ "`get_KV`" -lt "${min_kernel_version}" ]; then
echo "no"
echo
eerror "You need a kernel of at least version ${MIN_KERNEL_VERSION}"
eerror "for NPTL support!"
die "Kernel version too low!"
else
echo "yes"
fi
# Building fails with too low linux-headers
einfon "Checking linux-headers version (>=${MIN_KERNEL_VERSION}) ... "
if ! check_kheader_version "${min_kernel_version}"; then
echo "no"
echo
eerror "You need linux-headers of at least version ${MIN_KERNEL_VERSION}"
eerror "for NPTL support!"
die "linux-headers version too low!"
else
echo "yes"
fi
echo
}
want_nptl() {
if use nptl || use nptlonly ; then
# Archs that can use NPTL
if use alpha || use amd64 || use ia64 || use ppc || \
use ppc64 || use s390 || use sparc; then
return 0
fi
# Specific x86 CHOSTS that can use NPTL
if use x86; then
case "${CHOST/-*}" in
i486|i586|i686) return 0 ;;
esac
fi
fi
return 1
}
want_tls() {
# Archs that can use TLS (Thread Local Storage)
if use amd64 || use alpha || use ia64 || use ppc || \
use ppc64 || use s390 || use sparc; then
return 0
fi
# Specific x86 CHOSTS that can use TLS
if use x86; then
case "${CHOST/-*}" in
i486|i586|i686) return 0 ;;
esac
fi
return 1
}
install_locales() {
unset LANGUAGE LANG LC_ALL
cd ${WORKDIR}/${MYMAINBUILDDIR} || die "${WORKDIR}/${MYMAINBUILDDIR}"
make PARALLELMFLAGS="${MAKEOPTS} -j1" \
install_root=${D} localedata/install-locales || die
keepdir /usr/lib/locale/ru_RU/LC_MESSAGES
}
setup_locales() {
if use !userlocales ; then
einfo "userlocales not enabled, installing -ALL- locales..."
install_locales || die
elif [ -e /etc/locales.build ]; then
einfo "Installing locales in /etc/locales.build..."
echo 'SUPPORTED-LOCALES=\' > SUPPORTED.locales
cat /etc/locales.build | grep -v -e ^$ -e ^\# | sed 's/$/\ \\/g' \
>> SUPPORTED.locales
cat SUPPORTED.locales > ${S}/localedata/SUPPORTED || die
install_locales || die
elif [ -e ${FILESDIR}/locales.build ]; then
einfo "Installing locales in ${FILESDIR}/locales.build..."
echo 'SUPPORTED-LOCALES=\' > SUPPORTED.locales
cat ${FILESDIR}/locales.build | grep -v -e ^$ -e ^\# | sed 's/$/\ \\/g' \
>> SUPPORTED.locales
cat SUPPORTED.locales > ${S}/localedata/SUPPORTED || die
install_locales || die
else
einfo "Installing -ALL- locales..."
install_locales || die
fi
}
pkg_setup() {
if use nptlonly && use !nptl ; then
eerror "If you want nptlonly, add nptl to your USE too ;p"
die "nptlonly without nptl"
fi
# give some sort of warning about the nptl logic changes...
if want_nptl && use !nptlonly ; then
ewarn "Warning! Gentoo's GLIBC with NPTL enabled now behaves like the"
ewarn "glibc from almost every other distribution out there. This means"
ewarn "that glibc is compiled -twice-, once with linuxthreads and once"
ewarn "with nptl. The NPTL version is installed to lib/tls and is still"
ewarn "used by default. If you do not need nor want the linuxthreads"
ewarn "fallback, you can disable this behavior by adding nptlonly to"
ewarn "USE to save yourself some compile time."
ebeep
epause
fi
}
do_arch_alpha_patches() {
[[ $(tc-arch ${CTARGET}) != "alpha" ]] && return 0
cd ${S}
# Fix compatability with compaq compilers by ifdef'ing out some
# 2.3.2 additions.
# <taviso@gentoo.org> (14 Jun 2003).
epatch ${FILESDIR}/2.3.2/${PN}-2.3.2-decc-compaq.patch
# Fix xstat stuff
epatch ${FILESDIR}/2.3.4/glibc234-alpha-xstat.patch
# Fix compilation with >=gcc-3.2.3 (01 Nov 2003 agriffis)
# epatch ${FILESDIR}/2.3.2/${LOCAL_P}-alpha-pwrite.patch
}
do_arch_amd64_patches() {
[[ $(tc-arch ${CTARGET}) != "amd64" ]] && return 0
cd ${S}
if ! has_multilib_profile; then
# CONF_LIBDIR support
epatch ${FILESDIR}/2.3.4/glibc-gentoo-libdir.patch
sed -i -e "s:@GENTOO_LIBDIR@:$(get_libdir):g" ${S}/sysdeps/unix/sysv/linux/configure
fi
}
do_arch_arm_patches() {
[[ $(tc-arch ${CTARGET}) != "arm" ]] && return 0
cd ${S};
# Any needed patches for arm go here
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-arm-ioperm.patch
}
do_arch_hppa_patches() {
[[ $(tc-arch ${CTARGET}) != "hppa" ]] && return 0
einfo "Applying hppa specific path of ${HPPA_PATCHES} ..."
cd ${T}
unpack glibc-hppa-patches-${HPPA_PATCHES}.tar.gz
cd ${S}
epatch "${FILESDIR}"/2.3.4/hppa-no-pie.patch
export EPATCH_OPTS=-p1
for i in ${T}/glibc-hppa-patches-${HPPA_PATCHES}/*.diff
do
epatch ${i}
done
unset EPATCH_OPTS
use hardened && epatch ${FILESDIR}/2.3.4/glibc-2.3.4-hppa-hardened-disable__init_arrays.patch
}
do_arch_ia64_patches() {
[[ $(tc-arch ${CTARGET}) != "ia64" ]] && return 0
cd ${S};
# The basically problem is glibc doesn't store information about
# what the kernel interface is so that it can't efficiently set up
# parameters for system calls. This patch from H.J. Lu fixes it:
#
# http://sources.redhat.com/ml/libc-alpha/2003-09/msg00165.html
# epatch ${FILESDIR}/2.3.2/${LOCAL_P}-ia64-LOAD_ARGS-fixup.patch
}
do_arch_mips_patches() {
[[ $(tc-arch ${CTARGET}) != "mips" ]] && return 0
cd ${S}
# A few patches only for the MIPS platform. Descriptions of what they
# do can (probably) be found in the patch headers.
epatch ${FILESDIR}/2.3.1/${PN}-2.3.1-librt-mips.patch
epatch ${FILESDIR}/2.3.1/${PN}-2.3.1-fpu-cw-mips.patch
epatch ${FILESDIR}/2.3.3/${PN}-2.3.3-mips-addabi.diff
epatch ${FILESDIR}/2.3.3/${PN}-2.3.3-mips-syscall.h.diff
epatch ${FILESDIR}/2.3.3/${PN}-2.3.3-mips-sysify.diff
epatch ${FILESDIR}/2.3.3/${PN}-2.3.3-mips-semtimedop.diff
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-mips-update-__throw.patch
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-mips-prot_grows-undefined.patch
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-mips-rtld_deepbind-undefined.patch
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-mips-add-missing-sgidefs_h.patch
# Need to install into /lib for n32-only userland for now.
# Propper solution is to make all userland /lib{32|64}-aware.
has_multilib_profile || use multilib || epatch ${FILESDIR}/2.3.3/${PN}-2.3.3-mips-nolib3264.diff
}
do_arch_ppc_patches() {
[[ $(tc-arch ${CTARGET}) != "ppc" ]] && return 0
cd ${S};
# Any needed patches for ppc go here
}
do_arch_ppc64_patches() {
[[ $(tc-arch ${CTARGET}) != "ppc64" ]] && return 0
cd ${S};
# Any needed patches for ppc64 go here
# setup lib -- seems like a good place to set this up
! has_multilib_profile && get_libdir_override lib64
}
do_arch_s390_patches() {
[[ $(tc-arch ${CTARGET}) != "s390" ]] && return 0
cd ${S};
# Any needed patches for s390 go here
}
do_arch_sparc_patches() {
[[ $(tc-arch ${CTARGET}) != "sparc" ]] && return 0
cd ${S};
# Any needed patches for sparc go here
}
do_arch_x86_patches() {
[[ $(tc-arch ${CTARGET}) != "x86" ]] && return 0
cd ${S};
# CONF_LIBDIR support
epatch ${FILESDIR}/2.3.4/glibc-gentoo-libdir.patch
sed -i -e "s:@GENTOO_LIBDIR@:$(get_libdir):g" ${S}/sysdeps/unix/sysv/linux/configure
}
do_pax_patches() {
cd ${S}
# localedef contains nested function trampolines, which trigger
# segfaults under PaX -solar
# Debian Bug (#231438, #198099)
#epatch ${FILESDIR}/2.3.3/glibc-2.3.3-localedef-fix-trampoline.patch
# with the redhat patch included, the above is no longer needed.
# With latest versions of glibc, a lot of apps failed on a PaX enabled
# system with:
#
# cannot enable executable stack as shared object requires: Permission denied
#
# This is due to PaX 'exec-protecting' the stack, and ld.so then trying
# to make the stack executable due to some libraries not containing the
# PT_GNU_STACK section. Bug #32960. <azarah@gentoo.org> (12 Nov 2003).
use mips || epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-dl_execstack-PaX-support.patch
# Program header support for PaX.
epatch ${FILESDIR}/2.3.3/${PN}-2.3.3_pre20040117-pt_pax.diff
# Suppress unresolvable relocation against symbol `main' in Scrt1.o
# can be reproduced with compiling net-dns/bind-9.2.2-r3 using -pie
epatch ${FILESDIR}/2.3.4/glibc-2.3.4.20040808-i386-got-fix.diff
}
do_hardened_fixes() {
# this patch is needed to compile nptl with a hardened gcc
has_hardened && want_nptl && \
epatch ${FILESDIR}/2.3.4/glibc-2.3.4-hardened-sysdep-shared.patch
}
do_ssp_patches() {
# To circumvent problems with propolice __guard and
# __guard_setup__stack_smash_handler
#
# http://www.gentoo.org/proj/en/hardened/etdyn-ssp.xml
if use !hppa ; then
epatch ${FILESDIR}/2.3.3/glibc-2.3.2-propolice-guard-functions-v3.patch
cp ${FILESDIR}/2.3.3/ssp.c ${S}/sysdeps/unix/sysv/linux || \
die "failed to copy ssp.c to ${S}/sysdeps/unix/sysv/linux/"
fi
# patch this regardless of architecture, although it's ssp-related
epatch ${FILESDIR}/2.3.3/glibc-2.3.3-frandom-detect.patch
}
do_fedora_patches() {
pushd ${S} > /dev/null
# go team ramdom nptl stuff
want_nptl && epatch ${S}/fedora/glibc-nptl-check.patch
# remove the fedora-branch glibc 2.0 compat stuff.
rm -rf glibc-compat
epatch ${FILESDIR}/2.3.4/glibc-2.3.4-fedora-branch-no-libnoversion.patch
epatch ${FILESDIR}/2.3.4/glibc-2.3.4-fedora-branch-no-force-nontls.patch
rm -f sysdeps/alpha/alphaev6/memcpy.S
find . -type f -size 0 -o -name "*.orig" -exec rm -f {} \;
touch `find . -name configure`
# If gcc supports __thread, test it even in --with-tls --without-__thread
# builds.
if echo '__thread int a;' | $GCC -xc - -S -o /dev/null 2>/dev/null; then
sed -i -e 's~0 ||~1 ||~' ./elf/tst-tls10.h ./linuxthreads/tst-tls1.h
fi
popd > /dev/null
}
src_unpack() {
# Check NPTL support _before_ we unpack things to save some time
want_nptl && check_nptl_support
unpack ${PN}-${BASE_PV}.tar.bz2
# Extract pre-made man pages.
# Otherwise we need perl, which is bad (especially for stage1 bootstrap)
mkdir -p ${S}/man
cd ${S}/man
unpack ${PN}-manpages-${NEW_PV}.tar.bz2
cd ${S}
if [ -n "${BRANCH_UPDATE}" ]; then
epatch ${DISTDIR}/${PN}-${NEW_PV}-branch-update-${BRANCH_UPDATE}.patch.bz2
# Snapshot date patch
einfo "Patching version to display snapshot date ..."
sed -i -e "s:\(#define RELEASE\).*:\1 \"${BRANCH_UPDATE}\":" version.h
fi
# Version patch
sed -i -e "s:\(#define VERSION\).*:\1 \"${NEW_PV}\":" version.h
# pre-generated info pages
unpack glibc-infopages-2.3.4.tar.bz2
# redhat stuffs
do_fedora_patches
# SSP support in glibc (where it belongs)
do_ssp_patches
# PaX-related Patches
do_pax_patches
# disable binutils -as-needed
sed -e 's/^have-as-needed.*/have-as-needed = no/' -i ${S}/config.make.in
# Glibc is stupid sometimes, and doesn't realize that with a
# static C-Only gcc, -lgcc_eh doesn't exist.
# http://sources.redhat.com/ml/libc-alpha/2003-09/msg00100.html
echo 'int main(){}' > ${T}/gcc_eh_test.c
if ! $(tc-getCC) ${T}/gcc_eh_test.c -lgcc_eh 2>/dev/null ; then
sed -i -e 's:-lgcc_eh::' Makeconfig || die "sed gcc_eh"
fi
# hardened toolchain/relro/nptl/security/etc fixes
do_hardened_fixes
# Arch specific patching
do_arch_alpha_patches
do_arch_amd64_patches
do_arch_arm_patches
do_arch_hppa_patches
do_arch_ia64_patches
do_arch_mips_patches
do_arch_ppc_patches
do_arch_ppc64_patches
do_arch_s390_patches
do_arch_sparc_patches
do_arch_x86_patches
# Remaining patches
cd ${S}
epatch ${FILESDIR}/2.3.4/glibc-sec-hotfix-20040916.patch
# multicast DNS aka rendezvous support
# ...patch updated to make mdns optional
epatch ${FILESDIR}/2.3.4/glibc-2.3.4-mdns-resolver-20041102.diff
# if __OPTIMIZE__ isnt defined, the comparison in this header
# fails.
epatch ${FILESDIR}/2.3.4/glibc-2.3.4-features-header-fix.patch
# whine whine whine, this patch sets the default for the malloc check
# to 0, disabling it.
use nomalloccheck && epatch ${FILESDIR}/2.3.4/glibc-2.3.4-fedora-branch-nomalloccheck.patch
# Fix assert in _dl_next_tls_modid-assert (sysdeps/generic/dl-tls.c),
# bug #52374.
epatch ${FILESDIR}/2.3.4/${PN}-2.3.4-fix-_dl_next_tls_modid-assert.patch
# Fix permissions on some of the scripts
chmod u+x ${S}/scripts/*.sh
}
glibc_do_configure() {
local myconf
setup_flags
# These should not be set, else the
# zoneinfo do not always get installed ...
unset LANGUAGE LANG LC_ALL
# silly users
unset LD_RUN_PATH
# set addons
pushd ${S} > /dev/null
ADDONS=$(echo */configure | sed -e 's!/configure!!g;s!\(linuxthreads\|nptl\|rtkaio\)\( \|$\)!!g;s! \+$!!;s! !,!g;s!^!,!;/^,\*$/d')
popd > /dev/null
use nls || myconf="${myconf} --disable-nls"
use erandom || myconf="${myconf} --disable-dev-erandom"
if [ "$1" == "linuxthreads" ] ; then
want_tls && myconf="${myconf} --with-tls --without-__thread"
want_tls || myconf="${myconf} --without-tls --without-__thread"
myconf="${myconf} --enable-add-ons=linuxthreads${ADDONS}"
myconf="${myconf} --enable-kernel=${LT_KERNEL_VERSION:-2.4.1}"
elif [ "$1" == "nptl" ] ; then
want_nptl && myconf="${myconf} --with-tls --with-__thread"
myconf="${myconf} --enable-add-ons=nptl${ADDONS}"
myconf="${myconf} --enable-kernel=${MIN_KERNEL_VERSION}"
else
die "invalid pthread option"
fi
if ! use build && use selinux; then
myconf="${myconf} --with-selinux"
else
myconf="${myconf} --without-selinux"
fi
# Who knows if this works :)
[[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}"
myconf="${myconf} --without-cvs
--enable-bind-now
--build=${CHOST}
--host=${CTARGET}
--disable-profile
--without-gd
--with-headers=$(alt_build_headers)
--prefix=$(alt_prefix)
--mandir=$(alt_prefix)/share/man
--infodir=$(alt_prefix)/share/info
--libexecdir=$(alt_prefix)/lib/misc
${EXTRA_ECONF}"
GBUILDDIR="${WORKDIR}/build-${ABI}-${CTARGET}-$1"
mkdir -p ${GBUILDDIR}
cd ${GBUILDDIR}
einfo "Configuring GLIBC for $1 with: ${myconf}"
${S}/configure ${myconf} || die "failed to configure glibc"
}
src_compile() {
# MULTILIB-CLEANUP: Fix this when FEATURES=multilib-pkg is in portage
local MLTEST=$(type dyn_unpack)
if has_multilib_profile && [ -z "${OABI}" -a "${MLTEST/set_abi}" = "${MLTEST}" ]; then
OABI="${ABI}"
for ABI in $(get_install_abis); do
export ABI
einfo "Compiling ${ABI} glibc"
src_compile
done
ABI="${OABI}"
unset OABI
return 0
fi
unset MLTEST
ABI=${ABI:=default}
# rsync got an updated ebuild before an updated multilib.eclass
# and caused bug #80591... this might help someone...
if [ -d /usr/include/gentoo-multilib/default ]; then
export CPATH=/usr/include/gentoo-multilib/default
fi
# hardened ppc64 parallelization periodically fails so drop to -j1
if use ppc64 && use hardened; then
MAKEOPTS="${MAKEOPTS} -j1"
fi
# do the linuxthreads build unless we're using nptlonly
if use !nptlonly ; then
glibc_do_configure linuxthreads
einfo "Building GLIBC with linuxthreads..."
make PARALLELMFLAGS="${MAKEOPTS}" || die
fi
if want_nptl ; then
# ...and then do the optional nptl build
unset LD_ASSUME_KERNEL || :
glibc_do_configure nptl
einfo "Building GLIBC with NPTL..."
make PARALLELMFLAGS="${MAKEOPTS}" || die
fi
}
src_test() {
# This is wrong, but glibc's tests fail bad when screwing
# around with sandbox, so lets just punt it
unset LD_PRELOAD
cd ${GBUILDDIR}
make check || die "make check failed :("
}
src_install() {
# MULTILIB-CLEANUP: Fix this when FEATURES=multilib-pkg is in portage
local MLTEST=$(type dyn_unpack)
if has_multilib_profile && [ -z "${OABI}" -a "${MLTEST/set_abi}" = "${MLTEST}" ]; then
OABI="${ABI}"
for ABI in $(get_install_abis); do
export ABI
# Handle stupid lib32 BS
if use amd64 && [ "${ABI}" = "x86" -a "$(get_libdir)" != "lib" ]; then
OLD_LIBDIR="$(get_libdir)"
LIBDIR_x86="lib"
fi
src_install
# Handle stupid lib32 BS
if use amd64 && [ "${ABI}" = "x86" -a -n "${OLD_LIBDIR}" ]; then
LIBDIR_x86="${OLD_LIBDIR}"
unset OLD_LIBDIR
mv ${D}/lib ${D}/$(get_libdir)
mv ${D}/usr/lib ${D}/usr/$(get_libdir)
mkdir ${D}/lib
dosym ../$(get_libdir)/ld-linux.so.2 /lib/ld-linux.so.2
dosed "s:/lib/:/$(get_libdir)/:g" /usr/$(get_libdir)/libc.so /usr/$(get_libdir)/libpthread.so
rm -rf ${D}/usr/$(get_libdir)/misc ${D}/usr/$(get_libdir)/locale
for f in ${D}/usr/$(get_libdir)/*.so; do
local basef=$(basename ${f})
if [ -L ${f} ]; then
local target=$(readlink ${f})
target=${target/\/lib\//\/$(get_libdir)\/}
rm ${f}
dosym ${target} /usr/$(get_libdir)/${basef}
fi
done
fi
done
ABI="${OABI}"
unset OABI
return 0
fi
unset MLTEST
ABI=${ABI:=default}
setup_flags
# Need to dodir first because it might not exist (bad amd64 profiles)
dodir /usr/$(get_libdir)
# These should not be set, else the
# zoneinfo do not always get installed ...
unset LANGUAGE LANG LC_ALL
if use nptlonly ; then
MYMAINBUILDDIR=build-${ABI}-${CTARGET}-nptl
else
MYMAINBUILDDIR=build-${ABI}-${CTARGET}-linuxthreads
fi
if use !nptlonly ; then
cd ${WORKDIR}/build-${ABI}-${CTARGET}-linuxthreads
einfo "Installing GLIBC with linuxthreads..."
make PARALLELMFLAGS="${MAKEOPTS}" \
install_root=${D} \
install || die
elif use nptlonly ; then
cd ${WORKDIR}/build-${ABI}-${CTARGET}-nptl
einfo "Installing GLIBC with NPTL..."
make PARALLELMFLAGS="${MAKEOPTS}" \
install_root=${D} \
install || die
fi
if [[ ${CTARGET} != ${CHOST} ]] ; then
# punt all the junk not needed by a cross-compiler
rm -r "${D}"/usr/${CTARGET}/{bin,etc,lib/gconv,sbin,share}
fi
if use !nptlonly && want_nptl ; then
einfo "Installing NPTL to $(get_libdir)/tls/..."
cd ${WORKDIR}/build-${ABI}-${CTARGET}-nptl
mkdir -p ${D}/$(get_libdir)/tls/
libcsofile=$(basename ${D}/$(get_libdir)/libc-*.so)
cp -a libc.so ${D}/$(get_libdir)/tls/${libcsofile} || die
dosym ${libcsofile} /$(get_libdir)/tls/$(ls libc.so.*)
libmsofile=$(basename ${D}/$(get_libdir)/libm-*.so)
pushd math > /dev/null
cp -a libm.so ${D}/$(get_libdir)/tls/${libmsofile} || die
dosym ${libmsofile} /$(get_libdir)/tls/$(ls libm.so.*)
popd > /dev/null
librtsofile=$(basename ${D}/$(get_libdir)/librt-*.so)
pushd rt > /dev/null
cp -a librt.so ${D}/$(get_libdir)/tls/${librtsofile} || die
dosym ${librtsofile} /$(get_libdir)/tls/$(ls librt.so.*)
popd > /dev/null
libthreaddbsofile=$(basename ${D}/$(get_libdir)/libthread_db-*.so)
pushd nptl_db > /dev/null
cp -a libthread_db.so ${D}/$(get_libdir)/tls/${libthreaddbsofile} || die
dosym ${libthreaddbsofile} /$(get_libdir)/tls/$(ls libthread_db.so.*)
popd > /dev/null
libpthreadsofile=libpthread-${NEW_PV}.so
cp -a nptl/libpthread.so ${D}/$(get_libdir)/tls/${libpthreadsofile} || die
dosym ${libpthreadsofile} /$(get_libdir)/tls/libpthread.so.0
# and now for the static libs
mkdir -p ${D}/usr/$(get_libdir)/nptl
cp -a libc.a nptl/libpthread.a nptl/libpthread_nonshared.a rt/librt.a \
${D}/usr/$(get_libdir)/nptl
# linker script crap
sed "s~/$(get_libdir)/~/$(get_libdir)/tls/~" ${D}/usr/$(get_libdir)/libc.so \
> ${D}/usr/$(get_libdir)/nptl/libc.so
sed "s~/$(get_libdir)/~/$(get_libdir)/tls/~" ${D}/usr/$(get_libdir)/libpthread.so \
> ${D}/usr/$(get_libdir)/nptl/libpthread.so
sed -i -e "s~/usr/lib64/~/usr/lib64/nptl/~" ${D}/usr/$(get_libdir)/nptl/libpthread.so
dosym ../${librtsofile} /usr/$(get_libdir)/nptl/librt.so
# last but not least... headers.
mkdir -p ${D}/nptl ${D}/usr/include/nptl
make install_root=${D}/nptl install-headers PARALLELMFLAGS="${MAKEOPTS}"
pushd ${D}/nptl/usr/include > /dev/null
for i in `find . -type f`; do
if ! [ -f ${D}/usr/include/$i ] \
|| ! cmp -s $i ${D}/usr/include/$i; then
mkdir -p ${D}/usr/include/nptl/`dirname $i`
cp -a $i ${D}/usr/include/nptl/$i
fi
done
popd > /dev/null
rm -rf ${D}/nptl
fi
# now, strip everything but the thread libs #46186
mkdir -p ${T}/thread-backup
mv -f ${D}/$(alt_libdir)/lib{pthread,thread_db}* ${T}/thread-backup/
if use !nptlonly && want_nptl ; then
mkdir -p ${T}/thread-backup/tls
mv -f ${D}/$(alt_libdir)/tls/lib{pthread,thread_db}* ${T}/thread-backup/tls
fi
env -uRESTRICT CHOST=${CTARGET} prepallstrip
cp -a -- ${T}/thread-backup/* ${D}/$(alt_libdir)/ || die
# If librt.so is a symlink, change it into linker script (Redhat)
if [ -L "${D}/usr/$(get_libdir)/librt.so" -a "${LIBRT_LINKERSCRIPT}" = "yes" ]; then
local LIBRTSO="`cd ${D}/$(get_libdir); echo librt.so.*`"
local LIBPTHREADSO="`cd ${D}/$(get_libdir); echo libpthread.so.*`"
rm -f ${D}/usr/$(get_libdir)/librt.so
cat > ${D}/usr/$(get_libdir)/librt.so <<EOF
/* GNU ld script
librt.so.1 needs libpthread.so.0 to come before libc.so.6*
in search scope. */
EOF
grep "OUTPUT_FORMAT" ${D}/usr/$(get_libdir)/libc.so >> ${D}/usr/$(get_libdir)/librt.so
echo "GROUP ( /$(get_libdir)/${LIBPTHREADSO} /$(get_libdir)/${LIBRTSO} )" \
>> ${D}/usr/$(get_libdir)/librt.so
for x in ${D}/usr/$(get_libdir)/librt.so.[1-9]; do
[ -L "${x}" ] && rm -f ${x}
done
fi
if use pic && ! use amd64 ; then
find ${S}/${buildtarget}/ -name "soinit.os" -exec cp {} ${D}/lib/soinit.o \;
find ${S}/${buildtarget}/ -name "sofini.os" -exec cp {} ${D}/lib/sofini.o \;
find ${S}/${buildtarget}/ -name "*_pic.a" -exec cp {} ${D}/lib \;
find ${S}/${buildtarget}/ -name "*.map" -exec cp {} ${D}/lib \;
for i in ${D}/lib/*.map; do
mv ${i} ${i%.map}_pic.map
done
fi
# We'll take care of the cache ourselves
rm -f ${D}/etc/ld.so.cache
# Some things want this, notably ash.
dosym libbsd-compat.a /usr/$(get_libdir)/libbsd.a
# Handle includes for different ABIs
prep_ml_includes
#################################################################
# EVERYTHING AFTER THIS POINT IS FOR NATIVE GLIBC INSTALLS ONLY #
[[ ${CTARGET} != ${CHOST} ]] && return 0
# Everything past this point just needs to be done once... don't waste time building locale files twice...
is_final_abi || return 0
cd ${WORKDIR}/${MYMAINBUILDDIR}
if ! use build ; then
if ! has noinfo ${FEATURES} ; then
einfo "Installing Info pages..."
make PARALLELMFLAGS="${MAKEOPTS}" \
install_root=${D} \
info -i
fi
setup_locales
einfo "Installing man pages and docs..."
# Install linuxthreads man pages even if nptl is enabled
dodir /usr/share/man/man3
doman ${S}/man/*.3thr
# Install nscd config file
insinto /etc ; doins ${FILESDIR}/nscd.conf
exeinto /etc/init.d ; doexe ${FILESDIR}/nscd
doins "${FILESDIR}"/nsswitch.conf
cd ${S}
dodoc BUGS ChangeLog* CONFORMANCE FAQ INTERFACE \
NEWS NOTES PROJECTS README*
else
rm -rf ${D}/usr/share
for dir in $(get_all_libdirs); do
rm -rf ${D}/usr/${dir}/gconv &> /dev/null
done
einfo "Installing Timezone data..."
make PARALLELMFLAGS="${MAKEOPTS}" \
install_root=${D} \
timezone/install-others || die
fi
# Is this next line actually needed or does the makefile get it right?
# It previously has 0755 perms which was killing things.
fperms 4711 /usr/lib/misc/pt_chown
# Prevent overwriting of the /etc/localtime symlink. We'll handle the
# creation of the "factory" symlink in pkg_postinst().
rm -f ${D}/etc/localtime
insinto /etc
# This is our new config file for building locales
doins ${FILESDIR}/locales.build
# example host.conf with multicast dns disabled by default
doins ${FILESDIR}/2.3.4/host.conf
# simple test to make sure our new glibc isnt completely broken.
# for now, skip the multilib scenario. also make sure we don't
# test with statically built binaries since they will fail.
[[ ${CBUILD} != ${CHOST} ]] && return 0
[[ $(get_libdir) != "lib" ]] && return 0
for x in date env ls true uname ; do
x=$(type -p ${x})
[[ -z ${x} ]] && continue
striptest=$(file -L ${x} 2>/dev/null)
[[ -z ${striptest} ]] && continue
[[ ${striptest/statically linked} != "${striptest}" ]] && continue
"${D}"/$(get_libdir)/ld-*.so \
--library-path "${D}"/$(get_libdir) \
${x} > /dev/null \
|| die "simple run test (${x}) failed"
done
}
must_exist() {
test -e ${D}/${1}/${2} || die "${1}/${2} was not installed"
}
fix_lib64_symlinks() {
# the original Gentoo/AMD64 devs decided that since 64bit is the native
# bitdepth for AMD64, lib should be used for 64bit libraries. however,
# this ignores the FHS and breaks multilib horribly... especially
# since it wont even work without a lib64 symlink anyways. *rolls eyes*
# see bug 59710 for more information.
# Travis Tilley <lv@gentoo.org> (08 Aug 2004)
if [ -L ${ROOT}/lib64 ] ; then
ewarn "removing /lib64 symlink and moving lib to lib64..."
ewarn "dont hit ctrl-c until this is done"
addwrite ${ROOT}/
rm ${ROOT}/lib64
# now that lib64 is gone, nothing will run without calling ld.so
# directly. luckily the window of brokenness is almost non-existant
/lib/ld-linux-x86-64.so.2 /bin/mv ${ROOT}/lib ${ROOT}/lib64
# all better :)
ldconfig
ln -s lib64 ${ROOT}/lib
einfo "done! :-)"
einfo "fixed broken lib64/lib symlink in ${ROOT}"
fi
if [ -L ${ROOT}/usr/lib64 ] ; then
addwrite ${ROOT}/usr
rm ${ROOT}/usr/lib64
mv ${ROOT}/usr/lib ${ROOT}/usr/lib64
ln -s lib64 ${ROOT}/usr/lib
einfo "fixed broken lib64/lib symlink in ${ROOT}/usr"
fi
if [ -L ${ROOT}/usr/X11R6/lib64 ] ; then
addwrite ${ROOT}/usr/X11R6
rm ${ROOT}/usr/X11R6/lib64
mv ${ROOT}/usr/X11R6/lib ${ROOT}/usr/X11R6/lib64
ln -s lib64 ${ROOT}/usr/X11R6/lib
einfo "fixed broken lib64/lib symlink in ${ROOT}/usr/X11R6"
fi
}
pkg_preinst() {
# PPC64+others may want to eventually be added to this logic if they
# decide to be multilib compatible and FHS compliant. note that this
# chunk of FHS compliance only applies to 64bit archs where 32bit
# compatibility is a major concern (not IA64, for example).
# amd64's 2005.0 is the first amd64 profile to not need this code.
# 2005.0 is setup properly, and this is executed as part of the
# 2004.3 -> 2005.0 upgrade script.
# It can be removed after 2004.3 has been purged from portage.
use amd64 && [ "$(get_libdir)" == "lib64" ] && ! has_multilib_profile && fix_lib64_symlinks
# it appears that /lib/tls is sometimes not removed. See bug
# 69258 for more info.
if [[ -d ${ROOT}/$(get_libdir)/tls ]] && use nptlonly ; then
addwrite "${ROOT}"/$(get_libdir)/
ewarn "nptlonly in USE, removing /${ROOT}/$(get_libdir)/tls..."
rm -r "${ROOT}"/$(get_libdir)/tls || die
fi
# Shouldnt need to keep this updated
[[ -e ${ROOT}/etc/locales.build ]] && rm -f "${D}"/etc/locales.build
}
pkg_postinst() {
# Correct me if I am wrong here, but my /etc/localtime is a file
# created by zic ....
# I am thinking that it should only be recreated if no /etc/localtime
# exists, or if it is an invalid symlink.
#
# For invalid symlink:
# -f && -e will fail
# -L will succeed
#
if [ ! -e "${ROOT}/etc/localtime" ]; then
echo "Please remember to set your timezone using the zic command."
rm -f ${ROOT}/etc/localtime
ln -s ../usr/share/zoneinfo/Factory ${ROOT}/etc/localtime
fi
if [ -x "${ROOT}/usr/sbin/iconvconfig" ]; then
# Generate fastloading iconv module configuration file.
${ROOT}/usr/sbin/iconvconfig --prefix=${ROOT}
fi
if [ ! -e "${ROOT}/ld.so.1" ] && use ppc64
then
pushd ${ROOT}
cd ${ROOT}/lib
ln -s ld64.so.1 ld.so.1
popd
fi
# Reload init ...
if [ "${ROOT}" = "/" ]; then
/sbin/telinit U &> /dev/null
fi
# warn the few multicast-dns-by-default users we've had about the change
# in behavior...
echo
einfo "Gentoo's glibc now disables multicast dns by default in our"
einfo "example host.conf. To re-enable this functionality, simply"
einfo "remove the line that disables it (mdns off)."
echo
}
|