CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
glibc: update to 2.12.2
[crossrootfs.git] / glibc / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: The C library used in the GNU system
2# URL: http://www.gnu.org/software/libc/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5# Depends on:
6
7name=glibc
4551f658 8version=2.12.2
d33c68a0 9release=2
4551f658
VM
10source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
11 ftp://ftp.gnu.org/gnu/$name/$name-ports-2.12.1.tar.bz2 \
12 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.tar.gz \
13 glibc-ignore_origin.patch \
14 Optimize-__getpagesize-a-bit.patch \
6dca1d21 15 $name-$version-cross_hacks-2.patch \
6dca1d21
JB
16 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
17
18build() {
19 # install build kernel headers
4551f658 20 cd linux-2.6.35
6dca1d21
JB
21 make mrproper
22 make ARCH=arm headers_check
23 make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
6dca1d21 24
534a14fc 25 cd $SRC
4551f658 26 mv $name-ports-2.12.1 $name-$version/ports
6dca1d21
JB
27
28 pushd $name-$version
6dca1d21 29 patch -p1 -i $SRC/$name-$version-cross_hacks-2.patch
4551f658
VM
30 patch -R -p1 -i $SRC/Optimize-__getpagesize-a-bit.patch
31 patch -p1 -i $SRC/$name-ignore_origin.patch
6dca1d21
JB
32 popd
33
34 mkdir build
35 cd build
534a14fc
VM
36
37 cat > config.cache << EOF
6dca1d21
JB
38libc_cv_gnu89_inline=yes
39ac_cv_sizeof_long_double=0
40EOF
41
42 ../$name-$version/configure --build=$CHOST \
43 --host=$CTARGET \
44 --prefix=/usr \
45 --libexecdir=/usr/lib \
46 --with-headers=$PKG/usr/include \
47 --with-tls \
48 --enable-kernel=2.6.0 \
49 --enable-add-ons \
50 --disable-profile \
51 --without-gd \
534a14fc 52 --with-__thread
6dca1d21
JB
53
54 make CC="$CC" CFLAGS="$CFLAGS"
55 make install_root=$PKG install
534a14fc 56
6dca1d21
JB
57 cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
58 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
59 mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
60
6dca1d21
JB
61 rm -rf $PKG/usr/share/{info,locale}
62}