summaryrefslogtreecommitdiffstats
path: root/glibc/Pkgfile.old
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2011-01-16 17:20:50 +0100
committerLukc <lukc@upyum.com>2011-01-16 17:20:50 +0100
commitdfc46bdad1822b547ec0636dd35e1ffbd1cd869a (patch)
tree9e6a884e6417a41daac3281bcddd75a8742e5e7b /glibc/Pkgfile.old
parent84351f3600a5ff705a66e9f343f60477c9857310 (diff)
downloadbase-dfc46bdad1822b547ec0636dd35e1ffbd1cd869a.tar.gz
base-dfc46bdad1822b547ec0636dd35e1ffbd1cd869a.tar.bz2
base-dfc46bdad1822b547ec0636dd35e1ffbd1cd869a.tar.xz
base-dfc46bdad1822b547ec0636dd35e1ffbd1cd869a.zip
Suppression de glibc de base. o// \\o \o/ _o/ \o_ \o/ \\o o//
Diffstat (limited to 'glibc/Pkgfile.old')
-rw-r--r--glibc/Pkgfile.old48
1 files changed, 0 insertions, 48 deletions
diff --git a/glibc/Pkgfile.old b/glibc/Pkgfile.old
deleted file mode 100644
index e0931c3..0000000
--- a/glibc/Pkgfile.old
+++ /dev/null
@@ -1,48 +0,0 @@
-# Description: The C library used in the GNU system
-# URL: http://www.gnu.org/software/libc/
-# Maintainer: CRUX System Team, core-ports at crux dot nu
-
-name=glibc
-version=2.12.1
-release=2
-source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz
- http://crux.nu/files/distfiles/kernel-headers-2.6.35.tar.xz
- glibc-fedora_i686.patch
- Optimize-__getpagesize-a-bit.patch
- CVE-2010-3847.patch CVE-2010-3856.patch
- hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
-
-build() {
- # install kernel headers
- mkdir $PKG/usr/
- cp -r kernel-headers-2.6.35/include $PKG/usr
- chown root:root $PKG/usr
-
- patch -p1 -d $name-$version -i $SRC/$name-fedora_i686.patch
- patch -R -p1 -d $name-$version -i $SRC/Optimize-__getpagesize-a-bit.patch
- patch -p1 -d $name-$version -i $SRC/CVE-2010-3847.patch
- patch -p1 -d $name-$version -i $SRC/CVE-2010-3856.patch
-
- sed -i '/^all-subdirs/,+6s/manual//' $name-$version/Makeconfig
-
- mkdir build
- cd build
- ../$name-$version/configure --prefix=/usr \
- --libexecdir=/usr/lib \
- --with-headers=$PKG/usr/include \
- --with-tls \
- --enable-kernel=2.6.27 \
- --enable-add-ons \
- --disable-profile \
- --without-gd
- make
- #make check
- 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}
-}