CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
openssl: updated to 1.0.2k
[ports/core-arm.git] / glibc / Pkgfile
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
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on:
6
7 name=glibc
8 version=2.22
9 release=3
10 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
11 http://ftp.kernel.org/pub/linux/kernel/v4.x/linux-4.1.13.tar.xz \
12 CVE-2015-8779.patch CVE-2015-8778.patch CVE-2015-8777.patch \
13 CVE-2015-8776.patch CVE-2015-7547.patch glibc-rh1252570.patch
14 hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
15
16 build() {
17 # install kernel headers
18 cd linux-4.1.13
19 make mrproper
20 make ARCH=arm headers_check
21 make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
22
23 patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2015-8778.patch
24 patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2015-8777.patch
25 patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2015-8776.patch
26 patch -p1 -d $SRC/$name-$version -i $SRC/glibc-rh1252570.patch
27 patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2015-7547.patch
28
29 mkdir $SRC/build
30 cd $SRC/build
31 ../$name-$version/configure --prefix=/usr \
32 --build=arm-unknown-linux-gnueabihf \
33 --libexecdir=/usr/lib \
34 --with-headers=$PKG/usr/include \
35 --enable-kernel=2.6.25 \
36 --enable-add-ons \
37 --enable-static-nss \
38 --disable-profile \
39 --disable-werror \
40 --without-gd \
41 --enable-obsolete-rpc
42
43 make
44 make install_root=$PKG install
45
46 install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc
47 install -d $PKG/var/{db,run}/nscd
48
49 install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
50
51 ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
52 ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h
53 install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale
54 touch $PKG/etc/ld.so.cache
55
56 rm -rf $PKG/usr/share/{info,locale} \
57 $PKG/usr/bin/tzselect \
58 $PKG/usr/sbin/z{dump,ic}
59 }