X-Git-Url: http://gitweb/?a=blobdiff_plain;f=glibc%2FPkgfile;h=dd03b38a139ab390217bfb73f1961ad93411e780;hb=f9fa74e48326f450fe556068833d5d71ab7b601b;hp=4f66c40e45014a6adc1408b0d09a38722d57bd1f;hpb=eb267740891ac8d6ac16ee3551cd3fdd149a0979;p=ports%2Fcore-arm64.git diff --git a/glibc/Pkgfile b/glibc/Pkgfile index 4f66c40..dd03b38 100644 --- a/glibc/Pkgfile +++ b/glibc/Pkgfile @@ -5,47 +5,59 @@ # Depends on: name=glibc -version=2.22 -release=1 +version=2.27 +release=2 source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \ - http://ftp.kernel.org/pub/linux/kernel/v4.x/linux-4.1.13.tar.xz \ + http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.14.tar.xz \ + glibc-2.27-2.patch \ hosts resolv.conf nsswitch.conf host.conf ld.so.conf) build() { # install kernel headers - cd linux-4.1.13 + cd linux-4.14.14 make mrproper make ARCH=arm64 headers_check make ARCH=arm64 INSTALL_HDR_PATH=$PKG/usr headers_install + chown root:root $PKG/usr + + patch -p1 -d $SRC/$name-${version:0:4} -i $SRC/$name-$version-$release.patch mkdir $SRC/build cd $SRC/build - ../$name-$version/configure --prefix=/usr \ - --build=aarch64-unknown-linux-gnueabi \ + ../$name-${version:0:4}/configure --prefix=/usr \ --libexecdir=/usr/lib \ --with-headers=$PKG/usr/include \ --enable-kernel=2.6.25 \ --enable-add-ons \ --enable-static-nss \ + --enable-stack-protector=strong \ --disable-profile \ --disable-werror \ --without-gd \ - --enable-obsolete-rpc + --enable-obsolete-rpc \ + --enable-obsolete-nsl make + #make check make install_root=$PKG install - install -m 0644 $SRC/$name-$version/nscd/nscd.conf $PKG/etc + install -m 0644 $SRC/$name-${version:0:4}/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 - ln -s stubs-hard.h $PKG/usr/include/gnu/stubs-soft.h + 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 }