2008-10-21 05:27:22 +02:00
|
|
|
# Template file for 'glibc'
|
|
|
|
pkgname=glibc
|
|
|
|
version=2.8
|
|
|
|
wrksrc="libc"
|
2008-10-28 23:57:52 +01:00
|
|
|
distfiles="ftp://ftp.archlinux.org/other/glibc/$pkgname-2.8_20080828.tar.bz2"
|
2008-10-21 05:27:22 +02:00
|
|
|
build_style=gnu_configure
|
2008-10-23 17:14:00 +02:00
|
|
|
configure_env="ac_cv_path_BASH_SHELL=/bin/bash"
|
2008-10-22 01:54:48 +02:00
|
|
|
configure_script="../configure"
|
2008-10-21 05:27:22 +02:00
|
|
|
configure_args="--with-tls -disable-profile --with-__thread
|
|
|
|
--enable-kernel=2.6.16 --enable-add-ons --without-gd --enable-bind-now
|
2008-10-24 02:01:54 +02:00
|
|
|
--without-cvs --without-selinux --prefix=/usr --libdir=/usr/lib
|
2008-10-24 04:24:43 +02:00
|
|
|
--with-headers=/usr/include
|
|
|
|
--infodir=/usr/share/info"
|
2008-10-22 01:54:48 +02:00
|
|
|
make_install_target="install_root=$XBPS_DESTDIR/$pkgname-$version install
|
|
|
|
localedata/install-locales"
|
2008-10-21 05:27:22 +02:00
|
|
|
short_desc="The GNU C library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
checksum=f5756668f201e093cae0404e59dcf8c43ccc07757fd0a7455298ed89126c366a
|
|
|
|
long_desc="
|
|
|
|
The GNU C Library is the standard system C library for all GNU systems,
|
|
|
|
and is an important part of what makes up a GNU system. It provides the
|
|
|
|
system API for all programs written in C and C-compatible languages such
|
|
|
|
as C++ and Objective C; the runtime facilities of other programming
|
|
|
|
languages use the C library to access the underlying operating system."
|
2008-10-21 05:30:10 +02:00
|
|
|
|
2008-10-22 01:54:48 +02:00
|
|
|
base_package=yes
|
2008-10-27 06:12:30 +01:00
|
|
|
base_chroot=yes
|
2008-10-21 05:30:10 +02:00
|
|
|
build_depends="gcc-4.3.2"
|
2008-10-27 06:12:30 +01:00
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
# We must configure it in another directory.
|
|
|
|
mkdir -p $wrksrc/build_obj && cd $wrksrc/build_obj
|
|
|
|
wrksrc=$wrksrc/build_obj
|
|
|
|
echo "slibdir=/lib" >> $wrksrc/configparms
|
|
|
|
}
|
|
|
|
|
|
|
|
pre_install()
|
|
|
|
{
|
|
|
|
# Create destdir/etc/ld.conf
|
|
|
|
mkdir -p $XBPS_DESTDIR/$pkgname-$version/etc
|
|
|
|
touch $XBPS_DESTDIR/$pkgname-$version/etc/ld.so.conf
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
|
|
|
# Replace hardcoded path to bash.
|
|
|
|
# x86_64 arch: use /lib rather than /lib64 and make
|
|
|
|
# lib64 -> lib symlinks.
|
|
|
|
|
|
|
|
if [ -x $XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd ]; then
|
|
|
|
sed -i -e "s,$XBPS_MASTERDIR/bin/bash,/bin/bash,g" \
|
|
|
|
$XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
|
|
|
sed -i '/RTLDLIST/s%/ld-linux.so.2 /lib64%%' \
|
|
|
|
$XBPS_DESTDIR/$pkgname-$version/usr/bin/ldd
|
|
|
|
cd $XBPS_DESTDIR/$pkgname-$version && ln -s lib lib64
|
|
|
|
cd $XBPS_DESTDIR/$pkgname-$version/usr && ln -s lib lib64
|
|
|
|
fi
|
|
|
|
}
|