X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=5d825cfe65c756e2442f2b2c2a978d2db527b59b;hb=70de2376be42f50bd34d6b995daf43964d6b58cb;hp=125c07c04186b0b5e427e6617d6fd4487dc3a5ea;hpb=7518bd30f09ada85b26176f9598980d26d35a8c8;p=ports%2Fcore-arm.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 125c07c..5d825cf 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,55 +5,61 @@ # Depends on: name=glibc -version=2.13 -release=1 +version=2.28 +release=2 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ - ftp://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \ - ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.35.6.tar.gz \ - glibc-ignore_origin.patch \ - Optimize-__getpagesize-a-bit.patch \ - $name-$version-gnueabihf.patch \ - $name-$version-prelink.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 build kernel headers - cd linux-2.6.35.6 + # install kernel headers + 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 - cd $SRC - mv $name-ports-$version $name-$version/ports + patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-1.patch - pushd $name-$version - patch -p1 -i $SRC/$name-$version-gnueabihf.patch - patch -p1 -i $SRC/$name-$version-prelink.patch - patch -R -p1 -i $SRC/Optimize-__getpagesize-a-bit.patch - patch -p1 -i $SRC/$name-ignore_origin.patch - popd - - mkdir build - cd build - - ../$name-$version/configure --prefix=/usr \ - --build=arm-crux-linux-gnueabihf \ + mkdir $SRC/build + cd $SRC/build + ../$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.0 \ + --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 \ - --with-__thread + --disable-multi-arch - make + 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} + rm -rf $PKG/usr/share/{info,locale} \ + $PKG/usr/bin/tzselect \ + $PKG/usr/sbin/z{dump,ic} + find $PKG -name "*install.cmd" -delete + find $PKG -name ".\install" -delete }