X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=5d825cfe65c756e2442f2b2c2a978d2db527b59b;hb=ee936e35115b36fba7fdd420cecf13032b379d69;hp=91e403cda4aafce4d4ca9a603c62b7d101ceed32;hpb=3d9e9aa9d566e3746f6c616f5c5d2ecb685dd9bb;p=ports%2Fcore-arm.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 91e403c..5d825cf 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,53 +5,61 @@ # Depends on: name=glibc -version=2.19 -release=5 +version=2.28 +release=2 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ - ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-3.12.tar.xz \ - CVE-2014-0475.patch iconv-gconv_trans.c.patch \ - CVE-2012-3406-Stack-overflow-in-vfprintf-BZ-16617.patch \ - CVE-2014-7817-wordexp-fails-to-honour-WRDE_NOCMD.patch \ - CVE-2014-9402-Avoid-infinite-loop-in-nss_dns-getnetbyname.patch \ - CVE-2015-1472-wscanf-allocates-too-little-memory.patch \ + http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.24.tar.xz \ + $name-$version-1.patch \ hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install kernel headers - cd linux-3.12 + cd linux-4.19.24 make mrproper make ARCH=arm headers_check make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install + chown root:root $PKG/usr - patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2014-0475.patch - patch -p1 -d $SRC/$name-$version -i $SRC/iconv-gconv_trans.c.patch - patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2012-3406-Stack-overflow-in-vfprintf-BZ-16617.patch - patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2014-7817-wordexp-fails-to-honour-WRDE_NOCMD.patch - patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2014-9402-Avoid-infinite-loop-in-nss_dns-getnetbyname.patch - patch -p1 -d $SRC/$name-$version -i $SRC/CVE-2015-1472-wscanf-allocates-too-little-memory.patch + patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-1.patch mkdir $SRC/build cd $SRC/build - ../$name-$version/configure --prefix=/usr \ + ../$name-${version:0:4}/configure --prefix=/usr \ --build=arm-unknown-linux-gnueabihf \ --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ - --with-tls \ - --enable-kernel=2.6.25 \ + --enable-kernel=3.2 \ --enable-add-ons \ + --enable-static-nss \ + --enable-stack-protector=strong \ + --enable-obsolete-rpc \ + --enable-obsolete-nsl \ --disable-profile \ + --disable-werror \ --without-gd \ - --enable-obsolete-rpc + --disable-multi-arch make + #make check make install_root=$PKG install - cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc + install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc + install -d $PKG/var/{db,run}/nscd + + install -m 0644 $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc + + # install needed headers + install -d $PKG/usr/include/rpcsvc + install -m 0644 $SRC/$name-${version:0:4}/nis/rpcsvc/yp* $PKG/usr/include/rpcsvc + ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime - mkdir -p $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale + ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h + install -d $PKG/etc/ld.so.conf.d $PKG/usr/lib/locale touch $PKG/etc/ld.so.cache rm -rf $PKG/usr/share/{info,locale} \ - $PKG/usr/bin/tzselect \ - $PKG/usr/sbin/z{dump,ic} + $PKG/usr/bin/tzselect \ + $PKG/usr/sbin/z{dump,ic} + find $PKG -name "*install.cmd" -delete + find $PKG -name ".\install" -delete }