2006-02-23 15:26:10 +00:00
|
|
|
# Description: The C library used in the GNU system
|
|
|
|
# URL: http://www.gnu.org/software/libc/
|
2007-01-23 17:35:30 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=glibc
|
2015-06-20 22:42:25 +02:00
|
|
|
version=2.21
|
|
|
|
release=1
|
2012-08-08 10:08:54 +02:00
|
|
|
source=(http://ftp.gnu.org/gnu/glibc/glibc-$version.tar.xz \
|
2014-02-15 18:02:52 +01:00
|
|
|
http://crux.nu/files/distfiles/kernel-headers-3.12.tar.bz2 \
|
2015-06-20 22:42:25 +02:00
|
|
|
$name-2.20-multilib-dirs.patch \
|
2014-02-15 18:02:52 +01:00
|
|
|
hosts resolv.conf nsswitch.conf host.conf ld.so.conf)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2012-08-08 10:08:54 +02:00
|
|
|
# install kernel headers
|
|
|
|
mkdir $PKG/usr/
|
2014-02-15 18:02:52 +01:00
|
|
|
cp -r $SRC/kernel-headers-3.12/include $PKG/usr
|
2012-08-08 10:08:54 +02:00
|
|
|
chown root:root $PKG/usr
|
2006-03-16 17:56:22 +00:00
|
|
|
|
2015-06-20 22:42:25 +02:00
|
|
|
patch -p1 -d $SRC/$name-$version -i $SRC/$name-2.20-multilib-dirs.patch
|
2009-05-19 08:38:09 +02:00
|
|
|
|
2014-02-15 18:02:52 +01:00
|
|
|
mkdir $SRC/build
|
|
|
|
cd $SRC/build
|
2012-08-08 10:08:54 +02:00
|
|
|
../$name-$version/configure --prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--with-headers=$PKG/usr/include \
|
2015-06-20 22:42:25 +02:00
|
|
|
--enable-kernel=3.12 \
|
2012-08-08 10:08:54 +02:00
|
|
|
--enable-add-ons \
|
|
|
|
--disable-profile \
|
|
|
|
--without-gd \
|
2015-06-20 22:42:25 +02:00
|
|
|
--enable-obsolete-rpc --enable-multi-arch
|
2012-08-08 10:08:54 +02:00
|
|
|
make
|
|
|
|
#make check
|
|
|
|
make install_root=$PKG install
|
2009-05-19 08:38:09 +02:00
|
|
|
|
2015-06-20 22:42:25 +02:00
|
|
|
cp $SRC/{hosts,resolv.conf,nsswitch.conf,host.conf,ld.so.conf} $PKG/etc
|
2012-08-08 10:08:54 +02:00
|
|
|
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
|
2007-10-09 21:41:32 +02:00
|
|
|
|
2015-06-20 22:42:25 +02:00
|
|
|
rm -rf $PKG/usr/share/{info,locale} \
|
|
|
|
$PKG/usr/bin/tzselect \
|
|
|
|
$PKG/usr/sbin/z{dump,ic}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|