Changeset f633610 for README.BLFS


Ignore:
Timestamp:
08/20/2006 11:50:54 AM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
855296f
Parents:
78ac273
Message:

More README.BLFS updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.BLFS

    r78ac273 rf633610  
    154154   3.5  XORG7
    155155
    156         The generated script for Xorg7 pseudo-packages don't have support for
     156        The generated scripts for Xorg7 pseudo-packages don't have support for
    157157     $SRC_ARCHIVE nor MD5 checking.
    158158
     
    160160     to make it to use your local packages.
    161161
     162        Also, you will need to edit the scripts to fix the commands that must
     163     be applied only to a concret individual sub-package. For example the "for"
     164     loop to install xotg7-util packages may read like:
     165
     166for package in $(cat $WGET_LST) ; do
     167  packagedir=$(echo $package | sed 's/.tar.bz2//')
     168  tar -xf $package
     169  cd $packagedir
     170  sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
     171  ./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config
     172  sudo sh -c "make install"
     173  ./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config &&
     174  make
     175  sudo sh -c "make install"
     176  ./configure $XORG_CONFIG &&
     177  make
     178  sudo sh -c "make install"
     179  cd ..
     180  rm -rf $packagedir
     181done
     182
     183        After reading the HTML page to know what commands is for what package,
     184     the loop can be changed to read something like:
     185
     186for package in $(cat $WGET_LST) ; do
     187  packagedir=$(echo $package | sed 's/.tar.bz2//')
     188  tar -xf $package
     189  cd $packagedir
     190  if [ ${packagedir} = "xorg-cf-files" ] ; then
     191    sed -i "s@/usr/X11R6@$XORG_PREFIX@" X11.tmpl &&
     192    ./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config
     193    sudo sh -c "make install"
     194  elif [ ${packagedir} = "Imake" ] ; then
     195    ./configure $XORG_CONFIG --with-config-dir=$XORG_PREFIX/lib/X11/config &&
     196    make
     197    sudo sh -c "make install"
     198  else
     199    ./configure $XORG_CONFIG &&
     200    make
     201    sudo sh -c "make install"
     202  fi
     203  cd ..
     204  rm -rf $packagedir
     205done
     206
    162207   3.6  PATCHES
    163208
Note: See TracChangeset for help on using the changeset viewer.