2008-10-21 03:27:22 +00:00
|
|
|
# Template file for 'glibc'
|
|
|
|
pkgname=glibc
|
2015-02-06 18:00:57 +00:00
|
|
|
version=2.21
|
2015-02-08 09:08:34 +00:00
|
|
|
revision=2
|
2013-11-14 09:59:01 +00:00
|
|
|
bootstrap=yes
|
2008-10-21 03:27:22 +00:00
|
|
|
short_desc="The GNU C library"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-05-30 06:46:57 +00:00
|
|
|
homepage="http://www.gnu.org/software/libc"
|
|
|
|
license="GPL-2, LGPL-2.1, BSD"
|
2013-02-06 19:08:44 +00:00
|
|
|
distfiles="http://ftp.gnu.org/gnu/glibc/glibc-${version}.tar.xz"
|
2015-02-06 18:00:57 +00:00
|
|
|
checksum=aeeb362437965a5d3f40b151094ca79def04a115bd363fdd4a9a0c69482923b8
|
2014-01-01 15:10:11 +00:00
|
|
|
# Do not strip these files, objcopy errors out.
|
|
|
|
nostrip_files="
|
|
|
|
XBS5_ILP32_OFFBIG
|
|
|
|
XBS5_ILP32_OFF32
|
|
|
|
POSIX_V6_ILP32_OFF32
|
|
|
|
POSIX_V6_ILP32_OFFBIG
|
|
|
|
POSIX_V7_ILP32_OFF32
|
|
|
|
POSIX_V7_ILP32_OFFBIG
|
|
|
|
POSIX_V6_LP64_OFF64
|
|
|
|
POSIX_V7_LP64_OFF64
|
|
|
|
XBS5_LP64_OFF64"
|
|
|
|
conf_files="
|
|
|
|
/etc/rpc
|
2014-03-03 08:16:51 +00:00
|
|
|
/etc/gai.conf
|
2014-01-01 15:10:11 +00:00
|
|
|
/etc/ld.so.conf"
|
2014-03-17 13:00:31 +00:00
|
|
|
# Force creation of -dbg pkg, required by valgrind.
|
|
|
|
force_debug_pkgs=yes
|
2013-02-06 19:08:44 +00:00
|
|
|
|
2013-10-24 09:15:17 +00:00
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
|
|
hostmakedepends="bison perl"
|
|
|
|
fi
|
2014-10-20 09:07:21 +00:00
|
|
|
makedepends="kernel-libc-headers"
|
2014-10-20 07:32:55 +00:00
|
|
|
build_options="systemd"
|
2015-01-13 14:32:06 +00:00
|
|
|
lib32files="/usr/lib/gconv/gconv-modules"
|
2015-01-28 15:35:17 +00:00
|
|
|
lib32symlinks="ld-linux.so.2"
|
2013-10-24 09:15:17 +00:00
|
|
|
|
2012-02-18 09:56:50 +00:00
|
|
|
do_configure() {
|
2013-05-26 08:41:55 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2012-07-09 14:13:38 +00:00
|
|
|
|
2014-03-09 10:25:36 +00:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
|
|
_libdir=/usr/lib32
|
|
|
|
else
|
|
|
|
_libdir=/usr/lib
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "slibdir=${_libdir}" > configparms
|
2012-07-09 14:13:38 +00:00
|
|
|
echo "bindir=/usr/bin" >> configparms
|
|
|
|
echo "sbindir=/usr/sbin" >> configparms
|
2013-08-27 06:16:58 +00:00
|
|
|
echo "rootsbindir=/usr/sbin" >> configparms
|
2011-02-02 16:48:18 +00:00
|
|
|
|
2014-01-18 07:12:07 +00:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
2013-02-06 19:08:44 +00:00
|
|
|
# Build with -mno-tls-direct-seg-refs to avoid performance
|
|
|
|
# problems with Xen on x86 32bit.
|
2014-01-18 07:12:07 +00:00
|
|
|
i686) export CFLAGS+=" -mno-tls-direct-seg-refs";;
|
2013-02-06 19:08:44 +00:00
|
|
|
# Force hard float ABI.
|
2013-02-12 15:45:53 +00:00
|
|
|
# To build for soft float: --with-float=soft --without-fp.
|
2014-03-15 18:35:57 +00:00
|
|
|
armv5*) configure_args+=" --with-march=armv5te --without-fp --with-float=soft";;
|
2014-01-18 09:14:48 +00:00
|
|
|
armv6l*) configure_args+=" --with-march=armv6 --with-fpu=vfp --with-float=hard";;
|
|
|
|
armv7l*) configure_args+=" --with-march=armv7-a --with-fpu=vfpv3 --with-float=hard";;
|
2014-01-18 07:12:07 +00:00
|
|
|
esac
|
|
|
|
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
2014-03-09 10:30:20 +00:00
|
|
|
configure_args+=" --host=${XBPS_CROSS_TRIPLET}"
|
|
|
|
configure_args+=" --with-sysroot=${XBPS_CROSS_BASE}"
|
2013-11-14 09:59:01 +00:00
|
|
|
configure_args+=" --with-headers=${XBPS_CROSS_BASE}/usr/include"
|
2013-02-06 19:08:44 +00:00
|
|
|
else
|
2013-11-14 09:59:01 +00:00
|
|
|
configure_args+=" --with-headers=${XBPS_MASTERDIR}/usr/include"
|
2008-11-21 16:12:07 +00:00
|
|
|
fi
|
2011-02-02 16:48:18 +00:00
|
|
|
|
2014-05-19 08:08:42 +00:00
|
|
|
# Disable SSP
|
|
|
|
export CFLAGS="${CFLAGS/-fstack-protector-strong/}"
|
|
|
|
|
2013-10-24 09:15:17 +00:00
|
|
|
SHELL=/bin/bash ../configure ${configure_args} \
|
2012-07-09 14:13:38 +00:00
|
|
|
--bindir=/usr/bin --sbindir=/usr/sbin \
|
2014-03-09 10:25:36 +00:00
|
|
|
--libdir=${_libdir} --libexecdir=${_libdir} \
|
2014-09-08 14:55:39 +00:00
|
|
|
--enable-add-ons=libidn --enable-obsolete-rpc \
|
2012-12-26 14:43:50 +00:00
|
|
|
--enable-multi-arch --enable-bind-now \
|
2014-09-08 14:55:39 +00:00
|
|
|
--disable-profile --enable-kernel=2.6.32 \
|
2014-09-06 22:13:07 +00:00
|
|
|
--enable-stack-guard-randomization \
|
2014-09-08 14:55:39 +00:00
|
|
|
--without-selinux --without-cvs --without-gd \
|
|
|
|
libc_cv_rootsbindir=/usr/sbin \
|
|
|
|
libc_cv_rtlddir=${_libdir} libc_cv_slibdir=${_libdir}
|
2012-02-18 09:56:50 +00:00
|
|
|
}
|
2011-02-02 16:48:18 +00:00
|
|
|
|
2012-02-18 09:56:50 +00:00
|
|
|
do_build() {
|
2013-05-26 08:41:55 +00:00
|
|
|
cd build
|
|
|
|
make ${makejobs}
|
2008-10-27 05:12:30 +00:00
|
|
|
}
|
2012-02-18 09:56:50 +00:00
|
|
|
do_install() {
|
2009-03-11 05:31:56 +00:00
|
|
|
# Create DESTDIR/etc/ld.so.conf
|
|
|
|
mkdir -p ${DESTDIR}/etc
|
2010-05-11 10:51:58 +00:00
|
|
|
echo "include /etc/ld.so.conf.d/*.conf" > ${DESTDIR}/etc/ld.so.conf
|
2008-10-27 05:12:30 +00:00
|
|
|
|
2013-05-26 08:41:55 +00:00
|
|
|
cd build
|
2012-05-24 12:47:47 +00:00
|
|
|
make install_root=${DESTDIR} install
|
2011-10-12 12:10:16 +00:00
|
|
|
|
|
|
|
# create /etc/default/libc-locales
|
|
|
|
vinstall ${FILESDIR}/libc-locales 644 etc/default
|
|
|
|
cp ${wrksrc}/localedata/SUPPORTED ${wrksrc}/build
|
|
|
|
sed -i -e "s|/| |g" \
|
|
|
|
-e 's|\\| |g' \
|
|
|
|
-e "s|SUPPORTED-LOCALES=||" \
|
|
|
|
-e "s|^|#|g" ${wrksrc}/build/SUPPORTED
|
|
|
|
cat ${wrksrc}/build/SUPPORTED >> ${DESTDIR}/etc/default/libc-locales
|
2011-02-02 16:48:18 +00:00
|
|
|
|
2011-05-30 06:46:57 +00:00
|
|
|
# ldd is a bash script, so make it run as such.
|
2009-03-11 05:31:56 +00:00
|
|
|
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.
|
2013-03-25 21:56:17 +00:00
|
|
|
if [ "$XBPS_TARGET_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\"|" \
|
2009-03-11 05:31:56 +00:00
|
|
|
${DESTDIR}/usr/bin/ldd
|
2008-10-27 05:12:30 +00:00
|
|
|
fi
|
2010-05-11 10:51:58 +00:00
|
|
|
install -d ${DESTDIR}/etc/ld.so.conf.d
|
|
|
|
echo "/usr/local/lib" > ${DESTDIR}/etc/ld.so.conf.d/usr_local.conf
|
|
|
|
chmod 644 ${DESTDIR}/etc/ld.so.conf.d/usr_local.conf
|
2009-10-21 12:32:49 +00:00
|
|
|
rm -f ${DESTDIR}/etc/ld.so.cache
|
2012-07-09 14:13:38 +00:00
|
|
|
|
2013-02-19 13:11:03 +00:00
|
|
|
# Create ld-linux.so.3 symlink for ARM.
|
2014-01-18 11:26:11 +00:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
armv?l) ln -sfr ${DESTDIR}/usr/lib/ld-linux-armhf.so.3 ${DESTDIR}/usr/lib/ld-linux.so.3;;
|
|
|
|
esac
|
2014-03-03 08:16:51 +00:00
|
|
|
|
|
|
|
vinstall ${wrksrc}/posix/gai.conf 644 etc
|
|
|
|
rm -rf ${DESTDIR}/var/db
|
2014-12-29 16:59:34 +00:00
|
|
|
# Remove tzselect and z{dump,ic}, provided by tzutils.
|
|
|
|
rm -f ${DESTDIR}/usr/bin/tzselect
|
2014-12-29 16:41:33 +00:00
|
|
|
rm -f ${DESTDIR}/usr/sbin/z{dump,ic}
|
2008-10-27 05:12:30 +00:00
|
|
|
}
|
2013-04-12 13:11:12 +00:00
|
|
|
|
|
|
|
glibc-devel_package() {
|
2014-03-09 10:25:36 +00:00
|
|
|
lib32depends="glibc>=${version}_${revision}"
|
|
|
|
lib32files="/usr/include/gnu/stubs-32.h"
|
2014-10-20 07:32:55 +00:00
|
|
|
depends="${makedepends} glibc>=${version}_${revision}"
|
2013-05-20 12:41:26 +00:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 13:11:12 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove "usr/lib/*.a"
|
2014-01-18 07:12:07 +00:00
|
|
|
vmove "usr/lib/*.o"
|
2013-04-12 13:11:12 +00:00
|
|
|
vmove usr/share/info
|
|
|
|
}
|
|
|
|
}
|
|
|
|
glibc-locales_package() {
|
|
|
|
noarch=yes
|
|
|
|
conf_files="/etc/default/libc-locales"
|
2013-05-20 12:41:26 +00:00
|
|
|
short_desc+=" - locale data files"
|
2013-04-12 13:11:12 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove etc/default
|
|
|
|
vmove usr/share/i18n
|
|
|
|
vmove usr/share/locale
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nscd_package() {
|
|
|
|
conf_files="/etc/nscd.conf"
|
2013-05-20 12:41:26 +00:00
|
|
|
short_desc+=" - Name Service Cache Daemon"
|
2013-04-12 13:11:12 +00:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/sbin/nscd
|
2014-10-20 07:32:55 +00:00
|
|
|
if [ "$build_option_systemd" ]; then
|
|
|
|
vinstall ${wrksrc}/nscd/nscd.service 644 usr/lib/systemd/system
|
|
|
|
vinstall ${wrksrc}/nscd/nscd.tmpfiles 644 usr/lib/tmpfiles.d nscd.conf
|
|
|
|
fi
|
2014-03-03 08:16:51 +00:00
|
|
|
vinstall ${wrksrc}/nscd/nscd.conf 644 etc
|
2013-04-12 13:11:12 +00:00
|
|
|
}
|
|
|
|
}
|