2008-10-21 05:27:22 +02:00
|
|
|
# Template file for 'glibc'
|
|
|
|
pkgname=glibc
|
2009-06-07 08:15:12 +02:00
|
|
|
version=2.10.1
|
2009-10-21 14:28:57 +02:00
|
|
|
revision=1
|
2009-06-07 08:15:12 +02:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/glibc/glibc-${version}.tar.bz2"
|
2008-10-21 05:27:22 +02:00
|
|
|
build_style=gnu_configure
|
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
|
2009-02-25 06:15:20 +01:00
|
|
|
--enable-kernel=2.6.27 --enable-add-ons --without-gd
|
2009-03-18 10:02:43 +01:00
|
|
|
--without-cvs --without-selinux --libexecdir=/usr/lib
|
|
|
|
--libdir=/usr/lib --enable-stackguard-randomization
|
2009-03-03 23:52:07 +01:00
|
|
|
--with-headers=$XBPS_MASTERDIR/usr/include"
|
2009-02-21 02:18:23 +01:00
|
|
|
make_install_target="install_root=$XBPS_DESTDIR/$pkgname-$version install"
|
2008-10-21 05:27:22 +02:00
|
|
|
short_desc="The GNU C library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-06-07 08:15:12 +02:00
|
|
|
checksum=cbad3e637eab613184405a87a2bf08a41991a0e512a3ced60d120effc73de667
|
2008-10-21 05:27:22 +02: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 05:30:10 +02:00
|
|
|
|
2009-06-07 08:15:12 +02:00
|
|
|
essential=yes
|
2008-10-27 06:12:30 +01:00
|
|
|
base_chroot=yes
|
2009-10-21 14:28:57 +02:00
|
|
|
conf_files="/etc/rpc /etc/ld.so.conf /etc/nsswitch.conf"
|
2009-02-24 07:13:11 +01:00
|
|
|
subpackages="devel locales"
|
|
|
|
|
|
|
|
Add_dependency build gcc
|
2009-03-03 23:52:07 +01:00
|
|
|
Add_dependency build kernel-libc-headers
|
2009-03-27 12:34:11 +01:00
|
|
|
Add_dependency run xbps-base-files
|
2009-02-24 07:13:11 +01:00
|
|
|
Add_dependency run gcc-libgcc
|
|
|
|
Add_dependency run glibc-locales
|
2008-10-27 06:12:30 +01:00
|
|
|
|
|
|
|
pre_configure()
|
|
|
|
{
|
|
|
|
# We must configure it in another directory.
|
|
|
|
wrksrc=$wrksrc/build_obj
|
2008-11-24 22:51:43 +01:00
|
|
|
mkdir -p $wrksrc
|
2008-11-03 10:32:36 +01:00
|
|
|
echo "slibdir=/lib" > $wrksrc/configparms
|
2008-11-21 17:12:07 +01: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 06:12:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre_install()
|
|
|
|
{
|
2009-03-11 06:31:56 +01:00
|
|
|
# Create DESTDIR/etc/ld.so.conf
|
|
|
|
mkdir -p ${DESTDIR}/etc
|
|
|
|
echo "/usr/local/lib" > ${DESTDIR}/etc/ld.so.conf
|
2008-10-27 06:12:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2008-11-03 10:32:36 +01:00
|
|
|
# Replace hardcoded path to bash.
|
|
|
|
. $XBPS_HELPERSDIR/replace-interpreter.sh
|
2009-03-11 06:31:56 +01:00
|
|
|
replace_interpreter bash ${DESTDIR}/usr/bin/ldd
|
2008-10-27 06:12:30 +01:00
|
|
|
|
2008-11-17 09:16:31 +01:00
|
|
|
# On x86_64, add dynamic linker's 32bit version to ldd.
|
2008-10-27 06:12:30 +01:00
|
|
|
if [ "$xbps_machine" = "x86_64" ]; then
|
2008-11-03 10:32:36 +01:00
|
|
|
rtldlist="/lib/ld-linux.so.2 /lib/ld-linux-x86-64.so.2"
|
|
|
|
sed -i "s|^RTLDLIST.*$|RTLDLIST=\"$rtldlist\"|" \
|
2009-03-11 06:31:56 +01:00
|
|
|
${DESTDIR}/usr/bin/ldd
|
2008-10-27 06:12:30 +01:00
|
|
|
fi
|
2008-11-17 09:16:31 +01:00
|
|
|
|
2008-11-26 11:30:36 +01: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"; \
|
2009-03-11 06:31:56 +01:00
|
|
|
) > ${DESTDIR}/etc/nsswitch.conf
|
2008-11-26 11:30:36 +01:00
|
|
|
|
2009-10-21 14:32:49 +02:00
|
|
|
rm -f ${DESTDIR}/etc/ld.so.cache
|
|
|
|
|
2008-11-24 22:51:43 +01:00
|
|
|
wrksrc=${wrksrc%%/build_obj}
|
2008-10-27 06:12:30 +01:00
|
|
|
}
|