CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
kbd: updated to 1.15.5
[ports/core-arm.git] / glibc / Pkgfile
index 0dd94085b0f528906f1032a7cab6884aaa050b21..f698f1588258131fb731adc3b702267fd5eda3f2 100644 (file)
@@ -5,20 +5,18 @@
 # Depends on:
 
 name=glibc
-version=2.13
-release=1
+version=2.16.0
+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 \
-        hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
+        ftp://ftp.kernel.org/pub/linux/kernel/v3.x/linux-3.4.11.tar.bz2 \
+        http://ftp.gnu.org/gnu/$name/$name-ports-$version.tar.bz2 \
+        hosts resolv.conf nsswitch.conf host.conf ld.so.conf \
+        $name-resolv_assert.patch \
+        $name-strtod_integer_overflow.patch)
 
 build() {
-  # install build kernel headers
-  cd linux-2.6.35.6
+  # install kernel headers
+  cd linux-3.4.11
   make mrproper
   make ARCH=arm headers_check
   make ARCH=arm INSTALL_HDR_PATH=$PKG/usr headers_install
@@ -27,33 +25,33 @@ build() {
   mv $name-ports-$version $name-$version/ports
 
   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
+  patch -p1 -i $SRC/$name-resolv_assert.patch
+  patch -p1 -i $SRC/$name-strtod_integer_overflow.patch
   popd
 
-  mkdir build
-  cd build
+  mkdir $SRC/build
+  cd $SRC/build
 
   ../$name-$version/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=2.6.25 \
                               --enable-add-ons \
                               --disable-profile \
                               --without-gd \
-                              --with-__thread 
+                              --enable-obsolete-rpc
 
-  make 
-  #make check
+  make
   make install_root=$PKG install
 
   cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
   ln -sf ../usr/share/zoneinfo/UTC $PKG/etc/localtime
   mkdir -p $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}
 }