source: scripts/fetch/eglibc.sh @ 167f981

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 167f981 was 167f981, checked in by Jim Gifford <clfs@…>, 15 years ago

Updated eglibc retrieve script

  • Property mode set to 100755
File size: 2.3 KB
RevLine 
[aa81e76]1#!/bin/bash
2# Create a Eglibc Tarball
3
4# Get Version #
5#
6VERSION=$1
7SOURCEVERSION=$2
8
9# Check Input
10#
11if [ "${VERSION}" = "" -o "${SOURCEVERSION}" = "" ]; then
12  echo "$0 - Eglibc_Version"
13  echo "This will Create a Tarball for Eglibc Eglibc_Series Eglibc_Version"
14  echo "Example $0 2.19 2.19.1"
15  exit 255
16fi
17
[167f981]18# Clear out old Directory
19#
20rm -rf ~/tmp
21
[aa81e76]22# Get Current Eglibc from SVN
23#
24install -d ~/tmp
25cd ~/tmp
26FIXEDVERSION=$(echo ${VERSION} | sed -e 's/\./_/g')
27echo "Retreiving from SVN eglibc-${SOURCEVERSION}..."
28svn export svn://svn.eglibc.org/branches/eglibc-${FIXEDVERSION} eglibc-${SOURCEVERSION}
29
30# Customize the version string, so we know it's patched
31#
32cd ~/tmp/eglibc-${SOURCEVERSION}
33DATE_STAMP=$(date +%Y%m%d)
34echo "#define DL_DATE \"${DATE_STAMP}\"" >> libc/version.h
35sed -i "s@Compiled by GNU CC version@Built for Cross-LFS.\\\\n\\\\\nRetrieved on \"DL_DATE\".\\\\n\\\\\\nCompiled by GNU CC version@" libc/csu/version.c
36sed -i "s@static const char __libc_release@static const char __libc_dl_date[] = DL_DATE;\nstatic const char __libc_release@" libc/csu/version.c
37
38# Remove Files not needed
39#
[167f981]40cd ~/tmp/eglibc-${SOURCEVERSION}
[aa81e76]41FILE_LIST=".cvsignore"
42for files in ${FILE_LIST}; do
43  REMOVE=$(find * -name ${files})
44  for file in $REMOVE; do
45    rm -f ${file}
46  done
47done
48
49# Fix configuration files
50#
[167f981]51cd ~/tmp/eglibc-${SOURCEVERSION}
[aa81e76]52echo "Updating Glibc configure files..."
53find . -name configure -exec touch {} \;
54
[167f981]55# Change gcc to BUILD_CC in the following files
56#
57cd ~/tmp/eglibc-${SOURCEVERSION}/libc
58FIX_FILES="sunrpc/Makefile timezone/Makefile"
59for fix_file in ${FIX_FILES}; do
60  sed -i "s/gcc/\'$\(BUILD_CC\)'/g" ${fix_file}
61done
62
[aa81e76]63# Compress
64#
[167f981]65cd ~/tmp/eglibc-${SOURCEVERSION}
[aa81e76]66echo "Creating Tarball for Eglibc Ports ${SOURCEVERSION}...."
67tar cjf ~/public_html/eglibc-ports-${SOURCEVERSION}.tar.bz2 ports
68rm -rf ports
69echo "Creating Tarball for Eglibc Linuxthreads ${SOURCEVERSION}...."
70tar cjf ~/public_html/eglibc-linuxthreads-${SOURCEVERSION}.tar.bz2 linuxthreads
71rm -rf linuxthreads
72echo "Creating Tarball for Eglibc LocaleDef ${SOURCEVERSION}...."
73tar cjf ~/public_html/eglibc-localedef-${SOURCEVERSION}.tar.bz2 localedef
74rm -rf localedef
75mv libc eglibc-${SOURCEVERSION}
76echo "Creating Tarball for Eglibc ${SOURCEVERSION}...."
77tar cjf ~/public_html/eglibc-${SOURCEVERSION}.tar.bz2 eglibc-${SOURCEVERSION}
78
79# Clean up Directores
80#
81cd ~/tmp
82rm -rf eglibc-${SOURCEVERSION}
83
Note: See TracBrowser for help on using the repository browser.