CRUX-ARM : Home

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