This package is known to build and work
properly using an LFS-7.8 platform.">
This package is known to build using an LFS
7.8 platform but has not been tested.">
When installing multiple packages in a script,
the installation needs to be done as the root user. There are three general
options that can be used to do this:
Run the entire script as the root user (not
recommended).
Use the sudo command from the package.
Use su -c "command arguments"
(quotes required) which will ask for the root password for every iteration
of the loop.
One way to handle this situation is to create a short
bash function that automatically selects the appropriate
method. Once the command is set in the environment, it does not need to be
set again.
as_root()
{
if [ $EUID = 0 ]; then $*
elif [ -x /usr/bin/sudo ]; then sudo $*
else su -c \\"$*\\"
fi
}
export -f as_root
">
This package is not a part of the Xorg
katamari and is provided only as a dependency to
other packages or for testing the completed Xorg
installation.">
%package-entities;
This package may occasionally fail when
building with multiple processors. See for more information.">