2008-10-21 03:27:22 +00:00
|
|
|
# Template file for 'glibc'
|
|
|
|
pkgname=glibc
|
2013-08-13 09:20:13 +00:00
|
|
|
version=2.18
|
2014-01-02 10:49:04 +00:00
|
|
|
revision=5
|
2013-11-14 09:59:01 +00:00
|
|
|
bootstrap=yes
|
|
|
|
# Force creation of -dbg pkg, required by valgrind.
|
|
|
|
force_debug_pkgs=yes
|
|
|
|
patch_args="-Np1"
|
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"
|
2013-08-13 09:20:13 +00:00
|
|
|
checksum=2cb4e1e381928f1e5e55e71ab1ba8e0ea7ede75ff9709770435bfd018ea257a3
|
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
|
|
|
|
/etc/ld.so.conf"
|
|
|
|
depends="base-files glibc-locales>=${version}_${revision}"
|
2013-02-06 19:08:44 +00:00
|
|
|
|
2013-10-24 09:15:17 +00:00
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
|
|
hostmakedepends="bison perl"
|
|
|
|
fi
|
|
|
|
|
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
|
|
|
|
|
|
|
echo "slibdir=/usr/lib" > configparms
|
|
|
|
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
|
|
|
|
2013-03-25 21:01:08 +00:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
2013-02-06 19:08:44 +00:00
|
|
|
# Build with -mno-tls-direct-seg-refs to avoid performance
|
|
|
|
# problems with Xen on x86 32bit.
|
2013-11-14 09:59:01 +00:00
|
|
|
export CFLAGS+=" -mno-tls-direct-seg-refs"
|
2013-03-25 21:01:08 +00:00
|
|
|
elif [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then
|
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.
|
2013-11-14 09:59:01 +00:00
|
|
|
configure_args+=" --with-float=hard"
|
2013-02-06 19:08:44 +00:00
|
|
|
fi
|
2013-04-08 23:49:27 +00:00
|
|
|
if [ "$CROSS_BUILD" ]; then
|
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
|
|
|
|
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 \
|
2013-11-14 09:59:01 +00:00
|
|
|
--libdir=/usr/lib --libexecdir=/usr/lib \
|
2013-02-06 19:08:44 +00:00
|
|
|
--enable-add-ons=ports,nptl,libidn --enable-obsolete-rpc \
|
2012-12-26 14:43:50 +00:00
|
|
|
--enable-multi-arch --enable-bind-now \
|
|
|
|
--disable-profile --enable-kernel=2.6.27 \
|
2013-11-14 09:59:01 +00:00
|
|
|
--enable-stack-guard-randomization --enable-lock-elision \
|
2014-01-02 09:46:25 +00:00
|
|
|
--without-selinux --without-cvs --without-gd
|
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.
|
2008-11-03 09:32:36 +00:00
|
|
|
. $XBPS_HELPERSDIR/replace-interpreter.sh
|
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.
|
2013-03-25 21:56:17 +00:00
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then
|
2013-02-19 13:11:03 +00:00
|
|
|
ln -sfr ${DESTDIR}/usr/lib/ld-linux-armhf.so.3 \
|
|
|
|
${DESTDIR}/usr/lib/ld-linux.so.3
|
|
|
|
fi
|
2008-10-27 05:12:30 +00:00
|
|
|
}
|
2013-04-12 13:11:12 +00:00
|
|
|
|
|
|
|
glibc-devel_package() {
|
2013-11-14 09:59:01 +00:00
|
|
|
depends="kernel-libc-headers 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"
|
|
|
|
vmove "usr/lib/*crt1.o"
|
|
|
|
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() {
|
|
|
|
systemd_services="nscd.service on"
|
|
|
|
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
|
|
|
|
vinstall ${FILESDIR}/nscd.service 644 usr/lib/systemd/system
|
|
|
|
vinstall ${FILESDIR}/nscd.socket 644 usr/lib/systemd/system
|
|
|
|
vinstall ${FILESDIR}/nscd.tmpfiles.d 644 usr/lib/tmpfiles.d nscd.conf
|
|
|
|
vinstall ${FILESDIR}/nscd.conf 644 etc
|
|
|
|
}
|
|
|
|
}
|