Juergen Daubert
53ce63301e
To avoid an unclean unmount of "/" on next shutdown, reload the init process after the glibc update. Either run the included post-install script or use the following command: /sbin/telinit U
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
# 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.2
|
|
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
|
|
glibc-ignore_origin.patch
|
|
Optimize-__getpagesize-a-bit.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/$name-ignore_origin.patch
|
|
|
|
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}
|
|
}
|