[fbb6b78] | 1 | #!/bin/sh
|
---|
[1236262] | 2 |
|
---|
| 3 | version="
|
---|
[557fe91] | 4 | jhalfs 0.2
|
---|
[1236262] | 5 | Written by Jeremy Huntwork.
|
---|
[557fe91] | 6 | Maintained by Manuel Canales Esparcia.
|
---|
[1236262] | 7 |
|
---|
| 8 | This program is published under the \
|
---|
[557fe91] | 9 | Gnu General Public License, Version 2.
|
---|
| 10 | "
|
---|
[1236262] | 11 |
|
---|
| 12 | usage="\
|
---|
| 13 | Usage: $0 [OPTION]
|
---|
| 14 |
|
---|
| 15 | Options:
|
---|
[557fe91] | 16 | -h, --help print this help, then exit
|
---|
| 17 | -V, --version print version number, then exit
|
---|
| 18 | -L, --LFS-version=VER use VER version of the LFS book
|
---|
| 19 | -d --directory=DIR use DIR directory for building LFS; all files
|
---|
| 20 | jhalfs produces will be in the directory
|
---|
| 21 | DIR/jhalfs
|
---|
| 22 | -D, --download-client=CLIENT use CLIENT as the program for retrieving
|
---|
| 23 | packages
|
---|
[1236262] | 24 | "
|
---|
| 25 |
|
---|
| 26 | help="\
|
---|
| 27 | Try '$0 --help' for more information."
|
---|
| 28 |
|
---|
| 29 | exit_missing_arg="\
|
---|
| 30 | echo \"Option '\$1' requires an argument\" >&2
|
---|
| 31 | echo \"\$help\" >&2
|
---|
| 32 | exit 1"
|
---|
| 33 |
|
---|
| 34 | no_dl_client="\
|
---|
| 35 | echo \"Could not find a way to download the LFS sources.\" >&2
|
---|
| 36 | echo \"Attempting to continue.\" >&2"
|
---|
| 37 |
|
---|
| 38 | while test $# -gt 0 ; do
|
---|
[557fe91] | 39 | case $1 in
|
---|
| 40 | --version | -V )
|
---|
| 41 | echo "$version"
|
---|
| 42 | exit 0
|
---|
| 43 | ;;
|
---|
| 44 |
|
---|
| 45 | --help | -h )
|
---|
| 46 | echo "$usage"
|
---|
| 47 | exit 0
|
---|
| 48 | ;;
|
---|
| 49 |
|
---|
| 50 | --LFS-version | -L )
|
---|
| 51 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 52 | shift
|
---|
| 53 | case $1 in
|
---|
| 54 | dev* | SVN | trunk )
|
---|
| 55 | LFSVRS=development
|
---|
| 56 | ;;
|
---|
| 57 | * )
|
---|
| 58 | echo "$1 is an unsupported version at this time."
|
---|
| 59 | exit 1
|
---|
| 60 | ;;
|
---|
| 61 | esac
|
---|
| 62 | shift
|
---|
| 63 | ;;
|
---|
| 64 |
|
---|
| 65 | --directory | -d )
|
---|
| 66 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 67 | shift
|
---|
| 68 | BUILDDIR=$1
|
---|
| 69 | shift
|
---|
| 70 | ;;
|
---|
| 71 |
|
---|
| 72 | --download-client | -D )
|
---|
| 73 | test $# = 1 && eval "$exit_missing_arg"
|
---|
| 74 | shift
|
---|
| 75 | DL=$1
|
---|
| 76 | shift
|
---|
| 77 | ;;
|
---|
| 78 |
|
---|
| 79 | * )
|
---|
| 80 | echo "$usage"
|
---|
| 81 | exit 1
|
---|
| 82 | ;;
|
---|
| 83 | esac
|
---|
[1236262] | 84 | done
|
---|
| 85 |
|
---|
| 86 | # Test to make sure we're running the build as root
|
---|
| 87 |
|
---|
| 88 | if [ "$UID" != "0" ] ; then
|
---|
[557fe91] | 89 | echo "You must be logged in as root to successfully build LFS."
|
---|
| 90 | exit 1
|
---|
[1236262] | 91 | fi
|
---|
| 92 |
|
---|
| 93 | # Find the download client to use, if not already specified.
|
---|
| 94 |
|
---|
| 95 | if [ -z $DL ] ; then
|
---|
| 96 | if [ `type -p wget` ] ; then
|
---|
[557fe91] | 97 | DL=wget
|
---|
[1236262] | 98 | elif [ `type -p curl` ] ; then
|
---|
[557fe91] | 99 | DL=curl
|
---|
[1236262] | 100 | else
|
---|
[557fe91] | 101 | eval "$no_dl_client"
|
---|
[1236262] | 102 | fi
|
---|
| 103 | fi
|
---|
| 104 |
|
---|
| 105 | SVN="svn://svn.linuxfromscratch.org"
|
---|
| 106 | HTTP=http://ftp.lfs-matrix.net/pub/lfs/lfs-packages/conglomeration
|
---|
[48d7968] | 107 | if [ -z $BUILDDIR ] ; then BUILDDIR=/mnt/lfs ; fi
|
---|
[4dafc45] | 108 | JHALFSDIR=$BUILDDIR/jhalfs
|
---|
[1236262] | 109 | LOG=build.log
|
---|
[f8de156] | 110 | MKFILE=$JHALFSDIR/Makefile
|
---|
[557fe91] | 111 | XSL=dump-commands.xsl
|
---|
[1236262] | 112 |
|
---|
| 113 | get_book() {
|
---|
| 114 | # Check for Subversion instead of just letting the script hit 'svn' and fail.
|
---|
| 115 | test `type -p svn` || eval "echo \"This feature requires Subversion.\"
|
---|
[557fe91] | 116 | exit 1"
|
---|
[4dafc45] | 117 | cd $JHALFSDIR
|
---|
[fbb6b78] | 118 |
|
---|
[1236262] | 119 | # Test to make sure the LFS version is set
|
---|
| 120 | if [ -z $LFSVRS ] ; then LFSVRS=development ; fi
|
---|
| 121 | echo -n "Downloading the LFS Book, version $LFSVRS... "
|
---|
| 122 |
|
---|
| 123 | # Grab the LFS book fresh if it's missing, otherwise, update it from the
|
---|
| 124 | # repo. If we've already extracted the commands, move on to getting the
|
---|
| 125 | # sources.
|
---|
| 126 | if [ -d lfs-$LFSVRS ] ; then
|
---|
[557fe91] | 127 | cd lfs-$LFSVRS
|
---|
| 128 | if svn up | grep -q At && test -d $JHALFSDIR/commands && \
|
---|
| 129 | test -f $JHALFSDIR/packages && test -f $JHALFSDIR/patches ; then
|
---|
| 130 | echo -ne "done\n"
|
---|
| 131 | get_sources
|
---|
| 132 | else
|
---|
| 133 | echo -ne "done\n"
|
---|
| 134 | extract_commands
|
---|
| 135 | fi
|
---|
[1236262] | 136 | else
|
---|
[557fe91] | 137 | if [ $LFSVRS = development ] ; then
|
---|
| 138 | svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$JHALFSDIR/$LOG 2>&1
|
---|
| 139 | else
|
---|
| 140 | svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$JHALFSDIR/$LOG 2>&1
|
---|
| 141 | fi
|
---|
| 142 | echo -ne "done\n"
|
---|
| 143 | extract_commands
|
---|
[1236262] | 144 | fi
|
---|
| 145 | }
|
---|
| 146 |
|
---|
| 147 | extract_commands() {
|
---|
| 148 | # Check for libxslt instead of just letting the script hit 'xsltproc' and fail.
|
---|
| 149 | test `type -p xsltproc` || eval "echo \"This feature requires libxslt.\"
|
---|
[557fe91] | 150 | exit 1"
|
---|
[4dafc45] | 151 | cd $JHALFSDIR
|
---|
[1236262] | 152 |
|
---|
| 153 | # Start clean
|
---|
| 154 | if [ -d commands ] ; then rm -rf commands ; fi && mkdir commands
|
---|
| 155 | echo -n "Extracting commands... "
|
---|
| 156 |
|
---|
[557fe91] | 157 | # Dump the commands in text form from the LFS book.
|
---|
| 158 | xsltproc --nonet --xinclude -o ./commands/ $XSL \
|
---|
| 159 | lfs-$LFSVRS/index.xml >>$JHALFSDIR/$LOG 2>&1
|
---|
[1236262] | 160 |
|
---|
| 161 | # Move the text files out from the chapter directories, and dump them
|
---|
| 162 | # all into the 'commands' directory.
|
---|
| 163 | cd commands
|
---|
| 164 | find ./* -xtype f -exec mv '{}' . \;
|
---|
| 165 | find ./* -maxdepth 0 -xtype d -exec rm -rf '{}' \;
|
---|
| 166 |
|
---|
[f8de156] | 167 | # Remove all the blank lines from the commands
|
---|
| 168 | for i in $JHALFSDIR/commands/* ; do
|
---|
[557fe91] | 169 | sed -i '/^$/d' $i
|
---|
[f8de156] | 170 | done
|
---|
| 171 |
|
---|
[1236262] | 172 | # Grab the patches and package names.
|
---|
[4dafc45] | 173 | cd $JHALFSDIR
|
---|
[1236262] | 174 | for i in patches packages ; do rm -f $i ; done
|
---|
| 175 | grep "\-version" lfs-$LFSVRS/general.ent | sed -e 's@<!ENTITY @@' -e 's@">@"@' \
|
---|
[557fe91] | 176 | -e '/generic/d' >> packages
|
---|
[1236262] | 177 | grep "ENTITY" lfs-$LFSVRS/patches.ent | sed -e 's/.* "//' -e 's/">//' >> patches
|
---|
| 178 |
|
---|
| 179 | # Done. Moving on...
|
---|
| 180 | echo -ne "done\n"
|
---|
| 181 | get_sources
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | download() {
|
---|
| 185 | cd $BUILDDIR/sources
|
---|
| 186 |
|
---|
| 187 | # Hackish fix for the bash-doc package that doesn't conform
|
---|
| 188 | # to norms in the URL scheme.
|
---|
| 189 | DIR=`echo $1 | sed 's@-doc@@'`
|
---|
| 190 |
|
---|
| 191 | # Find the md5 sum for this package.
|
---|
| 192 | if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi
|
---|
| 193 |
|
---|
| 194 | if [ ! -f $2 ] ; then
|
---|
[557fe91] | 195 | case $DL in
|
---|
| 196 | wget )
|
---|
| 197 | wget $HTTP/$DIR/$2
|
---|
| 198 | ;;
|
---|
| 199 | curl )
|
---|
| 200 | `curl -# $HTTP/$DIR/$2 -o $2`
|
---|
| 201 | ;;
|
---|
| 202 | * )
|
---|
| 203 | echo "$DL not supported at this time."
|
---|
| 204 | ;;
|
---|
| 205 | esac
|
---|
[1236262] | 206 | elif ! echo "$MD5" | md5sum -c - >/dev/null 2>/dev/null ; then
|
---|
[557fe91] | 207 | case $DL in
|
---|
| 208 | wget )
|
---|
| 209 | wget -c $HTTP/$DIR/$2
|
---|
| 210 | ;;
|
---|
| 211 | curl )
|
---|
| 212 | `curl -# -C - $HTTP/$DIR/$2 -o $2`
|
---|
| 213 | ;;
|
---|
| 214 | * )
|
---|
| 215 | echo "$DL not supported at this time."
|
---|
| 216 | ;;
|
---|
| 217 | esac
|
---|
[1236262] | 218 | fi
|
---|
| 219 | if [ $2 != MD5SUMS ] && ! echo "$MD5" | md5sum -c - ; then
|
---|
| 220 | exit 1
|
---|
| 221 | fi
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | get_sources() {
|
---|
| 225 |
|
---|
[f8de156] | 226 | # This variable is necessary to make sure the `cat $JHALFSDIR/packages`
|
---|
[1236262] | 227 | # separates each iteration by lines. It is necessary to have the second
|
---|
| 228 | # ' on the next line.
|
---|
| 229 | IFS='
|
---|
| 230 | '
|
---|
| 231 |
|
---|
| 232 | if [ ! -d $BUILDDIR/sources ] ; then mkdir $BUILDDIR/sources ; fi
|
---|
| 233 | cd $BUILDDIR/sources
|
---|
| 234 | if [ -f MD5SUMS ] ; then rm MD5SUMS ; fi
|
---|
| 235 |
|
---|
| 236 | download "" MD5SUMS
|
---|
| 237 |
|
---|
| 238 | # Iterate through each package and grab it, along with any patches it needs.
|
---|
[4dafc45] | 239 | for i in `cat $JHALFSDIR/packages` ; do
|
---|
[1236262] | 240 | PKG=`echo $i | sed 's/-version.*//'`
|
---|
[fbb6b78] | 241 |
|
---|
[1236262] | 242 | # Someone used some silly entities right next to the valid package entities.
|
---|
| 243 | if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" ] ; then continue ; fi
|
---|
| 244 |
|
---|
| 245 | VRS=`echo $i | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 246 | if [ "$PKG" = "tcl" ] ; then
|
---|
[557fe91] | 247 | FILE="$PKG$VRS-src.tar.bz2"
|
---|
[1236262] | 248 | else
|
---|
[557fe91] | 249 | FILE="$PKG-$VRS.tar.bz2"
|
---|
[1236262] | 250 | fi
|
---|
| 251 | download $PKG $FILE
|
---|
[4dafc45] | 252 | for patch in `grep "$PKG-&$PKG" $JHALFSDIR/patches` ; do
|
---|
[557fe91] | 253 | PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
|
---|
| 254 | download $PKG $PATCH
|
---|
[fbb6b78] | 255 | done
|
---|
[1236262] | 256 | done
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[f8de156] | 259 | build_Makefile() {
|
---|
[9e406b5] | 260 | echo -n "Creating Makefile... "
|
---|
[f8de156] | 261 | cd $JHALFSDIR/commands
|
---|
[fbb6b78] | 262 |
|
---|
[f8de156] | 263 | # Start with a clean Makefile.tmp file
|
---|
| 264 | >$MKFILE.tmp
|
---|
| 265 |
|
---|
| 266 | for i in * ; do
|
---|
[557fe91] | 267 | # First append each name of the command files to a list (this will become
|
---|
| 268 | # the names of the targets in the Makefile
|
---|
| 269 | list="$list $i"
|
---|
| 270 |
|
---|
| 271 | # Grab the name of the target (minus the -pass1 or -pass2 in the case of gcc
|
---|
| 272 | # and binutils in chapter 5)
|
---|
| 273 | name=`echo $i | sed -e 's@[0-9]\{3\}-@@' -e 's@-pass[0-9]\{1\}@@'`
|
---|
| 274 |
|
---|
| 275 | # Drop in the name of the target on a new line.
|
---|
| 276 | echo -e "\n$i:" >> $MKFILE.tmp
|
---|
| 277 |
|
---|
| 278 | # Find the version of the command files, if it corresponds with the building of
|
---|
| 279 | # a specific package
|
---|
| 280 | vrs=`grep "^$name-version" $JHALFSDIR/packages | sed -e 's/.* //' -e 's/"//g'`
|
---|
| 281 |
|
---|
| 282 | # If $vrs isn't empty, we've got a package...
|
---|
| 283 | if [ "$vrs" != "" ] ; then
|
---|
| 284 | if [ "$name" = "tcl" ] ; then
|
---|
| 285 | FILE="$name$vrs-src.tar.bz2"
|
---|
| 286 | else
|
---|
| 287 | FILE="$name-$vrs.tar.bz2"
|
---|
| 288 | fi
|
---|
| 289 |
|
---|
| 290 | # Insert instructions for unpacking the package and changing directories
|
---|
| 291 | echo -e "\t\$(call unpack,$FILE)" >> $MKFILE.tmp
|
---|
| 292 | echo -e "\tROOT=\`head -n1 /tmp/unpacked | sed 's@/.*@@'\` && \\" >> $MKFILE.tmp
|
---|
| 293 | echo -e "\tcd \$(SRC)/\$\$ROOT && \\" >> $MKFILE.tmp
|
---|
| 294 | fi
|
---|
| 295 |
|
---|
| 296 | # Drop in the actual commands that were parsed from the book
|
---|
| 297 | # These seds add an extra $ to each variable so make doesn't break,
|
---|
| 298 | # add tabs to the beginning of each line, and add ' && \' to the end
|
---|
| 299 | # of each line except for those that end in '\'.
|
---|
| 300 | cat $i | sed -e 's:\$:&&:g' -e 's:^:\t:' -e 's:[^\\]$:& \&\& \\:' >> $MKFILE.tmp
|
---|
| 301 | # This sed removes the ' && \' from the last command of each target
|
---|
| 302 | sed -i '$s: \&\& \\::' $MKFILE.tmp
|
---|
| 303 |
|
---|
| 304 | # Include a touch of the target name so make can check if it's already been made.
|
---|
| 305 | echo -e "\ttouch \$@" >> $MKFILE.tmp
|
---|
[f8de156] | 306 | done
|
---|
[9e406b5] | 307 | # These seds turn the variables '$$LFS' into '$(LFS)' so make will understand,
|
---|
| 308 | # and remove the ' && \'s from the end of each line of a cat command.
|
---|
| 309 | sed -i -e 's|\$\$LFS|\$(LFS)|' -e '/^\tcat/,/^\tEOF/s/ \&\& \\//' $MKFILE.tmp
|
---|
| 310 |
|
---|
[fbb6b78] | 311 | # Stick a variable and some defines at the top of the real makefile
|
---|
[9e406b5] | 312 | echo "export SRC := /sources" > $MKFILE
|
---|
| 313 | echo "export LFS := $BUILDDIR" >> $MKFILE
|
---|
| 314 | echo "define unpack" >> $MKFILE
|
---|
| 315 | echo -e "\t@cd \$(SRC) ; tar -xvf \$(1) > /tmp/unpacked" >> $MKFILE
|
---|
| 316 | echo -e "endef\n" >> $MKFILE
|
---|
| 317 |
|
---|
| 318 | # Drop in the list as the main target 'all:' with each sub-target as a dependency.
|
---|
| 319 | echo "all: $list" >> $MKFILE
|
---|
| 320 |
|
---|
| 321 | # Bring over the items from the Makefile.tmp
|
---|
| 322 | cat $MKFILE.tmp >> $MKFILE
|
---|
| 323 | rm $MKFILE.tmp
|
---|
| 324 | echo -ne "done\n"
|
---|
[f8de156] | 325 | }
|
---|
| 326 |
|
---|
[1236262] | 327 |
|
---|
[4dafc45] | 328 | if [ ! -d $JHALFSDIR ] ; then
|
---|
[557fe91] | 329 | mkdir -p $JHALFSDIR
|
---|
[1236262] | 330 | fi
|
---|
| 331 |
|
---|
[4dafc45] | 332 | >$JHALFSDIR/$LOG
|
---|
[409488e] | 333 |
|
---|
| 334 | if [ "$PWD" != "$JHALFSDIR" ] ; then
|
---|
| 335 | cp $0 $XSL $JHALFSDIR/
|
---|
| 336 | fi
|
---|
| 337 |
|
---|
[1236262] | 338 | get_book
|
---|
[f8de156] | 339 | build_Makefile
|
---|