2008-10-21 03:27:22 +00:00
|
|
|
# Template file for 'glibc'
|
|
|
|
pkgname=glibc
|
2008-11-24 21:51:43 +00:00
|
|
|
version=2.9
|
|
|
|
glibc_snapdate=20081124
|
|
|
|
wrksrc="$pkgname-$version-$glibc_snapdate"
|
|
|
|
distfiles="ftp://sources.redhat.com/pub/glibc/snapshots/$pkgname-$version-$glibc_snapdate.tar.bz2"
|
2008-10-21 03:27:22 +00:00
|
|
|
build_style=gnu_configure
|
2008-10-21 23:54:48 +00:00
|
|
|
configure_script="../configure"
|
2008-10-21 03:27:22 +00:00
|
|
|
configure_args="--with-tls -disable-profile --with-__thread
|
|
|
|
--enable-kernel=2.6.16 --enable-add-ons --without-gd --enable-bind-now
|
2008-11-17 08:16:31 +00:00
|
|
|
--without-cvs --without-selinux --infodir=/usr/share/info
|
|
|
|
--libdir=/usr/lib"
|
2008-10-21 23:54:48 +00:00
|
|
|
make_install_target="install_root=$XBPS_DESTDIR/$pkgname-$version install
|
|
|
|
localedata/install-locales"
|
2008-10-21 03:27:22 +00:00
|
|
|
short_desc="The GNU C library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2008-11-24 21:51:43 +00:00
|
|
|
checksum=cca278180fcd961ed4bcd735b149bd79fa5c01e52abad604e9bfb591e4d7513d
|
2008-10-21 03:27:22 +00:00
|
|
|
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 03:30:10 +00:00
|
|
|
|
2008-12-14 00:48:36 +00:00
|
|
|
conf_files="/etc/localtime /etc/ld.so.cache /etc/ld.so.conf /etc/rpc
|
|
|
|
/etc/nsswitch.conf"
|
2008-10-27 05:12:30 +00:00
|
|
|
base_chroot=yes
|
2008-10-21 03:30:10 +00:00
|
|
|
build_depends="gcc-4.3.2"
|
2008-10-27 05:12:30 +00:00
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
# We must configure it in another directory.
|
|
|
|
wrksrc=$wrksrc/build_obj
|
2008-11-24 21:51:43 +00:00
|
|
|
mkdir -p $wrksrc
|
2008-11-03 09:32:36 +00:00
|
|
|
echo "slibdir=/lib" > $wrksrc/configparms
|
2008-11-21 16:12:07 +00:00
|
|
|
# glibc fails to build if -march not set for a minimal cpu.
|
|
|
|
if [ "$xbps_machine" != "x86_64" ]; then
|
|
|
|
echo "CFLAGS+=-march=${xbps_machine%%-*} -mtune=generic" \
|
|
|
|
>> $wrksrc/configparms
|
|
|
|
fi
|
2008-10-27 05:12:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre_install()
|
|
|
|
{
|
2008-11-03 09:32:36 +00:00
|
|
|
# Create destdir/etc/ld.so.conf
|
2008-10-27 05:12:30 +00:00
|
|
|
mkdir -p $XBPS_DESTDIR/$pkgname-$version/etc
|
|
|
|
touch $XBPS_DESTDIR/$pkgname-$version/etc/ld.so.conf
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2008-11-03 09:32:36 +00:00
|
|
|
local destdir=$XBPS_DESTDIR/$pkgname-$version
|
2008-10-27 05:12:30 +00:00
|
|
|
|
2008-11-03 09:32:36 +00:00
|
|
|
# Replace hardcoded path to bash.
|
|
|
|
. $XBPS_HELPERSDIR/replace-interpreter.sh
|
|
|
|
replace_interpreter bash $destdir/usr/bin/ldd
|
2008-10-27 05:12:30 +00:00
|
|
|
|
2008-11-17 08:16:31 +00:00
|
|
|
# On x86_64, add dynamic linker's 32bit version to ldd.
|
2008-10-27 05:12:30 +00:00
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
2008-11-03 09:32:36 +00:00
|
|
|
rtldlist="/lib/ld-linux.so.2 /lib/ld-linux-x86-64.so.2"
|
|
|
|
sed -i "s|^RTLDLIST.*$|RTLDLIST=\"$rtldlist\"|" \
|
|
|
|
$destdir/usr/bin/ldd
|
2008-10-27 05:12:30 +00:00
|
|
|
fi
|
2008-11-17 08:16:31 +00:00
|
|
|
|
2008-11-26 10:30:36 +00:00
|
|
|
# Create nsswitch.conf
|
|
|
|
( \
|
|
|
|
echo "passwd: files"; \
|
|
|
|
echo "group: files"; \
|
|
|
|
echo "shadow: files"; \
|
|
|
|
echo; \
|
|
|
|
echo "hosts: files dns"; \
|
|
|
|
echo "networks: files"; \
|
|
|
|
echo; \
|
|
|
|
echo "protocols: files"; \
|
|
|
|
echo "services: files"; \
|
|
|
|
echo "ethers: files"; \
|
|
|
|
echo "rpc: files"; \
|
|
|
|
) > $destdir/etc/nsswitch.conf
|
|
|
|
|
2008-11-24 21:51:43 +00:00
|
|
|
wrksrc=${wrksrc%%/build_obj}
|
2008-10-27 05:12:30 +00:00
|
|
|
}
|